Re: [Zope3-Users] Where do people put Zope 3 components that they wish to share?

2007-03-18 Thread TAHARA Yusei
Hi, You can find packages at zope.org repository or cheeseshop in python.org. subversion repository http://svn.zope.org/ cheeseshop http://cheeseshop.python.org/pypi?:action=browse&show=all&c=515 -- Yusei Tahara ___ Zope3-users mailing list Zope3-user

Re: [Zope3-Users] newbie database adapter questions

2007-02-01 Thread TAHARA Yusei
Hi. You can use z3c.zalchemy or sqlos(sqlobject wrapper) for OR mapping. zalchemy http://svn.zope.org/z3c.zalchemy/trunk/src/z3c/zalchemy/ sqlos http://codespeak.net/z3/sqlos/ Thanks. -- Yusei TAHARA ___ Zope3-users mailing list Zope3-users@zope.org

Re: [Zope3-Users] ComponentLookupError

2006-12-13 Thread TAHARA Yusei
decimalwidget.widget.Decimal", but I think you need to define input widget for interface of decimal field by ZCML. -- TAHARA Yusei ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] schema field for an Image?

2006-12-06 Thread Tahara Yusei
nd there is widget subdirective in addform/editform directives in zcml. -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] Re: Registering adapter for ListSequence widget in tests

2006-09-06 Thread TAHARA Yusei
At Wed, 06 Sep 2006 09:29:15 +0200, Philipp von Weitershausen wrote: > > TAHARA Yusei wrote: > > I think you should use zope.app.testing.ztapi.provideAdapter instead. > > No! ztapi.provideAdapter is discouraged. zope.component.provideAdapter > is the recommended spelling.

Re: [Zope3-Users] Registering adapter for ListSequence widget in tests

2006-09-05 Thread TAHARA Yusei
Hi. I think you should use zope.app.testing.ztapi.provideAdapter instead. See zope/app/form/browser/tests/test_objectwidget.py, this is a good example. -- TAHARA Yusei ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman

Re: [Zope3-Users] newbie problem

2006-09-02 Thread TAHARA Yusei
Hi. You should use "svn://" instead of "http://";. svn co svn://svn.zope.org/repos/main/z3c.zalchemy/trunk -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] How to make content object return a view?

2006-05-25 Thread TAHARA Yusei
ce and IBrowserRequest interface, example below: zapi.getMultiAdapter((content, request), IBrowserView, name='index.html') I recommend to read src/zope/interface/adapter.txt. It is a very good documentation for adapter and zope component architecture. Regards,

Re: [Zope3-Users] Oracle Adapter

2006-04-26 Thread TAHARA Yusei
Hi. > there is an Oracle database adapter available? Yes, here http://svn.zope.org/cxoracleda/trunk/ -- Yusei Tahara ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] session id

2006-01-02 Thread TAHARA Yusei
LY using a .pt file? How about make a tales namespace for session api? Regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] Re: browser:page and zope.formlib to replace browser:addform?

2005-12-18 Thread TAHARA Yusei
.interfaces.IPageForm) and configuration:: template:: Best regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] newbie: can't find ZopeTop

2005-12-08 Thread TAHARA Yusei
> loacalhost:9080" > > do i need to fiddle with something ? > cheers > rich Can you show us your zope.conf? If you want to use port 9080, you should configure zope.conf as shown below. type HTTP address 9080 Best Regards, -- TAHARA Yusei [EMAIL PROTECTED] ___

Re: [Zope3-Users] MessageBoard tutorial deprecation warnings

2005-11-02 Thread TAHARA Yusei
low is no longer supported in zope3. this is a disscusion about stateful workflow. http://mail.zope.org/pipermail/zope3-dev/2005-October/015997.html Best Regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] Any document for use ZopeDatabaseAdapter?

2005-10-29 Thread TAHARA Yusei
name=name)) self.request.response.redirect('@@list.html') Best Regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] Where is the apidoc?

2005-10-23 Thread TAHARA Yusei
us the error message? Best Regards, -- Tahara yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] catalog indexing adapter interfaces

2005-10-22 Thread TAHARA Yusei
. catalog has event subscribers in zope/app/catalog/configure.zcml and does automatic indexing for adaptable objects. Best Regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] How to allow one user to access only his object

2005-10-22 Thread TAHARA Yusei
GE_NAME] password = request.get('password') if password is None: password = session.get('password') message = getMessage(context, password) # please implement this:) session['password'] = password

Re: [Zope3-Users] How to allow one user to access only his object

2005-10-21 Thread TAHARA Yusei
oardTraverser works well, you can protect "edit.html" from invalid access. Best Regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] How to allow one user to access only his object

2005-10-20 Thread TAHARA Yusei
7;: # verify password and return a message or raise NotFoundError. I referred a zwiki's traverser implementation. Best Regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

Re: [Zope3-Users] How to pass an added object to redirected page

2005-10-20 Thread TAHARA Yusei
return self.next_url Best Regards, -- Tahara Yusei [EMAIL PROTECTED] ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users