Re: [Zope] How do I migrate CacheFu

2008-04-16 Thread Ricardo Newbery


On Apr 16, 2008, at 6:59 PM, Manuel Vazquez Acosta wrote:


Hi all,

I'm moving a Plone site from one server to another. At the same time I
have upgraded Plone 2.5 to 2.5.5.

I have managed to move all contents without major problems.

Now I'm dealing with CacheFu. It refuses to enabled. I digged into the
code and notice this:

265 if installed_version != __version__:
266  	# CacheSetup hasn't migrated yet so let's disable  
it.

267 field = self.getField('enabled')
268 if field is None:
269 self._updateSchema()
270 elif field.get(self) == True:
271 field.set(self, False)
272 if getToolByName(self, config.PAGE_CACHE_MANAGER_ID,
None) is not None:
273  ->  enableCacheFu(self, False)
274 
(Pdb) installed_version != __version__
True
(Pdb)


So it seems I have not properly migrated CacheFu. How do I do that?

Best regards,
Manuel.



You are on the wrong list.  Try the plone-users list instead.

Ric




___
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 )


Re: [Zope] anyone heard of Zamasing?

2008-04-16 Thread Garito
Hi, Tim!
I'm agree with you. I my case I use bluefish at gnome but I like TTW GUIs
because I don't need to carry my computer to work around the world and, boy,
the world is a very beautifull place to visit

I understand that Zopers want a revision of the back-end with Zope3 but at
this moment I don't understand so much the effort that suppose (it's only an
opinion without wishing to open a discussion about that decision, I respect
this decision)

My way, by other side, is about a way to work properly or better with Zope2
because Zope2 is the better place at this moment and my skills to build my
project
And, in my opinion, zamazing is the an equivalent effort and thats good for
the Zopers that think like my

The version of ZSM, for example, that I have in my computer has edition but
is not tested yet and then I would like to add a debugger (at least at the
Yanged part)

Do you imagine that you could work at every computer connected to the
internet? I think that the people who use Zope is, in part, because is TTW,
isn't it?

Congratulations again

2008/4/16, Tim Nash <[EMAIL PROTECTED]>:
>
> Phil,
>   It is great to see more posts about how well zope works for "Web
> 2.0" projects. I have used extjs with zope and really like the
> combination. I'd like to learn more about your jquery /plone setup and
> how you make it work. Would it be a time consuming for you to create a
> generic product that demonstrates your setup? It would be helpful to
> have a common set of artifacts to discuss.
> Thanks,
> Tim
> ps. I can make available a generic product that demonstrates how I use
> extjs if there is interest. It is pretty simple...serve a little dtml
> doc which requests the gui cached in javascript. Gui makes ajax calls
> back to zope for the dynamic elements.
>
> pps. nice work zamazing! python/dtml syntax highlighting in codepress?
> sweet. (but I am addicted to the mac version of Komodo)
>
>
>
> On Wed, Apr 16, 2008 at 5:01 AM, Philip Kilner <[EMAIL PROTECTED]> wrote:
> > Hi Tom,
> >
> >
> >  Tom Von Lahndorff wrote:
> >
> > > Thats pretty awesome. It's "zamazing" to me that Zope 2 is not a de
> facto
> > platform for "Web 2.0" projects. I think it has some major benefits over
> > Rails and maybe even Django but there seems to be no interest in it from
> > that community. This is a great start.
> > >
> > >
> >
> >  I agree that it's a great platform for Web 2.0 projects - I'm a happy
> RDBMS
> > developer, using Zope as an application server against Postgres dbs.
> >
> >  I find that Formulator, ZPTs and simple scripts on the server side and
> > JQuery on the client side (specifically, the JQuery Taconite
> implementation
> > [1] with XML ZPTs) work wonderfully together.
> >
> >  My interest is pretty narrow, in the sense that I'm all about RDBMSs,
> > tabular data, and form-driven data entry - the less guff between me the
> and
> > the RDBMS, the happier I am. However, if I don't have much to say, it's
> only
> > because TTW Zope development using these tools is so easy. If there is
> any
> > interest in discussing this stuff, I am up for that.
> >
> >  Having said all that, I'm happy enough with the ZMI as it is, so
> "Zamasing"
> > is only of academic interest to me.
> >
> >  FWIW, all these techniques can also be made to work seamlessly inside
> Plone
> > without doing any actual Plone development, which can be handy (you
> really
> > only need to work with Plone's CSS to make it look consistent) - a
> server
> > side mash-up which avoids all the cross-site scripting stuff, if you
> like.
> >
> >  [1] http://www.malsup.com/jquery/taconite/
> >
> >
> >  --
> >
> >  Regards,
> >
> >  PhilK
> >
> >
> >  'work as if you lived in the early days of a better nation'
> >  - alasdair gray
> >
> >
> >  ___
> >  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 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 )
>



