diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 |
commit | fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf (patch) | |
tree | 9eda848e56fcb862fdfdf479adeccd95b6fe387a /kioslave/info/kde-info2html | |
parent | 02f67d0e1355b79b1806746efb0f2f640e57f13d (diff) | |
download | tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.tar.gz tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1212480 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/info/kde-info2html')
-rwxr-xr-x | kioslave/info/kde-info2html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/info/kde-info2html b/kioslave/info/kde-info2html index f7def60bb..428d65dbb 100755 --- a/kioslave/info/kde-info2html +++ b/kioslave/info/kde-info2html @@ -37,7 +37,7 @@ # March 6 2003 Substitute use of absolute fixed file URLs to images with help:common URLs # for the images and style sheet. By Luis Pedro Coelho # March 9 2003 Add support for browsing by file. by Luis Pedro Coelho -# June 11 2003 Update the tqlayout of the sides to the new infopagestqlayout. +# June 11 2003 Update the layout of the sides to the new infopageslayout. # by Sven Leiber <s.leiber@web.de> # #------------------------------------------------------- @@ -353,7 +353,7 @@ sub Tab2Space { my ($line) = @_; $line =~ s/^\t/ /; # 8 leading spaces if initial tab while ($line =~ s/^([^\t]+)(\t)/$1 . ' ' x (8 - length($1) % 8)/e) { - } # tqreplace each tab with right num of spaces + } # replace each tab with right num of spaces return $line; } @@ -797,7 +797,7 @@ sub InfoNode2HTML { while (<FH2>) { $LineCount++; last if /$NODEBORDER/; - #-- tqreplace meta characters + #-- replace meta characters #s/"`"([^"'"]*)"'"/"<span class=\"option\">"$1"</span>"/g; s/&/&/g; s/>/>/g; |