Re: [Zope-dev] ohloh listings

2011-09-12 Thread Hanno Schlichting
Hi.

On Sat, Sep 10, 2011 at 11:32 PM, Chris McDonough chr...@plope.com wrote:
 Could you delete and readd the failed repository enlistments at
 https://www.ohloh.net/p/zope/enlistments?page=13

Tried that - had no effect as it indeed recognized the old urls. So I
removed them and added them instead via the http:// protocol. They are
now on the first page at https://www.ohloh.net/p/zope/enlistments and
currently not scheduled yet.

Chris, if you want I can add you as a manager, I think you need to
request that at https://www.ohloh.net/p/zope/manages/new

Hanno
___
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] Site error

2011-09-12 Thread Babylakshmi Muthusamy
Hi,

I have three web sites hosted in the same server with 4GB RAM and enough
storage. The third web-site hosted recently requires high processing and
heavy scripts are running. Basically one of the script communicates with 2
databases and fetches the results. The heavy script runs for 3 minutes. the
CPU occupies 183% or more for that script. Until it complete the script the
web-site goes down with proxy error, where httpd is running and zope is also
running.  Only after restarting either zope or httpd, all the three sites
are accessible. Could you please suggest me solutions to optimize the sites?

Any pointers in this regard is highly appreciated.

Thanks and Regards,
Babylakshmi
___
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] Site error

2011-09-12 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

You were asking that already weeks ago.

- -aj

Babylakshmi Muthusamy wrote:
 Hi,
 
 I have three web sites hosted in the same server with 4GB RAM and
 enough storage. The third web-site hosted recently requires high
 processing and heavy scripts are running. Basically one of the script
 communicates with 2 databases and fetches the results. The heavy
 script runs for 3 minutes. the CPU occupies 183% or more for that
 script. Until it complete the script the web-site goes down with
 proxy error, where httpd is running and zope is also running.  Only
 after restarting either zope or httpd, all the three sites are
 accessible. Could you please suggest me solutions to optimize the
 sites?
 
 Any pointers in this regard is highly appreciated.
 
 Thanks and Regards, Babylakshmi
 
 ___ 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 )

- -- 
ZOPYX Limited   | zopyx group
Charlottenstr. 37/1 | The full-service network for Zope  Plone
D-72070 Tübingen| Produce  Publish
www.zopyx.com   | www.produce-and-publish.com
- 
E-Publishing, Python, Zope  Plone development, Consulting


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQGUBAEBAgAGBQJObey4AAoJEADcfz7u4AZj79QLvja01cbD+hume0gQjooLX/9k
RO0oFcPqSJrxrPaFmB2SYbevPnCCN3uIaOXcOsqBZM+nO0amTG8qVpUZl/YQP/NK
AtXbZXBgNu6cUePgZhQbxRJ/CXq2Uc4e5jWQUdnOttD0YeBHebJsi2e5vUsbxuc9
FzLOr1sDmYkOy5jDr1Y+5w7pbbb1CpoVLy2c46jAzwjtU9f1IRsot1UdLkJHu1DR
wEmjmd9mdN/tlyhzEpTT2krCWRTiMMTFt1v3r6jXkHpqssgQ4U8iEIVl/eedbNEr
RZ4HIpfQYfN00fCIHgaYsyiYnGVqH3RweeBuJLt7r6e3KNBtH4IVLG77k4ZaAZe8
LLQ9Gl8vR5DHIzV2h/EpG4/pAUgD+1faGRIK31mpfe0sc+9fg2+QdCSkA8Gi7PDh
H2QLwgie/AXnpUr6B5hjaYjF3NiWKZ9MqMxV8SLUSyq5NrM65HnYp0UKTTq1xAzq
H2rtz2u2VYC4ZWA3cSyIWEJsT3irnWo=
=H6l2
-END PGP SIGNATURE-
attachment: lists.vcf___
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] response.status is not set properly when Zope2 publication failure events are notified

2011-09-12 Thread Godefroid Chapelle
Hi,

Short story :

response.status is not set when PubBeforeAbort and PubFailure events are 
notified.