-- 
Mis Cosas
http://blogs.sistes.net/Garito
Zope Smart Manager
http://blogs.sistes.net/Garito/670
___
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] How do I migrate CacheFu

2008-04-16 Thread Manuel Vazquez Acosta
Hi all,

I'm moving a Plone site from one server to another. At the same time I
have upgraded Plone 2.5 to 2.5.5.

I have managed to move all contents without major problems.

Now I'm dealing with CacheFu. It refuses to enabled. I digged into the
code and notice this:

265 if installed_version != __version__:
266 # CacheSetup hasn't migrated yet so let's disable it.
267 field = self.getField('enabled')
268 if field is None:
269 self._updateSchema()
270 elif field.get(self) == True:
271 field.set(self, False)
272 if getToolByName(self, config.PAGE_CACHE_MANAGER_ID,
None) is not None:
273  -> enableCacheFu(self, False)
274 
(Pdb) installed_version != __version__
True
(Pdb)


So it seems I have not properly migrated CacheFu. How do I do that?

Best regards,
Manuel.

___
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 )


Re: [Zope] anyone heard of Zamasing?

2008-04-16 Thread Tim Nash
Phil,
  It is great to see more posts about how well zope works for "Web
2.0" projects. I have used extjs with zope and really like the
combination. I'd like to learn more about your jquery /plone setup and
how you make it work. Would it be a time consuming for you to create a
generic product that demonstrates your setup? It would be helpful to
have a common set of artifacts to discuss.
Thanks,
Tim
ps. I can make available a generic product that demonstrates how I use
extjs if there is interest. It is pretty simple...serve a little dtml
doc which requests the gui cached in javascript. Gui makes ajax calls
back to zope for the dynamic elements.

pps. nice work zamazing! python/dtml syntax highlighting in codepress?
sweet. (but I am addicted to the mac version of Komodo)


On Wed, Apr 16, 2008 at 5:01 AM, Philip Kilner <[EMAIL PROTECTED]> wrote:
> Hi Tom,
>
>
>  Tom Von Lahndorff wrote:
>
> > Thats pretty awesome. It's "zamazing" to me that Zope 2 is not a de facto
> platform for "Web 2.0" projects. I think it has some major benefits over
> Rails and maybe even Django but there seems to be no interest in it from
> that community. This is a great start.
> >
> >
>
>  I agree that it's a great platform for Web 2.0 projects - I'm a happy RDBMS
> developer, using Zope as an application server against Postgres dbs.
>
>  I find that Formulator, ZPTs and simple scripts on the server side and
> JQuery on the client side (specifically, the JQuery Taconite implementation
> [1] with XML ZPTs) work wonderfully together.
>
>  My interest is pretty narrow, in the sense that I'm all about RDBMSs,
> tabular data, and form-driven data entry - the less guff between me the and
> the RDBMS, the happier I am. However, if I don't have much to say, it's only
> because TTW Zope development using these tools is so easy. If there is any
> interest in discussing this stuff, I am up for that.
>
>  Having said all that, I'm happy enough with the ZMI as it is, so "Zamasing"
> is only of academic interest to me.
>
>  FWIW, all these techniques can also be made to work seamlessly inside Plone
> without doing any actual Plone development, which can be handy (you really
> only need to work with Plone's CSS to make it look consistent) - a server
> side mash-up which avoids all the cross-site scripting stuff, if you like.
>
>  [1] http://www.malsup.com/jquery/taconite/
>
>
>  --
>
>  Regards,
>
>  PhilK
>
>
>  'work as if you lived in the early days of a better nation'
>  - alasdair gray
>
>
>  ___
>  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 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 )


