Search in sources :

Example 6 with IXMLReader

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"));
        }
    }
}
Also used : IXMLReader(org.freeplane.n3.nanoxml.IXMLReader) FileNotFoundException(java.io.FileNotFoundException) AccessControlException(java.security.AccessControlException) XMLElement(org.freeplane.n3.nanoxml.XMLElement) FileInputStream(java.io.FileInputStream) ASelectableCondition(org.freeplane.features.filter.condition.ASelectableCondition) FileNotFoundException(java.io.FileNotFoundException) AccessControlException(java.security.AccessControlException) IOException(java.io.IOException) BufferedInputStream(java.io.BufferedInputStream) IXMLParser(org.freeplane.n3.nanoxml.IXMLParser) StdXMLReader(org.freeplane.n3.nanoxml.StdXMLReader) File(java.io.File)

Example 7 with IXMLReader

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);
    }
}
Also used : IXMLReader(org.freeplane.n3.nanoxml.IXMLReader) InputStream(java.io.InputStream) IXMLParser(org.freeplane.n3.nanoxml.IXMLParser) StdXMLReader(org.freeplane.n3.nanoxml.StdXMLReader) XMLElement(org.freeplane.n3.nanoxml.XMLElement) Properties(java.util.Properties) URL(java.net.URL)

Example 8 with IXMLReader

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);
        }
    }
}
Also used : FilenameFilter(java.io.FilenameFilter) ScriptAddOnProperties(org.freeplane.plugin.script.addons.ScriptAddOnProperties) IXMLReader(org.freeplane.n3.nanoxml.IXMLReader) BufferedInputStream(java.io.BufferedInputStream) IXMLParser(org.freeplane.n3.nanoxml.IXMLParser) StdXMLReader(org.freeplane.n3.nanoxml.StdXMLReader) File(java.io.File) FileInputStream(java.io.FileInputStream)

Example 9 with IXMLReader

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;
}
Also used : IXMLReader(net.n3.nanoxml.IXMLReader) IXMLParser(net.n3.nanoxml.IXMLParser) IOException(java.io.IOException) FileNotFoundException(java.io.FileNotFoundException)

Example 10 with IXMLReader

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;
}
Also used : XMLException(net.n3.nanoxml.XMLException) IXMLReader(net.n3.nanoxml.IXMLReader) IXMLParser(net.n3.nanoxml.IXMLParser)

Aggregations

IXMLReader (org.freeplane.n3.nanoxml.IXMLReader)9 StdXMLReader (org.freeplane.n3.nanoxml.StdXMLReader)8 IOException (java.io.IOException)7 IXMLParser (net.n3.nanoxml.IXMLParser)7 IXMLReader (net.n3.nanoxml.IXMLReader)7 IXMLParser (org.freeplane.n3.nanoxml.IXMLParser)7 XMLElement (org.freeplane.n3.nanoxml.XMLElement)6 BufferedInputStream (java.io.BufferedInputStream)5 File (java.io.File)5 FileInputStream (java.io.FileInputStream)5 XMLException (net.n3.nanoxml.XMLException)4 FileNotFoundException (java.io.FileNotFoundException)3 FilenameFilter (java.io.FilenameFilter)2 InputStream (java.io.InputStream)2 StdXMLReader (net.n3.nanoxml.StdXMLReader)2 XHtmlFilter (eu.webtoolkit.jwt.XHtmlFilter)1 Dimension (java.awt.Dimension)1 Frame (java.awt.Frame)1 StringReader (java.io.StringReader)1 URL (java.net.URL)1