Re: Zope

2004-01-07 Thread Stephen
On Wed, Jan 07, 2004 at 06:38:27PM -0500 or thereabouts, Stephen wrote:
> When upgrading from Stable to Sarge, Zope changed, and now doesn't
> startup. The following is offered when attempting to start zope:
> 
>   zopectl start
>   Starting Zope instance default...
>failed: missing required
>path(/var/lib/zope/instance/default/access)
> Waiting instances in late: done.
> default: start: missing required
> path(/var/lib/zope/instance/default/access)
> 
> This is a straight upgrade, from what was a working Zope config. Any
> suggestions?

Ok I figured this out -- for the archives, here is the solution.

Issue the command 'zopectl -a default' -- this will create the default
user, and prompt the user for p/l information. Once done, then start up
Zope, by issuing the following command 'zopectl start'. Then login and
start playing. Note, if one has SSL already running with a webserver,
than the default port 8080 will not work. Usually zope falls back to
port 9673, so that will need to be in the browser URL>

-- 
Stephen


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: zope?

2003-09-22 Thread Pim Bliek | PingWings.nl
I did a full apt-get remove --purge zope
And then reinstalled it, *without* the ldap stuff etc. I only install
zope-cmfplone and related packages.

Works fine now, I can use it on port 9673.

Pim

P.S. I run Sid

-
PingWings - the penguin provides profit
- - - - - - - - - - - - - - - - - - - - - - -
M:  06-24711729
E:  [EMAIL PROTECTED]
I:  www.pingwings.nl
-

> Pim Bliek wrote:
>
>>Hi,
>>
>>Anyone else using zope?
>>I am trying to get it to work on Sid with Apache 1.3.
>>
>>Troubles I have:
>>
>>- I cannot compile pcgi because I don't have the Apache sources, so I
>>went without it.
>>- I try to reach the zserver itself directly on port 9673, but it does
>>nothing also nothing in the logs...
>>
>>Can someone with a succesfull setup please post his configs?
>>
>>Thanx!
>>Pim
>>
>>
>>
>>
> I have been having the same problem. I havew been trying to get Zope
> running for about a week. No progress. In the past it simply worked when
> installed. The current version seems to get the server running on port
> 9673 but I can not get to the manage login screen. I keep getting the
> same message "connection refused. I think this is a bug as I can not
> locate a permission problem.
> I too would appreciate any advice.
>
> --
> John Foster
>
>
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>
>


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: zope?

2003-09-19 Thread Bob McElrath
John Foster [EMAIL PROTECTED] wrote:
> Pim Bliek wrote:
> 
> >Hi,
> >
> >Anyone else using zope?
> >I am trying to get it to work on Sid with Apache 1.3.
> >
> >Troubles I have:
> >
> >- I cannot compile pcgi because I don't have the Apache sources, so I
> >went without it.
> >- I try to reach the zserver itself directly on port 9673, but it does
> >nothing also nothing in the logs...
> >
> >Can someone with a succesfull setup please post his configs?
> >
> >Thanx!
> >Pim
> >
> I have been having the same problem. I havew been trying to get Zope 
> running for about a week. No progress. In the past it simply worked when 
> installed. The current version seems to get the server running on port 
> 9673 but I can not get to the manage login screen. I keep getting the 
> same message "connection refused. I think this is a bug as I can not 
> locate a permission problem.
> I too would appreciate any advice.

Mine (http://mcelrath.org/Notes/) is running on port 9674 (but I may
have changed that).  The port number is specified in /usr/sbin/zope-z2
but may be overridden by /etc/init.d/zope.

I am also using fastcgi (this does not work perfectly yet).  I have the
following in /etc/init.d/zope:
ZOPEOPTS="-F 9673 -p - -f - -w 9674 -t 1" #-w - -f - -p -
And here are the relevant parts of my httpd.conf (Apache 1.3.27):

LoadModule fastcgi_module /usr/lib/apache/1.3/mod_fastcgi.so