Re: [Zope] simple use case for rotating images

2008-04-16 Thread Tom Von Lahndorff
Also check out:
Google AJAX Slide Show
http://www.google.com/uds/solutions/slideshow/index.html

On Wed, Apr 16, 2008 at 12:52 PM, Andreas Jung <[EMAIL PROTECTED]> wrote:
>
>
>
> --On 16. April 2008 09:32:38 -0700 David Bear <[EMAIL PROTECTED]> wrote:
>
>
> > We are finding that flash is used to generate simple slide shows. I'm
> > thinking it would be 'better' to use an ajax like method and zope to serve
> > up a set of standard images. Anyone know of examples? I completely new to
> > ajax and have looked at a few ajax libraries. So far they all see overkill
> > for what I want.
> >
>
> Lightbox2 is small and trivial to use:
>
> 
>
> -aj
> ___
> 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 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 )


Re: [Zope] simple use case for rotating images

2008-04-16 Thread Andreas Jung



--On 16. April 2008 09:32:38 -0700 David Bear <[EMAIL PROTECTED]> wrote:


We are finding that flash is used to generate simple slide shows. I'm
thinking it would be 'better' to use an ajax like method and zope to serve
up a set of standard images. Anyone know of examples? I completely new to
ajax and have looked at a few ajax libraries. So far they all see overkill
for what I want.


Lightbox2 is small and trivial to use:



-aj

pgp3c52Lsq2Un.pgp
Description: PGP signature
___
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] simple use case for rotating images

2008-04-16 Thread David Bear
We are finding that flash is used to generate simple slide shows. I'm
thinking it would be 'better' to use an ajax like method and zope to serve
up a set of standard images. Anyone know of examples? I completely new to
ajax and have looked at a few ajax libraries. So far they all see overkill
for what I want.

-- 
David Bear
College of Public Programs at ASU
602-464-0424
___
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 )


Re: [Zope] anyone heard of Zamasing?

2008-04-16 Thread Garito
Jejeje, good job!
Is like I want for Zope Smart Manager (the version I have in my computer has
edition and complete the features you have in your project) but I prefer the
tree view

What a pity that our projects don't join but it's ok!

Congratulations!

2008/4/16, Philip Kilner <[EMAIL PROTECTED]>:
>
> Hi Tom,
>
> Tom Von Lahndorff wrote:
>
> > Thats pretty awesome. It's "zamazing" to me that Zope 2 is not a de
> > facto platform for "Web 2.0" projects. I think it has some major benefits
> > over Rails and maybe even Django but there seems to be no interest in it
> > from that community. This is a great start.
> >
> >
> I agree that it's a great platform for Web 2.0 projects - I'm a happy
> RDBMS developer, using Zope as an application server against Postgres dbs.
>
> I find that Formulator, ZPTs and simple scripts on the server side and
> JQuery on the client side (specifically, the JQuery Taconite implementation
> [1] with XML ZPTs) work wonderfully together.
>
> My interest is pretty narrow, in the sense that I'm all about RDBMSs,
> tabular data, and form-driven data entry - the less guff between me the and
> the RDBMS, the happier I am. However, if I don't have much to say, it's only
> because TTW Zope development using these tools is so easy. If there is any
> interest in discussing this stuff, I am up for that.
>
> Having said all that, I'm happy enough with the ZMI as it is, so
> "Zamasing" is only of academic interest to me.
>
> FWIW, all these techniques can also be made to work seamlessly inside
> Plone without doing any actual Plone development, which can be handy (you
> really only need to work with Plone's CSS to make it look consistent) - a
> server side mash-up which avoids all the cross-site scripting stuff, if you
> like.
>
> [1] http://www.malsup.com/jquery/taconite/
>
>
> --
>
> Regards,
>
> PhilK
>
>
> 'work as if you lived in the early days of a better nation'
> - alasdair gray
> ___
> 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 )
>



-- 
Mis Cosas
http://blogs.sistes.net/Garito
Zope Smart Manager
http://blogs.sistes.net/Garito/670
___
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 )


Re: [Zope] anyone heard of Zamasing?

2008-04-16 Thread Philip Kilner

Hi Tom,

