[Zope-dev] Editing using Firefox

2005-04-15 Thread Jeff Nielsen








Sorry in advance if this issue has been covered a bzillion
times already



Im playing with editing my Zope site using Firefox as
I can open Document and Method objects in tabbed windows and switch back and
forth between them. However, the tab title, based on the page title, for each
object is just Zope. Is there a way to get the object name to be
used as the page title and hence the tab title? Ive searched about a bit
for an answer and no joy so far.



Jeff Nielsen

UgoFast

http://www.UgoFast.com

[EMAIL PROTECTED]








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


RE: [Zope-dev] Threaded Database Access

2002-05-02 Thread Jeff Nielsen / UgoFast

Thanks for the info guys. It looks like these might do the trick.

-Original Message-
From: Paul Browning [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, May 02, 2002 10:55 AM
To: Casey Duncan
Cc: Jeff Nielsen / UgoFast; zope-dev
Subject: Re: [Zope-dev] Threaded Database Access




--On 02 May 2002 10:08 -0400 Casey Duncan [EMAIL PROTECTED] wrote:

 ZPsycopgDA (for postgres) is definitely multi-threaded. I think 
 zPopyDA is  too.

http://www.zope.org/Members/glpb/solaris says:

 The report also investigates in a cursory way the effects of adding a 
 database adapter to the equation. A test was carried out to compare 
 the effect of changing the threading model on a site doing queries 
 against an Oracle database using DCOracle2. It was found that queries 
 that involved writes on the database were forced to be completed in 
 serial (this is unsuprising), whilst read requests could be carried 
 out in parallel. In addition, ZSQL Methods have the ability to cache 
 the rows they fetch from a database for a given query. The results 
 show that caching of SQL queries can produce a significant performance

 boost.

HTH

Paul

--
 The Library, Tyndall Avenue, Univ. of Bristol, Bristol, BS8 1TJ, UK
   E-mail: [EMAIL PROTECTED]  URL: http://www.bris.ac.uk/




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



[Zope-dev] Threaded Database Access

2002-05-01 Thread Jeff Nielsen / UgoFast

I'm using Zope/Zserver 2.2.4, ZODBCDA v3.1.0b2 and SQL Server 2000. I've
noticed that pages generated from database querries are definitely
single threaded, and these pages are the bulk of my site. My poking
around seems to indicate that ZODBCDA is the single-threaded culprit,
and some emails from the list over the last couple months seem to
confirm that.

The volume of my site and the size of the database (hence query response
times) are getting to the point that this is a concern. So I'm
investigating my options, including:
1) Cluster the web site with multiple single processor machines.
2) Move to a database that Zope supports multi-threaded access to.
3) ?

I've been considering a move to Oracle or PostgreSQL/MySQL for other
reasons, but I'm not going to do it just for yucks. Extending and
populating my site gives better return than porting the database. I'd
like to make sure I'll get return on my time investment.

I saw an document on the Zope web site from 1999 that talked about
labeling Zope DAs Level 1,2 or 3 based on their sophistication, but I
don't see any of the current DAs labeled as such. There was text in the
Oracle and MySQL DA descriptions that seem to imply multi-threaded
behaivor though.

I'm looking for the info from the community on:
1. Is the ZODBCDA single-threaded and might that change anytime soon?
2. Can someone confirm that the Oracle, PostgreSQL or MySQL DAs are
multi-threaded.
3. Does the multi-threading require using the Zope Session facility or
some other feature? (My site uses FSSession.)

Thanks in advance for any input.

Jeff Nielsen / UgoFast
http://www.UgoFast.com
[EMAIL PROTECTED]
 



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



[Zope-dev] Create directory in LocalFS

2001-09-24 Thread Jeff Nielsen / UgoFast

Can anyone tell me how to create a subdirectory programmatically under a
LocalFS folder? I have a LocalFS folder called images. When I add a new
promoter to my site, I'd like to automatically add a directory that
would hold that promoter's images. If the promoter's ID number is 187, I
want to create a subdirectory '187' under images/Companies/100.

Jeff Nielsen / UgoFast
http://www.UgoFast.com
[EMAIL PROTECTED]
 


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



RE: [Zope-dev] A simple dtml-if question...

2001-06-07 Thread Jeff Nielsen / UgoFast

Hey thanks. That works.