FastCgiIpcDir   /tmp
FastCgiExternalServer /usr/lib/cgi-bin/Zope -host moya:9673 \
-idle-timeout 600   \
-pass-header Authorization
ScriptAlias /Zope  /usr/lib/cgi-bin/Zope

AuthType Basic
AuthName Zope-realm
AuthUserFile /etc/apache/passwd
require valid-user
SetHandler fastcgi-script


ScriptAlias /Notes /usr/lib/cgi-bin/Zope/Notes

SetHandler fastcgi-script


ScriptAlias /p_/usr/lib/cgi-bin/Zope/p_

SetHandler fastcgi-script


ScriptAlias /misc_ /usr/lib/cgi-bin/Zope/misc_

SetHandler fastcgi-script


I say it doesn't work perfectly yet because not everything in Zope realizes
that the base URL is http://mcelrath.org/Notes/ and not http://mcelrath.org.

Cheers,
Bob McElrath [Univ. of California at Davis, Department of Physics]

"Knowledge will forever govern ignorance, and a people who mean to
be their own governors, must arm themselves with the power knowledge
gives. A popular government without popular information or the means
of acquiring it, is but a prologue to a farce or a tragedy or
perhaps both."
- James Madison


pgp0.pgp
Description: PGP signature


Re: zope?

2003-09-19 Thread Vineet Kumar
* John Foster ([EMAIL PROTECTED]) [030919 12:45]:
> I have been having the same problem. I havew been trying to get Zope 
> running for about a week. No progress. In the past it simply worked when 
> installed. The current version seems to get the server running on port 
> 9673 but I can not get to the manage login screen. I keep getting the 
> same message "connection refused. I think this is a bug as I can not 
> locate a permission problem.
> I too would appreciate any advice.

If you're seeing connection refused, I'd look at whether the server is
running at all.  Use netstat -tnlp to see what (if anything) is
listening on what ports.

good times,
Vineet
-- 
http://www.doorstop.net/
-- 
http://www.eff.org/ Defending freedom in the digital world


pgp0.pgp
Description: PGP signature


Re: zope?

2003-09-19 Thread John Foster
Pim Bliek wrote:

Hi,

Anyone else using zope?
I am trying to get it to work on Sid with Apache 1.3.
Troubles I have:

- I cannot compile pcgi because I don't have the Apache sources, so I
went without it.
- I try to reach the zserver itself directly on port 9673, but it does
nothing also nothing in the logs...
Can someone with a succesfull setup please post his configs?

Thanx!
Pim
 

I have been having the same problem. I havew been trying to get Zope 
running for about a week. No progress. In the past it simply worked when 
installed. The current version seems to get the server running on port 
9673 but I can not get to the manage login screen. I keep getting the 
same message "connection refused. I think this is a bug as I can not 
locate a permission problem.
I too would appreciate any advice.

--
John Foster


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: zope?

2003-09-17 Thread Mark Roach
On Wed, 2003-09-17 at 14:25, Pim Bliek wrote:
> I have to add, I just found this in my /var/log/zope/Z2-detailed.log.
> There is nothing in Z2.log. It generates the message below when I try to
> acces it on localhost:9673
> 
> B 150063372 2003-09-17T20:19:55 GET /
> I 150063372 2003-09-17T20:19:55 0

try http://localhost:9673/manage it looks like your / page is empty for
some reason.

-Mark


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: zope?

2003-09-17 Thread Pim Bliek
I have to add, I just found this in my /var/log/zope/Z2-detailed.log.
There is nothing in Z2.log. It generates the message below when I try to
acces it on localhost:9673

B 150063372 2003-09-17T20:19:55 GET /
I 150063372 2003-09-17T20:19:55 0




On Wed, 2003-09-17 at 20:19, Pim Bliek wrote:
> Hi,
> 
> Anyone else using zope?
> I am trying to get it to work on Sid with Apache 1.3.
> 
> Troubles I have:
> 
> - I cannot compile pcgi because I don't have the Apache sources, so I
> went without it.
> - I try to reach the zserver itself directly on port 9673, but it does
> nothing also nothing in the logs...
> 
> Can someone with a succesfull setup please post his configs?
> 
> Thanx!
> Pim
> 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: ZOPE HELP