Tom Von Lahndorff wrote:
Thats pretty awesome. It's "zamazing" to me that Zope 2 is not a de 
facto platform for "Web 2.0" projects. I think it has some major 
benefits over Rails and maybe even Django but there seems to be no 
interest in it from that community. This is a great start.




I agree that it's a great platform for Web 2.0 projects - I'm a happy 
RDBMS developer, using Zope as an application server against Postgres dbs.


I find that Formulator, ZPTs and simple scripts on the server side and 
JQuery on the client side (specifically, the JQuery Taconite 
implementation [1] with XML ZPTs) work wonderfully together.


My interest is pretty narrow, in the sense that I'm all about RDBMSs, 
tabular data, and form-driven data entry - the less guff between me the 
and the RDBMS, the happier I am. However, if I don't have much to say, 
it's only because TTW Zope development using these tools is so easy. If 
there is any interest in discussing this stuff, I am up for that.


Having said all that, I'm happy enough with the ZMI as it is, so 
"Zamasing" is only of academic interest to me.


FWIW, all these techniques can also be made to work seamlessly inside 
Plone without doing any actual Plone development, which can be handy 
(you really only need to work with Plone's CSS to make it look 
consistent) - a server side mash-up which avoids all the cross-site 
scripting stuff, if you like.


[1] http://www.malsup.com/jquery/taconite/


--

Regards,

PhilK


'work as if you lived in the early days of a better nation'
- alasdair gray
___
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 )


Re: [Zope] anyone heard of Zamasing?

2008-04-16 Thread Allen Schmidt Sr.
A reason to upgrade our 2.7.5!!!  I have been on this list for over 7 
years and have never heard of this company. I wonder how many other cool 
Zope2 things are being done quietly in the shadows. Bring your cool 
stuff into the light for others to enjoy...and pay for if needed. I for 
one have no problem buying useful tools or products for Zope.


Thanks for the tip Chris.

Allen


Tom Von Lahndorff wrote:


Thats pretty awesome. It's "zamazing" to me that Zope 2 is not a de 
facto platform for "Web 2.0" projects. I think it has some major 
benefits over Rails and maybe even Django but there seems to be no 
interest in it from that community. This is a great start.

___
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 )


Re: [Zope] anyone heard of Zamasing?

2008-04-16 Thread Tom Von Lahndorff
Thats pretty awesome. It's "zamazing" to me that Zope 2 is not a de facto
platform for "Web 2.0" projects. I think it has some major benefits over
Rails and maybe even Django but there seems to be no interest in it from
that community. This is a great start.

On Wed, Apr 16, 2008 at 6:40 AM, Peter Bengtsson <[EMAIL PROTECTED]> wrote:

> Not until now. But I'm amased! Really looking forward to taking it for a
> spin.
>
> On 16/04/2008, Chris Withers <[EMAIL PROTECTED]> wrote:
> > ...I certainly never had until someone threw a press release my way...
> >
> >  http://zamasing.com
> >
> >  Any ideas/comments/etc?
> >
> >  Chris
> >
> >  --
> >  Simplistix - Content Management, Zope & Python Consulting
> >- http://www.simplistix.co.uk
> >  ___
> >  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 )
> >
>
>
> --
> Peter Bengtsson,
> work www.fry-it.com
> home www.peterbe.com
> hobby www.issuetrackerproduct.com
> ___
> 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 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 )


Re: [Zope] anyone heard of Zamasing?

2008-04-16 Thread Peter Bengtsson
Not until now. But I'm amased! Really looking forward to taking it for a spin.

On 16/04/2008, Chris Withers <[EMAIL PROTECTED]> wrote:
> ...I certainly never had until someone threw a press release my way...
>
>  http://zamasing.com
>
>  Any ideas/comments/etc?
>
>  Chris
>
>  --
>  Simplistix - Content Management, Zope & Python Consulting
>- http://www.simplistix.co.uk
>  ___
>  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 )
>


-- 
Peter Bengtsson,
work www.fry-it.com
home www.peterbe.com
hobby www.issuetrackerproduct.com
___
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] anyone heard of Zamasing?

2008-04-16 Thread Chris Withers

...I certainly never had until someone threw a press release my way...

http://zamasing.com

Any ideas/comments/etc?

Chris

--
Simplistix - Content Management, Zope & Python Consulting
   - http://www.simplistix.co.uk
___
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 )