Hi,

I have realy searched for a nice addressbook product for a couple two days now. I dont find anything suitable. I need it for a collaboration plattform running on zope, cmf. I like zope very much and am looking for a shared addressbook.
Anybody any experiences or suggestions?
What would be realy great, but no must-have feature for me would be an integration of the user-data and some permission features to set (who can view/write which addresses)..

Imho a shared addressbook (both for userdata and external contacts) is the most important missing feature to make zope a very powerfull groupware-portal (forums, mails, calender, documents, workflow, wiki, chat ... all already very nice).

Thank you very much Frank




[EMAIL PROTECTED] schrieb:
Send Zope mailing list submissions to
        zope@zope.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://mail.zope.org/mailman/listinfo/zope
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Zope digest..."


Today's Topics:

   1. Re: Cannot Import Base has_attr...Again! (Jens Vagelpohl)
   2. Re: How do people work with html-designers? (Laurence Rowe)
   3. losing random session data (Norbert Marrale)
   4. Re: losing random session data (Andreas Jung)
   5. Re: losing random session data (Maciej Wisniowski)
   6. Re: losing random session data (Tres Seaver)
   7. What is the best way to debug a Zope 2.62 application.
      (Mark, Jonathan (Integic))
   8. Re: What is the best way to debug a Zope 2.62 application.
      (robert rottermann)
   9. Re: What is the best way to debug a Zope 2.62 application.
      ( Eric Br?hault )
  10. email validator script (javi lopez)
  11. Re: email validator script (Andreas Jung)
  12. file upload ([EMAIL PROTECTED])
  13. Re: file upload (Jonathan)
  14. Re: file upload ([EMAIL PROTECTED])
  15. Re: file upload (Jonathan)


----------------------------------------------------------------------

Message: 1
Date: Sun, 18 Mar 2007 17:01:59 +0100
From: Jens Vagelpohl <[EMAIL PROTECTED]>
Subject: Re: [Zope] Cannot Import Base has_attr...Again!
To: zope user list <zope@zope.org>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 18 Mar 2007, at 16:45, [EMAIL PROTECTED] wrote:
--On 17. März 2007 15:16:31 -0400 [EMAIL PROTECTED] wrote:

I had this problem on another server I recently built...and it
went away
all by itself! I'm now rebuilding my home server, and it's
cropped up
again. Last time, Maciej Wisniowski suggested I go to a zopectl
prompt
and type in "import Products.CMFPlone", but apparently that
doesn't work
on Zope 2.7.8/Plone 2.1.4. Here is the traceback. Please advise.
TIA,
Tony

Consult the plone-users list for Plone-related questions.

I did that last time and no one addressed the issue, so I came here. Would you care to address the issue?


The fact that no one helped on the Plone list does not invalidate Andreas' assertion that this is a Plone issue and it belongs on the Plone list.

jens


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFF/WJ3RAx5nvEhZLIRAuWpAJ9GeeP3YoAGkbWLugO1xzjyxgomSgCdHZ58
vbdZ1mjfZn9827vjr1h6Z6E=
=t3JN
-----END PGP SIGNATURE-----


------------------------------

Message: 2
Date: Sun, 18 Mar 2007 19:29:34 +0000
From: Laurence Rowe <[EMAIL PROTECTED]>
Subject: [Zope] Re: How do people work with html-designers?
To: zope@zope.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Gaute Amundsen wrote:
I have been meaning to ask this for a while..

How do people set up the zope development process and servers to work well with web-designers who use wysiwyg editors like dreamweaver?
<snip/>

Take a look at deliverance http://openplans.org/projects/deliverance

The other option is to find someone with very good CSS skills who can design without adding changing the underlying html. In my experience that has been fairly rare though.

Laurence



------------------------------

Message: 3
Date: Sun, 18 Mar 2007 16:22:29 -0400
From: Norbert Marrale <[EMAIL PROTECTED]>
Subject: [Zope] losing random session data
To: zope@zope.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

In Zope 2.7.5-final, python 2.3.5, freebsd6 with Transient Object Container settings:
Data timeout: 20
Timeout resolution: 20
Maximum subobjects: 1000

and a python script that does this:

req = context.REQUEST
prev_order=(req.SESSION.get('order'))
if prev_order == None:
   order=[]
else:
   order = prev_order
order.append(req.form)
req.SESSION.set('order',order)

my data ends up looking like this:

order [{}, {}, {'foo': '1', 'bar': 'a'}, {}, {'foo': '2', 'bar': 'b'}, {'foo': '6', 'bar': 'z'}, {'foo': '1', 'bar': 'a'}]

I've seen  http://mail.zope.org/pipermail/zope-dev/2006-July/027890.html
and am aware that related bug existed prior to 2.7.1.

I've used sessions without problems before, this is the first time I attempt to store variables in containers. What am I doing wrong?

Norbert






------------------------------

Message: 4
Date: Sun, 18 Mar 2007 22:28:30 +0100
From: Andreas Jung <[EMAIL PROTECTED]>
Subject: Re: [Zope] losing random session data
To: Norbert Marrale <[EMAIL PROTECTED]>, zope@zope.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="utf-8"



--On 18. März 2007 16:22:29 -0400 Norbert Marrale <[EMAIL PROTECTED]> wrote:

In Zope 2.7.5-final, python 2.3.5, freebsd6 with Transient Object
Container settings:
Data timeout: 20
Timeout resolution: 20
Maximum subobjects: 1000


Zope 2.7 is completely outdated and unsupported. Consider upgrading.

-aj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 186 bytes
Desc: not available
Url : 
http://mail.zope.org/pipermail/zope/attachments/20070318/1105d772/attachment-0001.bin

------------------------------

Message: 5
Date: Sun, 18 Mar 2007 23:48:14 +0100
From: Maciej Wisniowski <[EMAIL PROTECTED]>
Subject: Re: [Zope] losing random session data
To: Norbert Marrale <[EMAIL PROTECTED]>
Cc: zope@zope.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-2

my data ends up looking like this:

order [{}, {}, {'foo': '1', 'bar': 'a'}, {}, {'foo': '2', 'bar': 'b'},
{'foo': '6', 'bar': 'z'}, {'foo': '1', 'bar': 'a'}]
What is wrong here? I mean what output is expected?

I've seen  http://mail.zope.org/pipermail/zope-dev/2006-July/027890.html
and am aware that related bug existed prior to 2.7.1.
There is 'faster' that is alternative sessioning machinery but I don't know
if it works with 2.7

I've used sessions without problems before, this is the first time I
attempt to store variables in containers. What am I doing wrong?
Maybe it is because of req.form assignment. Try to create copy of
its values and append this to 'order' list like:

session = context.REQUEST.SESSION
order = session.get('order', [])
order.append({'foo':req.form['foo'],
              'bar':req.form['bar']})
session.set('order',order)

and see what happens now.


_______________________________________________
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope-dev )

Reply via email to