Re: FW: [Zope3-Users] ZODB storage ways

2006-04-03 Thread David Pratt
Hi Pete. I have been looking at SQLAlchemy for Zope3. Can you advise how you are using this with zope's transactions. It seems that there are some folks using SQLAlchemy with Zope3 for sure. I am hoping to see a few things formalized somewhere or some work on assembling a small package like SQ

Re: [Zope3-Users] Re: FW: ZODB storage ways

2006-04-04 Thread David Pratt
very popular these days :). Jürgen David Pratt wrote: Hi Pete. I have been looking at SQLAlchemy for Zope3. Can you advise how you are using this with zope's transactions. It seems that there are some folks using SQLAlchemy with Zope3 for sure. I am hoping to see a few things formalized so

Re: FW: [Zope3-Users] ZODB storage ways

2006-04-04 Thread David Pratt
o place my commits, but from what i've looked at, it shouldn't be too difficult. that may have been too long winded ;) i hope it answered your question some though. if anyone else out there is using sqlalchemy and zope3, i'd love to hear comments and suggestions. I'm a ne

Re: [Zope3-Users] Re: FW: ZODB storage ways

2006-04-04 Thread David Pratt
Hi Jurgen. Thank you for moving this forward. I believe this should attract the right kind of attention. At the very least, it will focus effort on a common SQLAlchemy solution (which I am certain will have broad appeal). Regards, David j.kartnaller wrote: David Pratt wrote: Hi Jurgen

Re: FW: [Zope3-Users] ZODB storage ways

2006-04-04 Thread David Pratt
doing something at that level would have been overkill (not to mention i don't know how ;) ), but now that a project to do so is underway, i'm always for doing it the "right" way over the "quick" way, and will be watching the SVN closely. On 4/4/06, David Pratt <[E

[Zope3-Users] Zope3 as a package

2006-04-05 Thread David Pratt
Hi. I am interested in Z3 for a desktop app and would be looking at using py2exe and py2app for packaging along with the gui and its functionality. It seems at the outset this might be sort of messy since Zope typically expects to live somewhere other than site-packages at the outset and then h

Re: [Zope3-Users] Zope3 as a package

2006-04-05 Thread David Pratt
ng) if any. Regards, David Lennart Regebro wrote: On 4/5/06, David Pratt <[EMAIL PROTECTED]> wrote: Hi. I am interested in Z3 for a desktop app and would be looking at using py2exe and py2app for packaging along with the gui and its functionality. It seems at the outset this might be sor

Re: [Zope3-Users] Zope3 as a package

2006-04-05 Thread David Pratt
/06, David Pratt <[EMAIL PROTECTED]> wrote: I am curious to know whether Zope's packaging will eventually change to be like other things python (and other frameworks like TurboGears or Django) in this regard that are happy to live in site-packages. The Zope 3 Python packages can be i

Re: [Zope3-Users] Zope3 as a package

2006-04-05 Thread David Pratt
Hi Fred. I appreciate your time to identify these documents that will help clarify this for me. This is very helpful. Thank you. Regards, David Fred Drake wrote: On 4/5/06, David Pratt <[EMAIL PROTECTED]> wrote: Hi Fred. Thanks for this. The packaging code for Z3 for Windows is

Re: [Zope3-Users] zalchemy alpha svn repository

2006-04-06 Thread David Pratt
Hi Jurgen! This is excellent news. Thank you for this work! I will also look at the code to see what I can do to contribute. I think it would be great for you to post an announcement to the SQLAlchemy list. There are folks there in tune with core SQLAlchemy code that may also be able to offer

[Zope3-Users] Re: [z3-five] zope.viewlet and zope.contentprovider - options for Zope 2 and Plone 3

2006-04-09 Thread David Pratt
Hi Martin. I can think of the benefits of viewlets in for Zope2 in general, not just in Plone3 but the way they may integrate with CMF particularly. These are good questions you are asking and hopefully there will be a way to make this work sooner than later. I am very interested in how cpsskin

[Zope3-Users] Best structure for a large schema

2006-04-12 Thread David Pratt
I realize this question my be a bit off topic but I am trying to determine the best structure for storing a large schema where some attributes are lists or dictionaries. There are about 70 attributes in the schema and I am trying to choose a structure that will not necessarily have to hold a bu

[Zope3-Users] Blobs and filestream iterator

2006-04-12 Thread David Pratt
Hi. I had written a repository product in zope2 for blobs. I am looking at bringing this into Z3 at the moment and looking for equivalent for stream iterator of zpublisher. Regards, David ___ Zope3-users mailing list Zope3-users@zope.org http://mail.z

[Zope3-Users] Blobs in Z3 anyone?

2006-04-17 Thread David Pratt
Hi I had asked this question about a week ago with no response. Filesystem blobs are a valuable means of storing large object data in the filesystem instead of the ZODB. I have previously written a repository product in zope2 for blobs but would like to migrate to Z3. Does Z3 have an equivalen

[Zope3-Users] ZEO Zope3 and Twisted

2006-04-18 Thread David Pratt
Is there any plan to provide security for ZEO client / server communication using Twisted now that it is in Zope3? Many thanks Regards, David ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] ZEO Zope3 and Twisted

