summaryrefslogtreecommitdiff
path: root/wizards/source/launcher
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-01-28 20:52:45 +0100
committerMichael Stahl <mstahl@redhat.com>2012-01-28 20:52:45 +0100
commit2e626373db2412ac22e8c5c27a60d11cd29e875b (patch)
tree9e9f67205cd5b72f1031721273e1534a3a1e5b0f /wizards/source/launcher
parentf7ee7bbd5174b084f018c2ec94d8c70c98ee04da (diff)
replace obsolete "master" branch with README that points at new repoHEADmaster-deletedmaster
Diffstat (limited to 'wizards/source/launcher')
-rw-r--r--wizards/source/launcher/DicOOo.xba59
-rw-r--r--wizards/source/launcher/delzip0
-rw-r--r--wizards/source/launcher/dialog.xlb3
-rw-r--r--wizards/source/launcher/script.xlb5
4 files changed, 0 insertions, 67 deletions
diff --git a/wizards/source/launcher/DicOOo.xba b/wizards/source/launcher/DicOOo.xba
deleted file mode 100644
index 474494e71..000000000
--- a/wizards/source/launcher/DicOOo.xba
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
-<script:module xmlns:script="http://openoffice.org/2000/script" script:name="DicOOo" script:language="StarBasic">Option Explicit
-
-Sub StartDicOOo
-
-Dim ThePath as string
-Dim DefPath as string
-Dim aService as object
-Dim MyDicOOo as string
-dim TheDoc as object
-dim args(1) as new com.sun.star.beans.PropertyValue
-
-on error resume next
-
-&apos; Find path
-aService = CreateUnoService(&quot;com.sun.star.util.PathSubstitution&quot;)
-ThePath =ConvertToURL(aService.substituteVariables(&quot;$(user)&quot;, true))
-ThePath=ThePath &amp; &quot;/wordbook&quot;
-DefPath =ConvertToURL(aService.substituteVariables(&quot;$(prog)&quot;, true))
-DefPath=DefPath &amp; &quot;/../share/dict/ooo&quot;
-
-MyDicOOo=&quot;&quot;
-
-if fileExists(ThePath &amp; &quot;/DicOOo.lst&quot;) then
- &apos;read DicOOo.lst file in user directory
- Open ThePath &amp; &quot;/DicOOo.lst&quot; for input as #1
- line input #1, MyDicOOo
- close #1
-else
- if fileExists(DefPath &amp; &quot;/DicOOo.lst&quot;) then
- &apos;read DicOOo.lst file in share directory
- Open DefPath &amp; &quot;/DicOOo.lst&quot; for input as #1
- line input #1, MyDicOOo
- close #1
- else
- &apos;creates default file in user directory
- Open ThePath &amp; &quot;/DicOOo.lst&quot; for output as #1
- print #1,convertFromURL(DefPath &amp; &quot;/DicOOo.sxw&quot;)
- close #1
- endif
-endif
-
-&apos;security
-if Not fileExists(MyDicOOo) then
- MyDicOOo= DefPath &amp; &quot;/DicOOo.sxw&quot;
-endif
-
-MyDicOOo=ConvertToURL(MyDicOOo)
-
-&apos;Opens DicOOo main file
-args(0).name=&quot;InteractionHandler&quot;
-args(0).value=&quot;&quot;
-args(1).name=&quot;MacroExecutionMode&quot;
-args(1).value=com.sun.star.document.MacroExecMode.ALWAYS_EXECUTE_NO_WARN &apos;4
-TheDoc=StarDesktop.loadComponentFromURL(MyDicOOo,&quot;_blank&quot;,0,args())
-
-End Sub
-</script:module>
diff --git a/wizards/source/launcher/delzip b/wizards/source/launcher/delzip
deleted file mode 100644
index e69de29bb..000000000
--- a/wizards/source/launcher/delzip
+++ /dev/null
diff --git a/wizards/source/launcher/dialog.xlb b/wizards/source/launcher/dialog.xlb
deleted file mode 100644
index a4c6d756c..000000000
--- a/wizards/source/launcher/dialog.xlb
+++ /dev/null
@@ -1,3 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
-<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Launcher" library:readonly="true" library:passwordprotected="false"/>
diff --git a/wizards/source/launcher/script.xlb b/wizards/source/launcher/script.xlb
deleted file mode 100644
index 55310d9fb..000000000
--- a/wizards/source/launcher/script.xlb
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
-<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Launcher" library:readonly="true" library:passwordprotected="false">
- <library:element library:name="DicOOo"/>
-</library:library>