[PATCH] fdo#63197, Remove Zip_launcher part

Julien Nabet (via Code Review) gerrit at gerrit.libreoffice.org
Wed Apr 17 11:01:07 PDT 2013


Hi,

I have submitted a patch for review:

    https://gerrit.libreoffice.org/3436

To pull it, you can do:

    git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/36/3436/1

fdo#63197, Remove Zip_launcher part

Change-Id: I3d14cf90ec4d745a8fb70db8319a3a3042e93306
---
M wizards/Module_wizards.mk
D wizards/Zip_launcher.mk
D wizards/source/launcher/DicOOo.xba
D wizards/source/launcher/dialog.xlb
D wizards/source/launcher/script.xlb
5 files changed, 0 insertions(+), 119 deletions(-)



diff --git a/wizards/Module_wizards.mk b/wizards/Module_wizards.mk
index 14d6c05..d979ed0 100644
--- a/wizards/Module_wizards.mk
+++ b/wizards/Module_wizards.mk
@@ -43,7 +43,6 @@
 	Zip_form \
 	Zip_gimmicks \
 	Zip_import \
-	Zip_launcher \
 	Zip_share \
 	Zip_standard \
 	Zip_template \
diff --git a/wizards/Zip_launcher.mk b/wizards/Zip_launcher.mk
deleted file mode 100644
index 1fb18b0..0000000
--- a/wizards/Zip_launcher.mk
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-# 
-# Copyright 2000, 2011 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org.  If not, see
-# <http://www.openoffice.org/license.html>
-# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-$(eval $(call gb_Zip_Zip,basicsrvlauncher,$(SRCDIR)/wizards/source/launcher))
-$(eval $(call gb_Zip_add_files,basicsrvlauncher,\
-	dialog.xlb \
-	DicOOo.xba \
-	script.xlb \
-))
-# vim: set noet sw=4 ts=4:
diff --git a/wizards/source/launcher/DicOOo.xba b/wizards/source/launcher/DicOOo.xba
deleted file mode 100644
index 1e1e85e..0000000
--- a/wizards/source/launcher/DicOOo.xba
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
-<!--
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
--->
-<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
-
-' Find path
-aService = CreateUnoService("com.sun.star.util.PathSubstitution")
-ThePath =ConvertToURL(aService.substituteVariables("$(user)", true))
-ThePath=ThePath & "/wordbook"
-DefPath =ConvertToURL(aService.substituteVariables("$(prog)", true))
-DefPath=DefPath & "/../share/dict/ooo"
-
-MyDicOOo=""
-
-if  fileExists(ThePath & "/DicOOo.lst") then
-	'read DicOOo.lst file in user directory
-        Open ThePath & "/DicOOo.lst" for input as #1
-                line input #1, MyDicOOo
-        close #1
-else
-	if fileExists(DefPath & "/DicOOo.lst") then
-	'read DicOOo.lst file in share directory
-	    Open DefPath & "/DicOOo.lst" for input as #1
-                line input #1, MyDicOOo
-        close #1
-    else
-    	'creates default file in user directory
-    	Open ThePath & "/DicOOo.lst" for output as #1
-    		print #1,convertFromURL(DefPath & "/DicOOo.sxw")
-    	close #1
-    endif    
-endif
-
-'security 
-if Not fileExists(MyDicOOo) then
-        MyDicOOo= DefPath & "/DicOOo.sxw"
-endif
-
-MyDicOOo=ConvertToURL(MyDicOOo)
-
-'Opens DicOOo main file
-args(0).name="InteractionHandler"
-args(0).value=""
-args(1).name="MacroExecutionMode"
-args(1).value=com.sun.star.document.MacroExecMode.ALWAYS_EXECUTE_NO_WARN '4
-TheDoc=StarDesktop.loadComponentFromURL(MyDicOOo,"_blank",0,args())
-
-End Sub
-</script:module>
diff --git a/wizards/source/launcher/dialog.xlb b/wizards/source/launcher/dialog.xlb
deleted file mode 100644
index a4c6d75..0000000
--- 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 55310d9..0000000
--- 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>

-- 
To view, visit https://gerrit.libreoffice.org/3436
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3d14cf90ec4d745a8fb70db8319a3a3042e93306
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Julien Nabet <serval2412 at yahoo.fr>



More information about the LibreOffice mailing list