Re: Slide Wiki

2004-06-23 Thread James Mason
I'm willing to help move pages if there's a migration. I'd rather do it sooner rather than later since there aren't very many pages right now. I'd also like to add that the MoinMoin wiki looks nicer and has more features :). -James [EMAIL PROTECTED] 6/23/2004 10:13:41 AM Is there a plan?

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread James Mason
.*; import java.util.*; import javax.servlet.*; import javax.servlet.http.*; Just curious. --Brad -Original Message- From: James Mason [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 10:57 AM To: [EMAIL PROTECTED] Subject: RE: Example Java Servlets for accessing data in Slide? Brad

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread James Mason
Happy to help :). Good luck and happy hacking. -James [EMAIL PROTECTED] 6/23/2004 1:44:12 PM I can't thank you enough James. Thank you for pointing me in the right direction. Your help is greatly appreciated!!! --Brad. -Original Message- From: James Mason [mailto:[EMAIL PROTECTED

Re: about tomcat

2004-06-23 Thread James Mason
Get the Slide 2.0 server download from http://jakarta.apache.org/site/binindex.cgi (don't get the Tomcat bundles). Follow the instructions at http://jakarta.apache.org/slide/installation.html for the binary distribution. Follow the instructions in the Enabling or disabling authentication section

Re: administration web-frontend for slide?

2004-06-22 Thread James Mason
servlet implementing the basic client functionality of the slide-api would do. Can someone help? Grüße, Frank James Mason wrote: Frank, Cocoon does have a Slide admin interface. Cocoon 2.1 has Slide 2 bundled in by default. For users/roles the interface works quite well, but I've found it a bit

Re: How do I enable DEBUG logging?

2004-06-22 Thread James Mason
to your slides WEB-INF/classes path and config what do you want to log Hope this helps, Stefan James Mason wrote: I'm using the 2.0/Tomcat 5 bundle. I've set org.apache.slide.debug to true in slide.properties, but that doesn't seem to have had any effect. Putting a log4j.properties file

Re: FW: FAQ Entry for adding a user ???

2004-06-22 Thread James Mason
Paul, I tried sending this to you directly, but I keep getting mail undeliverable errors. Hopefully you get this at some point. Send an email to Oliver at [EMAIL PROTECTED] with your document attached. It looks really good. Thanks for putting this together. A lot of people have been asking this

Re: Authentication: fail to change password

2004-06-22 Thread James Mason
You need to add the user to a role as well. You do this by setting the DAV:group-member-set property on the role you want to user to have to a value that contains the user's uri. Please note, you can append to this property, you must overwrite it. Therefor you need to include all of the users that

Re: getting 401 error code

2004-06-22 Thread James Mason
401 means unauthorized. You need to pass a valid username/passworld pair. Either use WebdavResource.setUserInfo() or pass them as part of the url: http://user:[EMAIL PROTECTED]:port/path/to/file/ -James [EMAIL PROTECTED] 6/22/2004 1:00:50 PM I downloaded the webdav java client, and I'm trying

Re: Which Slide jar files do I need to have in my classpath?

2004-06-22 Thread James Mason
Brad, You'll need to be a bit more specific. If your servlet/portlet is going to run on the same server as Slide (integrated with the server, so to speak), then you'll need the jar files from the lib directory in the jakarta-slide-server-bin-2.0 download. If your servlet/portlet is going to be a

Re: LDAP Store and Permission Problem

2004-06-21 Thread James Mason
Sort of ;) The problem is that Slide is case-sensitive while LDAP swings boths ways on an attribute-by-attribute basis. My LDAP server, for instance, is completely case-insensitive. All of the usernames are stored mixed-case, but almost everyone logs in using all lowercase. The only solution I

RE: Help adding users, access denied when logging in

2004-06-21 Thread James Mason
There's a Wiki at http://nagoya.apache.org/wiki/apachewiki.cgi?SlideProjectPages that you can use. To get your information added to the FAQ on the main Slide site either post your entry to this list with an appropriate subject or use the Enter a Bug link from http://jakarta.apache.org/slide/ to

Acl problem with Slide 2.0

2004-06-21 Thread James Mason
I'm really hoping that this has been fixed. I have a bit to add in case it hasn't. 2 - Some kind of acl corruption, similar to the one described in this mail : http://www.mail-archive.com/[EMAIL PROTECTED]/msg05618.html : I set a permission using slide client ( read on /slide/files/test/ to

Re: Acl problem with Slide 2.0

2004-06-21 Thread James Mason
I've reproduced this problem with a 2.1M1 server. -James [EMAIL PROTECTED] 6/21/2004 2:11:15 PM I'm really hoping that this has been fixed. I have a bit to add in case it hasn't. 2 - Some kind of acl corruption, similar to the one described in this mail : http://www.mail-archive.com/[EMAIL

Re: 'Publishing' concept

2004-06-18 Thread James Mason
Luanne, Are you need the metadata in Slide for anything on the live site? If not, it might be easier to use a webdav client to copy the live files to a filesystem that can be served by Tomcat or Apache HTTP Server directly. This way you don't have to worry about authentication for the live site.

