Re: [Zope] Plone: storage, catologing and versioning

2005-07-23 Thread azazel

Rogério Atem de Carvalho wrote:

Hi,

I have a few questions about Plone (in some extent CMF/Zope):

1)How to manipulate versioning in Plone? (like CPS does)
I know there is PLIP8, but it is still a proposal, isn't it?


have a look at CMFEditions on svn.plone.org/collective . it is also 
published on plone.org site
we have publieshed an alpha release, and hope to fix the remaining bug 
over the summer, please feel free to contribute. On 
sourceforge.net/projects/collective you can find the 
collective-versioning which we use to discuss on subject and 
coordinate the effort.


2)How to store and catalog huge document collections?
-LocalFS + ZCatalog?

what do you mean with huge?

-Implement mapping and indexing in a relational DB?


google for shane's apelib  or look int svn.plone.org/archetypes


(I have also de ERP5's ZSQLCatalog option...)

3)Is there any product or Plone plug-in that allows enhanced searches
through thesaurus or ontologies, or something like this?
I know there are Ontobroker and Gnowsys, but I would like
to have something simpler to work on top of Plone.


nothing ready i think, but for a generic library that enables you to 
perform complex queries over a catalog google fro Dieter's AdvancedQuery 
product. Also, it is possible to implement ontologies in plone using 
Archetypes references and maybe using the Relations product (always from 
 Archetypes svn o)


___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope-dev] Re: AdaptableStorage

2003-01-15 Thread azazel
Paul Winkler scrive: 

On Wed, Jan 15, 2003 at 05:30:58PM +, seb bacon wrote:

Shane, AdaptableStorage is insane and beautiful - congratulations :-)


It seems to inspire insanity :) kosh and i got into a discussion on #zope
about using AdaptableStorage with reiserfs4, mapping zope properties
to reiserfs4 properties... finally, a fully really transparent 
unix filesystem - ZODB solution that isn't a half-assed version of either! 
didn't get into detail but it seems like it should be doable. 


uhumm.. nice idea... i'm thinking also about using Subversion 
(subversiom.tigris.org), a cvs interesting alternative, as a storage for 
zope objects at some level. Subversion has the concept of  versioned 
properties on a file and, best of all, it has a complete python swig 
interface. 

I'm still thinking at what level should i do the mapping, if at Storage 
level or at user level, like CVSFolder does. 

After looking at the code, it seems that AdaptableStorage  could help on 
this. 

azazel

___
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] mailhost example problem

2001-01-22 Thread aZaZel

Michael Angelo wrote:

 hi,
 
 i am experiencing a strange problem with using the mailhost example on
 zope.com.
 
 here is the code:
 
 dtml-var standard_html_header
 
 dtml-sendmail mailhost="MailHost"
 To: [EMAIL PROTECTED]
 From: [EMAIL PROTECTED]
 Subject: Feedback from the web
 
 message goes here
 /dtml-sendmail
 
 h1Thank you for your input!/h1
 pYour comments have been sent./p
 
 dtml-var standard_html_footer
 
Yes...I have found this error tootry specifing  mail properties 
using  the attributes of the dtml-sendamail tag like

dtml-sendmail  mailfrom="[EMAIL PROTECTED]" 
mailto="[EMAIL PROTECTED]" subject="Feedback from web"


message goes here

/dtml-sendmail


I have resolved my problem with this trick...it's not so flexible as 
specify the attributes in the body...

hope this helps...

Alberto


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




[Zope] ZCatalog uniqueValuesFor

2001-01-12 Thread aZaZel

Hi,

I have developed a web site for a customer where he add some ZClass 
instances that are zcatalog-aware. Everytime he edits the instances i do 
a reindex_object after the commit of the changes.
I'm using the uniqueValuesFor ()  method do get the values of a field 
index  on some forms but i found a quite strange behaviour. When he adds 
an instance , the value of the  instace's indexed property is added (if 
the value is new)  to the list that uniqueValuesFor 
returnsfine...it's correct . But when he deletes that instance,   
the uniqueValuesFor method still returns that value  even if  it should 
not be on the index. I think there is a problem of  index referesh, but 
i have to do a full reindex to return the right list (e.g. without 
"dead" values). Im using Zope 2.2.0  and the catalog is running with 
subtransaction disabled . I have tried it on Zope 2.2.4 as well with the 
same results. Has anyone a workaround for that problem? I'm doing 
something bad?

please help me!

Alberto


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




[Zope] raw search on a ZClass

2001-01-10 Thread aZaZel

Hi!

I have some ZClass istances that are catalog-aware.
Someone knows how to do raw (full text) searches over all the property 
values of the istances? I have tried the "raw" index trick used for 
other object types but without success. Or maybe another way to do the 
thing .

Thanks in advance
Alberto


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