2003-08-14 Thread Derrick 'dman' Hudson
On Tue, Aug 05, 2003 at 03:45:23PM -0700, Kidest Mamo wrote:
| I got same problem... "Starting Zope  failed no INSTANCE_HOME found use zopectl 
create first" I start zope from /etc/init.d/zope start
|  
| how can I fix this problem?
| pls let me know

Read what you wrote.  It contains the answer.  (also re-quoted below)
***
use 'zopectl create'
***

-D

-- 
Religion that God our Father accepts as pure and faultless is this: to
look after orphans and widows in their distress and to keep oneself from
being polluted by the world.
James 1:27
 
http://dman13.dyndns.org/~dman/


pgp0.pgp
Description: PGP signature


Re: zope not starting

2003-08-04 Thread Andreas Janssen
Hello

Kidest Mamo (<[EMAIL PROTECTED]>) wrote:

> when I was starting zope I got the following error please help
> Starting Zope failed no INSTANCE_HOME found , use "zopectl create"
> first
>  
> what I hve to to do to create sopectl???

The error message says:
use "zopectl create"
So I assume you have to use the "zopectl" program with the "create"
parameter to get it running.

best regards
Andreas Janssen

-- 
Andreas Janssen
[EMAIL PROTECTED]
PGP-Key-ID: 0xDC801674
Registered Linux User #267976


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Zope problem

2003-07-12 Thread Paulo Jorge
On Thu, Jul 10, 2003 at 07:22:49AM +0200, Igor Stroh wrote:
> > I was installing zope+plone from unstable:
> > 
> > # apt-get install zope plone
> > 
> > The instalation went well but when I was starting zope I got the
> > following error:
> > 
> > # /etc/init.d/zope start
> > Starting Zope... failed: no INSTANCE_HOME found, use "zopectl create" first
> 
> Just do what it says, run `zopectl create`...
> 
> 
> Igor.

Shouldn't exist a dependency between zope and zopectl?

-- 
Paulo Jorge Jesus Silva
perl -we 'print "paulojjs".reverse "\ntp.letagarb@"'

Getting into trouble is easy.
-- D. Winkel and F. Prosser


pgp0.pgp
Description: PGP signature


Re: Zope problem

2003-07-09 Thread Igor Stroh
On Mit, 2003-07-09 at 20:51, Paulo Jorge wrote:
> I was installing zope+plone from unstable:
> 
> # apt-get install zope plone
> 
> The instalation went well but when I was starting zope I got the
> following error:
> 
> # /etc/init.d/zope start
> Starting Zope... failed: no INSTANCE_HOME found, use "zopectl create" first

Just do what it says, run `zopectl create`...


Igor.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



RE: zope

2002-06-14 Thread O Senhor
  Thanks,
  Exists one script zopectl (in /usr/sbin).

  Thanks again.


  
On Fri, 2002-06-14 at 12:00, Jan Johansson wrote:
> >   How can i start and stop the zope server? In SuSE and FreeBSD there
> > are the start and stop script, and in Debian/GNU Linux? I have stopped
> > with kill, and can't restart
> 
> /etc/init.d/zope restart (or stop, or start or...)
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
-- 
-
thesirbr  O Senhor do Brasil.
-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



RE: zope

2002-06-14 Thread Jan Johansson
>   How can i start and stop the zope server? In SuSE and FreeBSD there
> are the start and stop script, and in Debian/GNU Linux? I have stopped
> with kill, and can't restart

/etc/init.d/zope restart (or stop, or start or...)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Zope in testing

2002-03-07 Thread Nick Hastings
Hi,

* user list <[EMAIL PROTECTED]> [020308 10:54]:
> I have a fairly stable testing box with a 2.4.16 kernel. However Zope refuses
> to start. Can anyone advise?

