/[drupal]/contributions/modules/webdav/server.inc
ViewVC logotype

Log of /contributions/modules/webdav/server.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Tag:

Revision 1.17 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Feb 3 17:20:22 2009 UTC (9 months, 3 weeks ago) by ulhume
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-RC7, DRUPAL-6--1-0-RC8, HEAD
Changes since 1.16: +1 -1 lines
Diff to previous 1.16
*** empty log message ***

Revision 1.16 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Feb 3 17:14:56 2009 UTC (9 months, 3 weeks ago) by ulhume
Branch: MAIN
Changes since 1.15: +11 -9 lines
Diff to previous 1.15
*** empty log message ***

Revision 1.15 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Feb 2 15:27:39 2009 UTC (9 months, 3 weeks ago) by ulhume
Branch: MAIN
Changes since 1.14: +1 -1 lines
Diff to previous 1.14
Better temporary path handling

Revision 1.14 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Oct 7 00:20:46 2008 UTC (13 months, 2 weeks ago) by ulhume
Branch: MAIN
Changes since 1.13: +6 -9 lines
Diff to previous 1.13
* removed full page listing stuff

Revision 1.13 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Oct 5 23:45:59 2008 UTC (13 months, 2 weeks ago) by ulhume
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-RC6
Changes since 1.12: +1 -0 lines
Diff to previous 1.12
 * first caching implementation

Revision 1.12 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Oct 3 11:57:56 2008 UTC (13 months, 3 weeks ago) by ulhume
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-RC5
Changes since 1.11: +0 -1 lines
Diff to previous 1.11
* make use of drupal errors when we're in embeded mode

Revision 1.11 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 1 15:38:16 2008 UTC (13 months, 3 weeks ago) by ulhume
Branch: MAIN
Changes since 1.10: +4 -8 lines
Diff to previous 1.10
* fix lock/unlock

Revision 1.10 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Sep 28 22:46:23 2008 UTC (13 months, 3 weeks ago) by ulhume
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-RC4
Changes since 1.9: +2 -2 lines
Diff to previous 1.9
* improved route solving algorythm
* changed way of passing arguments, now using indexes instead of names => we can pass other stuff if not numeric

Revision 1.9 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Sep 27 22:32:02 2008 UTC (13 months, 4 weeks ago) by ulhume
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8
* added. client detections and automatic modes
* fixed. renaming node

Revision 1.8 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Sep 27 21:52:55 2008 UTC (13 months, 4 weeks ago) by ulhume
Branch: MAIN
Changes since 1.7: +12 -12 lines
Diff to previous 1.7
* added - an option to disable 301 redirection
* added - some specificities for GVFS

Revision 1.7 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 26 15:39:47 2008 UTC (13 months, 4 weeks ago) by ulhume
Branch: MAIN
Changes since 1.6: +168 -211 lines
Diff to previous 1.6
* removed authentication from pear server
* reworked API, now everything is passing through callbacks excepts definitions

Revision 1.6 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Sep 24 22:29:57 2008 UTC (14 months ago) by ulhume
Branch: MAIN
Changes since 1.5: +1 -1 lines
Diff to previous 1.5
* fix - yet again a redirection problem

Revision 1.5 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Sep 24 20:26:31 2008 UTC (14 months ago) by ulhume
Branch: MAIN
Changes since 1.4: +10 -10 lines
Diff to previous 1.4
* fix - ability to go in a non-existent folder from root
* fix - path creation (missing last /)
* improved - speed by caching collection resolving
* improved - traces

Revision 1.4 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Sep 23 02:02:03 2008 UTC (14 months ago) by ulhume
Branch: MAIN
Changes since 1.3: +0 -1 lines
Diff to previous 1.3
* clean-up

Revision 1.3 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Sep 23 01:33:48 2008 UTC (14 months ago) by ulhume
Branch: MAIN
Changes since 1.2: +2 -0 lines
Diff to previous 1.2
* Just to see if SVN/CVS sync is now working

Revision 1.2 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Sep 22 13:14:04 2008 UTC (14 months ago) by ulhume
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-RC3
Changes since 1.1: +141 -91 lines
Diff to previous 1.1
 * Now file listing can be embeded in drupal.
 * New setting in WebDav Server in order to choose full page or embeded file listing
 * Better permission management. We can have a different permission for every single static collection. There is no inheritance. For example youcan disallow anonymous access on /webdav/, allow it on /webdav/my_path and disallow it again on /webdav/my_path/secret.
 * Matching static collection path algorytm will match the best collection, not the only equal in number of argument. That means we can
   make static collection for the first part of the path and have all the reste used as collection argument. Usefull for recursive collections.
 * When used embeded in drupal, the server is using Drupal authentication, no more pop-up for login/password.
 * Reworked listing template
 * fix compression of binary files
 #311198 Division by zero fixed
 #311096 Warning in settings fixed
 * improved configuration for node and server
 * fix redirecting stuff
 * improved debugging options
 * fix listing title
 * item type 'folder' changed to 'collection'
 * fixed adding and deleting attachements

Revision 1.1 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Sep 20 08:25:58 2008 UTC (14 months ago) by ulhume
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-RC2
Initial Import

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

  ViewVC Help
Powered by ViewVC 1.1.2