summaryrefslogtreecommitdiffstats
path: root/src/kile1.7_upd.pl
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 03:05:17 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 03:05:17 +0000
commit2c945cd914550233ed352ff195afeb4dd793f122 (patch)
tree4796bfab5733942b90b5a66bb05655be5fdcca03 /src/kile1.7_upd.pl
downloadkile-2c945cd914550233ed352ff195afeb4dd793f122.tar.gz
kile-2c945cd914550233ed352ff195afeb4dd793f122.zip
Added abandoned KDE3 version of Kile
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kile@1088055 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kile1.7_upd.pl')
-rw-r--r--src/kile1.7_upd.pl44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/kile1.7_upd.pl b/src/kile1.7_upd.pl
new file mode 100644
index 0000000..2e8d4af
--- /dev/null
+++ b/src/kile1.7_upd.pl
@@ -0,0 +1,44 @@
+#!/usr/bin/perl
+
+# dani 19.02.2005
+
+# first delete some groups and keys, if they exist
+print "# DELETEGROUP [Tool/PreviewLaTeX/Default]\n";
+print "# DELETEGROUP [Tool/PreviewPDFLaTeX/Default]\n";
+print "# DELETE [Tools]PreviewLaTeX\n";
+print "# DELETE [Tools]PreviewPDFLaTeX\n";
+print "# DELETE [ToolsGUI]PreviewLaTeX\n";
+print "# DELETE [ToolsGUI]PreviewPDFLaTeX\n";
+
+# now filter the configuration file
+print <<EOT;
+[Tool/PreviewLaTeX/Default]
+autoRun=no
+checkForRoot=no
+class=LaTeXpreview
+command=latex
+from=
+jumpToFirstError=yes
+options=-interaction=nonstopmode '%source'
+to=dvi
+type=Process
+
+[Tool/PreviewPDFLaTeX/Default]
+autoRun=no
+checkForRoot=no
+class=LaTeXpreview
+command=pdflatex
+from=
+jumpToFirstError=yes
+options=-interaction=nonstopmode '%source'
+to=pdf
+type=Process
+
+[Tools]
+PreviewLaTeX=Default
+PreviewPDFLaTeX=Default
+
+[ToolsGUI]
+PreviewLaTeX=none,none
+PreviewPDFLaTeX=none,none
+EOT