Same for me in unstable. I've had heaps of trouble with zope...

I turned on debugging (edit /etc/init.d/zope), the log is a real mess. Looks
like bugs in the python scripts. I guess there was some python update or
something...

I've tried both with and without fastcgi, make no difference.

Anyway, I've included my log file.

Cheers,

Nick.


Contents of /var/log/zope-debug.log

--
2002-03-08T00:36:30 INFO(0) zdaemon zdaemon: Fri Mar  8 11:36:30 2002: Houston, 
we have forked
--
2002-03-08T00:36:30 INFO(0) zdaemon zdaemon: Fri Mar  8 11:36:30 2002: Hi, I jus
t forked off a kid: 13066
--
2002-03-08T00:36:30 INFO(0) zdaemon zdaemon: Fri Mar  8 11:36:30 2002: Houston, 
we have forked
--
2002-03-08T00:36:59 ERROR(200) ZODB Couldn't load state for '\x00\x00\x00\x00\x0
0\x00\x00\x02'
Traceback (innermost last):
  File /usr/lib/zope/lib/python/ZODB/Connection.py, line 471, in setstate
TypeError: ('__init__() takes exactly 3 arguments (1 given)', , ())


--
2002-03-08T00:36:59 PANIC(300) z2 Startup exception
--
2002-03-08T00:36:59 ERROR(200) ZODB Couldn't load state for '\x00\x00\x00\x00\x0
0\x00\x00\x02'
Traceback (innermost last):
  File /usr/lib/zope/lib/python/ZODB/Connection.py, line 471, in setstate
TypeError: ('__init__() takes exactly 3 arguments (1 given)', , ())


Traceback (innermost last):
  File /usr/sbin/zope-z2, line 504, in ?
  File , line 1, in ?
  File /usr/lib/zope/lib/python/Zope/__init__.py, line 71, in ?
  File /usr/lib/zope/lib/python/OFS/Application.py, line 245, in initialize
  File /usr/lib/zope/lib/python/ZODB/Connection.py, line 471, in setstate
TypeError: ('__init__() takes exactly 3 arguments (1 given)', , ())


--
2002-03-08T00:36:59 PROBLEM(100) zdaemon zdaemon: Fri Mar  8 11:36:59 2002: The 
kid, 13066, died on me.


-- 
Debian 3.0
Linux onefish 2.4.18-lavienx #1 Tue Feb 26 17:37:42 EST 2002 i686 unknown



Re: Zope in sid broken?

2002-02-06 Thread Nick Hastings
Forgot the reference:

1. http://www.zope.org/Members/ajlouie/fastcgidebian

* Nick Hastings <[EMAIL PROTECTED]> [020206 17:41]:
> Hi All,
> 
>I upgraded my sid machine since I last played with zope (1 month ago?).
>
>Previously I was using apache with mod_rewrite and fast_cgi (see [1]) 
> and everything worked ok. Now (even if I revert to a default zope setup) I
> can't get zope to start. If I turn on debugging I can see a whole bunch of
> python errors... perhaps python has changed again?

