scratch – Diff between revs 15 and 28

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 15 Rev 28
Line 6... Line 6...
6   6  
7 # Set this to the filesystem to the folder where the files should be 7 # Set this to the filesystem to the folder where the files should be
8 # uploaded. 8 # uploaded.
Line -... Line 9...
-   9 $STORE_FOLDER = '/var/www/incoming/';
-   10  
-   11 # Temporary editor file shared by all clients.
9 $STORE_FOLDER = '/var/www/incoming/'; 12 $SHARED_EDITOR_FILE = 'share.html';
10   -  
11 # Set this to the URL path of the folder where the files can be 13  
Line 12... Line 14...
12 # retrieved. 14 # Set this to the URL path of the folder where the files can be retrieved.
13 $URL_PATH = 'http://my.tld/incoming/'; 15 $URL_PATH = 'http://my.tld/incoming/';
14   16  
Line 27... Line 29...
27 "GZ", 29 "GZ",
28 "TAR", 30 "TAR",
29 "BZ2", 31 "BZ2",
30 "TXT", 32 "TXT",
31 "CSV", 33 "CSV",
-   34 "HTML",
-   35 "HTM",
32 "DOC", 36 "DOC",
33 "DOCX", 37 "DOCX",
34 "XLS", 38 "XLS",
35 "MP4", 39 "MP4",
36 "MP3" 40 "MP3"
37 ]; 41 ];
-   42