2006-04-19 Thread David Pratt
using Twisted that is bundled in Z3. This could also help underscore the powerful combination of Zope and Twisted frameworks in Z3. Regards, David Benji York wrote: David Pratt wrote: Is there any plan to provide security for ZEO client / server communication using Twisted now that it is in

Re: [Zope3-Users] Re: Blobs in Z3 anyone?

2006-04-19 Thread David Pratt
Thanks Phillip for this info. Regards, David Philipp von Weitershausen wrote: David Pratt wrote: Hi I had asked this question about a week ago with no response. Filesystem blobs are a valuable means of storing large object data in the filesystem instead of the ZODB. I have previously written

Re: [Zope3-Users] Re: Blobs in Z3 anyone?

2006-04-19 Thread David Pratt
support is independent of blobs. There was some talk a while back about Zope 3 implementing some form of "IResult" interface that allowed for streaming. I'm not sure where that ended up, though. I seem to remember Jim checking something in. - C On Apr 19, 2006, at 7:34 PM, David Prat

Re: [Zope3-Users] Re: Re: Blobs in Z3 anyone?

2006-04-20 Thread David Pratt
Hi Chris. This is great! I'll check this out. It would be great however if I could get a clearer picture of large file handling in Z3. Is there an equivalent IStreamIterator in Z3 or not? I am still trying to determine this from the dialog. If not, can someone please explain what had been built

Re: [Zope3-Users] Re: Re: Blobs in Z3 anyone?

2006-04-20 Thread David Pratt
Ok, great. Chris, let me know if I can help out at all on this project. Regards, David Chris McDonough wrote: In z3, apparently you just return a file from your code and the publisher knows enough to send it efficiently. - C On Apr 20, 2006, at 8:15 AM, David Pratt wrote: Hi Chris. This is

[Zope3-Users] Overriding zope.conf in zope.app.twisted.main

2006-04-21 Thread David Pratt
Hi. I am hoping someone can suggest an approach for overriding zope.conf settings for use in zope.app.twisted.main since I want this to be dynamic (based on the platform) and wish to consolidate my own apps configuration information that changes depending upon the platform. services are starte

[Zope3-Users] Send credentials in a remote request

2006-04-24 Thread David Pratt
Is there a way to send credentials in a request for remote access in zope3? I did this with: user:[EMAIL PROTECTED]://www.example.com/path/to/whatever to do this in z2 but this does not work in z3. Regards, David ___ Zope3-users mailing list Zope3-us

Re: [Zope3-Users] Send credentials in a remote request