Any code in the event handlers trying to use response.status always gets 
200 even though an exception has happened.

Longer story :

publish function in ZPublisher.Publish.py is notifiying all publication 
events ZPublisher.interfaces.IPubEvent.

It is called by publish_module_standard function which is in charge of 
transforming exceptions into HTTP status by calling response.exception().

However, this happens after the publishing events have been notified.

IOW, when failure events (PubBeforeAbort and PubFailure) are notified, 
request.status is still 200 :-(

Proposal attempt:

First, a disclaimer : there are so many nested try except, try finally 
in publish and publish_module_standard functions that I am sure I do not 
fully understand the code. However, I'll state my thoughts as a starting 
point.

I have the feeling that moving the call to response.exception() into the 
publish function before the events are notified would break a lot of 
code. Maybe we could just move the setStatus() call made in 
response.exception().

We might move the notification of PubFailure to response.exception(). 
However, its semantics would then change slightly and it is not obvious 
which exc_info would then be passed to the event.

I'd appreciate feedback on this issue.
-- 
Godefroid Chapelle (aka __gotcha) http://bubblenet.be
___
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] Site error

2011-09-12 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Try getting help from a local company in India

http://plone.org/support/providers/by-country/in

or google zope consultant india or so.

- -aj

Babylakshmi Muthusamy wrote:
 Hi,
 
 I have three web sites hosted in the same server with 4GB RAM and
 enough storage. The third web-site hosted recently requires high
 processing and heavy scripts are running. Basically one of the script
 communicates with 2 databases and fetches the results. The heavy
 script runs for 3 minutes. the CPU occupies 183% or more for that
 script. Until it complete the script the web-site goes down with
 proxy error, where httpd is running and zope is also running.  Only
 after restarting either zope or httpd, all the three sites are
 accessible. Could you please suggest me solutions to optimize the
 sites?
 
 Any pointers in this regard is highly appreciated.
 
 Thanks and Regards, Babylakshmi
 
 ___ 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 )

- -- 
ZOPYX Limited   | zopyx group
Charlottenstr. 37/1 | The full-service network for Zope  Plone
D-72070 Tübingen| Produce  Publish
www.zopyx.com   | www.produce-and-publish.com
- 
E-Publishing, Python, Zope  Plone development, Consulting


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQGUBAEBAgAGBQJObgaWAAoJEADcfz7u4AZjhUYLvjRLNe4KATeRNVM6xW71epgI
MoQaCCRTMouJUYFe34nzLb0n0foYWUd4NAZoHq1fbf7tLc6J/kQ0LMSooqA7R2Gf
5NXZd9MB/I9b19D+IvfE2H4uRniLQNEGqClzOXcPHJH00uO2XnWYl+AdeesQ7s5b
LQNxa78Ai3vlSwn3W9yhk5+J0IiRG9EnUkhWj3irlKVOjS7H8XCOergubdbThIDP
8+OCVkwzR8tnPdnRUC94it/15AlW+LxApGDnWoahzeYQChEa8dk3jxTx1k6o0R0a
4DJnGj0BDp3HTVO36VEzjtqn2+J30riO8R/UYg970gNC7WSTPfVYe2vpld879cqc
FLoRgWODyXEwhhDkhPLruUsxAZjo1tpy+bIhldGiwxIsb9Q5OQilnxJ1pOZpgNxn
CsEH7cAZy5razivX3UWtWiV3Y/mqigGURAPKwMx+lLYGVPpwZePmw7OBaPDtV2CU
zen8lsVhz8mkeFmxl/edZ4iGD/bHE0U=
=nh4B
-END PGP SIGNATURE-
attachment: lists.vcf___
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] zope-tests - FAILED: 10, OK: 31, UNKNOWN: 1

2011-09-12 Thread Zope tests summarizer
This is the summary for test reports received on the 
zope-tests list between 2011-09-11 00:00:00 UTC and 2011-09-12 00:00:00 UTC:

See the footnotes for test reports of unsuccessful builds.

An up-to date view of the builders is also available in our 
buildbot documentation: 
http://docs.zope.org/zopetoolkit/process/buildbots.html#the-nightly-builds

