Revision 2237
Added by Duane Costa over 20 years ago
lib/harvester/runHarvestListEditor.bat | ||
---|---|---|
3 | 3 |
set METACAT_LIB=%METACAT_HOME%\lib |
4 | 4 |
set LIB_JARS=%METACAT_LIB%\xercesImpl.jar |
5 | 5 |
set CLASSPATH=%METACAT_CLASSES%;%LIB_JARS% |
6 |
cd %METACAT_HOME%\lib\harvester
|
|
6 |
cd %METACAT_LIB%\harvester
|
|
7 | 7 |
java edu.ucsb.nceas.metacat.harvesterClient.HarvestListEditor |
lib/harvester/runHarvestListEditor.sh | ||
---|---|---|
2 | 2 |
METACAT_LIB=$METACAT_HOME/lib |
3 | 3 |
LIB_JARS=$METACAT_LIB/xercesImpl.jar |
4 | 4 |
export CLASSPATH=$METACAT_CLASSES:$LIB_JARS |
5 |
cd $METACAT_CLASSES
|
|
5 |
cd $METACAT_LIB/harvester
|
|
6 | 6 |
java edu.ucsb.nceas.metacat.harvesterClient.HarvestListEditor |
src/edu/ucsb/nceas/metacat/harvesterClient/HarvestListEditor.java | ||
---|---|---|
100 | 100 |
JButton pasteDefaultsButton; |
101 | 101 |
Properties properties; |
102 | 102 |
private String schemaLocation = |
103 |
"eml://ecoinformatics.org/harvestList ../../lib/harvester/harvestList.xsd"; |
|
103 |
// "eml://ecoinformatics.org/harvestList ../../lib/harvester/harvestList.xsd"; |
|
104 |
"eml://ecoinformatics.org/harvestList harvestList.xsd"; |
|
104 | 105 |
int selectedRow = -1; |
105 | 106 |
final JTable table; |
106 | 107 |
TableModel tableModel; |
Also available in: Unified diff
Change relative path to harvestList.xsd schema to allow harvest list editor to run standalone.