2006-04-24 Thread David Pratt
Yikes. I guess it has been a while since I did this :-( Thanks Benji Benji York wrote: David Pratt wrote: Is there a way to send credentials in a request for remote access in zope3? I did this with: user:[EMAIL PROTECTED]://www.example.com/path/to/whatever to do this in z2 but this does

Re: [Zope3-Users] Re: ZEO Zope3 and Twisted

2006-04-24 Thread David Pratt
Hi Florent. Ok, I will post on other list. David Florent Guillaume wrote: David Pratt wrote: Is there any plan to provide security for ZEO client / server communication using Twisted now that it is in Zope3? Many thanks This belongs to the zodb-dev list really. At the moment ZEO still uses

Re: [Zope3-Users] KeyError: Surrogate

2006-04-26 Thread David Pratt
Hi Bernd. This is a bit unsettling. I realize as a practical matter, folks want their sites to run so the recommendation for zserver. It would be good to know what it is causing this problem with twisted. Anyone know how widespread this is. Anyone else with this experience. Regards, David Ber

Re: [Zope3-Users] KeyError: Surrogate

2006-04-26 Thread David Pratt
e form of object creation in Zope itself. Regards, David Bernd Dorn wrote: On 26.04.2006, at 16:52, David Pratt wrote: Hi Bernd. This is a bit unsettling. I realize as a practical matter, folks want their sites to run so the recommendation for zserver. It would be good to know what it is cau

[Zope3-Users] getUtility outside of the zope.app

2006-05-26 Thread David Pratt
Hi. For the use of interfaces outside of zope.app, does getUtility have any value? Many thanks. Regards, David ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

[Zope3-Users] Re: getUtility outside of the zope.app

2006-05-26 Thread David Pratt
Hi Philip. Sorry for the oblique question. I am using zope interfaces in a project outside of zope and looking at how I might use some of other bits of zope's functionality. Many thanks. Regards, David Philipp von Weitershausen wrote: > > David Pratt wrote: >> Hi. For the

Re: [Zope3-Users] Overriding zope.conf in zope.app.twisted.main

2006-06-01 Thread David Pratt
Stephan Richter wrote: On Friday 21 April 2006 13:11, David Pratt wrote: I hoping to feed the configuration data as dictionary or similar instead of providing a config option and file path. Many thanks. I think the startup machinery depends on the options object. You basically would have to

Re: [Zope3-Users] getUtility outside of the zope.app

2006-06-01 Thread David Pratt
Hi Stephan. For sure! Thanks for your reply. Regards, David Stephan Richter wrote: On Friday 26 May 2006 09:11, David Pratt wrote: Hi. For the use of interfaces outside of zope.app, does getUtility have any value? Many thanks. getUtility is provided by zope.component. If you use

Re: [Zope3-Users] Time Zones/Internationalization

2006-06-05 Thread David Pratt
Hi David. pytz is a standard python package included in zope that can help you manage time zone issues. There are methods to represent time that is properly offset according to a large database of global timezones. This will help you present the view of time you wish to your application's users

[Zope3-Users] twisted cred and zope authentication

2006-06-16 Thread David Pratt
Hi. Has any assembled authentication in z3 that can use a twisted cred source for principals and groups? Many thanks. Regards, David ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] SFTP , SSL

2006-06-16 Thread David Pratt
Hi Mike. Can you confirm you have pyopenssl-0.6 installed and proper paths in your config. It should look like this in your config if you are using the default files supplied. type HTTPS address 8443 privatekeypath $CONFDIR/server.pem certificatepath $CONFDIR/server.pem Just to l

Re: [Zope3-Users] SFTP , SSL

2006-06-16 Thread David Pratt
e of error handling problems)" that I found in the release notes was just the explanation I found convincing at that time. -Andreas On Fri, Jun 16, 2006 at 06:53:02PM -0300, David Pratt wrote: Hi Mike. Can you confirm you have pyopenssl-0.6 installed and proper paths in your config. It should lo

Re: Fwd: [Zope3-Users] SFTP , SSL

2006-06-22 Thread David Pratt
Hi Michael. There is DAV module in twisted in web2. I have not played with this yet but it was on my to do list. Are you using this in this development? Many thanks David Michael Kerrin wrote: I am currently have an ongoing side project to rewrite WebDAV support for zope, in order to get

Re: Re : [Zope3-Users] Using twisted spread client within zope

