hi,
I am getting the following error when compiling slide.
Can any body suggest a fix for this.
Compiling 40 source files to C:\n3\slide\build\client\classes
C:\n3\slide\src\webdav\client\src\org\apache\webdav\lib\WebdavResource.java:
208: org.apache.webdav.lib.WebdavResource should be declared abstract; it
does not define recievedResponse() in org.apache.webdav.lib.WebdavSession
public class WebdavResource extends WebdavSession {
^
thanks,
rajkumar
-----Original Message-----
From: Dirk Verbeeck [mailto:[EMAIL PROTECTED]]
Sent: Sunday, August 26, 2001 12:15 PM
To: [EMAIL PROTECTED]
Subject: Re: Inheritance on properties
Bita Shadgar wrote:
> Hi,
>
> Is there any possibility in slide to inheritance the property. In fact,
> I have got a lots of files which they have the same properties, I am
> thinking about inheritance of properties rather than saving all these
> properties in the slide store which will be a mass of redundant data.
>
> Indeed, is any possibility in slide to address a part of a file, like
> what we have done with HTML files by addressing like file#part1.
>
> Any help is appreciated,
> Bita.
WebDAV and slide don't have support for inheritance on properties
but you could make a special store that returns the properties of /a and
/a/b
when you ask the properties of /a/b.
Same thing with splitting up a large xml into its elements.
You could make a content store that splits /test.xml
(<test><a><b/></a></test>)
into a structure like /test/a/b
When you retrieve test.xml the store could reassemble the file.
/test/a.xml would then return <a><b/></a>
I don't think you should use "file#part1", you could get problems sending
the complete URL.
Dirk