Reports received


   Bluebream / Python2.4.6 64bit linux
   Bluebream / Python2.5.5 64bit linux
   Bluebream / Python2.6.5 64bit linux
[1]UNKNOWN : winbot / ZODB_dev py_270_win32
   ZTK 1.0 / Python2.4.6 Linux 64bit
   ZTK 1.0 / Python2.5.5 Linux 64bit
   ZTK 1.0 / Python2.6.5 Linux 64bit
[2]ZTK 1.0dev / Python2.4.6 Linux 64bit
[3]ZTK 1.0dev / Python2.5.5 Linux 64bit
[4]ZTK 1.0dev / Python2.6.5 Linux 64bit
   Zope 3.4 KGS / Python2.4.6 64bit linux
   Zope 3.4 KGS / Python2.5.5 64bit linux
   Zope 3.4 Known Good Set / py2.4-32bit-linux
   Zope 3.4 Known Good Set / py2.4-64bit-linux
   Zope 3.4 Known Good Set / py2.5-32bit-linux
   Zope 3.4 Known Good Set / py2.5-64bit-linux
   Zope-2.10 Python-2.4.6 : Linux
   Zope-2.11 Python-2.4.6 : Linux
   Zope-2.12 Python-2.6.6 : Linux
   Zope-2.12-alltests Python-2.6.6 : Linux
   Zope-2.13 Python-2.6.6 : Linux
   Zope-2.13-alltests Python-2.6.6 : Linux
   Zope-trunk Python-2.6.6 : Linux
   Zope-trunk-alltests Python-2.6.6 : Linux
   winbot / ZODB_dev py_254_win32
   winbot / ZODB_dev py_265_win32
   winbot / ZODB_dev py_265_win64
   winbot / ZODB_dev py_270_win64
[5]winbot / zope.pagetemplate_py_265_32
   winbot / ztk_10 py_254_win32
   winbot / ztk_10 py_265_win32
[6]winbot / ztk_10 py_265_win64
   winbot / ztk_11 py_254_win32
   winbot / ztk_11 py_265_win32
   winbot / ztk_11 py_265_win64
   winbot / ztk_11 py_270_win32
   winbot / ztk_11 py_270_win64
[7]winbot / ztk_dev py_254_win32
[8]winbot / ztk_dev py_265_win32
[9]winbot / ztk_dev py_265_win64
[10]   winbot / ztk_dev py_270_win32
[11]   winbot / ztk_dev py_270_win64

Non-OK results
--

[1]UNKNOWN UNKNOWN : winbot / ZODB_dev py_270_win32
   https://mail.zope.org/pipermail/zope-tests/2011-September/049427.html


[2]FAILED  ZTK 1.0dev / Python2.4.6 Linux 64bit
   https://mail.zope.org/pipermail/zope-tests/2011-September/049436.html


[3]FAILED  ZTK 1.0dev / Python2.5.5 Linux 64bit
   https://mail.zope.org/pipermail/zope-tests/2011-September/049438.html


[4]FAILED  ZTK 1.0dev / Python2.6.5 Linux 64bit
   https://mail.zope.org/pipermail/zope-tests/2011-September/049437.html


[5]FAILED  winbot / zope.pagetemplate_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2011-September/049430.html


[6]FAILED  winbot / ztk_10 py_265_win64
   https://mail.zope.org/pipermail/zope-tests/2011-September/049457.html


[7]FAILED  winbot / ztk_dev py_254_win32
   https://mail.zope.org/pipermail/zope-tests/2011-September/049450.html


[8]FAILED  winbot / ztk_dev py_265_win32
   https://mail.zope.org/pipermail/zope-tests/2011-September/049451.html


[9]FAILED  winbot / ztk_dev py_265_win64
   https://mail.zope.org/pipermail/zope-tests/2011-September/049452.html


[10]   FAILED  winbot / ztk_dev py_270_win32
   https://mail.zope.org/pipermail/zope-tests/2011-September/049453.html


[11]   FAILED  winbot / ztk_dev py_270_win64
   https://mail.zope.org/pipermail/zope-tests/2011-September/049454.html


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