[Zope3-Users] problem with adding a catalog

2005-04-06 Thread Adam Groszer
I'm desperately trying to get Zemantic working on Win2K/Zope3 trunk. It is written in the doc of Zemantic that I have to create a Catalog utility first. Now I'm stuck. I always get: File "C:\Python23\Lib\site-packages\zope\component\__init__.py", line 255, in getUtility raise ComponentLookup

RE: [Zope3-Users] problem with adding a catalog

2005-04-06 Thread Adam Groszer
Hello Roger, ... >Add a "Unique Id Utility" in the ++etc++site/default >and the lookup will find what it is needed. I'm sorry but there is already one added. It even gave an ID to the newly created catalog, but I still cannot register the catalog utility. I tried: Register As: "test_cat" Provide

Re: [Zope3-Users] problem with adding a catalog

2005-04-11 Thread Adam Groszer
Hello Michel, I cannot tell that the problem is with Zemantic, because I'm still stuck at the point that I cannot create a Zope catalog. A uniqueID untility I already managed to create. As soon as I'm just checking the capabilities of Zope 3 I can wait for 3.1 surely, I would appreaciate if somebo

Re[2]: [Zope3-Users] problem with adding a catalog

2005-04-11 Thread Adam Groszer
Hello Stephan, Sorry, I'm "playing" with the trunk (on Win32). First I created a uniqueID utility. Registered it. Then I created a catalog. When I wanted to register it the result is always: ... File "Y:\zope\svn_zope3\src\zope\component\__init__.py", line 255, in getUtility raise Compone

[Zope3-Users] stuck with zope.schema.Object

2005-04-14 Thread Adam Groszer
I defined an interface like this: class IBejegyzes(Interface): sablon = Text( title=u"Sablon", required=True ) implemented it: class Bejegyzes(BTreeContainer): implements(IBejegyzes, IBejegyzesContainer, IBejegyzesContained) sablon = FieldProperty(IBejegyzes

[Zope3-Users] fighting with Pluggable Authentication Utility

2005-04-15 Thread Adam Groszer
Now I have a problem with the Pluggable Authentication Utility. (win32/Zope3/trunk/30009) I have a folder(hu03), which a made a Site. In the default Site-Management Folder I created a Pluggable Authentication Utility (pauloc). Which has a SessionCredentialsPlugin (s2), a PrincipalFolder (usrloc) a

Re: [Zope3-Users] Zope3 Product directory Problem

2005-07-11 Thread Adam Groszer
Hello Shariq, Plone is a product for Zope 2.xx. Monday, July 11, 2005, 1:07:12 PM, you wrote: ss>   ss> Hi, ss>   I have download Zope3 by using Python 2.3 but i didn't find ss> any Product directory where I can install Plone. ss> How to install Plone. ss> Kindly help me, ss> Thanks in advance

Re: [Zope3-Users] Trying again...

2005-07-14 Thread Adam Groszer
Hello Chris, I'm a newbie too... but I hope I can help you. Thursday, July 14, 2005, 7:23:52 PM, you wrote: CW> Chris Withers wrote: >> >> Anyway, as a newbie, I got some questions: >> >> - What docs should I read first? I think the book of Philipp is a littlebit better for newcomers. After t

Re[2]: [Zope3-Users] can't get files using tortoiseSVN client

2005-07-16 Thread Adam Groszer
Hello aaron, You will have to enter the URL svn://svn.zope.org/repos/main/book/trunk into TortoiseSVN. That works for me. Sunday, July 17, 2005, 5:50:16 AM, you wrote: > Dear all, > I get answer from this link, > http://subversion.tigris.org/faq.html#http-301-error > so could anyone please sen

[Zope3-Users] checking zope3book examples

2005-07-17 Thread Adam Groszer
Dear All, I just checked through the messageboard sample of Stephan's book. I used win2k with python 2.3.5, Zope3 trunk version 0. checking with the tests, step10 failes with: from zope.app.file.interfaces import IFile, IFileContent ImportError: cannot import name IFileContent checking w

[Zope3-Users] How to resolve bi-directionally navigable association?

2005-08-08 Thread Adam Groszer
As the subject sais, how can I resolve bi-directionally navigable association in Z3? Both objects have to have references of each other, that means that also the schemas have to have references. class IItem(interface): unit = Object( title=u"Unit", description=u"Unit",

Re: [Zope3-Users] How to resolve bi-directionally navigable association? (Corrections)

2005-08-08 Thread Adam Groszer
Corrections: Monday, August 8, 2005, 11:45:56 AM, I wrote: > The only way I found is defining a dummy interface before the other: Actually that does not work, because the dummy IUnit and the real IUnit is not the same and IItem stores the wrong one. This failes on validations. Now I don't have

Re[2]: [Zope3-Users] How to resolve bi-directionally navigable association?

2005-08-08 Thread Adam Groszer
Hello Douglas, Monday, August 8, 2005, 5:53:54 PM, you wrote: > Adam: > You should look at the Zope 3 Developer's Handbook. Maybe this part: > 13.3 Step III: Writing the interfaces > http://www.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/Zope3Book/contentobject.html > could help you

Re: [Zope3-Users] schema constraint sets required?

2005-08-22 Thread Adam Groszer
To answer my own question :-) No, but required is True by default. And even the constraint gets called only the value is filled. Sorry for the noise ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

[Zope3-Users] schema constraint sets required?

2005-08-22 Thread Adam Groszer
I'd like to check a field if it is a valid e-mail address. It can be also empty. The first trial was: class ISzemely(Interface): ... email = TextLine( title=u"Email cim", description=u"Email cim", constraint=re.compile("(^[\w\W]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{

[Zope3-Users] How to do addform+addmenuitem 'manually'

2005-08-24 Thread Adam Groszer
I would like to change the automatically generated forms to template based one's, but I'm stuck at the configuration. I think I need something like this: but the addmenuitem I cannot manage, Please help -- Best regards, Adam mailto:[EMAIL PROTECTED] __

Re: [Zope3-Users] Re: How to do addform+addmenuitem 'manually'

2005-08-25 Thread Adam Groszer
Gosh, I think I was too tired. To answer my own question, the simplest solution is: because browser:addform has a class and template attribute. Wednesday, August 24, 2005, 8:32:38 PM, you wrote: > Adam Groszer wrote: >> I would like to change the automatically genera

Re: [Zope3-Users] stuck with zope.schema.List and subwidget

2005-08-26 Thread Adam Groszer
Hello Christian, I'm having almost the same problems with a 'simple' OrderedMultiSelectWidget. Look for the subject "problems with " on the list [Zope3-dev]. Saturday, August 27, 2005, 1:01:04 AM, you wrote: > Hi! > Did anyone ever test or succeed using the subwidget-directive of > zope.app.for

Re: [Zope3-Users] Using building blocks for forms

2005-09-02 Thread Adam Groszer
Hello Florian, Have a look at \src\zope\app\form\browser\add.pt. There are several slots defined and macros used. Another way is to define a 'fake' schema for the input and store the data to the real object in the createAndAdd method. Friday, September 2, 2005, 4:56:07 PM, you wrote: > Hello, >

Re: [Zope3-Users] Calling createAndAdd with different object id

2005-09-10 Thread Adam Groszer
Hello Florian, I suggest you download the examples for Philipp's book from http://worldcookery.com/files/examples-1.0.tgz Have a look at \examples-1.0\14containers\folder.py. Saturday, September 10, 2005, 5:05:26 PM, you wrote: > Hello, > I want to override the createAndAdd method mothed in a vi

Re[2]: [Zope3-Users] Calling createAndAdd with different object id

2005-09-11 Thread Adam Groszer
\container\browser\adding.py and \src\zope\app\container\interfaces.py, IAdding interface. The above are not tested, so... Sunday, September 11, 2005, 11:01:05 AM, you wrote: > Am Samstag, 10. September 2005 18:53 schrieb Adam Groszer: >> Hello Florian, >> >> I suggest you down

Re: [Zope3-Users] Problem importing zope modules from /usr/local/zope3Instance/lib/python/productname folder

2005-10-07 Thread Adam Groszer
Hello Ronald, I would say that either you have to put your zope source in the PYTHONPATH or copy/link the same into the site-packages folder. Friday, October 7, 2005, 7:28:08 PM, you wrote: > In chapter 4 of Philipp's book, he runs the python interpreter from > the command line and imports seve

[Zope3-Users] index.html

2005-12-09 Thread Adam Groszer
I register a page with the following zcml: I can access it only through .../person01/@@index.html. What am I missing? What do I have to do to access it as .../person01/index.html? -- Best regards, Adam mailto:[EMAIL PROTECTED] -- Quote of the day: Plans are only

Re: [Zope3-Users] Re: index.html

2005-12-09 Thread Adam Groszer
Hello Jeff, Strange, now it's working, but I think I did not modify anything. Maybe I missed a restart... Friday, December 9, 2005, 12:21:47 PM, you wrote: JR> Adam Groszer wrote: >> I register a page with the following zcml: >> > name="index.html" &

Re: [Zope3-Users] SQLObject and SQLOS question

2006-01-03 Thread Adam Groszer
Hello Roman, Have a look at http://codespeak.net/svn/z3/sqlos/trunk/doc/examples/sqlos_sample/ Tuesday, January 3, 2006, 11:45:57 AM, you wrote: > Hi! > I am new both to Zope3 and SQLObject, but they seem (from the > descriptions) to be natural fit. My problem is getting them work together. >

Re: [Zope3-Users] Convert from string to class

2006-01-18 Thread Adam Groszer
Hello Florian, There is a full-blow method for that in src\zope\configuration\config.py in the class ConfigurationContext called resolve. Tuesday, January 17, 2006, 11:10:12 PM, you wrote: > Hello, > I've a string like "zope.app.folder.Folder" and I want to get the class > zope.app.folder.Folder

[Zope3-Users] Z3 widgets overview

2006-02-03 Thread Adam Groszer
Hello, I had some time to finalize the widgets overview. You can download it from here in various formats: http://www.zope.org/Members/adamg/widget -- Best regards, Adam mailto:[EMAIL PROTECTED] -- Quote of the day: A journey of a thousand miles begins with a cash adv

Re[2]: [Zope3-Users] Debugger for Zope 3

2006-04-26 Thread Adam Groszer
Hi, If we are coming to commercial IDEs then Komodo is also a good choice for debugging. You just have to put it's dbgp module on the PYTHONPATH and use the below small script to avoid some irritating deprecation mesages. After this, you put brk() in you code and it will stop there. After it was

[Zope3-Users] [ANN] win32-trunk-pyds

2006-05-18 Thread Adam Groszer
Hello *, I just put the compiled pyd's for win32 users to http://www.zope.org/Products/Zope3/, into a relase called 'Trunk'. -- Best regards, Adam mailto:[EMAIL PROTECTED] -- Quote of the day: I pronounce it as certain that there was never a truly great man that was not

[Zope3-Users] Re[2]: [Zope3-dev] [ANN] win32-trunk-pyds

2006-05-20 Thread Adam Groszer
Hi Tim, Sorry for this small confusion. If you don't mind, I'll do it. (The thing started as I became the compiler of the win32 release and the pyd's are just a by-product of the release.) I'll do my best to keep it up to date, but if I should miss something, please drop a mail. Friday, May 19,

Re: [Zope3-Users] Zope3 workflow ?

2006-07-17 Thread Adam Groszer
Hello Thierry, http://svn.zope.org/Zope3/trunk/src/zope/wfmc/ and http://svn.z3lab.org/trac/z3lab/browser/z3ecm/trunk/src/ecm/workflow Monday, July 17, 2006, 5:25:07 PM, you wrote: > Hi, I'm looking for components to support workflows in Zope3. I've read into Zope3 Developer's Handbook a wh

Re[2]: [Zope3-Users] zalchemy integration

2006-08-14 Thread Adam Groszer
Hello Stephan, Monday, August 14, 2006, 12:08:27 PM, you wrote: SR> We were on schedule and delivered an application above expectations. SR> BTW, I hope I will get a case study out in the next few weeks. Great, I'd love to read that. -- Best regards, Groszer Adam -- Quote of the day: Ah, bu

Re: [Zope3-Users] Installing Zope3 on Windows

2006-08-25 Thread Adam Groszer
Hello Catonano, Just uploaded a win32 installer and the pyds. Friday, August 25, 2006, 5:01:37 PM, you wrote: c> Hello people, c> I downloaded the 3.2.1 version from http://zope.org/Products/Zope3 c> but it has no windows installer. c> the previous 3.2.o has it. c> That is, the last version

Re: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Adam Groszer
Hello Roger, u, yes squid/2.5.STABLE6 says: While trying to retrieve the URL: http://www.zope.org/ The following error was encountered: Connection Failed The system returned: (111) Connection refused Tuesday, October 10, 2006, 3:35:34 PM, you wrote: RI> Hi RI> Can somebody confirm

Re[2]: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Adam Groszer
ZE rcvd: 122 Tuesday, October 10, 2006, 3:58:56 PM, you wrote: BY> Adam Groszer wrote: >> squid/2.5.STABLE6 says: >> While trying to retrieve the URL: http://www.zope.org/ >> >> The following error was encountered: >> Connection Failed >> >> The sys

Re: [Zope3-Users] Needed help with zc.table selection column

2006-11-15 Thread Adam Groszer
Hello Thierry, Use something like this: sels = self.columns[0].getSelected(self.list_data, self.request) Then sels will contain your objects as a list. Wednesday, November 15, 2006, 12:17:46 PM, you wrote: TF> Hi, TF> I'm using zc.table to handle simple lists of items to replace the TF> stan

Re: [Zope3-Users] zope 3.3 on windows can't create pages

2006-11-28 Thread Adam Groszer
Hello Anton, That's a small incompatibility between python 2.4.4 and Zope 3.3. You can use python 2.4.3 to work around that. The fix for Zope is there but only in the svn yet. Monday, November 27, 2006, 10:51:48 PM, you wrote: > Hi, > I have a win2k sp4 PC. > I installed: > - python 2.4.4 > -

Re[2]: [Zope3-Users] Re: UnicodeEncodeErrors from zope/app/maildir.py

2006-11-29 Thread Adam Groszer
Hello Rupert, I'm not a mail+RFC expert, but I would try to pass the content encoded as UTF-8 and set the headers accordingly. Wednesday, November 29, 2006, 1:28:41 PM, you wrote: RR> Raphael Ritz wrote: >> Well, there are the "officials" like: >> >> http://unicode.org >> http://en.wiki

Re[2]: [Zope3-Users] Custom Image Widget

2006-12-14 Thread Adam Groszer
Hi Adam, I would try to figure out how the data gets extracted when it gets displayed. Something like _getCurrentValue. Or better, have a look at hurry.file. It uses a session variable or hidden input to solve your problem. And well, thinking further, hurry.file might be _the_ solution for you.

Re: [Zope3-Users] 'exceptions.TypeError: can't pickle Checker objects' in zope.scheduler task in transaction.commit()

2007-02-13 Thread Adam Groszer
Hello Alek, 'can't pickle Checker objects' happened to me, when I tried to write a security proxied object to the ZODB. Monday, February 12, 2007, 4:49:01 PM, you wrote: AK> Hello, AK> I finally managed to access local components from zope.scheduler, but I felt to AK> another, even worse troub

Re: [Zope3-Users] Configure.zcml In Hello World Video On WorldCookery.Com Doesn't Work

2007-02-16 Thread Adam Groszer
Hello Jonathan, A quick guess: for="zope.app.container.interfaces.Icontainer" is for="zope.app.container.interfaces.IContainer" Friday, February 16, 2007, 5:24:22 PM, you wrote: > Here is my configure.zcml file, which is identical to the one Paul Everitt > says to write: > http://namespaces.zo

Re[2]: [Zope3-Users] Design question (object or interface for category implementation?)

2007-03-09 Thread Adam Groszer
Hello, directlyProvides is surely persistent. "Make a site" works like this. zope.interface.directlyProvides( self, interfaces.ISite, zope.interface.directlyProvidedBy(self)) Friday, March 9, 2007, 3:30:46 PM, you wrote: GM> Christophe Combelles wrote: >> Christophe Comb

[Zope3-Users] Re: [Zope3-dev] Community opinion about workflow engine

2007-03-13 Thread Adam Groszer
Hello Godefroid, I'm having a bit biased view, because I know just zope.wfmc and have the luck developing a pure Z3 application. I think with zope.wfmc you have - WFMC/XPDL support, you can shine with standards and big companies love standards - because it's XPDL support there's a graphical proce

Re[2]: [Zope3-Users] correct display of Text field in a view

2007-03-14 Thread Adam Groszer
Hello Ivan, I don't think that you'll need IMultiLineText and MultiLineText. That's why IText and Text are there for. You'll have to register the widget for IText or use it directly in your view with CustomWidgetFactory. In fact it's a good question why Z3 doesn't provide such a widget for Text.

[Zope3-Users] Community opinion about search+filter

2007-03-14 Thread Adam Groszer
Hello, I'd like to ask your opinion, your experiences about searching and filtering in quite large object DBs. We need to add search and filter functions to our current app, where the user might be able to create quite _sophisticated_ filter criterias. (The app is a pure Z3 app, subject is documen

Re: [Zope3-Users] Sorry about that last email

2007-05-11 Thread Adam Groszer
Hello Greg, Quite easily, you can write: contains('mypackage.package.IReport') That gets not resolved at import time. Friday, May 11, 2007, 1:43:44 PM, you wrote: GB> Hrm, it appears that ctrl-enter in kmail actually sends emails... Sorry about GB> that last one.. GB> Anyway, my question: G

Re: [Zope3-Users] Utility for removing unneeded import statements

2007-06-05 Thread Adam Groszer
Hello Hermann, Z3 has an importchecker: """Import checker This utility finds unused imports in Python modules. Its output is grep-like and thus emacs-friendly. ... Althought pyflakes works for me better. http://www.divmod.org/projects/pyflakes Tuesday, June 5, 2007, 12:50:40 PM, you wrote: >

Re[2]: [Zope3-Users] Utility for removing unneeded import statements

2007-06-05 Thread Adam Groszer
Hello Marius, Tuesday, June 5, 2007, 6:03:52 PM, you wrote: > pyflakes doesn't handle imports that are used by doctests only, e.g.: ... > Can the import checker in Z3 handle this? I don't think so. As I remember it did not find all unnecessary imports, that's why I switched to pyflakes. -- Be

Re: [Zope3-Users] Custom Schemas, form widgets

2007-07-03 Thread Adam Groszer
Hello Hermann, Look for z3c.schema, z3c.widget. There are some. Sometimes google spits out some usable third party packages too. Tuesday, July 3, 2007, 1:32:26 PM, you wrote: > Hi, > I wonder if there's a package that extends Zope's schemas and widgets as Zope > covers only basic ones. > There

Re: [Zope3-Users] Zope3 PID file ?

2007-07-17 Thread Adam Groszer
Hello Thierry, What about "zopectl logreopen"? Tuesday, July 17, 2007, 11:17:50 AM, you wrote: TF> Hi, TF> I need to write scripts to handle Zope3 logfiles rotation. TF> But I can't find any PID file for the running instance. TF> Do I have to call for Zope restart or is there any other way wh

Re: [Zope3-Users] How to access "request" variable from vocabulary

2007-08-06 Thread Adam Groszer
Hello Hermann, I'm using something like this: def getCurrentRequest(): return getInteraction().participations[0] Monday, August 6, 2007, 6:32:16 PM, you wrote: > Hi, > I have a simple function that is registered a vocabulary for a Choice-widget. > My problem is that the vocabulary should

Re: [Zope3-Users] possible bug in zope\app\authentication\principalfolder.py

2007-08-09 Thread Adam Groszer
Hello Shailesh, Which version of Z3 re you using? As I remember that was fixed, but I can't dig the info from SVN. Tuesday, August 7, 2007, 5:28:02 PM, you wrote: > Hi, > I was using InternalPrincipal object and specified a password with > non-ascii characters. Since Password is derived from T

Re[2]: [Zope3-Users] possible bug in zope\app\authentication\principalfolder.py

2007-08-09 Thread Adam Groszer
Hello Shailesh, As I remember the fix was later. Thursday, August 9, 2007, 10:51:18 AM, you wrote: > I have Zope 3.3.1 the official release. > With regards, > -Shailesh > On 8/9/07, Adam Groszer <[EMAIL PROTECTED]> wrote: >> Hello Shailesh, >> >> Which

Re: [Zope3-Users] Overriding cssClass on all input widgets

2007-08-24 Thread Adam Groszer
Hello Greg, You can do your own widgets where you just override the cssClass property, then in an overrides.zcml you register them instead of the stock widgets. See zope.app.form.browser/configure.zcml. An alternative way could be to create a new zope skin and adapdt your css according to what the

Re[2]: [Zope3-Users] How do I get the value of security proxied attributes from a view template

2007-08-25 Thread Adam Groszer
Hello Yuan, Try to add some security declaration to decimal.Decimal instead of using removeSecurityProxy. something like this (untested): Saturday, August 25, 2007, 1:59:26 PM, you wrote: > On 8/24/07, Andreas Reuleaux <[EMAIL PROTECTED]> wrote: >> from zope.security.proxy import r

Re[2]: [Zope3-Users] most useful zope 3 libraries

2007-09-04 Thread Adam Groszer
Hello Christophe, Something like this was proposed by Stephan some 1.5 year ago. He did some quite detailed specs for it. Tuesday, September 4, 2007, 8:45:15 AM, you wrote: > Carlos de la Guardia a écrit : >> Hi, >> >> the other day I commented on my blog [1] about the lack of information >> on

Re: [Zope3-Users] Implementing a DropdownWidget for a country-code vocabulary

2007-09-15 Thread Adam Groszer
Hello Jesper, That should be solved already. Look for z3c.widget.country. svn://svn.zope.org/repos/main/z3c.widget/trunk/src/z3c/widget/country Saturday, September 15, 2007, 6:08:19 PM, you wrote: > Hello! I'm trying to implement a DropdownWidget for my country list. In my app i'd like

Re: [Zope3-Users] Vocabulary, unicode

2008-01-07 Thread Adam Groszer
this? KS> ___ KS> Zope3-users mailing list KS> Zope3-users@zope.org KS> http://mail.zope.org/mailman/listinfo/zope3-users -- Best regards, Adam Groszermailto:[EMAIL PROTECTED] -- Quote of the day: Not only is there no Go

Re: [Zope3-Users] Cloning interfaces/interface fields - how?

2008-02-19 Thread Adam Groszer
) Where newfields is a dict with keys of name and values of fields (deepcopied). -- Best regards, Adam Groszermailto:[EMAIL PROTECTED] -- Quote of the day: You can easily judge the character of a man by how he treats those who can do n

Re: [Zope3-Users] Zope3 packages inside a standalone application

2008-04-03 Thread Adam GROSZER
; Please note that I'm not yet a zope3 expert and I didn't run tests on MDF> this setup, but it seems to work. MDF> Thanks MDF> ___ MDF> Zope3-users mailing list MDF> Zope3-users@zope.org MDF> http://mail.zope.org/mailman/listi

[Zope3-Users] bsquare'ing

2008-04-03 Thread Adam GROSZER
slavePortnum'] = 8989 -c['change_source'] = SVNPoller(svn_url, split_file=split_file, pollinterval=30) +if poller: + c['change_source'] = poller +else: + c['change_source'] = SVNPoller(svn_url, svnuser=svnsuer, svnpasswd=s

[Zope3-Users] Re[2]: [Zope-dev] bsquare'ing

2008-04-03 Thread Adam GROSZER
program finished with exit code 127 Thursday, April 3, 2008, 2:21:50 PM, you wrote: BY> Adam GROSZER wrote: >> We used to issue "python2.4 bootstrap.py", >> "buildout bootstrap ." gives an error, unless I'm missing something. BY> I'm not famil

Re[2]: [Zope3-Users] bsquare'ing

2008-04-03 Thread Adam GROSZER
but haven't had a lot PC> of time. PC> - Paul PC> On Apr 3, 2008, at 3:39 AM, Adam GROSZER <[EMAIL PROTECTED]> wrote: >> Hello, >> >> I'm trying to setup a buildbot here for our buildout based packages. >> >> What I don't get is,

[Zope3-Users] testing a meta-egg

2008-04-04 Thread Adam GROSZER
?test??] Seems like buildout "knows" which eggs should be there. This would be needed for a pre-installation test on the target system. We need to make sure that all tests pass before going into production. Any help is appreciated. -- Best regards, Adam GROSZER

[Zope3-Users] Re[2]: [Zope-dev] testing a meta-egg

2008-04-04 Thread Adam GROSZER
give some hints how to dig that information out in he recipe? JF> Jim JF> -- JF> Jim Fulton JF> Zope Corporation -- Best regards, Adam GROSZERmailto:[EMAIL PROTECTED] -- Quote of the day: "Would you tell me, please, which way I ought to go from he

[Zope3-Users] Re[4]: [Zope-dev] testing a meta-egg

2008-04-04 Thread Adam GROSZER
JF> don't have. For example, some packages might have test dependencies JF> that you haven't included. There is no standard way of specifying JF> test dependencies for installed distributions. JF> In general, I find implicitly including packages for testi

Re: [Zope3-Users] Pure python packages for zope.component and zope.interface

2008-04-19 Thread Adam GROSZER
ards, DC> Darryl DC> [1] http://www.muthukadan.net/docs/zca.html DC> [2] http://blog.ianbicking.org/2008/04/13/app-engine-and-pylons/ -- Best regards, Adam GROSZERmailto:[EMAIL PROTECTED] -- Quote of the day: Any fool can crit

[Zope3-Users] zope.i18n.locales and currency

2008-05-23 Thread Adam GROSZER
Hello, Which is the sane to format currencies? locale.numbers.getFormatter('currency').format(value) Holds something like: ¤1,000,000.00 Should I simply replace "¤" with the currency sign or is there a better way? -- Best regards, Adam GROSZER

Re: [Zope3-Users] thoughts about z3c.form-package

2008-10-08 Thread Adam GROSZER
Hey Roger, Yes, you're right, thanks for the explanation. Wednesday, October 8, 2008, 3:32:04 PM, you wrote: RI> Hi Tim, Adam >> Betreff: Re: [Zope3-Users] thoughts about z3c.form-package >> >> On Wed, 2008-10-08 at 06:25 +0200, Roger Ineichen wrote: >> &

Re: [Zope3-Users] thoughts about z3c.form-package

2008-10-08 Thread Adam GROSZER
ally those 3,4 levels sound like you'd need some sort of subforms or even separated forms for those. (I say that without having a look at your interfaces) -- Best regards, Adam GROSZERmailto:[EMAIL PROTECTED] -- Quote of the day: All changes, even the most lon

Re: [Zope3-Users] unregister, delete and pack, still no gc?

2008-12-23 Thread Adam GROSZER
pack the ZODB. RM> I have also attached a selenium test that performs all of this. -- Best regards, Adam GROSZERmailto:agros...@gmail.com -- Quote of the day: "I must do something" will always solve more problems than "Something must be done.&q

Re: [Zope3-Users] Overriding l10n?

2009-01-20 Thread Adam GROSZER
nery and I can't figure out how to accomplish the same task. -- Best regards, Adam GROSZERmailto:agros...@gmail.com -- Quote of the day: This fortune is inoperative. Please try another. ___ Zope3-users ma

Re: [Zope3-Users] [ZCML] Issue with conflicting browser:page decl

2009-08-04 Thread Adam GROSZER
AJ> line 6.2-12.8 AJ> name="list.html" AJ> for="dateable.chronos.interfaces.ICalendarEnhanced" AJ> permission="dateable.chronos.ViewContent" AJ> class="idg.theme.browser.events.EventListingView" AJ

Re: [Zope3-Users] zcml conflict in new eggs (logout.html)

2009-10-05 Thread Adam GROSZER
permission="zope.Public" h> h> allowed_interface="zope.app.publisher.interfaces.http.ILogout" h> /> h> ___ h> Zope3-users mailing list h> Zope3-users@zope.org h> https://mail.zope.

Re: [Zope3-Users] threads, pool size and cache recommendations (quad core)

2009-12-16 Thread Adam GROSZER
t; application, RM> kind of data etc. RM> RM> - -aj RM> -BEGIN PGP SIGNATURE- RM> Version: GnuPG v1.4.10 (Darwin) RM> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ RM> RM> iEYEARECAAYFAkso4IUACgkQCJIWIbr9KYxrTQCePlLWkkBhL4JmTIQuVWTh/BDO

[Zope3-Users] [ANN] Zope 3.4.1b1 KGS released

2010-05-11 Thread Adam GROSZER
final 3.4.1 on May 23rd. -- Best regards, Adam GROSZER mailto:agros...@gmail.com -- Quote of the day: Sin can bring pleasure, but never happiness. - R.C. Sproul ___ Zope3-users mailing list Zope3-users@zope.org https://mail.zop

[Zope3-Users] [ANN] Zope 3.4.1b2 KGS released

2010-05-17 Thread Adam GROSZER
Hello, It's available here: http://download.zope.org/zope3.4/3.4.1b2/index.html Docs and changelog should be now up to date. Schedule is to have a 3.4.1c1 on May 21th, final 3.4.1 on May 28th. -- Best regards, Adam GROSZER mailto:agros...@gmail.com -- Quote o

[Zope3-Users] Zope 3.4.1 KGS released!

2010-06-24 Thread Adam GROSZER
== Zope 3.4.1 Released! == June 22, 2010 - The Zope 3 development team announces the Zope 3.4.1 release. The 3.4.1 is the long awaited next bugfix version of 3.4.0. Major changes ~ - setuptools update to 0.6c11, so that it supports svn 1.6. -

Re: [Zope3-Users] Zope 3.4.1 KGS released!

2010-06-25 Thread Adam GROSZER
Hello Thierry, I think it is available: http://pypi.python.org/pypi/zope.configuration/3.4.1 Friday, June 25, 2010, 2:50:19 PM, you wrote: TF> Le jeudi 24 juin 2010, TF> Adam GROSZER a écri

Re: [Zope3-Users] Accessing raw post data

2010-07-22 Thread Adam GROSZER
ES> Your help would be really appreciated ES> Regards, ES> Edoardo Serra ES> SATISFLY Limited ES> 66/F The Center ES> 99 Queen's Road Central ES> Hong Kong ES> http://www.satisfly.com/airline ES> ___ ES> Zope3-users mai

Re: [Zope3-Users] Accessing raw post data

2010-08-25 Thread Adam GROSZER
pt and the file ES> content is passed in the request body. ES> Do you know how to handle that? ES> Thanks ES> Edoardo ES> On Jul 22, 2010, at 11:02 AM, Adam GROSZER wrote: >> Hello Edoardo, >> >> You might be interested in z3c.json, z3c.jsonrpc. >>

Re: [Zope3-Users] Accessing raw post data

2010-08-27 Thread Adam GROSZER
ng a file upload through javascript and the file content is passed >> in the request body. >> >> Do you know how to handle that? >> >> Thanks >> >> Edoardo >> >> On Jul 22, 2010, at 11:02 AM, Adam GROSZER wrote: >> >>> Hello

Re: [Zope3-Users] Zope3-users Digest, Vol 71, Issue 5

2010-10-21 Thread Adam GROSZER
uot; da> /> da> + da> + da> da>It would be great if this patch could make it into the next version of da> z3c.form, or into a small patch release. da> Kind regards, da> --Toni++ da> -- da> _

Re: [Zope3-Users] MemoryError Evolving a ZODB

2012-12-11 Thread Adam GROSZER
after some iterations (10k?, depends on your object sizes) helps usually: def forceSavepoint(anyPersistentObject=None): transaction.savepoint(optimistic=True) if anyPersistentObject is not None: #and clear picklecache conn = anyPersistentObject._p_jar conn.cacheGC(

Re: [Zope3-Users] MemoryError Evolving a ZODB

2012-12-12 Thread Adam GROSZER
it's called) reveal something? Could it be something about objects with circular references not being able to be garbage-collected? The objects in my DB are quite complex, so something like that might actually be happening. Adam Groszer-3 wrote: Well it loads too many objects in a single tran