Re: [Zope-dev] Zope 2.13.0 final released

2010-11-05 Thread Vladislav Vorobiev
2010/11/5 Hanno Schlichting ha...@hannosch.eu:
 On behalf of the Zope 2 developers community I am pleased to announce
 the official release of Zope 2.13.0.

 Major changes:

 - Supports Python 2.6 and 2.7
 - Includes ZODB 3.10 - which adds multi-threading to the ZEO server
 - Contains WSGI support
 - Ships with the Zope Toolkit 1.0
 - A number of performance improvements in ZCatalog
 - lots of other smaller fixes and features

 For more details, check: 
 http://docs.zope.org/zope2/releases/2.13/WHATSNEW.html
 Release notes: http://docs.zope.org/zope2/releases/2.13/CHANGES.html

 If you have found a bug, please report it on Launchpad:
 https://bugs.launchpad.net/zope2/

 I would like to thank all people having contributed to this release.
 Special thanks to Tres Seaver for bringing WSGI support to Zope 2,
 Jens Vagelpohl for his tireless bug-fixing efforts and Yvo Schubbe for
 testing the pre-releases against CMF and helping out with bug fixes
 and some new features.

 Hanno Schlichting
 Zope 2 Release Manager
 ___
 Zope-Dev maillist  -  zope-...@zope.org
 https://mail.zope.org/mailman/listinfo/zope-dev
 **  No cross posts or HTML encoding!  **
 (Related lists -
  https://mail.zope.org/mailman/listinfo/zope-announce
  https://mail.zope.org/mailman/listinfo/zope )



Thank you

-- 
Best Regards
Vlad Vorobiev
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] UnicodeDecodeError from PageTemplate rendering after upgrading to Zope 2.12.7

2010-08-31 Thread Vladislav Vorobiev
Maybe not the best solution but I use this hack:

zope.tal-3.5.2-py2.7.egg/zope/tal/talinterpreter.py

line 751
change:

text = unicode(structure)

to

try:
 text = unicode(structure)
except:
 text=unicode(structure.decode('utf-8'))

Vlad


2010/8/31 Chris Withers ch...@simplistix.co.uk:
 Hi All,

 After a recent upgraded to Zope 2.12, I'm now seeing errors like the
 following when using IE (version 8) or Safari (version 4.0.3) to view
 page templates. Chrome and Firefox work fine.

 Traceback (innermost last):
   Module ZPublisher.Publish, line 127, in publish
   Module ZPublisher.mapply, line 77, in mapply
   Module ZPublisher.Publish, line 47, in call_object
 snip
   Module Shared.DC.Scripts.Bindings, line 324, in __call__
   Module Shared.DC.Scripts.Bindings, line 361, in _bindAndExec
   Module Products.PageTemplates.ZopePageTemplate, line 335, in _exec
   Module Products.PageTemplates.ZopePageTemplate, line 432, in pt_render
   Module Products.PageTemplates.PageTemplate, line 80, in pt_render
   Module zope.pagetemplate.pagetemplate, line 115, in pt_render
   Module zope.tal.talinterpreter, line 271, in __call__
 snip
   Module zope.tal.talinterpreter, line 343, in interpret
   Module zope.tal.talinterpreter, line 751, in do_insertStructure_tal
 UnicodeDecodeError: 'ascii' codec can't decode byte 0xa0 in position
 366: ordinal not in range(128)

 Has anyone seen this or anything similar before?
 Any solutions spring to mind?

 cheers,

 Chris

 --
 Simplistix - Content Management, Batch Processing  Python Consulting
             - http://www.simplistix.co.uk
 ___
 Zope-Dev maillist  -  zope-...@zope.org
 https://mail.zope.org/mailman/listinfo/zope-dev
 **  No cross posts or HTML encoding!  **
 (Related lists -
  https://mail.zope.org/mailman/listinfo/zope-announce
  https://mail.zope.org/mailman/listinfo/zope )




-- 
Best Regards
Vlad Vorobiev
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Don't get ZODB 3.10 by installing Zope2.13

2010-08-25 Thread Vladislav Vorobiev
Hi, I tried with clean python installation (2.6 and 2.7), with
virtualnv and without.
I got allways

Installed /home/p26/test/my_zope/lib/
python2.6/site-packages/ZopeUndo-2.12.0-py2.6.egg
Searching for ZODB3
Reading http://download.zope.org/Zope2/index/2.13.0a3/ZODB3/ 
http://download.zope.org/Zope2/index/2.13.0a3/ZODB3/
Best match: ZODB3 3.9.5
Downloading 
http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-3.9.5.tar.gz 
http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-3.9.5.tar.gz
Processing ZODB3-3.9.5.tar.gz
Running ZODB3-3.9.5/setup.py -q bdist_egg --dist-dir
/tmp/easy_install-VIJx5b/ZODB3-3.9.5/egg-dist-tmp-X2Ak0k

I created a bugreport.

ps: my normal email for this mailings list is **mymir@gmail.com**. I 
subscribe the list and get emails but I can't send anything. No mail 
from mymir@gmail.com was accept 
http://www.dict.cc/englisch-deutsch/accept.html. Please fix it if posible.
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Don't get ZODB 3.10 by installing Zope2.13

2010-08-23 Thread Vladislav Vorobiev

Hello!

I found in documentation for Zope2.13a

http://docs.zope.org/zope2/releases/2.13/WHATSNEW.html 
http://docs.zope.org/zope2/releases/2.13/WHATSNEW.html


that it's including ZODB 3.10.

By running

easy_install -i http://download.zope.org/Zope2/index/2.13.0a3 
http://download.zope.org/Zope2/index/2.13.0a3 Zope2 I

got ZODB3-3.9.5-py2.7-linux-i686.
egg.

Whats wrong?

--
Best Regards
Vlad Vorobiev
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )