[Zope] ZWiki rocks our world

2000-12-15 Thread Timothy Grant

I want to take a moment to express my sincere gratitude to those who created
ZWiki.

We are embarking on a significantly large development project.
Communications are always problematic in those situations. However, the
ZWiki tools have improved communications and the global knowledge store by
several orders of magnitude.

So to those concerned. A very big thank you!

-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Red Hat Certified Engineerwww.exceptionalminds.com
Avalon Technology Group, Inc.   (503) 246-3630
>>>>>>>>>>>>>Linux, because rebooting is *NOT* normal<<<<<<<<<
>>>>This machine was last rebooted:  16 days 20:35 hours ago<<

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




Re: [Zope] ZWiki hierarchy seems to be broken

2000-12-13 Thread Timothy Grant

On Wed, Dec 13, 2000 at 08:20:14AM -0800, Simon Michael wrote:
> do you see more than one page name in your url path - eg FrontPage/FrontPage ?

On the very first page, yes, as the folder and the WikiPage have the same
name. However, the header appears on this page.
 
> are you acquiring a different standard_wiki_header from somewhere ? 

Not that I know of. I only have one ZWiki object setup

> 
> are you failing to acquire it ? (does page source include 
> "" ?) are permissions ok ?

The page source includes this text:



Aha!

I just went digging through all the properties of the pages that didn't have
headers, and compared them to the properties for the pages that did, and I
noticed that they were all parented wrong! I didn't think to look there. I
had changed the name of the FrontPage to something else, which broke all the
parent links.

Thanks for your very kind assistance!

-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Red Hat Certified Engineerwww.exceptionalminds.com
Avalon Technology Group, Inc.   (503) 246-3630
>>>>>>>>>>>>>Linux, because rebooting is *NOT* normal<<<<<<<<<
>>>>This machine was last rebooted:  15 days 1 hours ago<<

___
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] ZWiki hierarchy seems to be broken

2000-12-12 Thread Timothy Grant

Hi,

I just put up a ZWiki for some internal development projects we are running.
Everything went beautifully smoothly. I created it using the hierarchy2
property.

However, I seem to have done something somewhere that is preventing the
hierarchy headers from showing up on many of the pages. It shows on the
first page, and it still shows on all the help pages, but it has disappeared
from the pages that I have been adding (They were there for a while).

How do I put the hierarchy headers back?

Thanks


-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Red Hat Certified Engineerwww.exceptionalminds.com
Avalon Technology Group, Inc.   (503) 246-3630
>>>>>>>>>>>>>Linux, because rebooting is *NOT* normal<<<<<<<<<
>>>>This machine was last rebooted:  14 days  4:02 hours ago<<

___
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] Programattically adding roles

2000-06-30 Thread Timothy Grant

I know how to add users programatically, but I am having a difficult thing
finding out how to add roles programatically. I have a list of user defined
roles that I would like to add, but am unsure how to do it within DTML or an
external method.

Please note that I am *not* trying to assign roles to users here, I am just
trying to add roles to the system.

-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Chief Technology Officer  www.exceptionalminds.com
Red Hat Certified Engineer  (503) 246-3630
Avalon Technology Group, Inc.   fax (503) 246-3124
>>>>>>>>>>>>Linux...Because crashing isn't normal<<<<<<<<<<<<<


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




Re: [Zope] Adding users via external method

2000-06-27 Thread Timothy Grant

I am specifying roles, however, it turns out that some of the roles don't
exist within the Zope framework yet, so I need to add the roles before I
attempt to add the user.

On Tue, Jun 27, 2000 at 09:36:55PM -0400, ethan mindlace fremen wrote:
> Timothy Grant wrote:
> 
> > I have come upon some situations where I also need to add Roles. I can find
> > nothing archived nor on the Zope site about programmatically adding Roles.
> > Can anyone assist me?
> 
> hmm.  I don't know how you're adding users without indicating their
> roles.
> 
> I do this:
> 
>   
> 
> where REQUEST includes these variables:
> 
> name
> password
> confirm
> roles
> 
> And roles is a list.

-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Chief Technology Officer  www.exceptionalminds.com
Red Hat Certified Engineer  (503) 246-3630
Avalon Technology Group, Inc.   fax (503) 246-3124
>>>>>>>>>>>>Linux...Because crashing isn't normal<<<<<<<<<<<<<


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




Re: [Zope] Adding users via external method

2000-06-27 Thread Timothy Grant

Following up on my own message...

OK, so now I have a lovely external method that reads a datafile, returns a
list of tuples that I can then use in a DTML Method to add my users. So far
so good.

I have come upon some situations where I also need to add Roles. I can find
nothing archived nor on the Zope site about programmatically adding Roles.
Can anyone assist me?

Thanks.

On Wed, Jun 21, 2000 at 12:45:27PM -0700, Timothy Grant wrote:
> Hi all,
> 
> I'm working on a project where it would be very nice to add all the original
> users via a script.
> 
> I'm working with an external method that should--I believe use manage_user()
> to add the users.
> 
> My confusion comes from where does the external method go in the hierarchy?
> >From my reading it appears that to act on a folder, you need to be operating
> within that folder (e.g., I can add folders and stuff to my current folder
> all day). I haven't yet figured out how to operate on the acl-users folder
> that is the child of my current folder.
> 
> As always, thanks for any assistance that you can provide.

-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Chief Technology Officer  www.exceptionalminds.com
Red Hat Certified Engineer  (503) 246-3630
Avalon Technology Group, Inc.   fax (503) 246-3124
>>>>>>>>>>>>Linux...Because crashing isn't normal<<<<<<<<<<<<<

___
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] Adding users via external method

2000-06-21 Thread Timothy Grant

Hi all,

I'm working on a project where it would be very nice to add all the original
users via a script.

I'm working with an external method that should--I believe use manage_user()
to add the users.

My confusion comes from where does the external method go in the hierarchy?
>From my reading it appears that to act on a folder, you need to be operating
within that folder (e.g., I can add folders and stuff to my current folder
all day). I haven't yet figured out how to operate on the acl-users folder
that is the child of my current folder.

As always, thanks for any assistance that you can provide.

-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Chief Technology Officer  www.exceptionalminds.com
Red Hat Certified Engineer   MIG #1433
Avalon Technology Group, Inc. '00 Marauder  
>>>>Slight disorientation after prolonged system uptime is<<<< 
>>>>>>>>>>>>>>>>>>normal for new Linux users<<<<<<<<<<<<<<<<<<


___
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] Mozilla problem

2000-06-06 Thread Timothy Grant

Hi,

I've recently started experimenting with Mozilla M16. While my pages
seem to work beautifully, I can't get into any of the management
screens. When I add /manage to the URL, I get nothing, no authentication
box no error, nothing.

Am I missing something, or is Mozilla missing something?

-- 
Stand Fast,
tjg.

Timothy Grant [EMAIL PROTECTED]
Chief Technology Officer  www.exceptionalminds.com
Red Hat Certified Engineer   MIG #1433
Avalon Technology Group, Inc.   
>>>>>>>>>>>>Linux...Because rebooting isn't normal<<<<<<<<<<<<

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