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

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

Updating this file to include the video extension and also upgraded the ekit extension so that it can now be associated with GLI with the click of a button

File size: 3.8 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="installOptions" action="properties" label="Install options" dependsOn="AUTOMATIC_DOWNLOAD">
20 <optionList id="Mat" label="Mat options">
21 <option id="User_Name" label="User name"/>
22 <option id="Password" label="Password"/>
23 <option id="Tomcat_Port" label="Tomcat port"/>
24 <option id="JVM_Version" label="Java Virtual Machine version"/>
25 </optionList>
26 </step>
27 <step id="install" action="button" label="Install" dependsOn="installOptions">
28 <command>
29 <os name="default">ant compile</os>
30 </command>
31 </step>
32 <step id="controlPanel" action="panel" label="Control Panel" dependsOn="install">
33 <class>org.greenstone.admin.guiext.mat.ControlPanel</class>
34 </step>
35 <step id="uninstall" action="button" label="Uninstall" dependsOn="install" rollbackTo="install">
36 <command>
37 <os name="default">ant clean</os>
38 </command>
39 </step>
40 </sequenceList>
41 </extension>
42 <extension>
43 <name>EKit HTML Editor</name>
44 <group>Java / Web</group>
45 <fileStem>ekit</fileStem>
46 <description>An HTML editor for GLI</description>
47 <sequenceList>
48 <step id="run" action="button" label="Run EKit" dependsOn="AUTOMATIC_DOWNLOAD">
49 <command>
50 <os name="default">java -jar ekit.jar</os>
51 </command>
52 </step>
53 <step id="assoc" action="button" label="Setup EKit for GLI" dependsOn="AUTOMATIC_DOWNLOAD">
54 <command>
55 <os name="default">java -jar GLIAssociate.jar</os>
56 </command>
57 </step>
58 </sequenceList>
59 </extension>
60 <extension>
61 <name>Video Plugin</name>
62 <group>Java / Web</group>
63 <fileStem>video</fileStem>
64 <description>Greenstone video extension (Need more details)</description>
65 <sequenceList>
66 <step id="download" action="download" label="Download Extension">
67 <mainSource method="svn">http://svn.greenstone.org/gs2-extensions/video/trunk</mainSource>
68 </step>
69 <step id="install" action="button" label="Compile" dependsOn="download">
70 <command>
71 <os name="default">./CASCADE-MAKE.sh &gt; output.log</os>
72 <os name="Windows">CASCADE-MAKE</os>
73 </command>
74 </step>
75 <step id="uninstall" action="button" label="Uninstall" dependsOn="install" rollbackTo="install">
76 <command>
77 <os name="default"/>
78 </command>
79 </step>
80 </sequenceList>
81 </extension>
82</extensionList>
Note: See TracBrowser for help on using the repository browser.