-
A bug found where X axis metric labels are formatted using Y axis Format.
in 1.27d please observe lines from 847 to 856.
...
849: if ( $DataDescription["Format"]["Y"] == "time" )
...
should be changed to
...
849: if ( $DataDescription["Format"]["X"] == "time" )
...
Thanks
Anton.
2008-11-06 20:57:26 UTC in pChart
-
Hello
When I first save a new buffer - it automatically proposes to names it as Untitled-[n]. It would be really nice to append the mode extension to it. So if we are in xml mode - the name will be Untitled-[n].xml.
Thanks
Anton.
2008-06-12 06:20:28 UTC in jEdit
-
In current implementation of File System Client methods which read/write files from physical file system and return/get them to/from user store the whole file in the memory before_sending/after_recieveing it to/from user.
So in case, of lets, say 1 gig file webDav server will grow up to 1 gig in memory, which is very bad.
My suggestion is to implement one of following (or even both):
2007-01-26 15:06:59 UTC in WebDAV.NET Server Framework
-
Germinal,
it is an issue with that release :
http://sourceforge.net/project/showfiles.php?group_id=164835&package_id=186783&release_id=414918
When you posted about latest code refresh - I've never been able to find that refresh actually...
But what I wanted to say:
Current implementation of
protected XPathNavigator RequestXml {}
in DavMethodBase.cs
is as follows:
if...
2007-01-24 19:29:08 UTC in WebDAV.NET Server Framework
-
Another issue with PROPFIND request:
There is a set of standard properties which must be supplied if the according headers exist in GET method's response on that resource:
http://webdav.org/specs/rfc2518.html#dav.properties
if client sends an empty PROPFIND request to the server - it responds with incorrect names of these properties.
For example:
instead of getcontenttype property...
2006-11-21 22:01:29 UTC in WebDAV.NET Server Framework
-
A serious bug is in RequestXml property:
1) If the server received a request with non empty Xml PostData then the
private XPathNavigator _requestXmlNavigator;
becomes NOT null, and never gets nulled after request processing.
So.. if the following request contains no Xml PostData then RequestXml property will return the xmp postdata from the previous request (due to implementation bug)
2006-11-21 16:38:36 UTC in WebDAV.NET Server Framework