2006-06-22 Thread David Pratt
Hi Stephane. It is possible to use a spread client in zope. That said, I am not sure whether you are attempting to integrate the new pb (unstable) or currently stable pb. Either way, I cannot provide code for you but say that this is not trivial. It also requires conforming zope storages to int

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread David Pratt
Hi Jim. Where should this be done (separate identifier). I was thinking of a UUID of some sort when I read this which could be helpful for other things. Regards, David Jim Fulton wrote: If you do need a separate identifier of some kind, you can use a key reference or use an integer id from a

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread David Pratt
doctest-based testing practices.) Jim On Jun 26, 2006, at 6:59 AM, David Pratt wrote: Hi Jim. Where should this be done (separate identifier). I was thinking of a UUID of some sort when I read this which could be helpful for other things. Regards, David Jim Fulton wrote: If you do need a

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread David Pratt
Hi Benji. The universal part makes sense for synchronization. Maybe this is not as much of an issue for others, but I have been looking to implement a UUID solution with this in mind. Regards, David Benji York wrote: David Pratt wrote: Hi Jim. Where should this be done (separate identifier

[Zope3-Users] Role based skinning

2006-06-26 Thread David Pratt
Hi I am looking at creating a skinning situation based on roles. Admin skin would not be a full access ZMI but provide some enhanced views for a manager where I may have one or more skins based for a member and then anonymous. Some general advice on how one might best achieve this would be help

Re: [Zope3-Users] IRelationshipMapper

2006-07-07 Thread David Pratt
Hi Pete. Isn't this what relationship does or could do? http://svn.zope.org/zc.relationship/trunk/src/zc/relationship Regards, David Pete Taylor wrote: Hi all, The other day I had an interesting idea for managing complex inter-object relationships in Zope3 in a way I haven't seen done before.

Re: [Zope3-Users] Security alert: use of Through-the-Web reStructuredText

2006-07-08 Thread David Pratt
Jim Fulton wrote: Recently, a serious security flaw was found in Zope 2 due to it's improper support for allowing reStructuredText to be edited through-the-web. reStructuredText has directives that allow inclusion of any file a Zope process could read and inclusion of data obtained from fetc

Re: [Zope3-Users] Security alert: use of Through-the-Web reStructuredText

2006-07-18 Thread David Pratt
Hi Jim. I was noticing a 0.4.0-zope in distutils that looks patched with NotImplementedErrors for the offending code in docutils.parsers.rst.directives.misc. Can you when this will land in the Zope3 trunk? Regards, David Jim Fulton wrote: On Jul 8, 2006, at 11:49 AM, David Pratt wrote

Re: [Zope3-Users] Security alert: use of Through-the-Web reStructuredText

2006-07-19 Thread David Pratt
Jim Fulton wrote: On Jul 18, 2006, at 2:55 PM, David Pratt wrote: Hi Jim. I was noticing a 0.4.0-zope in distutils I don't know what you mean by this. that looks patched with NotImplementedErrors for the offending code in docutils.parsers.rst.directives.misc. Can you when this will

Re: [Zope3-Users] Security alert: use of Through-the-Web reStructuredText

2006-07-19 Thread David Pratt
Benji York wrote: David Pratt wrote: You are probably right but just the same I'd rather see the patched version for z3 also since I am certain this will become less obvious over time if it is left the way it is. Instead of maintaining a fork of docutils, Zope 3 should (and may alrea

Re: [Zope3-Users] Security alert: use of Through-the-Web reStructuredText

2006-07-19 Thread David Pratt
Benji York wrote: David Pratt wrote: What about the idea of maintaining a text file in the distribution specific to possible security issues. Is this worth considering for historical purposes so they do not get lost over time or implicitly understood by only a handful of people. Exactly

Re: [Zope3-Users] ImportError when calling runzope.

2006-07-19 Thread David Pratt
Hi Luke. It seems that you may have copied package-includes files from an instance of an older distribution to your newer one or perhaps your are trying to use an older zope instance for your newer zope version. The error is pointing to sendmail-meta.zcml as the source of your trouble. In this

[Zope3-Users] Generations and sql

2006-07-19 Thread David Pratt
I am interested in hearing from anyone who may be using generations in conjunction with relational database storages in zope3 as a means of maintaining their schemas. Does anyone have any experience with this to indicate how well this works for rdb's. Many thanks. Regards, David __

[Zope3-Users] Getting SOFTWARE_HOME

2006-07-22 Thread David Pratt
Can someone advise how get a handle of SOFTWARE_HOME on a running zope3 instance. Many thanks. Regards, David ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] Generations and sql

2006-07-22 Thread David Pratt
ul 19, 2006, at 2:48 PM, David Pratt wrote: I am interested in hearing from anyone who may be using generations in conjunction with relational database storages in zope3 as a means of maintaining their schemas. Does anyone have any experience with this to indicate how well this works for rdb&#x

