Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
772d15fb
Kaydet (Commit)
772d15fb
authored
Agu 08, 2012
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
create these rdbs directly in scripting
Change-Id: I8a44de06f9a16308a5ff82ad77d059e5dde544f9
üst
82d8a500
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
37 deletions
+40
-37
makefile.mk
postprocess/packcomponents/makefile.mk
+0
-33
Module_scripting.mk
scripting/Module_scripting.mk
+8
-4
Rdb_scriptproviderforbeanshell.mk
scripting/Rdb_scriptproviderforbeanshell.mk
+16
-0
Rdb_scriptproviderforjavascript.mk
scripting/Rdb_scriptproviderforjavascript.mk
+16
-0
No files found.
postprocess/packcomponents/makefile.mk
Dosyayı görüntüle @
772d15fb
...
...
@@ -412,36 +412,3 @@ $(MISC)/services.input : makefile.mk
'<list>$(my_components:^"<filename>":+".component</filename>")</list>'
\
>
$@
.IF
"$(ENABLE_SCRIPTING_BEANSHELL)"
==
"YES"
ALLTAR
:
$(MISC)/scriptproviderforbeanshell.rdb
$(MISC)/scriptproviderforbeanshell.rdb .ERRREMOVE
:
\
$(SOLARENV)/bin/packcomponents.xslt
\
$(MISC)/scriptproviderforbeanshell.input
\
$(SOLARXMLDIR)/component/scripting/java/ScriptProviderForBeanShell.component
$(XSLTPROC)
--nonet
--stringparam
prefix
$(SOLARXMLDIR)/
-o
$@
\
$(SOLARENV)/bin/packcomponents.xslt
\
$(MISC)/scriptproviderforbeanshell.input
$(MISC)/scriptproviderforbeanshell.input
:
makefile.mk
echo
\
'<list><filename>component/scripting/java/ScriptProviderForBeanShell.component</filename></list>'
\
>
$@
.END
.IF
"$(ENABLE_SCRIPTING_JAVASCRIPT)"
==
"YES"
ALLTAR
:
$(MISC)/scriptproviderforjavascript.rdb
$(MISC)/scriptproviderforjavascript.rdb .ERRREMOVE
:
\
$(SOLARENV)/bin/packcomponents.xslt
\
$(MISC)/scriptproviderforjavascript.input
\
$(SOLARXMLDIR)/component/scripting/java/ScriptProviderForJavaScript.component
$(XSLTPROC)
--nonet
--stringparam
prefix
$(SOLARXMLDIR)/
-o
$@
\
$(SOLARENV)/bin/packcomponents.xslt
\
$(MISC)/scriptproviderforjavascript.input
$(MISC)/scriptproviderforjavascript.input
:
makefile.mk
echo
\
'<list><filename>component/scripting/java/ScriptProviderForJavaScript.component</filename></list>'
\
>
$@
.END
scripting/Module_scripting.mk
Dosyayı görüntüle @
772d15fb
...
...
@@ -36,11 +36,15 @@ $(eval $(call gb_Module_add_targets,scripting,\
Jar_Highlight
\
Jar_MemoryUsage
\
Jar_ScriptFramework
\
$(if
$(filter
$(ENABLE_SCRIPTING_BEANSHELL),YES),\
Jar_ScriptProviderForBeanShell)
\
$(if
$(filter
$(ENABLE_SCRIPTING_BEANSHELL),YES),\
Jar_ScriptProviderForBeanShell
\
Rdb_scriptproviderforbeanshell
\
)
\
Jar_ScriptProviderForJava
\
$(if
$(filter
$(ENABLE_SCRIPTING_JAVASCRIPT),YES),\
Jar_ScriptProviderForJavaScript)
\
$(if
$(filter
$(ENABLE_SCRIPTING_JAVASCRIPT),YES),\
Jar_ScriptProviderForJavaScript
\
Rdb_scriptproviderforjavascript
\
)
\
Zip_ScriptsJava
\
)
\
$(if
$(filter
$(ENABLE_SCRIPTING_PYTHON),YES),\
...
...
scripting/Rdb_scriptproviderforbeanshell.mk
0 → 100644
Dosyayı görüntüle @
772d15fb
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# 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/.
#
$(eval $(call gb_Rdb_Rdb,scriptproviderforbeanshell))
$(eval $(call gb_Rdb_add_components,scriptproviderforbeanshell,\
scripting/java/ScriptProviderForBeanShell \
))
# vim: set noet sw=4 ts=4:
scripting/Rdb_scriptproviderforjavascript.mk
0 → 100644
Dosyayı görüntüle @
772d15fb
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# 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/.
#
$(eval $(call gb_Rdb_Rdb,scriptproviderforjavascript))
$(eval $(call gb_Rdb_add_components,scriptproviderforjavascript,\
scripting/java/ScriptProviderForJavaScript \
))
# vim: set noet sw=4 ts=4:
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment