use of net.n3.nanoxml.IXMLReader in project freeplane by freeplane.
the class FilterController method loadConditions.
void loadConditions(final DefaultComboBoxModel filterConditionModel, final String pathToFilterFile, final boolean showPopupOnError) throws IOException {
try {
final IXMLParser parser = XMLParserFactory.createDefaultXMLParser();
File filterFile = new File(pathToFilterFile);
final IXMLReader reader = new StdXMLReader(new BufferedInputStream(new FileInputStream(filterFile)));
parser.setReader(reader);
reader.setSystemID(filterFile.toURL().toString());
final XMLElement loader = (XMLElement) parser.parse();
final Vector<XMLElement> conditions = loader.getChildren();
for (int i = 0; i < conditions.size(); i++) {
final ASelectableCondition condition = getConditionFactory().loadCondition(conditions.get(i));
if (condition != null) {
filterConditionModel.addElement(condition);
}
}
} catch (final FileNotFoundException e) {
} catch (final AccessControlException e) {
} catch (final Exception e) {
LogUtils.warn(e);
if (showPopupOnError) {
UITools.errorMessage(TextUtils.getText("filters_not_loaded"));
}
}
}
use of net.n3.nanoxml.IXMLReader in project freeplane by freeplane.
the class ExportController method createXSLTExportActions.
private void createXSLTExportActions(final String xmlDescriptorFile) {
InputStream xmlDescriptorStream = null;
try {
final IXMLParser parser = XMLParserFactory.createDefaultXMLParser();
final URL resource = ResourceController.getResourceController().getResource(xmlDescriptorFile);
xmlDescriptorStream = resource.openStream();
final IXMLReader reader = new StdXMLReader(xmlDescriptorStream);
parser.setReader(reader);
final XMLElement xml = (XMLElement) parser.parse();
final Enumeration<XMLElement> actionDescriptors = xml.enumerateChildren();
while (actionDescriptors.hasMoreElements()) {
final XMLElement descriptor = actionDescriptors.nextElement();
final String name = descriptor.getAttribute("name", null);
final XMLElement xmlProperties = descriptor.getFirstChildNamed("properties");
final Properties properties = xmlProperties.getAttributes();
final ExportWithXSLT action = new ExportWithXSLT(name, properties);
addExportEngine(action.getFileFilter(), action);
}
} catch (final Exception e) {
LogUtils.severe(e);
} finally {
FileUtils.silentlyClose(xmlDescriptorStream);
}
}
use of net.n3.nanoxml.IXMLReader in project freeplane by freeplane.
the class ScriptingRegistration method registerScriptAddOns.
private void registerScriptAddOns() {
File[] addonXmlFiles = AddOnsController.getController().getAddOnsDir().listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return name.endsWith(".script.xml");
}
});
final IXMLParser parser = XMLParserFactory.createDefaultXMLParser();
for (File file : addonXmlFiles) {
BufferedInputStream inputStream = null;
try {
inputStream = new BufferedInputStream(new FileInputStream(file));
final IXMLReader reader = new StdXMLReader(inputStream);
parser.setReader(reader);
final ScriptAddOnProperties addOn = new ScriptAddOnProperties((XMLElement) parser.parse());
addOn.setAddOnPropertiesFile(file);
AddOnsController.getController().registerInstalledAddOn(addOn);
} catch (final Exception e) {
LogUtils.warn("error parsing " + file, e);
} finally {
FileUtils.silentlyClose(inputStream);
}
}
}
use of net.n3.nanoxml.IXMLReader in project jwt by emweb.
the class WStdLocalizedStrings method checkForValidXml.
private String checkForValidXml(String s) {
/* FIXME, we should do this only once for every key ... */
if (containsXML) {
try {
IXMLParser parser = XMLParserFactory.createDefaultXMLParser();
IXMLReader reader = StdXMLReader.stringReader("<span>" + s + "</span>");
parser.setReader(reader);
parser.parse();
return s;
} catch (Exception e) {
throw new RuntimeException("WStdLocalizedStrings: no valid xml: \"" + s + "\"");
}
} else
return s;
}
use of net.n3.nanoxml.IXMLReader in project jwt by emweb.
the class RefEncoder method EncodeRefs.
static WString EncodeRefs(CharSequence text, EnumSet<RefEncoderOption> options) {
WString wText = WString.toWString(text);
try {
RefEncoder encoder = new RefEncoder(options);
IXMLParser parser = XMLParserFactory.createDefaultXMLParser();
parser.setBuilder(encoder);
parser.setResolver(encoder);
IXMLReader reader = StdXMLReader.stringReader("<span>" + wText.toXhtml() + "</span>");
parser.setReader(reader);
parser.parse();
String filtered = encoder.result();
// 6 and 7 correct for respectively <span> and </span>
return new WString(filtered.substring(6, filtered.length() - 7));
} catch (ClassNotFoundException e) {
logger.error("ClassNotFoundException", e);
} catch (InstantiationException e) {
logger.error("InstantiationException", e);
} catch (IllegalAccessException e) {
logger.error("IllegalAccessException", e);
} catch (XMLException e) {
logger.error("Error reading XHTML string: " + e.getMessage());
}
return wText;
}
Aggregations