Re: [Zope3-Users] zalchemy in ZMI

2006-08-09 Thread David Pratt
Hi Carlo. As a workaround to get objects into the db you can comment out the following lines in checkName like this: def checkName(self, name, container): if isinstance(name, str): name = unicode(name) elif not isinstance(name, unicode): raise TypeEr

[Zope3-Users] ZCML updating question

2006-08-10 Thread David Pratt
Hi. I am trying to update an old package. Can someone suggest an updated equivalent for the following: Many thanks. Regards, David ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-user

Re: [Zope3-Users] zalchemy integration

2006-08-12 Thread David Pratt
Hi Jeff. Your approach is very interesting. There is lots room in Zope for differences in the way applications are tackled to deliver on requirements. My feeling is that explicit object metadata and some of the content-management-esque concepts in Zope fit prominently into the future of the web

Re: [Zope3-Users] zalchemy integration

2006-08-12 Thread David Pratt
l sorts of interesting and exciting developments - to build on something that has been in fact solidifying for years now. Regards, David Jeff Shell wrote: On 8/12/06, David Pratt <[EMAIL PROTECTED]> wrote: Hi Jeff. Your approach is very interesting. There is lots room in Zope for differ

Re: [Zope3-Users] zalchemy integration

2006-08-13 Thread David Pratt
Hi Roger. This is really interesting. It would be good to see a very small demo of these nice packages you have been contributing - something that would put together the minimal layer, menu package, and a few basic viewlets just to give folks a basic idea of what can be acheived 'minimally'. A

Re: [Zope3-Users] zalchemy integration

2006-08-14 Thread David Pratt
Roger Ineichen wrote: Hi David [...] Hi Roger. This is really interesting. It would be good to see a very small demo of these nice packages you have been contributing - something that would put together the minimal layer, menu package, and a few basic viewlets just to give folks a basic ide

Re: [Zope3-Users] Blog package

2006-08-17 Thread David Pratt
Hi Florian. There is the beginning of something in the codespeak repository - but it had not been finished. One of the folks from Nuxeo started it but the schema's etc are there etc. http://codespeak.net/svn/z3/zblog/trunk/ I have looked at it and thought it would be a nice package to finish

Re: [Zope3-Users] Blog package

2006-08-17 Thread David Pratt
ephan Richter wrote: On Thursday 17 August 2006 09:37, David Pratt wrote: I have looked at it and thought it would be a nice package to finish however I haven't yet got how to perform the nice traversal tricks for nice urls for entries (I had written to the five list in July). Any poin

Re: [Zope3-Users] Blog package

2006-08-17 Thread David Pratt
Hi Stephan. Many thanks for this excellent example! :-) Regards, David Stephan Richter wrote: On Thursday 17 August 2006 10:32, David Pratt wrote: Hi Stephan. Yes, I have seen this added recently with great interest. :-) I'm hoping to experiment with this shortly to see how this works.

[Zope3-Users] zc.tables integration with Zope3

2006-08-21 Thread David Pratt
Hi. I am wondering if zc.tables could not be incorporated into Zope3 trunk. My rational for its inclusion is so that the contents views may be refactored to use it. The current contents view makes little sense without batching and sorting. The ZMI could really use this basic face lift to bring

Re: [Zope3-Users] zc.tables integration with Zope3

2006-08-22 Thread David Pratt
flexibility). I think if this is what is advocated for skinning, Zope3 ought to be presented with a default skin that uses this approach. Many thanks. Regards, David Stephan Richter wrote: On Monday 21 August 2006 15:14, David Pratt wrote: Hi. I am wondering if zc.tables could not be incorporated into

Re: [Zope3-Users] zc.tables integration with Zope3

2006-08-23 Thread David Pratt
Hi Jim. This approach is completely new to me. It is interesting and I'll keep an eye on your blog. How expensive is updating indexes with data modification. You are talking about sqlite, does this mean you figure the indexes would be a significant drag on the ZODB due their size or is this ide

Re: [Zope3-Users] z3c.extfile and ZEO ?

2006-09-06 Thread David Pratt
Thierry, you may want to consider blobs when they become generally available through zodb. It takes care of the management details for ZEO and files. Regard, David Bernd Dorn wrote: On 01.09.2006, at 15:36, Thierry Florac wrote: Hi, I just discovered the "z3c.extfile" package that I'd

