AW: class for BpropFindMethod

2004-09-30 Thread Florey, Daniel
Hi,
Slide is currently not supporting the MS Batch-Methods (BPROFIND..) It might be a 
doable task to implement them in order to get the MS-clients get working with Slide.
Anybody knows if Evolution (Linux-Groupware client) uses Batch-Methods to talk to 
Exchange? If so it would be a good thing to implement the B* methods... 
Any input appreciated!
Regards,
Daniel



Von: Miguel Figueiredo [mailto:[EMAIL PROTECTED]
Gesendet: Do 30.09.2004 19:30
An: 'Slide Users Mailing List'
Betreff: RE: class for BpropFindMethod




 Don't know if BPROPFIND is implemented in slide, but if it's not in RFC
2518, then it's not webdav...  or at least should not share the "DAV:"
namespace...

 Examining you msdn URL reference, I see that the request is a BPROPFIND
HTTP method witch contains a PROPFIND webdav xml element: hey, perhaps it's
another of those Microsoft 'standard' extensions :))
 Again, I don't know if Slide is supporting this MS webdav extension, but if
I remember correctly someone said that slide was trying to be MS-compatible.

 Last, the PROPFING method does support multiple-fetch of proprieties of a
resource in a single call. For instance, take a look at RFC 2518, section
8.1.1.

 Best regards,
 Miguel



So you mean, this class is not Implemented. But i feel this is
necessary because I found that is much faster. There is no need  to
send the requests multiple times to server. With single BROPFIND
method request I can get more than one response information which
increase the performance of client application.

Thanks Suhdakar


On Thu, 30 Sep 2004 17:54:06 +0100, Miguel Figueiredo
<[EMAIL PROTECTED]> wrote:
>
> That's interesting... don't remember about BPROPFIND in RFC 2518.
>
> ___
>
>
>
> Hello All,
>
> I have found slide has support for PROPFIND method. Just looking at
> the class that supports BPROPFIND method.
>
> What is the class I need to use. Or I need to write my own class
>
> I found the procedure to send the request to server regarding BROPFIND
> method here
>
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/_
> webdav_bpropfind.asp
>
> Thanks & Best Regards
> Sudhakar
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: slide store

2004-09-28 Thread Florey, Daniel
For sure you can use Slide for Web publishing as the _* part is only used internally. 
You can even switch this off by using some configuration parameter.
The _* part is not visible via WebDAV-requests.
Regards,
Daniel