-Original Message-
From: Chris Withers [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 07, 2001 4:43 AM
To: Jeff Nielsen / UgoFast
Cc: Christian Theune; Zope-Dev@Zope. Org
Subject: Re: [Zope-dev] A simple dtml-if question...


 Thanks Christian, but it didn't work. I went with the long way:
 
 dtml-if expr=LoginResults=='Pass'
   dtml-if expr=PATH_INFO=='/Maintain/Results'
 Valid response
   dtml-else
 False response
   /dtml-if
 dtml-else
 False response
 /dtml-if

dtml-if expr=LoginResults=='Pass' and PATH_INFO=='/Maintain/Results'
  Valid Response
dtml-else
  Fasle Response
/dtml-if

cheers,

Chris


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



RE: [Zope-dev] A simple dtml-if question...

2001-06-06 Thread Jeff Nielsen / UgoFast

Thanks Christian, but it didn't work. I went with the long way:

dtml-if expr=LoginResults=='Pass'
  dtml-if expr=PATH_INFO=='/Maintain/Results'
Valid response
  dtml-else
False response
  /dtml-if
dtml-else
False response
/dtml-if

Jeff

-Original Message-
From: Christian Theune [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 06, 2001 1:05 AM
To: Jeff Nielsen / UgoFast
Subject: Re: [Zope-dev] A simple dtml-if question...



 dtml-if expr=LoginResults=='Pass' .and. expr=PATH_INFO=='/'

hmm ... just guessing:

dtml-if expr=( LoginResults=='adsf'  PATH_INFO=='/')

Think so: It has to be a complete boolean expression .. so try to
combine boolean operators ...
Tell me if it worked ... :)

--
Christian Theune - [EMAIL PROTECTED]
gocept gmbh  co.kg - schalaunische strasse 6 - 06366 koethen/anhalt
tel.+49 3496 3099112 - fax.+49 3496 3099118 mob. - 0178 48 33 981

reduce(lambda x,y:x+y,map(lambda
x:chr(ord(x)^42),tuple('zS^BED\nX_FOY\x0b')))


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



RE: [Zope-dev] A simple dtml-if question...

2001-06-06 Thread Jeff Nielsen / UgoFast

Thanks Eric, I tried it and it didn't work. I went with the long way:

dtml-if expr=LoginResults=='Pass'
  dtml-if expr=PATH_INFO=='/Maintain/Results'
Valid response
  dtml-else
False response
  /dtml-if
dtml-else
False response
/dtml-if

Jeff

-Original Message-
From: E. Seifert [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 06, 2001 2:02 AM
To: Jeff Nielsen / UgoFast
Cc: [EMAIL PROTECTED]
Subject: Re: [Zope-dev] A simple dtml-if question...


Hi Jeff,

Jeff Nielsen wrote:
 How do I construct a dtml-if statement with two conditions joined by and
 logic? I want to do something like this:

 dtml-if expr=LoginResults=='Pass' .and. expr=PATH_INFO=='/'

Did you try
dtml-if expr=LoginResults=='Pass' and PATH_INFO=='/'

Regards
Eric




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



[Zope-dev] A simple dtml-if question...

2001-06-05 Thread Jeff Nielsen / UgoFast

How do I construct a dtml-if statement with two conditions joined by and
logic? I want to do something like this:

dtml-if expr=LoginResults=='Pass' .and. expr=PATH_INFO=='/'

Jeff Nielsen / UgoFast
http://www.UgoFast.com
[EMAIL PROTECTED]



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



[Zope] Moving site from dev to prod.

2000-07-28 Thread Jeff Nielsen

I can't quite seem to figure out how to move my web site from my development
machine to my production machine with Zope v2.1.x. Under Zope v1.0.9, I
simply copy the data.bbb file. Under Zope v2.1.x, this file seems to be
data.fs, but copying it doesn't seem to work as I get a NameError on
REQUEST. I've also tried to use the import/export capability, but I can't
figure out how to get the entire site to export. I been through the zope.org
sites, docs and recent emails, but can't seem to find guidance on this
topic.

My development machine is Zope v2.1.4 on NT and the production machine is
Zopev2.1.6 on NT. Both installs use FSSession v0.3.1 and LocalFS v0.1.5

If someone could guide me to documentation, or give me the basics of what
needs to happen, I would appreciate it.

Thanks.

---
Jeff Nielsen
http://www.UgoFast.com/
"Where U Go Fast"


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope-dev] Getting SessionUID from FSSession

2000-06-16 Thread Jeff Nielsen

How can I gather the current SessionUID from FSSession? From the docs, I
gather that

dtml-var "FSSession['SessionUID']"

should return the SessionUID, but it always returns "None". Can anyone clue
me in?

-------
Jeff Nielsen
http://www.UgoFast.com/
"Where U Go Fast"


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




RE: [Zope-dev] Getting SessionUID from FSSession

2000-06-16 Thread Jeff Nielsen

Beautiful, That's works. Thanks.

-Original Message-
From: Hung Jung Lu [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 16, 2000 1:59 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [Zope-dev] Getting SessionUID from FSSession


--- In [EMAIL PROTECTED], "Jeff Nielsen" [EMAIL PROTECTED] wrote:
How can I gather the current SessionUID from FSSession? From the docs, I
gather that

dtml-var "FSSession['SessionUID']"

should return the SessionUID, but it always returns "None". Can anyone clue
me in?

Try:

  dtml-var "FSSession.getName()"

regards,

Hung Jung

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com



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