Parent Directory
|
Revision Log
Import initial versions convertors from kwiki (much more complete) and phpwiki (just tiny subset which one of my wikis used) to socialtext
1 | #!/bin/sh |
2 | |
3 | file=$1 |
4 | |
5 | if [ -z "$file" -o ! -f "$file" ] ; then |
6 | echo "Usage: $0 st/SomePage" |
7 | exit |
8 | fi |
9 | |
10 | iconv -f utf-8 -t iso-8859-2 $file > ${file}.wiki |
11 | vi ${file}.wiki && iconv -f iso-8859-2 -t utf-8 ${file}.wiki > $file |
Name | Value |
---|---|
svn:executable |
ViewVC Help | |
Powered by ViewVC 1.1.26 |