|
|
|
@ -64,13 +64,15 @@ public class Vocabulary_p {
|
|
|
|
|
if (discoveruri == null) discoverobjectspace = "";
|
|
|
|
|
Map<String, Tagging.SOTuple> table = new TreeMap<String, Tagging.SOTuple>();
|
|
|
|
|
File propFile = LibraryProvider.autotagging.getVocabularyFile(discovername);
|
|
|
|
|
boolean discoverNot = post.get("discovermethod", "").equals("none");
|
|
|
|
|
boolean discoverFromPath = post.get("discovermethod", "").equals("path");
|
|
|
|
|
boolean discoverFromTitle = post.get("discovermethod", "").equals("title");
|
|
|
|
|
boolean discoverFromTitleSplitted = post.get("discovermethod", "").equals("titlesplitted");
|
|
|
|
|
boolean discoverFromAuthor = post.get("discovermethod", "").equals("author");
|
|
|
|
|
Segment segment = sb.index;
|
|
|
|
|
Iterator<DigestURI> ui = segment.urlSelector(discoveruri, 600000L, 100000);
|
|
|
|
|
String t;
|
|
|
|
|
if (!discoverNot) {
|
|
|
|
|
Iterator<DigestURI> ui = segment.urlSelector(discoveruri, 600000L, 100000);
|
|
|
|
|
while (ui.hasNext()) {
|
|
|
|
|
DigestURI u = ui.next();
|
|
|
|
|
String u0 = u.toNormalform(true);
|
|
|
|
@ -115,6 +117,7 @@ public class Vocabulary_p {
|
|
|
|
|
table.put(t, new Tagging.SOTuple(Tagging.normalizeTerm(t), u0));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Tagging newvoc = new Tagging(discovername, propFile, discoverobjectspace, table);
|
|
|
|
|
LibraryProvider.autotagging.addVocabulary(newvoc);
|
|
|
|
|
vocabularyName = discovername;
|
|
|
|
|