[Zope] Minor oddity in beta 3

2001-01-25 Thread Michael W. Homyack

One oddity I just noticed in the beta 3... if you have no folders created in the root, 
then the left-hand navigation pane doesn't show the Control_Panel, Quickstart, or 
acl_users folder.  Once you add a folder, then all three of those objects, as well as 
the new folder, appear in the left-hand pane.  If you then delete the folder, and 
refresh the browser, everything in the left-hand pane disappears again (leaving only 
the root folder at the top).

Not a biggie, but a little odd.

-- 
--  Michael W. Homyack
--  [EMAIL PROTECTED]  --  [EMAIL PROTECTED]  --  303.539.0045 -- 720.560.8772
--  "To make an apple pie from scratch, you must first invent the universe"
--  - Carl Sagan

___
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] Arguments in URLs with bookmarks

2001-01-18 Thread Michael W. Homyack

Hi,

I've just run across something sort of odd...

Let's say I have a DTML Document 'x' in my site, and I am going to link to it with the 
following URL:

http://www.mysite.com/x?arga=oneargb=two

When Zope processes the URL, the query arguments arga and argb are stored in the 
REQUEST object, and I can refer to them in DTML like this:

dtml-var name="arga"


Now, let's say that I need to have the URL include a bookmark to a point deeper in the 
page.  The URL now becomes:

http://www.mysite.com/x#gotohere?arga=oneargb=two


On RedHat, using Netscape 4.76, the query arguments get passed into the REQUEST object 
properly.

On Windows, using either IE 5.x or Netscape 6, the query arguments seem to disappear 
entirely.  The same behavior is also apparent using Opera 4.0b4 on RedHat.  Since the 
query arguments don't make it into the REQUEST object, the dtml-var line above results 
in a KeyError.  Although I could protect myself from the KeyError easily enough, what 
I really need is the values passed in the URL.

This is using Zope 2.2.4 running on RedHat Linux, BTW.

Does anyone have an idea why adding the bookmark is causing Zope to fail in parsing 
the URL?
Is there an alternative syntax for the URL that will both pass the arguments and goto 
the right point on the page?

Thanks, Mike.

-- 
--  Michael W. Homyack
--  [EMAIL PROTECTED]  --  [EMAIL PROTECTED]  --  303.539.0045 -- 720.560.8772
--  "To make an apple pie from scratch, you must first invent the universe"
--  - Carl Sagan

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