RE: putMethod cannot create a JSP

2004-06-18 Thread James Mason
Luanne, I was reading through the web.xml file for Cocoon and it mentions something about some app servers (Tomcat in particular) keeping a servlet mapping to *.jsp even when another servlet is mapped to /. Cocoon solves this by mapping their servlet to both / and *.jsp. Maybe this is the same

Re: 'Publishing' concept

2004-06-18 Thread James Mason
of the open-source offerings, but off late, it seems documentation is being sacrificed. Good documentation can mean the difference between success and ending up as another mundane offering. - Original Message - From: James Mason [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 18

Re: Problems modifying ACLs with the commandline client.

2004-06-18 Thread James Mason
Figured I'd answer this since I figured it out :). You have to pass an absolute path to the grant, revoke and deny commands. While a relative path will work for the acl command, it fails for the others. -James [EMAIL PROTECTED] 6/14/2004 2:47:19 PM I'm using Slide 2.0 (server and client)

Re: 'Publishing' concept

2004-06-18 Thread James Mason
Oliver, Does this mean Slide has a wiki now? Don't toy with me, man! I'll look really silly jumping for joy with no reason :). I have to agree with Karthik about the current state of the documentation, though. From what I've seen the focus of the Slide devs is on improving the code base (which is

Re: Not able to modify DAV:displayname property of a Collection

2004-06-15 Thread James Mason
Sounds reasonable to me ;). [EMAIL PROTECTED] 6/14/2004 11:03:42 PM James Mason wrote: Ritu, Rather than changing the property can you just move/rename the file? WebDav has the concept of live properties that are dynamic and cannot be edited. It might be that DAV:displayname isn't

Problems modifying ACLs with the commandline client.

2004-06-14 Thread James Mason
I'm using Slide 2.0 (server and client) and trying to modify the ACL for a new collection. I either get an error saying that PropFind didn't return an AclProperty or a Syntax error in my command. Maybe someone can shed some light on what I'm doing wrong? Here's what I've tried:

RE: Not able to modify DAV:displayname property of a Collection

2004-06-14 Thread James Mason
Ritu, Rather than changing the property can you just move/rename the file? WebDav has the concept of live properties that are dynamic and cannot be edited. It might be that DAV:displayname isn't modifiable. -James [EMAIL PROTECTED] 6/11/2004 9:41:05 AM I apologize if I am inconveniencing by

LDAP Store for Slide

2004-05-28 Thread James Mason
think it * would work well there. * /li * /ol * * @author a href=mailto:[EMAIL PROTECTED]James Mason/a */ public class JNDIPrincipalStore extends AbstractXAService implements ContentStore, NodeStore, RevisionDescriptorStore

Domain.xml for LDAP Store

2004-05-28 Thread James Mason
/parameter parameter name=checkin-forkforbidden/parameter /slide James Mason Adventist Health Programmer/Analyst 916.783.2576 [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Need help getting Slide to use LDAP.

2004-05-28 Thread James Mason
James Mason Adventist Health Programmer/Analyst 916.783.2576 [EMAIL PROTECTED] [EMAIL PROTECTED] 05/26/04 6:11 PM Yes, JAAS could be used. I didn't think of it before because Slide seems to require a little bit more. You need to expose these user nodes and provide some standard properties

Re: Need help getting Slide to use LDAP.

2004-05-25 Thread James Mason
the idea, though. James Mason Adventist Health Programmer/Analyst 916.783.2576 [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Need help getting Slide to use LDAP.

2004-05-24 Thread James Mason
there. I'm hoping I can contribute everything back since what I'm working on is likely to be fairly extensive. I'll let you know on this. James Mason Adventist Health Programmer/Analyst 916.783.2576 [EMAIL PROTECTED

Re: Need help getting Slide to use LDAP.

2004-05-24 Thread James Mason
to the community. Yay :). James Mason Adventist Health Programmer/Analyst 916.783.2576 [EMAIL PROTECTED]

Re: Created user can not access folders

2004-05-24 Thread James Mason
What's the value of the DAV: resourceType property for the user collection? I think it needs to contain principal/ to be a valid user. James Mason Adventist Health Programmer/Analyst 916.783.2576 [EMAIL PROTECTED] [EMAIL PROTECTED] 05/24/04 8:28 PM I created an user called [EMAIL PROTECTED

Need help getting Slide to use LDAP.

2004-05-21 Thread James Mason
the source for the default stores. Thanks, James Mason Adventist Health Programmer/Analyst 916.783.2576 [EMAIL PROTECTED]

Re: Again: administration web-frontend for slide?

2004-05-17 Thread James Mason
Frank, Cocoon does have a Slide admin interface. Cocoon 2.1 has Slide 2 bundled in by default. For users/roles the interface works quite well, but I've found it a bit lacking for dealing with files/folders. -James - To

Transfering files from one Slide install to another without restarting?

2004-05-14 Thread James Mason
I'm setting up a document management system with Slide and I need a way to move files from the Management server to two Production servers. In the long run I need something that will let users select which files/collections they want to publish, but starting off all I need is something that will

<    1   2   3   4