[Zope3-Users] Field sets in zope3

2006-10-15 Thread David Pratt
Hi. One thing I like about django's admin interface is the ability to easily group fields in a form with dozens of fields into field sets that expand or collapse a portion of the form making it more usable. Has anyone done anything similar using formlib at this point or have any pointers on acc

[Zope3-Users] Utilities naming convention

2006-11-16 Thread David Pratt
Just a simple question of style for naming utilities. I don't like caps in urls. Is there a general convention of using CamelCase for utility names or is it just my imagination. Should I use what I prefer? Would just like to know what others do. Thanks Regards, David __

Re: [Zope3-Users] Utilities naming convention

2006-11-16 Thread David Pratt
Probably should have clarified - I am referring to Utility container names not anything to do with Python coding standards. David Pratt wrote: Just a simple question of style for naming utilities. I don't like caps in urls. Is there a general convention of using CamelCase for utility nam

Re: [Zope3-Users] Utilities naming convention

2006-11-17 Thread David Pratt
:09:52PM -0400, David Pratt wrote: Probably should have clarified - I am referring to Utility container names not anything to do with Python coding standards. None that I'm aware of. Only the title of the utility's registration matters for your application - which is ''

[Zope3-Users] Buildout query

2006-11-22 Thread David Pratt
I am just beginning to look at buildout. I want to be able to combine my z3 packages with some of z3's, also replacing some of z3's packages for customized versions of the same package. Is anyone doing this or similar yet that they might comment on how useful buildout is on anything more compli

Re: [Zope3-Users] Buildout query

2006-11-24 Thread David Pratt
ckaging is more transparent and less of a distraction for development. Many thanks. Regards, David David Pratt wrote: I am just beginning to look at buildout. I want to be able to combine my z3 packages with some of z3's, also replacing some of z3's packages for customized versions of

Re: [Zope3-Users] Buildout query

2006-11-24 Thread David Pratt
ldout machinery for a custom application. -k On Fri, 24 Nov 2006 13:57:25 -0600, David Pratt <[EMAIL PROTECTED]> wrote: It is perhaps a bit too early for this discussion. All I can say is that it is getting tougher to keep track of packages and dependencies when you want to mix and match fo

Re: [Zope3-Users] Buildout query

2006-11-24 Thread David Pratt
looks at though I need to improve my egg lingo due to the different ways of describing eggs :-) Many thanks. Regards, David David Pratt wrote: Hi Kapil. Many thanks for your reply. I will be sure to look at this. Examining a few real applications that make use of buildout should definitely

Re: [Zope3-Users] Buildout query

2006-11-25 Thread David Pratt
ldout. I guess we need a customzope.recipe :-) I'll be trying this today in any case. I would be great if someone could advise whether I am on the right track. Many thanks. Regards, David David Pratt wrote: Hi there. I downloaded documentlibrary to experiment a bit. Though I got a tr

[Zope3-Users] Zope SVN

