source: main/trunk/greenstone3/ext/extension_project_list.xml@ 21992

Last change on this file since 21992 was 21992, checked in by sjm84, 14 years ago

Updated extension_project_list.xml file format, tags like file_stem are now fileStem

File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<extensionList baseURL="http://svn.greenstone.org/gs3-extensions/">
3 <extension>
4 <name>Metadata Quality Tool</name>
5 <group>Java / Web</group>
6 <fileStem>mat</fileStem>
7 <description>The quality of metadata in a digital library is an important factor in ensuring access for end-users. As collections grow in size maintaining quality through manual methods becomes increasingly difficult for repository managers. The tool is built as an extension to the Greenstone3 digital library software.
8
9This extension requires Java Development Kit (JDK) 1.4 or higher. If you do do have JDK installed on your computer, you can download it from Sun (http://java.sun.com/).
10
11How to download Greenstone extension behind a HTTP proxy?
12By default SVNKit uses proxy settings from the servers configuration file that is located in the default SVN run-time configuration area. Default configuration area is located at ~/.subversion on Linux and OS X and at C:\Documents and Settings\userName\Application Data\Subversion on Windows. You may read more on Subversion client configuration files at Subversion Book (from http://svnkit.com/kb/user-guide-config-settings.html).
13
14This extension uses the JFreecChart to generate visualisation. JFreeChart is a free (LGPL) chart library for the Java(tm) platform. You can read more on JFreechart website (http://www.jfree.org/jfreechart/).
15
16If you cannot launch Metadata Analysis Tool, please remove the gs2mgdemo from "root/web/sites/localsite/collect". The root is Greenstone3 directory.
17 </description>
18 <sequenceList>
19<!-- <step id="getMat" action="download" label="Download Extension">
20 <mainSource method="svn">http://svn.greenstone.org/gs3-extensions/mat/trunk/</mainSource>
21 </step> -->
22 <step id="installOptions" action="properties" label="Install options" dependsOn="AUTOMATIC_DOWNLOAD">
23 <optionList id="Mat" label="Mat options">
24 <option id="User_Name" label="User name"/>
25 <option id="Password" label="Password"/>
26 <option id="Tomcat_Port" label="Tomcat port"/>
27 <option id="JVM_Version" label="Java Virtual Machine version"/>
28 </optionList>
29<!-- <optionList id="ol2" label="Test options set 2" file="other.properties">
30 <option id="t3" label="Test 3">Test 3</option>
31 <option id="t4" label="Test 4"/>
32 </optionList> -->
33 </step>
34 <step id="install" action="button" label="Install" dependsOn="installOptions">
35 <command>
36 <os name="default">ant compile</os>
37 </command>
38 </step>
39 <step id="controlPanel" action="panel" label="Control Panel" dependsOn="install">
40 <class>org.greenstone.admin.guiext.mat.ControlPanel</class>
41 </step>
42 <step id="uninstall" action="button" label="Uninstall" dependsOn="install" rollbackTo="install">
43 <command>
44 <os name="default">ant clean</os>
45 </command>
46 </step>
47<!-- <step id="remove" action="remove" label="Remove Extension" dependsOn="getMat" rollbackTo="getMat">
48 <command>
49 <os name="default"/>
50 </command>
51 </step> -->
52 </sequenceList>
53 </extension>
54<!-- <extension>
55 <name>Sam's Test Extension</name>
56 <group>Java / Web</group>
57 <file_stem>STE</file_stem>
58 <description>A test extension to help make extensions better!</description>
59 <base_ext>org.greenstone.admin.guiext.ste.STE</base_ext>
60 <sequence_list>
61 <step id="getSTE" action="download" label="Download" method="svn">
62 <mainSource method="svn">http://svn.greenstone.org/gs3-extensions/ste/trunk/</mainSource>
63 </step>
64 <step id="installOptions" action="properties" label="Install options" dependsOn="getSTE">
65 <optionList label="Test options set 1">
66 <option label="Test 1">Test 1</option>
67 <option label="Test 2"/>
68 </optionList>
69 </step>
70 <step id="install" action="button" label="Install" dependsOn="installOptions">
71 <command>
72 <os name="default">ant compile</os>
73 </command>
74 </step>
75 <step id="uninstall" action="button" label="Uninstall" dependsOn="install" rollbackTo="installOptions">
76 <command>
77 <os name="default">ant uninstall</os>
78 </command>
79 </step>
80 <step id="delete" action="button" label="Delete" dependsOn="getSTE" rollbackTo="getSTE">
81 <command>
82 <os name="default">ant delete</os>
83 </command>
84 </step>
85 </sequence_list>
86 </extension>-->
87</extensionList>
Note: See TracBrowser for help on using the repository browser.