Re: [Zope-dev] ZPatterns

2000-07-26 Thread Oleg Broytmann

On Wed, 26 Jul 2000, Steve Alexander wrote:
   http://www.zope.org/Members/pje/ZPatterns

   Very limited resource in terms of documentation. :(

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




Re: [Zope-dev] several permissions for the same method

2000-07-19 Thread Oleg Broytmann

On Wed, 19 Jul 2000, Jephte CLAIN wrote:
 I have the scenario where a user can edit *its* data but not other
 users's data, unless he has a special role. however, the method used to
 edit one's data is the same.
 So I make sure inside the edit_data method that the user has the
 adequate permissions if he tries to edit another one's data.

   Make edit_data unpublishable (remove docstring, rename it to _edit_data)
and write two wrappers for it - one for own data, one for other's data.
Protect these wrappers with different sets of permissions.

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




Re: [Zope-dev] Multi-homed objects?

2000-07-17 Thread Oleg Broytmann

On Mon, 17 Jul 2000, Chris Withers wrote:
 Is there any reason why an object cannot be contained in more than one
 Folder in the ZODB?
 
 Apparently what I'm talking about is very similar to hard linking in
 UNIX...

   Hardlinks are prohibited on directories; and 5 minutes ago you said all
objects are foldersih :)

   Hardlinks are prohibited on directories because it'd cause infinite
loops on traversing.

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




Re: [Zope-dev] Multi-homed objects?

2000-07-17 Thread Oleg Broytmann

On Mon, 17 Jul 2000, Chris Withers wrote:
 How does it work in Unix? (that seems to be a good baseline :-)

   On UNIX symlink is not a link - it is a text file, that contains a name
of resource. The name could points to nowhere, or to resource, even to
other symlink...

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




Re: [Zope-dev] Full-text Indexing FOLLOW-UP

2000-06-27 Thread Oleg Broytmann

Hi!

   http://mysearch.udm.net/

   It is not Zope-related, but pretty good. Integrate its engine with Zope
- and voila!

On Tue, 27 Jun 2000, Thomas Weholt wrote:
 Wouldn`t Zope as a web-database integrator benefit from a feature like
 full-text searching? ( Everybody answers yes and nods. )
 It seems as if Zope is aimed at information-publishing, using a RDBMS as
 source for that information. An initiative from the Zope community to
 either create products that support this using the most common RDBMS,
 support these features in database-adapters if the RDBMS supports it and/or
 create documentation
  ( HowTos/Tips ) on how to build a simple full-text searching, give ideas,
 overviews etc, would make Zope a more viable solution for
 information-publishing.
 
 My reason for asking this is that I`m trying to sell OpenSource to my
 co-workers, show that Open can be just as good as any commercial,
 Closed-Sourced alternative. When I said that
 full-text searching wasn`t running out-of-the-box I was laughed at. The
 solution used in my company is Windows 2000 server, MS SQL 7.0 and
 SiteServer/MS IIS. To compete with this
 full-text searching is a must. I used PostgreSQL 7.0.2 with Zope and
 PostgreSQL has a c-library for full-text searching included in the source.
 If we could get this to work with Zope we would
 be a bit closer. 
 
 I`m going to dive into this, so if somebody wants to help, has tips or
 whatever, please feel free to email me.

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




[Zope-dev] dtml-in: sort is not locale-aware

2000-06-20 Thread Oleg Broytmann

Hello!

   Currently dtml-in does not use locale when sorting the sequence. Before
creating a patch I want to discuss a way dtml-in should handle this. The
problem is that list.sort() does not sort according to koi8-r cyrillic
locale; to make sort locale-aware I need to list.sort(locale.strcoll).
   But how I could ask dtml-in to use locale.strcoll? Should I add another
option to dtml-in? Something like
   dtml-in somesequence sort=name use_locale ?

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




Re: [Zope-dev] dtml-in: sort is not locale-aware

2000-06-20 Thread Oleg Broytmann

On Tue, 20 Jun 2000, mike wrote:
 But how I could ask dtml-in to use locale.strcoll? Should I add another
  option to dtml-in? Something like
 dtml-in somesequence sort=name use_locale ?
 
 I use dtml-in "ru_sort( somesequence)"
 A bit slower but works like hammer.

   I want to use all power of dtml-in and other zope tools. There are
things where I can just write my functions and methods; and there are cases
so general that it's more correct to extend zope functionality.

   Do you know that latest version of Zope can sort by multiple keys? How
do you extend your ru_sort() to reflect the change?

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




[Zope-dev] Re: [Zope] Re: Zope 2.1.5/6/7 upgrading issues

2000-06-16 Thread Oleg Broytmann

Hi!

   My vote is here:

On Fri, 16 Jun 2000, Brian Lloyd wrote:
   o retract the 2.1.7 release in favor of getting 2.2 beta 2 
 out on Monday, which doesn't have the cruft problem of 
 the 2.1.x branch and contains all fixes to date (and 
 which will fix SQLMethod problems and support the SiteAccess
 release that Evan is making today).

   I am not running any production servers (yet), so I better will start to
experiment with new Zope, rather than patching old one.
   Other people esp. those who run prod. servers free to have different
opinions :)

Oleg.(All opinions are mine and not of my employer)
 
Oleg Broytmann  Foundation for Effective Policies  [EMAIL PROTECTED]
   Programmers don't die, they just GOSUB without RETURN.


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )