Index: trunk/wiki2xml/php/README |
— | — | @@ -1,5 +1,7 @@ |
2 | 2 | =pod |
3 | 3 | |
| 4 | +=head1 INTRODUCTION |
| 5 | + |
4 | 6 | You can read this document better with: |
5 | 7 | |
6 | 8 | perldoc README |
— | — | @@ -24,10 +26,10 @@ |
25 | 27 | directory as a subdirectory named C<< w2x >>: |
26 | 28 | |
27 | 29 | htdocs |
28 | | - \- wiki |
29 | | - \- w2x <-- here |
30 | | - \- w2x.php |
31 | | - \- wiki2xml.php etc |
| 30 | + \- wiki |
| 31 | + \- w2x <-- here |
| 32 | + \- w2x.php |
| 33 | + \- wiki2xml.php etc |
32 | 34 | |
33 | 35 | =head2 Configuration |
34 | 36 | |
— | — | @@ -38,12 +40,18 @@ |
39 | 41 | |
40 | 42 | On a Unix/Linux server the following can be used as a starting point: |
41 | 43 | |
42 | | - $xmlg["temp_dir"] = "/tmp"; # Directory for temporary files |
| 44 | + # Directory for temporary files: |
| 45 | + $xmlg["temp_dir"] = "/tmp"; |
43 | 46 | |
44 | | - #$xmlg["zip_odt_path"] = ""; # Path to the zip/unzip programs; can be omitted |
45 | | - # if in default execuatable path |
46 | | - $xmlg["zip_odt"] = 'zip -r9 $1 $2'; # Command to zip directory $1 to file $2 |
47 | | - $xmlg["unzip_odt"] = 'unzip -x $1 -d $2'; # Command to unzip file $1 to directory $2 |
| 47 | + # Path to the zip/unzip programs; can be omitted if in default |
| 48 | + # executable path: |
| 49 | + #$xmlg["zip_odt_path"] = ""; |
| 50 | + |
| 51 | + # Command to zip directory $1 to file $2: |
| 52 | + $xmlg["zip_odt"] = 'zip -r9 $1 $2'; |
| 53 | + |
| 54 | + # Command to unzip file $1 to directory $2: |
| 55 | + $xmlg["unzip_odt"] = 'unzip -x $1 -d $2'; |
48 | 56 | |
49 | 57 | =head1 USAGE |
50 | 58 | |