----
 _   
 Nick Hastings /_/  ...   
 School of Physics, :O(_ ...'  _   `..   
 The University of Melbourne   \_\/_/ `...   
 VIC, 3010 Australia.   .   _  .'''  
 [EMAIL PROTECTED]   .   (_) ))) ...'  
 Phone: +61 3 8344 5075   0  _   B decay 
 Fax:   +61 3 9347 4783 \_\  

 



Re: Zope

2001-12-15 Thread Oleksandr Moskalenko
* [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote:
> 
> Hello, i hope you are the right person to contact.
> 
> I did not see this bug listed on debian.bugs

  Maybe you should use reportbug to list it there. The maintainers are
usually very responsive. They should fix it if you submit it. That's
what I'd do in such a situation.

 Alex.
 
> here goes.
 
> On Sid, when i try to upgrade or remove or reinstall zope i get this
> error:
> 
> 
> -
> 
> 
> text:/home/dude# apt-get install zope
> Reading Package Lists... Done
> Building Dependency Tree... Done
> You might want to run `apt-get -f install' to correct these:
> Sorry, but the following packages have unmet dependencies:
>   kdelibs3: Depends: libxslt1 (>= 1.0.6-1) but it is not going to be
> installed
> E: Unmet dependencies. Try 'apt-get -f install' with no packages (or
> specify a solution).
> text:/home/dude#
> 
> 
> when i do 'apt-get -f install' i get :
> 
> text:/home/dude# apt-get -f install
> Reading Package Lists... Done
> Building Dependency Tree... Done
> Correcting dependencies... Done
> The following extra packages will be installed:
>   libfam0 libxslt1 python zope
> The following packages will be REMOVED:
>   python-base
> The following NEW packages will be installed:
>   libfam0 libxslt1 python
> 1 packages upgraded, 3 newly installed, 1 to remove and 99  not upgraded.
> 6 packages not fully installed or removed.
> Need to get 0B/2046kB of archives. After unpacking 1686kB will be used.
> Do you want to continue? [Y/n] Y
> (Reading database ... 34302 files and directories currently installed.)
> Preparing to replace zope 2.3.3-1 (using .../zope_2.4.2-0.2_i386.deb) ...
> dpkg: warning - old pre-removal script returned error exit status 1
> dpkg - trying script from the new package instead ...
> dpkg: error processing /var/cache/apt/archives/zope_2.4.2-0.2_i386.deb
> (--unpack):
>  subprocess new pre-removal script returned error exit status 1
> dpkg: error while cleaning up:
>  subprocess post-installation script returned error exit status 1
> Errors were encountered while processing:
>  /var/cache/apt/archives/zope_2.4.2-0.2_i386.deb
> E: Sub-process /usr/bin/dpkg returned an error code (1)
> text:/home/dude#
> -
> 
> I looked at the sciprt but could not figure out what was going on.
> 
> Thank you for you help
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 

---
Oleksandr Moskalenko
[EMAIL PROTECTED]
---
pub  1024D/6C5F196B 2001-08-17 /* http://www.tagancha.org/pgp */
Oleksandr V. Moskalenko (Alex) <[EMAIL PROTECTED]>
Fingerprint = EE63 C471 ADBA 5D80 ADFB  1054 DA28 6F32 6C5F 196B




Re: Zope-Stuff in unstable

2001-12-06 Thread dman
On Fri, Dec 07, 2001 at 12:43:02AM +0100, [EMAIL PROTECTED] wrote:
| Hey !
| 
| Does anyone knows when the rest of the zope stuff will be includet in 
| "unstable"/"sid".
| 
| Since weeks I can´t update my system because nearly all zope packages will 
| be deinstalled.
| At first the most important, my connection zope-popyda to my postgres 
| database.

Bug the zope-popyda maintainer (or find an alternative).  That package
is out of date, doesn't conform to policy, and uses the old python
version.  Until that is updated, you are out of luck.

-D

-- 

If any of you lacks wisdom, he should ask God, who gives generously to
all without finding fault, and it will be given to him.  But when he
asks he must believe and not doubt, because he who doubts is like a wave
of the sea, blown and tossed by the wind.
James 1:5-6



Re: Zope-emarket in sid

2001-03-17 Thread Thomas Deselaers
> "Thomas" == Thomas Deselaers <[EMAIL PROTECTED]> writes:

Thomas> Hello everybody, I am running the latest sid and I wanted
Thomas> to install zope and the zope-emarket module. Just after
Thomas> installing Zope tells in the List of products just after
Thomas> EMarket "Broken product EMarket". What do I have to do to
Thomas> make this work. It would be fine if somebody could help
Thomas> me, because until now I am not very experienced with Zope.
I found out what to do in concerning this problem. There is just a
missing dependency of the deb. EMarket needs ZPatterns. So I solved
this. But now I am having trouble in using this EMarket. In the
README.gz is written that I would have to create some ZClasses. But I
don't know how to do this. Is here anybody able to give me a more
detailed outline on how to do this. 

Sorry for being not very debian-specific.

Thomas

-- 
[EMAIL PROTECTED]www.deselaers.deICQ# on request



Re: Zope newbie can't log in

2000-11-16 Thread Adam Shand

> I can log in on Zope as superuser and create a new user.  But I can
> not log in as that user although anything is correct as far as the
> login name and password is concerned.

i am new to zope as well but i just dealt with this the ohter day.  it
appears that the admin user can log in from anywhere (or that the
post-install script for the debian package sets it that way), however a
user you create, you must specify the hosts or domains that they can come
from when you create the user in zope.  i haven't tried to see if a * will
allow access from anywhere yet.

> I have removed apache still can not log in as user - even user 'a'
> with password 'a' which I created as superuser.  I have tried it on
> Mozilla, Netscape and Lynx.  Links would not work with Zope because it
> ignores the :9673 part in references.

apache has nothing to do with this if you are reaching zope on port
9673.  and lynx should work just fine.  just make sure you specify the url
correctly.

http://host.domain.com:9673/

adam.



Re: zope

2000-11-02 Thread Chris Gray
Point your web browser at http://localhost:8080/ and you're in
business.  (Depending on what other web services you have on your machine
you may have to point your web browser at http://localhost:9673/
instead.)  The first screen you see will point you to some documentation
and then you'll want to click the link to the management screen.  When you
do you'll then need that user name and password you established at
installation time.

If you need more help start at http://www.zope.org/ and
http://weblogs.userland.com/zopeNewbies/.  There is also the text of the
book to be published by O'Reilly at
http://www.zope.org/Members/michel/ZB/.

Have fun and welcome to the wonderful world of Zope.

Chris


On Fri, 3 Nov 2000, John-Mark wrote:

> 
> All
> I have installed zope. It asked me for a user name and password when 
> installing and on boot up i notice it says starting zope and consequently 
> stoppes it on termination of the system. I have read some where that it is a 
> web development tool. Since installation now man files available . Can anyone 
> tell me more about this package and how to use it. Thank you
> jm
> 



Re: Zope 2.2.x (wood) under potato

2000-09-22 Thread Mario Olimpio de Menezes
On Fri, 22 Sep 2000, Giuseppe Pagano wrote:

> Yes, and works fine
> Keep actention at the new permission system
> [EMAIL PROTECTED] 

Hi, 
thanks for your reply!
Yes, I'm trying to get my site up again, since I have some
virtual hosts. 
Do you know of some subtle changes in SiteRoot that can cause
problems?
Thanks

[]s,
Mario O.de Menezes"Many are the plans in a man's heart, but
IPEN-CNEN/SP is the Lord's purpose that prevails"
http://curiango.ipen.br/~mario Prov. 19.21
   http://www.revistalinux.com.br



Re: zope problems

1999-10-28 Thread Randy Edwards
> I did the suggested permission changes in /var/lib/zope making it
> writtable by www-data, but without luck.

   You probably did it (but I have to ask anyway:-) but did you create a
superuser account in /var/lib/zope/access?

-- 

 Regards,  | Upgrade your old Windows machine to Linux and
 . | experience *real* savings, reliability, and 
 Randy | stability.  Join the open source code, free
 [EMAIL PROTECTED] | software revolution at http://www.debian.org


Re: zope problems

1999-10-28 Thread Mario Olimpio de Menezes

Hi,

I'm stiil having problems with zope. Just now I found a traceback
in the html page source. 
Does you know how to interpret this?
It's:
---

--

I have no idea what is happening here.

Thanks,

[]s,
Mario O.de Menezes"Many are the plans in a man's heart, but
IPEN-CNEN/SP is the Lord's purpose that prevails"
http://curiango.ipen.br/~mario Prov. 19.21
   http://www.revistalinux.com.br