update credits
[LibreOffice.git] / scripting / README
blobf19fa3b21fea134e647ef091ea59210a1293d2b9
1 This module provides the source code for the Scripting Framework.
3 For more information on the Scripting Framework, see the project web page:
4 [http://framework.openoffice.org/scripting/]
7 == Source Code Structure ==
9 The following directories contain the source code currently used
10 by the Scripting Framework:
12 - source/provider
14 C++ source for the implementations of the com.sun.star.script.provider.*
15 and com.sun.star.script.browse.* UNO types. These types are used for
16 browsing and executing scripts.
18 - source/protocolhandler
20 C++ for a ProtocolHandler implementation that handles vnd.sun.star.script
21 URIs and dispatches them for execution to the Scripting Framework.
23 - source/basprov
25 C++ implementation of the LanguageScriptProvider UNO service for Basic
27 - source/dlgprov
29 C++ implementation of the DialogProvider UNO service used for loading
30 UNO dialogs from various languages
32 - java/com/sun/star/script/framework/provider
34 Implementation of an abstract base class ScriptProvider which provides
35 core methods for implementing Java based LanguageScriptProvider implementations
37 - java/com/sun/star/script/framework/provider/*
39 BeanShell, JavaScript and Java LanguageScriptProvider implementations
41 - java/com/sun/star/script/framework/browse/*
43 BrowseNode implementations for the Java based LanguageScriptProviders
45 - java/com/sun/star/script/framework/io
46 - java/com/sun/star/script/framework/container
48 Classes for performing script IO
50 - examples
52 Example scripts in BeanShell, JavaScript, Java and Python
55 == Deprecated Code ==
57 - java/org/openoffice/*
59 Support for developing scripts in IDEs such as NetBeans.
61 - source/pyprov
63 LanguageScriptProvider for Python