Re: [Zope] Re: ImportError: No module named cPersistence

2006-11-18 Thread Maciej Wisniowski
   [EMAIL PROTECTED]:newplone.climatelaw.org]$ make inplace
   make: don't know how to make
   PREFIX=/usr/local/zope/software-home/Zope-2.8.5-final. Stop
 
If you have tar.gz Zope version try:

0. go to your folder with install files
1. ./configure --prefix=/opt/Zope/Zope285
2. make
3. make install
4. cd /opt/Zope/Zope285/bin
5. ./mkzopeinstance


-- 
Maciej Wisniowski
___
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] Zope on Mac OS X Server

2006-11-18 Thread Garito

Tom Von Lahndorff escribió:
Hi I'm having trouble setting redirecting port 80 to port 8080 on Mac 
OS X Server 10.4. I installed Zope via the Plone installer and have a 
an Instance running in the Applications folder. I can access the ZMI 
on port 8080 via the machines IP address, but I can't seem to get the 
Apache rewrite rule to work as shown in the various documentation. I'm 
curious if anyone has done this before and/or has used OS X Server's 
Server Admin tool to create an alias or redirect from port 80 to 8080. 
Thanks in advance.


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

Hi, Tom!
I have a zope 2.3.5 running on a Macmini with MacOSX Server with rewrite 
module working ok


I set the rewrite module sentence by hand:

RewriteRule ^/(.*) 
http://your.ip:8080/VirtualHostBase/http/your.domain.net:80/Blogs/VirtualHostRoot/$1 
[L,P]


I can set it at /private/etc/httpd/sites (the server put here the 
virtual sites's settings


Need some aditional help?

See ya!

--
Mis Cosas
http://blogs.sistes.net/Garito


___
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] Database connectors

2006-11-18 Thread Jean Rodrigo Ferri

Chris Withers escreveu:

rieh25 wrote:

I wanted to do it because for some reason, my oracle connector (DCOracle)
keeps disconnecting, 


DCOracle is broken ;-)

The errors you are seeing are likely due to a silly timeout being set on 
the TNS listener by your oracle dbas. Tell them to remove the timeout 
and your problems will likely go away.


The open/close button on a ZOracleDA actually does nothing except change 
the state of the button ;-)


What do you think about ZcxOracleDA[1]?

I don't use Oracle, but I spoke with Wilton and he told me that it was 
working fine. Please try it, may be a good solution.


[1] http://www.tom.pro.br/componentes

Regards,

--
Jean Ferri


___ 
Novidade no Yahoo! Mail: receba alertas de novas mensagens no seu celular. Registre seu aparelho agora! 
http://br.mobile.yahoo.com/mailalertas/ 



___
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] Database connectors

2006-11-18 Thread Maciej Wisniowski
 What do you think about ZcxOracleDA[1]?
 
 I don't use Oracle, but I spoke with Wilton and he told me that it was
 working fine. Please try it, may be a good solution.
 
 [1] http://www.tom.pro.br/componentes
I've tested this some time ago. It works but, at the time I checked,
this, there were no StoredProcedures support. I'm not sure if it has
changed. I've even written e-mail to prof. Wilton Alcentar but with
no answer (or it was lost somewhere - spam filters or something?). Since
then, in my company we have changed ZcxOracleDA, and now we have version
that supports StoredProcedures in a similiar way as DCOracle2 does. It
has not been tested yet, we had no time.

In general cxOracle is nice because it works under windows and linux
without problems.

Do you know whether it is possible to contact with prof. Alcentar?
I've resigned after this one, unanswered e-mail, but I think it would be
nice to publish this project (with his and our code) on sourceforge (or
google code).

-- 
Maciej Wisniowski


___
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-Checkins] SVN: Zope/branches/2.10/lib/python/OFS/Application.py fixed logger call

2006-11-18 Thread Andreas Jung
Log message for revision 71171:
  fixed logger call
  

Changed:
  U   Zope/branches/2.10/lib/python/OFS/Application.py

-=-
Modified: Zope/branches/2.10/lib/python/OFS/Application.py
===
--- Zope/branches/2.10/lib/python/OFS/Application.py2006-11-17 20:17:28 UTC 
(rev 71170)
+++ Zope/branches/2.10/lib/python/OFS/Application.py2006-11-18 10:13:25 UTC 
(rev 71171)
@@ -569,8 +569,8 @@
 transaction.commit()
 except:
 bad_things=1
-LOG.error('The attempt to rebuild the registry failed.',
-error=sys.exc_info())
+LOG.error('The attempt to rebuild the registry 
failed.',exc_info=True)
+   
 transaction.abort()
 
 # Now we need to see if any (disk-based) products were installed

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/Application.py fixed logger call

2006-11-18 Thread Andreas Jung
Log message for revision 71172:
  fixed logger call
  

Changed:
  U   Zope/trunk/lib/python/OFS/Application.py

-=-
Modified: Zope/trunk/lib/python/OFS/Application.py
===
--- Zope/trunk/lib/python/OFS/Application.py2006-11-18 10:13:25 UTC (rev 
71171)
+++ Zope/trunk/lib/python/OFS/Application.py2006-11-18 10:15:43 UTC (rev 
71172)
@@ -570,7 +570,7 @@
 except:
 bad_things=1
 LOG.error('The attempt to rebuild the registry failed.',
-error=sys.exc_info())
+   exc_info=True)
 transaction.abort()
 
 # Now we need to see if any (disk-based) products were installed

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Products.Five/trunk/fiveconfigure.py fixed logger call

2006-11-18 Thread Andreas Jung
Log message for revision 71173:
  fixed logger call
  

Changed:
  U   Products.Five/trunk/fiveconfigure.py

-=-
Modified: Products.Five/trunk/fiveconfigure.py
===
--- Products.Five/trunk/fiveconfigure.py2006-11-18 10:15:43 UTC (rev 
71172)
+++ Products.Five/trunk/fiveconfigure.py2006-11-18 10:30:16 UTC (rev 
71173)
@@ -64,8 +64,7 @@
 # XXX It would be really cool if we could make this product appear broken
 # in the control panel. However, all attempts to do so has failed from my 
 # side. //regebro
-exc = sys.exc_info()
-LOG.error('Could not import Product %s' % product.__name__, exc_info=exc)
+LOG.error('Could not import Product %s' % product.__name__, exc_info=True)
 
 def loadProducts(_context, file=None):
 if file is None:

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Products.Five/branches/1.5/fiveconfigure.py fixed logger call

2006-11-18 Thread Andreas Jung
Log message for revision 71174:
  fixed logger call

Changed:
  U   Products.Five/branches/1.5/fiveconfigure.py

-=-
Modified: Products.Five/branches/1.5/fiveconfigure.py
===
--- Products.Five/branches/1.5/fiveconfigure.py 2006-11-18 10:30:16 UTC (rev 
71173)
+++ Products.Five/branches/1.5/fiveconfigure.py 2006-11-18 10:30:42 UTC (rev 
71174)
@@ -64,8 +64,7 @@
 # XXX It would be really cool if we could make this product appear broken
 # in the control panel. However, all attempts to do so has failed from my 
 # side. //regebro
-exc = sys.exc_info()
-LOG.error('Could not import Product %s' % product.__name__, exc_info=exc)
+LOG.error('Could not import Product %s' % product.__name__, exc_info=True)
 
 def loadProducts(_context, file=None):
 if file is None:

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Products.Five/branches/1.3/fiveconfigure.py fixed logger call

2006-11-18 Thread Andreas Jung
Log message for revision 71176:
  fixed logger call

Changed:
  U   Products.Five/branches/1.3/fiveconfigure.py

-=-
Modified: Products.Five/branches/1.3/fiveconfigure.py
===
--- Products.Five/branches/1.3/fiveconfigure.py 2006-11-18 10:30:57 UTC (rev 
71175)
+++ Products.Five/branches/1.3/fiveconfigure.py 2006-11-18 10:31:10 UTC (rev 
71176)
@@ -63,8 +63,7 @@
 # XXX It would be really cool if we could make this product appear broken
 # in the control panel. However, all attempts to do so has failed from my 
 # side. //regebro
-exc = sys.exc_info()
-logger.error('Could not import Product %s' % product.__name__, error=exc)
+logger.error('Could not import Product %s' % product.__name__, error=True)
 
 def loadProducts(_context):
 products = findProducts()

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Products.Five/branches/1.2/fiveconfigure.py fixed logger call

2006-11-18 Thread Andreas Jung
Log message for revision 71177:
  fixed logger call

Changed:
  U   Products.Five/branches/1.2/fiveconfigure.py

-=-
Modified: Products.Five/branches/1.2/fiveconfigure.py
===
--- Products.Five/branches/1.2/fiveconfigure.py 2006-11-18 10:31:10 UTC (rev 
71176)
+++ Products.Five/branches/1.2/fiveconfigure.py 2006-11-18 10:31:34 UTC (rev 
71177)
@@ -60,8 +60,7 @@
 # XXX It would be really cool if we could make this product appear broken
 # in the control panel. However, all attempts to do so has failed from my 
 # side. //regebro
-exc = sys.exc_info()
-LOG('Five', ERROR, 'Could not import Product %s' % product.__name__, 
error=exc)
+LOG('Five', ERROR, 'Could not import Product %s' % product.__name__, 
error=True)
 
 def loadProducts(_context):
 products = findProducts()

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Products.Five/branches/1.1/fiveconfigure.py fixed logger call

2006-11-18 Thread Andreas Jung
Log message for revision 71178:
  fixed logger call

Changed:
  U   Products.Five/branches/1.1/fiveconfigure.py

-=-
Modified: Products.Five/branches/1.1/fiveconfigure.py
===
--- Products.Five/branches/1.1/fiveconfigure.py 2006-11-18 10:31:34 UTC (rev 
71177)
+++ Products.Five/branches/1.1/fiveconfigure.py 2006-11-18 10:31:49 UTC (rev 
71178)
@@ -54,8 +54,7 @@
 # XXX It would be really cool if we could make this product appear broken
 # in the control panel. However, all attempts to do so has failed from my 
 # side. //regebro
-exc = sys.exc_info()
-LOG('Five', ERROR, 'Could not import Product %s' % product, error=exc)
+LOG('Five', ERROR, 'Could not import Product %s' % product, error=True)
 
 def loadProducts(_context):
 products = findProducts()

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-dev] Zope Tests: 8 OK, 1 Failed

2006-11-18 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Fri Nov 17 12:00:00 2006 UTC to Sat Nov 18 12:00:00 2006 UTC.
There were 9 messages: 9 from Zope Unit Tests.


Test failures
-

Subject: FAILED (failures=2) : Zope-2.8 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:35:06 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006598.html


Tests passed OK
---

Subject: OK : Zope-2.6 Python-2.1.3 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:27:35 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006593.html

Subject: OK : Zope-2.6 Python-2.3.6 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:29:05 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006594.html

Subject: OK : Zope-2.7 Python-2.3.6 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:30:36 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006595.html

Subject: OK : Zope-2.7 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:32:06 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006596.html

Subject: OK : Zope-2.8 Python-2.3.6 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:33:36 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006597.html

Subject: OK : Zope-2.9 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:36:36 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006599.html

Subject: OK : Zope-2.10 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:38:06 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006600.html

Subject: OK : Zope-trunk Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Fri Nov 17 21:39:37 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-November/006601.html

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