2006-12-22 Thread David Pratt
I noticed differences in package structures in the zope repository while trying to automate a couple of repository tasks. I have worked around these already (and don't know if it really matters to anyone else). If it does, I thought I ought to communicate these - but not sure if this is the rig

[Zope3-Users] zope.app namespace packages

2006-12-26 Thread David Pratt
With the latest changes to config files to zope.app package, will each zope.app package be available soon with its own setup from the repository and released as an egg? Regards, David ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.

Re: [Zope3-Users] Re: RFC 4122 UUIDs

2007-04-05 Thread David Pratt
I also like the idea of UUIDs the way they are meant to be - which should be independent of the instance. I can imagine a further possibility to synchronize objects from independent zodb sources if this existed. The UUID generator that I have been looking at is with the Chandler project (cur

[Zope3-Users] Repozo and events

2007-04-05 Thread David Pratt
Hi. I am interested in maintaining the zope object database in a way that I can have it back up quickly and without loss if needed (locating the backup files to another machine for restoration if needed in a failure situation). I realize the normal way to use repozo is using cron to create in

[Zope3-Users] Performace production with squid

2007-04-06 Thread David Pratt
Hi. I guess I have pretty much always used to putting apache and zope together. Lately, I am trying to learn a bit more about squid. Particularly how squid, apache2 and zope3 can play together to create a high performance site. It's a big topic I realize, but I am hoping especially on the squid

Re: [Zope3-Users] Re: execution time of a request?

2007-04-07 Thread David Pratt
Hi Jurgen and Marius. Can you advise whether the profiling library is generally available and if so where to find it. Many thanks. Regards, David Jürgen Kartnaller wrote: By the way, marius, thanks for your great profiling library. ___ Zope3-users

Re: [Zope3-Users] Re: execution time of a request?

2007-04-07 Thread David Pratt
Hi Cristophe. Found it and it looks helpful for sure. Many thanks. Regards, David Christophe Combelles wrote: You can find interesting things on his blog: http://mg.pov.lt/blog/benchmarking-zope3-apps.html Christophe David Pratt a écrit : Hi Jurgen and Marius. Can you advise whether the

Re: [Zope3-Users] handling a mass of images/files

2007-04-11 Thread David Pratt
Hi Dominique. Tramline pkg provides this capability with Apache and mod_python. Alernatively, you could likely construct a paste package to handle the data as middleware. Blobs are good and data will be saved within the transaction. Regards, David Dominique Lederer wrote: hi i´m just thinki

Re: [Zope3-Users] ZEO security examples

2007-04-13 Thread David Pratt
Hi Thierry. There is a basic means of authentication built in to ZEO but it is not terribly secure. You can read about it in the zeo source. You may wish to look as Fred's zc.sshtunnel package to help you secure your communication. Regards, David Thierry Florac wrote: Hi, Maybe I'm wrong,

Re: [Zope3-Users] zope.intid and UUIDs

2007-04-17 Thread David Pratt
I like this idea of abstracting the code for ids myself. It will be interesting to hear what others have to say. Can you advise whether the UUID utility will be ZPL licensed since this is important if you are talking about something with generic functionality for z3. Many thanks. Regards, Davi

Re: [Zope3-Users] Re: zope.intid and UUIDs

2007-04-17 Thread David Pratt
. David Pratt wrote: I like this idea of abstracting the code for ids myself. It will be interesting to hear what others have to say. Can you advise whether the UUID utility will be ZPL licensed since this is important if you are talking about something with generic functionality for z3. Many thanks

[Zope3-Users] Including overrides in buildout in site.zcml for zc.zope3recipes:app

2007-04-20 Thread David Pratt
I am wondering what to do about including overrides that would have normally gone into my /etc to be used in a globally. I am using the zope3recipes. It defines an app part with an explcit site.zcml. site.zcml is used verbatim in the buildout but is also need it a layer to run functional tests

Re: [Zope3-Users] Including overrides in buildout in site.zcml for zc.zope3recipes:app

2007-04-20 Thread David Pratt
the overrides to site.zcml this way does not produce same result. Any thing else I should try? Many thanks Regards, David David Pratt wrote: I am wondering what to do about including overrides that would have normally gone into my /etc to be used in a globally. I am using the zope3recipes

Re: [Zope3-Users] Including overrides in buildout in site.zcml for zc.zope3recipes:app

2007-04-20 Thread David Pratt
My bad. This seems to do the trick. I incorrectly assumed includeOverrides would pick up the overrides file. Regards, David David Pratt wrote: Hi. Tried putting overrides.zcml in my app package. To site.zcml in my buildout I added and includeOverrides to link to the overrides.zcml in the

Re: [Zope3-Users] ZODB? PostgreSQL?

2007-04-23 Thread David Pratt
Hi. You do not have to have to sacrifice an object database to use postgres. You may wish to look at pgstorage for your backend and have best of both worlds. See: http://sourceforge.net/projects/pgstorage I am hoping to eggify this before long and bring it into a namespace package to make it

[Zope3-Users] Remote authentication

2007-05-10 Thread David Pratt
Hi. Has anyone got a bit of a blueprint for a remote authentication in zope 3. I wish to authenticate on a z3 site (site 1) using credentials stored on a different z3 site (site 2) over the Internet (otherwise would likely use LDAP). I do not want to maintain users on site 1. I only want users

Re: [Zope3-Users] Remote authentication

2007-05-10 Thread David Pratt
Hi Bernd. Yes, this should give me something similar to examine. Many thanks. Regards David Bernd Dorn wrote: as a plugin example you may want to take a look at http://svn.zope.org/ldappas/ regards, bernd On 10.05.2007, at 18:13, David Pratt wrote: Hi. Has anyone got a bit of a blueprint

Re: [Zope3-Users] Remote authentication

2007-05-11 Thread David Pratt
nn Himmelbauer wrote: Am Donnerstag, 10. Mai 2007 18:13 schrieb David Pratt: Hi. Has anyone got a bit of a blueprint for a remote authentication in zope 3. I wish to authenticate on a z3 site (site 1) using credentials stored on a different z3 site (site 2) over the Internet (otherwise would likely

Re: [Zope3-Users] Re: Remote authentication

2007-05-11 Thread David Pratt
managing users as a result. Many thanks. Regards, David Raphael Ritz wrote: David Pratt wrote: Hi Hermann. Thanks for your reply. Haven't quite decided on this but I've got things to try that might be more efficient than xmlrpc. I'm likely to attempt an authentication server w

Re: [Zope3-Users] Re: Remote authentication

2007-05-11 Thread David Pratt
Hi Maciej. I'll definitely check this out and look for docs on the plugin. It sounds very promising since it is a working solution for Z2 :-) On top of it, there ought to be good hints in Z2's PAS for doing something in Z3. Hopefully it can be worked in to some functionality for users/groups fo

Re: [Zope3-Users] Re: Remote authentication

2007-05-12 Thread David Pratt
Hi Maciej. I have been reading quite a bit about CAS today. It looks like a good way to go. Couple of questions with how you having it working in z2. Are you using LDAP as a user store with CAS. I have downloaded a few of the z2 products to study the code in the interim since a plugin for z3 wo

Re: [Zope3-Users] Re: Remote authentication

2007-05-12 Thread David Pratt
Hi Maciej. Thank you for your reply and outlining the authentication process. This does make things clearer. There are a variety of backends, I read that something as simple as reading fom a file is possible. ldappas and dl.ldapauth provide some good hints for plugins and user management from

Re: [Zope3-Users] Re: Remote authentication

2007-05-14 Thread David Pratt
Hi Maciej. I'm putting up a project today. If there is anyone else that has been following this thread that would like to contribute to a CAS solution for z3 please let me know. Just a side note that the PHP client for CAS uses sessions. I'm going to contact Martijn on the ldappas work and see

Re: [Zope3-Users] Blog naming proposals

2007-05-28 Thread David Pratt
Florian Lindner wrote: Hello, some people might have noticed I am developing a Blog package for Zope3. Since it slowly becomes functional (an older version is working at http://xgm.de) I want to release it (under an free and open source licence). Hi Florian. I hope this means ZPL so that it ca

Re: [Zope3-Users] z3c.form 1.0.0 released!

2007-05-30 Thread David Pratt
Hi Stephan and Roger. This is a great package. Thank you for this work. As far as other demos, I'd like to see a couple of things: 1) An iteration of the wizard that will not allow show submit button or allow submit until the end of all steps. 2) A demo to show how fields can be grouped. Someth

Re: [Zope3-Users] z3c.form 1.0.0 released!

2007-05-30 Thread David Pratt
way live search works (and without generating all options in the form). Regards David David Pratt wrote: Hi Stephan and Roger. This is a great package. Thank you for this work. As far as other demos, I'd like to see a couple of things: 1) An iteration of the wizard that will not allow

Re: [Zope3-dev] Re: [Zope3-Users] z3c.form 1.0.0 released!

2007-05-30 Thread David Pratt
of js can be used to collapse and expand it would be the otherpart. Unrelated to this is another small addition for the demo. This is to show a form with a couple of additional useful form buttons (another nice feature integrated in django forms) Save and add another Save and continue editin

Re: [Zope3-dev] Re: [Zope3-Users] z3c.form 1.0.0 released!

2007-05-31 Thread David Pratt
package in the way it was designed. Looks like I missed the other buttons so I am happy they are there. Many thanks for your effort on this excellent package. Regards, David Stephan Richter wrote: On Wednesday 30 May 2007 15:07, David Pratt wrote: class Admin: fields = ( (None

  1   2   >