Re: [Zope-dev] manage_workspace => index_html

2001-07-08 Thread Kyler B. Laird


On 15 May 2001 13:23:30 -0600 you wrote:

>> My workspace keeps being redirected to index_html

>> I don't understand it, but I see that netscape navigator doesn't
>> seem to have this problem.  But Mozilla and Lynx does!

Same situation here.

>With mozilla, please state the version/buildnumber/daily-build-date.

Mozilla 0.9.2
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.2) Gecko/20010628

This is with Zope 2.4.0b3.

It's not so bad now, but if Mozilla ever fixes tab handling
within textareas, I'm going to want to use it with Zope.

--kyler

___
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] DateTime class not recognizing timezone correctly...

2001-07-08 Thread Steve Spicklemire

Hi -dev folk.. 

I ha(d) a problem where DateTime was basing the local timezone on
time.tzname, and getting it wrong. (tzname comes from the abbreviation,
which in Indiana is 'EST', but DateTime really wants 'US/East-Indiana'.
So.. I patched DateTime as follows.. I saw a proposal in the archives
about this kind of solution. Any other ideas? How are other folks
handling this?

thanks,
-steve

diff DateTime.py myDateTime.py
96,97c96,107
< try: from time import tzname
< except: tzname=('UNKNOWN','UNKNOWN')
---
> 
> tzname = None
> try:
> from localzoneinfo import tzname
> except:
> pass
> 
> try:
> if tzname is None:
> from time import tzname
> except:
> tzname=('UNKNOWN','UNKNOWN')

___
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] manage_workspace => index_html

2001-07-08 Thread Christian Theune

> It's not so bad now, but if Mozilla ever fixes tab handling
> within textareas, I'm going to want to use it with Zope.

if you are really interested in using the tab with mozilla 
- because there is no fix needed, read the specifications,
where you will find the request to handle tabbing everywhere
the same - but i could ask a partner of mine, who changed
his mozilla to work with the tab in textareas, for a patch

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

 PGP signature


Re: [Zope-dev] manage_workspace => index_html

2001-07-08 Thread Kyler B. Laird


On Sun, 8 Jul 2001 21:56:51 +0200 you wrote:

>> It's not so bad now, but if Mozilla ever fixes tab handling
>> within textareas, I'm going to want to use it with Zope.
>
>if you are really interested in using the tab with mozilla=20

I am.  Others are too - here and elsewhere.
http://bugzilla.mozilla.org/show_bug.cgi?id=29086

>- because there is no fix needed,

O.k., so what's the secret?  How do you put a tab
in a textarea using Mozilla?

>read the specifications,
>where you will find the request to handle tabbing everywhere
>the same - 

It doesn't sound like it's been resolved from
what I've read. 

>but i could ask a partner of mine, who changed
>his mozilla to work with the tab in textareas, for a patch

I'd appreciate that.  Thank you.  I'm willing
to believe that the knowledge is somewhere in
http://www.mozilla.org/unix/customizing.html#keys
but I haven't extracted it.

I'm waiting to be able to use an arbitrary
application (EDITOR) in place of the usual
textarea.  I'd be thrilled to have
vi/emacs/whatever right there.  Someday...

--kyler

___
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] Content integration question

2001-07-08 Thread Webkitschen Mailbox

newbie question

I'm have a lot of structured content that I want to batch process into a 
Zope installation
some of it i already have in zclass instances that i want to change to new 
zclass instances and other stuff is in a variety of access database and 
Excel  spreadsheets, CSV files etc.

I have thought about using an external database but i don't think it 
warrants it for this situation.

I also develop Mediasurface applications. there is an integration module 
that allows you to import CSV or XML marked up content into specified 'Item 
type', creating a new instance of the type for each record.
Item types are a similar concept to Zclasses.

what i'm getting at is that i need a similar means in Zope to perform this 
kind of integration process

any guidance would be greatly appreciated


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