diff options
Diffstat (limited to 'doc/online')
-rw-r--r-- | doc/online/Makefile | 8 | ||||
-rwxr-xr-x | doc/online/replace | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/doc/online/Makefile b/doc/online/Makefile deleted file mode 100644 index e51b7a2..0000000 --- a/doc/online/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -all: - meinproc --stylesheet /opt/trinity/share/apps/ksgmltools2/customization/tde-web.xsl ../en/index.docbook - ./replace - rm *.bak - cp ../en/*.png . - -clean: - rm *.png *.html diff --git a/doc/online/replace b/doc/online/replace deleted file mode 100755 index 9b99c81..0000000 --- a/doc/online/replace +++ /dev/null @@ -1,2 +0,0 @@ -von='..\/common\/kde_logo.png' nach='kde_logo.png'; filetype='*.html'; OLDIFS=$IFS; IFS=' -' ; files=`find . -name "$filetype"`; for f in $files;do cp $f $f.bak; g="$f.mettytmp"; echo "Searching in $f ..."; cat "$f" | sed "s/$von/$nach/" > "$g" && mv "$g" "$f"; rm -f *.mettytmp; done; IFS=$OLDIFS; |