Von: Norguhtar [mailto:[EMAIL PROTECTED]
Gesendet: Di 28.09.2004 12:24
An: Slide Users Mailing List
Betreff: Re: slide store



Miguel Figueiredo wrote:

> Hia,
>
> That's the file you have stored through the
>org.apache.slide.store.txfile.TxFileContentStore. If you don't want to
>access it through slide, you can always copy the file to a different
>location, renaming it in the process so it removes the '_*' part.
> 
>
Hey. I can't set slide for web publish ? Example put test.html in my
root for http server?


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: DOS Box

2004-09-23 Thread Florey, Daniel
Hi Martin,
you need to download NetDrive from Novell. This one maps Slide to a real network drive 
letter, so you can access it in a dos shell.
Regards,
Daniel



Von: Martin, Stefan [mailto:[EMAIL PROTECTED]
Gesendet: Do 23.09.2004 14:27
An: '[EMAIL PROTECTED]'
Betreff: DOS Box



Hello Newsgroup,

how can i change to the WebFolder using only an Dos box under Windows 2000
or XP?

Mit freundlichen Grüßen

Stefan Martin

izn - Informatikzentrum Niedersachsen
Göttinger Chaussee 259
30459 Hannover
Germany
Fon: +49 511 120 27067
Fax: +49 511 120 99 27067
eMail: [EMAIL PROTECTED]
Website: http://www.izn.de


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: Projector 0.1: Code Fixes needed to run (my experience)

2004-09-17 Thread Florey, Daniel
Hi,
just had a closer look at your proposed fixes:
The delete-user-from-role fix is more or less invalid as the method needs the full URL 
of the user resource as input. There might be several locations where Slide can store 
users, so giving just the username is not the right way to do.
On the other hand it will not cause much trouble to enable this "illegal" usage of 
this method, so I'll add the patch ;-)
 



Von: Roman Novak [mailto:[EMAIL PROTECTED]
Gesendet: Fr 17.09.2004 09:04
An: [EMAIL PROTECTED]
Betreff: Projector 0.1: Code Fixes needed to run (my experience)



Hi,

I am posting my experiences with the first version of Projector. I needed to apply 
code fixes in two places (see below).
I ran Projector0.1 against an Oracle store in JBoss.
Apart from that I had to upload a few Icons to my admin/images section:  logout.gif, 
button_cancel.png, button_ok.png (the latter two of them I found in the CVS)

Projector looks interesting and helps a little already :) I am looking forward to ACL 
administration (hopefully :)

Good luck
Roman



Class DateValueDescriptor (problem with empty values)
---
 String valueAsString = StringValueDescriptor.ANY.valueOf(value, null).toString();
 if (valueAsString.length() > 0) {
   try {
 date = new Date(Long.valueOf(valueAsString).longValue());
   } catch ( NumberFormatException exception ) {
   ...
 }
 // use at least some date
 else {
   date = new Date();
 }

class WebdavRepository (problem with removing users from roles):
---
public void removeRole(URI user, URI role, Credentials credentials) throws 
IOException {
XMLValue membersElement = getPropertyAsXMLValue(role, DAV_NAMESPACE, 
"group-member-set", credentials);
List members = membersElement.getRootElement().getChildren();
for ( Iterator i = members.iterator(); i.hasNext(); ) {
Element memberElement = (Element)i.next();
String uri = memberElement.getTextTrim();
if ( uri.endsWith(user.toString()) ) {   // <-- CHANGE here
  i.remove();
  break;
}



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: Projector 0.1: Code Fixes needed to run (my experience)

2004-09-17 Thread Florey, Daniel
Hi,
wow- an early adopter ;-) I know that some icons are messed up as I still hope to 
replace the ugly website design I've done with something that make me feel less sick.
The date validation is also somehow broken, I'll add your fix to make at at least 
work. I'll plan to replace the projector values with "native" java types to make life 
easier, but this hopefully won't affect any Projector application.
So, many thanks for your fixes I'll add them asap...
Regards,
Daniel



Von: Roman Novak [mailto:[EMAIL PROTECTED]
Gesendet: Fr 17.09.2004 09:04
An: [EMAIL PROTECTED]
Betreff: Projector 0.1: Code Fixes needed to run (my experience)



Hi,

I am posting my experiences with the first version of Projector. I needed to apply 
code fixes in two places (see below).
I ran Projector0.1 against an Oracle store in JBoss.
Apart from that I had to upload a few Icons to my admin/images section:  logout.gif, 
button_cancel.png, button_ok.png (the latter two of them I found in the CVS)

Projector looks interesting and helps a little already :) I am looking forward to ACL 
administration (hopefully :)

Good luck
Roman



Class DateValueDescriptor (problem with empty values)
---
 String valueAsString = StringValueDescriptor.ANY.valueOf(value, null).toString();
 if (valueAsString.length() > 0) {
   try {
 date = new Date(Long.valueOf(valueAsString).longValue());
   } catch ( NumberFormatException exception ) {
   ...
 }
 // use at least some date
 else {
   date = new Date();
 }

class WebdavRepository (problem with removing users from roles):
---
public void removeRole(URI user, URI role, Credentials credentials) throws 
IOException {
XMLValue membersElement = getPropertyAsXMLValue(role, DAV_NAMESPACE, 
"group-member-set", credentials);
List members = membersElement.getRootElement().getChildren();
for ( Iterator i = members.iterator(); i.hasNext(); ) {
Element memberElement = (Element)i.next();
String uri = memberElement.getTextTrim();
if ( uri.endsWith(user.toString()) ) {   // <-- CHANGE here
  i.remove();
  break;
}



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: Help installing projector

2004-09-16 Thread Florey, Daniel
Hi,
Projector needs its application files stored in the Slide repository. This can be 
achieved by either using the tomcat-install ant task that will unpack the files into 
the default file store.
If you are using db-stores, you'll have to upload them manually after starting Slide. 
Upload the application folder that you find under under /projector/src/content/ to the 
/projector folder in the slide root directory (not into the files folder).
After doing so you should be able to at least get the admin application running.
A ready-to-run solution would be to install the binary distribution where everything 
should work right after starting.
Regards,
Daniel



Von: Isabel Wanderley [mailto:[EMAIL PROTECTED]
Gesendet: Do 16.09.2004 20:50
An: [EMAIL PROTECTED]
Betreff: Help installing projector


Hi guys...
 
I got the last Slide version from cvs with projector, but I can´t make projector 
work... I built the source and put the projector.war in tomcat but when I try to 
access doesn´t appear nothing...
Anyone can help  me on that ?! :)
 
Thanks,
 

 TCI
Isabel Wanderley
Engenheira de Software
Tecnologia do Conhecimento e da Informação
+55 81 3222.2166 / +55 81 9913.6894 
[EMAIL PROTECTED]  
www.tcisolutions.com.br    

 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: New user needing some help

2004-09-15 Thread Florey, Daniel
Hi,
I very sorry, but there is currently no documentation on Projector. I'll try to post 
some kind of tutorial as soon as I get it done.
Projector is more a WebDAV based development framework rather than a full featured 
content management solution.
I've bundled a little admin-application for user management with the Slide 2.1b, you 
can start it by calling the URL that you find on the web page.
Have a look at the files that are stored in Slide under /prjector so you'll get an 
impression in what it does and how it works.
I hope to get documentation done until Slide 2.1 is final.
Regards,
Daniel



Von: Nick Longinow [mailto:[EMAIL PROTECTED]
Gesendet: Di 14.09.2004 22:56
An: 'Slide Users Mailing List'
Betreff: RE: New user needing some help



Hmm, couldn't find it myself.  I looked in the src distribution for Slide
version 21M1, and online.  Maybe someone else knows ?

-Original Message-
From: Warwick Burrows [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 14, 2004 3:36 PM
To: 'Slide Users Mailing List'
Subject: RE: New user needing some help


Nick, where is there some documentation on what projector is and how to
configure and use it with the Slide beta distribution?

Thanks,
Warwick



> -Original Message-
> From: Nick Longinow [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 14, 2004 3:31 PM
> To: 'Slide Users Mailing List'
> Subject: RE: New user needing some help
>
>
> Isabel
>
> 
>
> You can look at Projector, it is an app that sits on top of Slide.
>
> It should be bundled with the 2.1 release.
>
> 
>
> Nick
>
> 
>
>   _ 
>
> From: Isabel Wanderley [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 14, 2004 2:49 PM
> To: [EMAIL PROTECTED]
> Subject: New user needing some help
>
> 
>
> Hello all Slide users,
>
> 
>
> I´m looking for a some kind of framework to make a content
> management system... I´m newby in Slide and I´d like to know
> if any of you knows some application that users Slide. I
> looked for it, but I haven´t found :(
>
> If someone could help me I´d be very glad :)
>
> 
>
> Thanks,
>
>
> 
>
>
>
>
>
> TCI
>
>
> Isabel Wanderley
>
>
>
>
>
> Engenheira de Software
> Tecnologia do Conhecimento e da Informação
> +55 81 3222.2166 / +55 81 9913.6894
>
>
 
[EMAIL PROTECTED]
  www.tcisolutions.com.br







-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: Versioning and checkout

2004-09-01 Thread Florey, Daniel
Hi Stefan,
please try to post in english as this mailinglist is also used as an archive to 
collect faq.
In case that this is not possible for you I'll give you a short answer in german...
 
Die Webfolder von Windows sind kein echtes Netzlaufwerk und so unter DOS nicht 
verfügbar. Ich kenne mich da auch nur rudimentär aus.
Du könntest es mit WebDrive versuchen, eine kommerzielle Software, die Slide als 
Netzlaufwerk anbindet. Keine Anhnung, ob das dann auch unter DOS-Shell zur Verfügung 
steht. Es gibt eine Trial-Version, damit kannst Du das ausprobieren.
Wenn Du etwas herausgefunden hast, bitte in die Liste posten, da das für andere auch 
interessant ist.
Der Link: www.webdrive.com
Gruß,
Daniel



Von: Martin, Stefan [mailto:[EMAIL PROTECTED]
Gesendet: Mi 01.09.2004 10:30
An: '[EMAIL PROTECTED]'
Betreff: Versioning and checkout



Hallo

habe ich die Möglichkeit, Domumente die im XML-Filestore in Slide vorhanden
sind,
auszuchecken? Ich möchte die Dokumente auf einen anderen Server Windows NT
als Laufwerk einbinden. Kann man auf die Webordner, als solcher habe ich
zwar
Zugriff, unter DOS irgendwie zugreifen?

Oder gibt es die Möglichkeit diese als Samba Freigabe ohne Endung, z.B.
.doc_01
zur Verfügung zu stellen

Danke für eine Antwort.

Mit freundlichen Grüßen

Stefan Martin


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: Copy Macro Issue

2004-08-28 Thread Florey, Daniel
Hi Andrey!
This sounds very interesting as I have planned to consolidate the client and server 
api on basis of a new Slide API for Slide 2.2 or 3.0. Have a look at the Slide 3.0 
design approach in the Wiki.
If you are already working on separating the webdav logic from the web context this 
would be a big step in that direction! Please let me know more details about your 
ongoing work as I will start working on the new API soon.
It will be more or less a simple mapping of WebDAV methods to Java methods.
Thanks for your work so far!
Cheers,
Daniel
 



Von: Andrey Shulinsky [mailto:[EMAIL PROTECTED]
Gesendet: Sa 28.08.2004 03:34
An: 'Slide Users Mailing List'
Betreff: RE: Copy Macro Issue



Hi, Kiran!

I suspect that the incorrect behavior of the copy method might be just one
more consequence of the big flaw in Slide's architecture - some important
parts of WebDAV's logic (including versioning) are implemented in the
"wedav" layer only - see the org.apache.slide.webdav package and its sub
packages. That's why the majority of Slide users are working with the webdav
client and don't use the "core" API directly. However, we've chosen a
different approach and had to rewrite all required methods from the
org.apache.slide.webdav.method package so they can be used in isolation from
the web context. It's not an easy task (and I'm still not sure if we did
everything correctly! :) ) so you probably should go with the client and
ignore the core until it is rearchitected (in the 3d version, probably).
Indeed, if you use the COPY method to copy a resource, a non-versioned copy
of the resource is created if auto versioning is off and creates a versioned
copy if auto versioning is on - but it's VHR is not the same as that of the
original. This behavior is WebDAV-compliant, afaik.

Yours sincerely,
Andrey.

> -Original Message-
> From: Slide Users Mailing List [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 27, 2004 8:20 PM
> To: [EMAIL PROTECTED]
> Subject: Copy Macro Issue
> Importance: Low
>
> I am facing issues with using copy macro for copying
> versioned objects.
> Here
> is a sample scenario:
>
> 
>
> Original object:
>
> Name: XYZ.doc
>
> Number of Versions: 3 v1, v2 and v3
>
> Checked-in property value: v3
>
> 
>
> 1. Copy the object using the copy macro. The Destination
> copied object has the following properties:
>
> Name: CopiedXYZ.doc
>
> Checked-in property value: v3
>
> 
>
> The problem is both the original and the copied object are
> referring to the same history node v3.
>
> 
>
> 2. Add a new version v4 to the original object:
>
> Name: XYZ.doc
>
> Number of Versions: 4 v1, v2, v3 and v4
>
> Checked-in property value: v4
>
> 
>
> 3. At this point the new (copied) object still has the
> checked-in property as v3.
>
> Name: CopiedXYZ.doc
>
> Checked-in property value: v3
>
> 4. Now try adding a new version to the new (copied) object.
> This will throw a precondition violation say that checkouts
> with descendants is not allowed.
> Since I am trying to check out v3, when there is already a
> successor for v3, which is v4 created by the original object.
>
> 
>
> This seems a pretty basic flaw in the copy macro. Ideally it
> should be creating new history nodes for the new (copied)
> object. Is this a known issue? Does the copy macro does
> support copying versioned objects? If it does, this problem
> should be fixed. If it does not, it should not be copying
> version related properties.
>
> 
>
> Thanks
>
> Kiran


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: Two applications in the same server

2004-08-14 Thread Florey, Daniel
Hi,
did you have a look at the Projector-based admin application that ships with 2.1b1?
It would be nice if we could work together on a nice admin application.
 
Daniel



Von: Eros Viggiano [mailto:[EMAIL PROTECTED]
Gesendet: Fr 13.08.2004 22:16
An: [EMAIL PROTECTED]
Betreff: Two applications in the same server



Hi,


I had developed an application like slide-admin. It works with Slide
1.0.16. Now I am trying to bring it up to date for Slide 2 but I am
having some problems. "My-slide-admin" shares the Domain.xml from the
Slide application through slide.properties.

The most serious problem is the inconsistency of the data displayed
through both applications. If I include a collection through an
application the changes are not visible in the other until the next
restart of Tomcat (or redeploying the applications).

This problem also occurs when I use two instances of the Slide
(sharing the same Domain.xml) in the same server.

Thanks for any help.

Eros

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: JSR 170 support

2004-08-13 Thread Florey, Daniel
Hi,
this is exactly what I have in mind for Slide 3.0. A very simple java api that 
reflects the different WebDAV methods in java.
I've done some work on this already (just to play around with it) and will hopefully 
get things sorted out to propose something soon...
You can have a look at the Wiki (Slide 3.0) for some additional words on this.
Regards,
Daniel
 



Von: kranga [mailto:[EMAIL PROTECTED]
Gesendet: Fr 13.08.2004 18:29
An: [EMAIL PROTECTED]
Betreff: Re: JSR 170 support



>From the JSR:
The Content Industry has defined a number of specifications on a protocol
level to exchange content (ICE, WebDAV, etc.). However, there is no
specification on an API level that addresses the unique requirements of a
Content Repository. As well, there exists no Content Repository centric
standard that appears to address issues such as version handling, full-text
searching, and event-monitoring in a coherent manner


There is no standard that handles version handling, searching? I guess
DELTAv and DASL don't cut it for these java folks. Why can't they implement
a standard API for webDAV and make the protocol HTTP independent - in other
words a DAV based API that can be webDAV, tcp-DAV, EJB-DAV (oh! please
no!!!) or whatever communication channel DAV? Why reinvent the wheel?



- Original Message -
From: "Jason Novotny" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 13, 2004 10:57 AM
Subject: JSR 170 support


>
> Hi,
>
> I read the mail postings of "JSR 170 available for Public Review"
> and I'm interested in how important the Slide developer community feels
> this API is for content management and how code integration is
> progressing... like any ideas of timelines, for instance?
>
> Thanks, Jason
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

AW: Help adding users, access denied when logging in

2004-06-18 Thread Florey, Daniel
Hi Paul,
my mail sometimes get lost when mailing to this list, so again:
You have to add the user to the group-member-set of the role that has access to the 
desired folders.
Don't add the role to the group-membership property of the user as this is a live 
property.
My projector based admin-application will hopefully part of the next milestone drop, 
so this might help.
Regards,
Daniel



Von: Paul Hussein [mailto:[EMAIL PROTECTED]
Gesendet: Fr 18.06.2004 11:34
An: Slide Users Mailing List
Betreff: RE: Help adding users, access denied when logging in



I have followed these posts as best I can. I have put this namespace value
in, but syill no logon.


Here are the properties of root and my user. I cannot see any difference.
Neither the slide client nor Dav Explorer logs on with my new user.

Can anyone help me ?

Cheers

Paul.


Included below are the debug ouputs of propgetall oon root and my user
compass :

[IIRE52.JRC.IT:/slide/users/] V:\jakarta-slide-webdavclient-bin-2.1M1\bin $
prop
getall compass
Getting properties '/slide/users/compass':
>>>  to  server  ---
PROPFIND /slide/users/compass HTTP/1.1
Authorization: Basic cm9vdDpyb290
Content-Type: text/xml; charset=utf-8
User-Agent: Jakarta Commons-HttpClient/2.0final
Host: iire52.jrc.it:8080
Cookie: $Version=0; JSESSIONID=E58FB8C57FF1EE651D1D2EA9D7402D72;
$Path=/slide
Content-Length: 91
Depth: 0

   
   



<<< from server  ---
HTTP/1.1 207 Multi-Status
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: text/xml;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 18 Jun 2004 09:29:27 GMT
Server: Apache-Coyote/1.1

   
  
/slide/users/compass
  
  
 

  compass

http://jakarta.apache.org/slide/";>
  compass




  Fri, 18 Jun 2004 09:13:49 GMT


  0


   
   
   
   


  2004-06-18T09:13:49Z




   
  
 
 
  
  
 
 
  
   
   
  
 
 
  
  
 
 
  
   


  2004-06-18T09:15:18Z

 
 
   HTTP/1.1 200 OK
 
  
   



   D:displayname : compass
   S:password : compass
   D:source :
   D:getlastmodified : Fri, 18 Jun 2004 09:13:49 GMT
   D:getcontentlength : 0
   D:resourcetype : COLLECTION
   D:creationdate : 2004-06-18T09:13:49Z
   D:lockdiscovery :
   D:supportedlock : Exclusive write lock, Shared write lock
   D:modificationdate : 2004-06-18T09:15:18Z
[IIRE52.JRC.IT:/slide/users/] V:\jakarta-slide-webdavclient-bin-2.1M1\bin $
prop
getall root
Getting properties '/slide/users/root':
>>>  to  server  ---
PROPFIND /slide/users/root HTTP/1.1
Authorization: Basic cm9vdDpyb290
Content-Type: text/xml; charset=utf-8
User-Agent: Jakarta Commons-HttpClient/2.0final
Host: iire52.jrc.it:8080
Cookie: $Version=0; JSESSIONID=E58FB8C57FF1EE651D1D2EA9D7402D72;
$Path=/slide
Content-Length: 91
Depth: 0

   
   



<<< from server  ---
HTTP/1.1 207 Multi-Status
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: text/xml;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 18 Jun 2004 09:30:05 GMT
Server: Apache-Coyote/1.1

   
  
/slide/users/root
  
  
 

  root

http://jakarta.apache.org/slide/";>
  root




  Fri, 18 Jun 2004 08:45:49 GMT


  0


   
   
   
   


  2004-06-18T08:45:49Z




   
  
 
 
  
  
 
 
  
   
   
  

AW: Office extractor and Lucene indexing in Slide M1?

2004-06-09 Thread Florey, Daniel
Hi,
the "office extractor" is a property extractor. This means, you can extract some 
metainfo (like author, date etc.) from office documents and store them as webdav 
properties automatically.
You can use webdav-search for invoking searches on theese properties, but slide search 
is currently *not* based on lucene so it's very slow.
Regards,
Daniel


-Ursprüngliche Nachricht-
Von: Warwick Burrows [mailto:[EMAIL PROTECTED]
Gesendet: Di 08.06.2004 18:22
An: 'Slide User Group ([EMAIL PROTECTED])'
Betreff: Office extractor and Lucene indexing in Slide M1?
 
Hi,
 
What does the "office extractor" implementation in Slide M1 do?  I don't see
any doc or release notes for this feature.  What does it extract from office
documents?  Can it be used in conjunction with the Lucene indexing feature
to generate indexes for office documents??  Or does Lucene already allow you
to index office documents?
 
Thanks,
Warwick
 
 

   


  _  


Warwick Burrows 
Senior Software Engineer 

 

Email: [EMAIL PROTECTED]  
Fax:   512.343.8727

 

9600 Great Hills Trail, #325 
Austin, TX  78759
http://www.e2open.com  


  _  

 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]