[Zope] how can you tell who created an object in Zope?

2000-12-17 Thread Chalu Kim
I have started building asset management/role-based publishing system for multimedia application. It struck me that I could not tell who created objects in the first place. I see in undoable_transaction "user_name" by following UndoForm. I was building author into a few Z classes we fashioned

RE: [Zope] LoginManager - logging out

2000-12-17 Thread Chalu Kim
No, you are right. It does not work. It is because LM's default login method is Basic. Basic logout does not work because of Basic authentication and that the browser caches the credential. This means unless you shut down your browser, whatever you do, you are back to square one. The remedy is

[Zope] Re: Questions

2000-12-02 Thread Chalu Kim
Thin Zope SA fits 19 inch rack which is standard with most racks and ISP specification. ISPs where this rack works; Exodus, UUnet, Global Crossing, Imagenex and most ISPs The rack is for telephony spec which is shorter than most so that you can pack more horizontally according to telephone

Re: [Zope] j2ee zope

2000-11-25 Thread Chalu Kim
alan runyan wrote: Ender pretty much summed everything I could say about J2EE and Zope. but I can tell you why we chose EJB/BEA at our company rather than something like ZOPE/OpenMerchant/PHP/etc. 1. we are consulting firm and we need to be able to leave a client. ZOPE could (at the

Re: [Zope] Newbie Question

2000-11-24 Thread Chalu Kim
dtml-with myFolder dtml-in "objectValues(['DTML Document',])" dtml-var "_['sequence-item']" /dtml-in /dtml-with Dany Rioux wrote: I'm probably just being dumb... :) PASTE-- dtml-var standard_html_header p dtml-with News dtml-in objectValues /dtml-in /dtml-with

Re: [Zope] how to get the created table names

2000-11-24 Thread Chalu Kim
There is no tag that shows tables and there will be not be such tag. What you might want to look into ; ZnolkWizard.. This is a handy module which queries for tables in your database and build create/edit/delete forms. There is also a handy way to specify key-related data. This gets you half

Re: [Zope] Objection to Python Script Name

2000-11-24 Thread Chalu Kim
Michel Pelletier wrote: Jason Cunliffe wrote: 2. Fixes the OReilly book in some sensible manner - add highly legible note on Page 1, update the index in useful manner to catch the differences. Oh I'll be doing that one, no worries there. 3. Will explain to me 100% clearly what

Re: [Zope] Quota in Zope

2000-11-24 Thread Chalu Kim
Hmmm, Sounds like disk quota. Homesteading anyone? Andy McKay wrote: A quota of what where? - Original Message - From: "Stephan Goeldi" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 24, 2000 7:50 PM Subject: [Zope] Quota in Zope Is there a way to do

Re: [Zope] Python and EJB (J2EE)

2000-11-24 Thread Chalu Kim
Good topic. I was hoping someone would come around to this. Perhaps, there should be a thread of discussion on this. I dont' know what is there to compare. EJB has been around awhile and J2EE is yet another jargon to throw people off. Here is what we have experienced; 1. Anything that needs to

Re: [Zope] Python Script demo site

2000-11-23 Thread Chalu Kim
I can't help it. No, I won't say it. Dimples anyone? Jason Cunliffe wrote: "Evan Simpson" [EMAIL PROTECTED] writes: A few announcements. First, in the interests of sanity and getting things moving, I'm choosing the only name other than "Python Method" to get a positive score in the

Re: [Zope] Zope Book: Catalog Aware -- Bug?

2000-11-23 Thread Chalu Kim
Did you un-comment re-index in add? Hitting update catalog is not necessary. Chris Gray wrote: I've gone through the catalog aware example in the Zope book but there was one small problem. The vocabulary was not being updated until I went in and clicked the update catalog button. Is this

Re: [Zope] [Urgent] Zope good for multiprocessor hardware

2000-11-23 Thread Chalu Kim
Shane Hathaway wrote: On Thu, 16 Nov 2000 Andreas Tille wrote: we intent to buy new web server hardware. We want to run Debian GNU/Linux on a Sun system. I wonder if zope could profit from a multi-processor architecture on such a system. If you mix in ZEO (now open source),

Re: [Zope] DTML source

2000-11-23 Thread Chalu Kim
Just don't put two of it into a page. You can have this problem when you use frame sometimes. Dany Rioux wrote: Hi Tom, There's a package for Zope called ZNavigation. I use it. It's very nice once you understand the basics. It's not very hard to use but it is a bit intimidating at first.

Re: [Zope] [Urgent] Zope good for multiprocessor hardware

2000-11-23 Thread Chalu Kim
This confirms my understanding of Zope and Python. ZEO does not solve your problem explicitly because ZEO is more of distributed way of balancing the load. This is another ball of wax and ,in theory, it works great. But it has its own particular problems. Until someone conclusively shows, our

Re: [Zope] Re: is it possible to see whether any user is using a perticular zope object

2000-11-23 Thread Chalu Kim
subrahmanyan kalathur wrote: As you want to serialize access to your database, you might be interested in locking. Search the (searchable) list archive for "lock" and "locking" to find more information about it. For locking, too, my "SharedResource" can help you. *HOWEVER*, I follow

Re: [Zope] How to extend LoginManager:LoginUser with costum properties?

2000-11-23 Thread Chalu Kim
Develop UIs to set that for example? pseudo thoughts 1. check getRoles() and getUserName() 2. right role or right owner 3. allow changing those things (which I have no clue how you implmented your data; sheet provider, plugin) Good luck. Dirksen wrote: How can I do that, like setting

Re: [Zope] How to get authentiedcated user name in pythong method?

2000-11-23 Thread Chalu Kim
look LoginManager.py under Products/LoginManager to look for how it is refered and figure it out? Dirksen wrote: How can I do that just as dtml-var "AUTHENTICATED_USER.getUserName()" in dtml? I don't want to pass AUTHENTICATED_user as a parameter. A hint please. cheers Dirksen

Re: [Zope] Re: Zope digest, Vol 1 #1067 - 68 msgs

2000-11-23 Thread Chalu Kim
eMarket comes to my mind... It has several features. Nothing that does everything you need out of the box. Little more involved now that ZPatterns is used. Diarmaid Lynch wrote: I'm interested in making a non-commercial "e-bay" type application for selling second hand books @ my university.

[Zope] Re: is it possible to run a DTML method without using a browser.

2000-11-23 Thread Chalu Kim
Well, using HTTP to run an application is not the right way to go. It is because of the nature of HTTP or TCP/IP. There is such naggin thing as time out and a notion of transaction. Short answer is to break things into parts; initiation and completion. If a task takes longer than N minutes, it

Re: [Zope] Support for PHP?

2000-11-21 Thread Chalu Kim
There is a post about using PHP with Zope. http://www.zope.org/Members/Mamey/PHP But what is the point? Ben Ocean wrote: Hi; I'm reading *the book* and it appears that Zope supports Perl and Python but *not* PHP :(( Well, I'm learning Python and I have a limited but working knowledge

[Zope] ImplicitAcquirerWrapper

2000-09-15 Thread Chalu Kim
Has anyone run into this problem? Zope Error Zope has encountered an error while publishing this resource. Error Type: SystemError Error Value: Failed to import class ImplicitAcquirerWrapper from module Acquisition Thanks in advance. begin:vcard

[Zope] repost of ImplicitAcquirerWrapper

2000-09-15 Thread Chalu Kim
Apology of sending multipart. Has anyone run into this problem? Zope Error Zope has encountered an error while publishing this resource. Error Type: SystemError Error Value: Failed to import class ImplicitAcquirerWrapper from module Acquisition Thanks in advance.