├── .classpath ├── .gitignore ├── .project ├── .settings └── edu.umd.cs.findbugs.core.prefs ├── Build.cmd ├── LICENSE ├── build.xml ├── lib ├── batik-1.8 │ ├── CHANGES │ ├── KEYS │ ├── LICENSE │ ├── MAINTAIN │ ├── NOTICE │ ├── README │ ├── batik-1.8.jar │ ├── batik-rasterizer-1.8.jar │ ├── batik-slideshow-1.8.jar │ ├── batik-squiggle-1.8.jar │ ├── batik-svgpp-1.8.jar │ ├── batik-ttf2svg-1.8.jar │ ├── build.bat │ ├── build.sh │ ├── build.xml │ ├── contrib │ │ ├── charts │ │ │ ├── README │ │ │ ├── convert.bat │ │ │ ├── convert.sh │ │ │ ├── lcp.bat │ │ │ ├── xml │ │ │ │ └── data.xml │ │ │ └── xsl │ │ │ │ ├── bar.xsl │ │ │ │ ├── column.xsl │ │ │ │ ├── line.xsl │ │ │ │ └── pie.xsl │ │ ├── fonts │ │ │ └── gladiator │ │ │ │ ├── README │ │ │ │ └── svg │ │ │ │ └── glb12.svg │ │ ├── jsvg │ │ │ └── JSVG.java │ │ ├── rasterizertask │ │ │ ├── README │ │ │ ├── build.bat │ │ │ ├── build.sh │ │ │ ├── build.xml │ │ │ └── sources │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── tools │ │ │ │ └── ant │ │ │ │ └── taskdefs │ │ │ │ └── optional │ │ │ │ ├── RasterizerTask.java │ │ │ │ └── RasterizerTaskSVGConverterController.java │ │ ├── scroll │ │ │ └── ScrollExample.java │ │ └── tiledTranscoder │ │ │ └── TiledImageTranscoder.java │ ├── documentation-sources │ │ ├── classes │ │ │ └── CatalogManager.properties │ │ ├── conf │ │ │ └── cli.xconf │ │ ├── content │ │ │ ├── .htaccess │ │ │ ├── demo │ │ │ │ ├── AppletDemo$1.class │ │ │ │ ├── AppletDemo$2.class │ │ │ │ ├── AppletDemo.class │ │ │ │ ├── AppletDemo.java │ │ │ │ ├── Makefile │ │ │ │ ├── barChart.svg │ │ │ │ ├── batik-awt-util.jar │ │ │ │ ├── batik-bridge.jar │ │ │ │ ├── batik-css.jar │ │ │ │ ├── batik-dom.jar │ │ │ │ ├── batik-ext.jar │ │ │ │ ├── batik-gvt.jar │ │ │ │ ├── batik-parser.jar │ │ │ │ ├── batik-script.jar │ │ │ │ ├── batik-svg-dom.jar │ │ │ │ ├── batik-swing.jar │ │ │ │ ├── batik-util.jar │ │ │ │ ├── batik-xml.jar │ │ │ │ ├── demo.html │ │ │ │ └── xml-apis-dom3.jar │ │ │ ├── doap.rdf │ │ │ ├── download.cgi │ │ │ └── xdocs │ │ │ │ ├── contributors.xml │ │ │ │ ├── demo.xml │ │ │ │ ├── dev │ │ │ │ ├── branches.xml │ │ │ │ ├── index.xml │ │ │ │ ├── svg12.xml │ │ │ │ └── test.xml │ │ │ │ ├── download.html │ │ │ │ ├── faq.xml │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.xml │ │ │ │ ├── install.xml │ │ │ │ ├── license.xml │ │ │ │ ├── mailing-lists.xml │ │ │ │ ├── site.xml │ │ │ │ ├── status.xml │ │ │ │ ├── tabs.xml │ │ │ │ ├── tools │ │ │ │ ├── browser.xml │ │ │ │ ├── font-converter.xml │ │ │ │ ├── index.xml │ │ │ │ ├── pretty-printer.xml │ │ │ │ └── rasterizer.xml │ │ │ │ ├── uses.xml │ │ │ │ └── using │ │ │ │ ├── architecture.xml │ │ │ │ ├── css.xml │ │ │ │ ├── dom-api.xml │ │ │ │ ├── extending.xml │ │ │ │ ├── glossary.xml │ │ │ │ ├── index.xml │ │ │ │ ├── parsers.xml │ │ │ │ ├── scripting │ │ │ │ ├── ecmascript.xml │ │ │ │ ├── java.xml │ │ │ │ └── security.xml │ │ │ │ ├── svg-generator.xml │ │ │ │ ├── swing.xml │ │ │ │ └── transcoder.xml │ │ ├── resources │ │ │ ├── images │ │ │ │ ├── HighLevelArchitecture.png │ │ │ │ ├── apache-xml-graphics.gif │ │ │ │ ├── apache-xml-graphics.jpg │ │ │ │ ├── apache-xml-graphics.png │ │ │ │ ├── apache-xml-graphics.svg │ │ │ │ ├── batik.png │ │ │ │ ├── batikUses.jpg │ │ │ │ ├── group-logo-dark.png │ │ │ │ ├── group-logo.gif │ │ │ │ ├── group-logo.jpg │ │ │ │ ├── group-logo.png │ │ │ │ ├── group-logo.svg │ │ │ │ ├── jarDependImg.png │ │ │ │ ├── jarDependImg.source.svg │ │ │ │ ├── logo.gif │ │ │ │ ├── splash.png │ │ │ │ ├── svgapplication.png │ │ │ │ ├── svggen.jpg │ │ │ │ ├── svggenHighLevelArchi.jpg │ │ │ │ ├── svgviewerAOI.png │ │ │ │ ├── svgviewerBrowsing.png │ │ │ │ ├── svgviewerDefaultRegular.jpg │ │ │ │ ├── svgviewerDefaultRegular.png │ │ │ │ ├── svgviewerFileOpen.png │ │ │ │ ├── svgviewerLocationBar.png │ │ │ │ ├── svgviewerMultipleFiles.png │ │ │ │ ├── svgviewerOpenPage.png │ │ │ │ ├── svgviewerPan.png │ │ │ │ ├── svgviewerPreferences.png │ │ │ │ ├── svgviewerThumbnail.png │ │ │ │ ├── svgviewerViewSource.png │ │ │ │ ├── svgviewerViewTree.png │ │ │ │ └── svgviewerZoomin.png │ │ │ ├── schema │ │ │ │ └── catalog.xcat │ │ │ └── stylesheets │ │ │ │ └── status2document.xsl │ │ ├── sitemap.xmap │ │ └── skinconf.xml │ ├── extensions │ │ ├── README.txt │ │ ├── batik-rasterizer-ext-1.8.jar │ │ └── batik-squiggle-ext-1.8.jar │ ├── forrest.properties │ ├── lib │ │ ├── LICENSE.dom-documentation.txt │ │ ├── LICENSE.dom-software.txt │ │ ├── LICENSE.fop-transcoder-allinone-1.1.txt │ │ ├── LICENSE.js.txt │ │ ├── LICENSE.sax.txt │ │ ├── LICENSE.xalan-2.7.0.txt │ │ ├── LICENSE.xerces_2_5_0.txt │ │ ├── LICENSE.xmlgraphics-commons-2.0.txt │ │ ├── NOTICE.xmlgraphics-commons-2.0.txt │ │ ├── README.fop-transcoder-allinone-1.1.txt │ │ ├── README.js.txt │ │ ├── README.xalan-2.7.0.txt │ │ ├── README.xerces_2_5_0.txt │ │ ├── README.xml-apis-1.3.04.txt │ │ ├── README.xml-apis-ext-1.3.04.txt │ │ ├── Squiggle.icns │ │ ├── batik-anim-1.8.jar │ │ ├── batik-awt-util-1.8.jar │ │ ├── batik-bridge-1.8.jar │ │ ├── batik-codec-1.8.jar │ │ ├── batik-css-1.8.jar │ │ ├── batik-dom-1.8.jar │ │ ├── batik-ext-1.8.jar │ │ ├── batik-extension-1.8.jar │ │ ├── batik-gui-util-1.8.jar │ │ ├── batik-gvt-1.8.jar │ │ ├── batik-parser-1.8.jar │ │ ├── batik-script-1.8.jar │ │ ├── batik-svg-dom-1.8.jar │ │ ├── batik-svggen-1.8.jar │ │ ├── batik-swing-1.8.jar │ │ ├── batik-transcoder-1.8.jar │ │ ├── batik-util-1.8.jar │ │ ├── batik-xml-1.8.jar │ │ ├── build │ │ │ ├── LICENSE.ant-1.6.5.txt │ │ │ ├── LICENSE.crimson-1.1.3.txt │ │ │ ├── README.ant-1.6.5.txt │ │ │ ├── README.crimson-1.1.3.txt │ │ │ ├── ant-1.6.5.jar │ │ │ ├── ant-launcher-1.6.5.jar │ │ │ ├── crimson-1.1.3.jar │ │ │ └── svn-info-revision.xsl │ │ ├── fop-transcoder-allinone-1.1.jar │ │ ├── js.jar │ │ ├── make-squiggle-app.sh │ │ ├── xalan-2.7.0.jar │ │ ├── xerces_2_5_0.jar │ │ ├── xml-apis-1.3.04.jar │ │ ├── xml-apis-ext-1.3.04.jar │ │ └── xmlgraphics-commons-2.0.jar │ ├── resources │ │ ├── META-INF │ │ │ ├── imports │ │ │ │ └── script.txt │ │ │ └── services │ │ │ │ ├── org.apache.batik.apps.svgbrowser.SquiggleInputHandler │ │ │ │ ├── org.apache.batik.bridge.BridgeExtension │ │ │ │ ├── org.apache.batik.dom.DomExtension │ │ │ │ ├── org.apache.batik.ext.awt.image.spi.ImageWriter │ │ │ │ ├── org.apache.batik.ext.awt.image.spi.RegistryEntry │ │ │ │ └── org.apache.batik.script.InterpreterFactory │ │ └── org │ │ │ └── apache │ │ │ └── batik │ │ │ ├── anim │ │ │ ├── dom │ │ │ │ └── resources │ │ │ │ │ └── dtdids.properties │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ ├── apps │ │ │ ├── rasterizer │ │ │ │ └── resources │ │ │ │ │ ├── Messages.properties │ │ │ │ │ ├── rasterizer.bin.policy │ │ │ │ │ ├── rasterizer.policy │ │ │ │ │ └── rasterizer.policy.ref │ │ │ ├── svgbrowser │ │ │ │ └── resources │ │ │ │ │ ├── DOMViewerMessages.properties │ │ │ │ │ ├── DropDownHistoryModelMessages.properties │ │ │ │ │ ├── FindDialog.properties │ │ │ │ │ ├── GUI.properties │ │ │ │ │ ├── LICENSE.icons.txt │ │ │ │ │ ├── Main.properties │ │ │ │ │ ├── NameEditorDialogMessages.properties │ │ │ │ │ ├── NodePickerPanelMessages.properties │ │ │ │ │ ├── README.icons.txt │ │ │ │ │ ├── StatusBarMessages.properties │ │ │ │ │ ├── ThumbnailDialog.properties │ │ │ │ │ ├── batik.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── captureClick.png │ │ │ │ │ ├── comment.gif │ │ │ │ │ ├── disabledRedo.png │ │ │ │ │ ├── disabledUndo.png │ │ │ │ │ ├── document-open-small.png │ │ │ │ │ ├── document-open.png │ │ │ │ │ ├── document-print-small.png │ │ │ │ │ ├── document-print.png │ │ │ │ │ ├── dom-viewer-small.png │ │ │ │ │ ├── dom-viewer.png │ │ │ │ │ ├── edit-find-small.png │ │ │ │ │ ├── edit-find.png │ │ │ │ │ ├── element.gif │ │ │ │ │ ├── enableOverlay.png │ │ │ │ │ ├── go-next-small.png │ │ │ │ │ ├── go-next.png │ │ │ │ │ ├── go-previous-small.png │ │ │ │ │ ├── go-previous.png │ │ │ │ │ ├── icon-general-dark.png │ │ │ │ │ ├── icon-general.png │ │ │ │ │ ├── icon-language-dark.png │ │ │ │ │ ├── icon-language.png │ │ │ │ │ ├── icon-network-dark.png │ │ │ │ │ ├── icon-network.png │ │ │ │ │ ├── icon-security-dark.png │ │ │ │ │ ├── icon-security.png │ │ │ │ │ ├── icon-stylesheet-dark.png │ │ │ │ │ ├── icon-stylesheet.png │ │ │ │ │ ├── init.svg │ │ │ │ │ ├── media-playback-pause-small.png │ │ │ │ │ ├── media-playback-pause.png │ │ │ │ │ ├── media-playback-start-small.png │ │ │ │ │ ├── media-playback-start.png │ │ │ │ │ ├── pi.gif │ │ │ │ │ ├── process-stop-small.png │ │ │ │ │ ├── process-stop.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── squiggle.png │ │ │ │ │ ├── squiggle.svg │ │ │ │ │ ├── squiggleIcon.png │ │ │ │ │ ├── svgbrowser.bin.policy │ │ │ │ │ ├── svgbrowser.policy │ │ │ │ │ ├── svgbrowser.policy.ref │ │ │ │ │ ├── system-search.png │ │ │ │ │ ├── text.gif │ │ │ │ │ ├── undo.png │ │ │ │ │ ├── utilities-system-monitor-small.png │ │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ │ ├── view-refresh-small.png │ │ │ │ │ ├── view-refresh.png │ │ │ │ │ ├── window-new-small.png │ │ │ │ │ ├── window-new.png │ │ │ │ │ ├── zoom-in-small.png │ │ │ │ │ ├── zoom-in.png │ │ │ │ │ ├── zoom-out-small.png │ │ │ │ │ └── zoom-out.png │ │ │ └── svgpp │ │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ ├── bridge │ │ │ └── resources │ │ │ │ ├── Messages.properties │ │ │ │ ├── help.gif │ │ │ │ └── move.gif │ │ │ ├── css │ │ │ ├── engine │ │ │ │ ├── resources │ │ │ │ │ └── Messages.properties │ │ │ │ └── value │ │ │ │ │ └── resources │ │ │ │ │ └── Messages.properties │ │ │ └── parser │ │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ ├── dom │ │ │ ├── resources │ │ │ │ └── Messages.properties │ │ │ └── svg │ │ │ │ └── resources │ │ │ │ ├── Messages.properties │ │ │ │ ├── UserAgentStyleSheet.css │ │ │ │ ├── svg-animation.mod │ │ │ │ ├── svg-animevents-attrib.mod │ │ │ │ ├── svg-basic-clip.mod │ │ │ │ ├── svg-basic-filter.mod │ │ │ │ ├── svg-basic-font.mod │ │ │ │ ├── svg-basic-graphics-attrib.mod │ │ │ │ ├── svg-basic-structure.mod │ │ │ │ ├── svg-basic-text.mod │ │ │ │ ├── svg-clip.mod │ │ │ │ ├── svg-conditional.mod │ │ │ │ ├── svg-container-attrib.mod │ │ │ │ ├── svg-core-attrib.mod │ │ │ │ ├── svg-cursor.mod │ │ │ │ ├── svg-datatypes.mod │ │ │ │ ├── svg-docevents-attrib.mod │ │ │ │ ├── svg-extensibility.mod │ │ │ │ ├── svg-extresources-attrib.mod │ │ │ │ ├── svg-filter.mod │ │ │ │ ├── svg-font.mod │ │ │ │ ├── svg-framework.mod │ │ │ │ ├── svg-gradient.mod │ │ │ │ ├── svg-graphevents-attrib.mod │ │ │ │ ├── svg-graphics-attrib.mod │ │ │ │ ├── svg-hyperlink.mod │ │ │ │ ├── svg-image.mod │ │ │ │ ├── svg-marker.mod │ │ │ │ ├── svg-mask.mod │ │ │ │ ├── svg-opacity-attrib.mod │ │ │ │ ├── svg-paint-attrib.mod │ │ │ │ ├── svg-pattern.mod │ │ │ │ ├── svg-profile.mod │ │ │ │ ├── svg-qname.mod │ │ │ │ ├── svg-script.mod │ │ │ │ ├── svg-shape.mod │ │ │ │ ├── svg-structure.mod │ │ │ │ ├── svg-style.mod │ │ │ │ ├── svg-text.mod │ │ │ │ ├── svg-view.mod │ │ │ │ ├── svg-viewport-attrib.mod │ │ │ │ ├── svg-xlink-attrib.mod │ │ │ │ ├── svg10.dtd │ │ │ │ ├── svg11-attribs.mod │ │ │ │ ├── svg11-basic-attribs.mod │ │ │ │ ├── svg11-basic-flat.dtd │ │ │ │ ├── svg11-basic-model.mod │ │ │ │ ├── svg11-basic.dtd │ │ │ │ ├── svg11-flat.dtd │ │ │ │ ├── svg11-model.mod │ │ │ │ ├── svg11-tiny-attribs.mod │ │ │ │ ├── svg11-tiny-flat.dtd │ │ │ │ ├── svg11-tiny-model.mod │ │ │ │ ├── svg11-tiny.dtd │ │ │ │ ├── svg11.dtd │ │ │ │ └── svg12-flat.dtd │ │ │ ├── ext │ │ │ ├── awt │ │ │ │ └── image │ │ │ │ │ ├── codec │ │ │ │ │ └── properties │ │ │ │ │ └── spi │ │ │ │ │ └── resources │ │ │ │ │ └── Messages.properties │ │ │ └── swing │ │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ ├── extensions │ │ │ └── README.txt │ │ │ ├── parser │ │ │ ├── resources │ │ │ │ └── Messages.properties │ │ │ └── style │ │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ ├── script │ │ │ └── rhino │ │ │ │ └── resources │ │ │ │ └── messages.properties │ │ │ ├── svggen │ │ │ └── font │ │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ ├── swing │ │ │ ├── resources │ │ │ │ ├── Messages.properties │ │ │ │ ├── batikColor16x16.gif │ │ │ │ ├── batikColor32x32.gif │ │ │ │ ├── batikMono16x16.gif │ │ │ │ └── batikMono32x32.gif │ │ │ └── svg │ │ │ │ └── resources │ │ │ │ ├── BrokenLink.svg │ │ │ │ └── Messages.properties │ │ │ ├── transcoder │ │ │ └── image │ │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ ├── util │ │ │ ├── gui │ │ │ │ └── resources │ │ │ │ │ ├── CSSMediaPanel.properties │ │ │ │ │ ├── JErrorPane.properties │ │ │ │ │ ├── LanguageDialogMessages.properties │ │ │ │ │ ├── LocationBar.properties │ │ │ │ │ ├── MemoryMonitorMessages.properties │ │ │ │ │ ├── ScrollablePopupMenuMessages.properties │ │ │ │ │ ├── URIChooserMessages.properties │ │ │ │ │ ├── UserStyleDialog.properties │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── flags │ │ │ │ │ ├── flag_C.gif │ │ │ │ │ ├── flag_aa.gif │ │ │ │ │ ├── flag_ab.gif │ │ │ │ │ ├── flag_af.gif │ │ │ │ │ ├── flag_ar.gif │ │ │ │ │ ├── flag_as.gif │ │ │ │ │ ├── flag_ay.gif │ │ │ │ │ ├── flag_az.gif │ │ │ │ │ ├── flag_be.gif │ │ │ │ │ ├── flag_bg.gif │ │ │ │ │ ├── flag_bi.gif │ │ │ │ │ ├── flag_blank.gif │ │ │ │ │ ├── flag_bn.gif │ │ │ │ │ ├── flag_bo.gif │ │ │ │ │ ├── flag_br.gif │ │ │ │ │ ├── flag_ca.gif │ │ │ │ │ ├── flag_ch.gif │ │ │ │ │ ├── flag_co.gif │ │ │ │ │ ├── flag_cs.gif │ │ │ │ │ ├── flag_cy.gif │ │ │ │ │ ├── flag_da.gif │ │ │ │ │ ├── flag_de.gif │ │ │ │ │ ├── flag_dz.gif │ │ │ │ │ ├── flag_el.gif │ │ │ │ │ ├── flag_en.gif │ │ │ │ │ ├── flag_en_UK.gif │ │ │ │ │ ├── flag_eo.gif │ │ │ │ │ ├── flag_es.gif │ │ │ │ │ ├── flag_et.gif │ │ │ │ │ ├── flag_eu.gif │ │ │ │ │ ├── flag_fa.gif │ │ │ │ │ ├── flag_fi.gif │ │ │ │ │ ├── flag_fj.gif │ │ │ │ │ ├── flag_fo.gif │ │ │ │ │ ├── flag_fr.gif │ │ │ │ │ ├── flag_fr_CA.gif │ │ │ │ │ ├── flag_ga.gif │ │ │ │ │ ├── flag_gd.gif │ │ │ │ │ ├── flag_gn.gif │ │ │ │ │ ├── flag_ha.gif │ │ │ │ │ ├── flag_he.gif │ │ │ │ │ ├── flag_hr.gif │ │ │ │ │ ├── flag_hu.gif │ │ │ │ │ ├── flag_hy.gif │ │ │ │ │ ├── flag_ij.gif │ │ │ │ │ ├── flag_in.gif │ │ │ │ │ ├── flag_is.gif │ │ │ │ │ ├── flag_it.gif │ │ │ │ │ ├── flag_ja.gif │ │ │ │ │ ├── flag_ka.gif │ │ │ │ │ ├── flag_kk.gif │ │ │ │ │ ├── flag_kl.gif │ │ │ │ │ ├── flag_km.gif │ │ │ │ │ ├── flag_ko.gif │ │ │ │ │ ├── flag_ku.gif │ │ │ │ │ ├── flag_ky.gif │ │ │ │ │ ├── flag_la.gif │ │ │ │ │ ├── flag_ln.gif │ │ │ │ │ ├── flag_lo.gif │ │ │ │ │ ├── flag_lt.gif │ │ │ │ │ ├── flag_lv.gif │ │ │ │ │ ├── flag_mg.gif │ │ │ │ │ ├── flag_mi.gif │ │ │ │ │ ├── flag_mk.gif │ │ │ │ │ ├── flag_mn.gif │ │ │ │ │ ├── flag_mo.gif │ │ │ │ │ ├── flag_ms.gif │ │ │ │ │ ├── flag_mt.gif │ │ │ │ │ ├── flag_my.gif │ │ │ │ │ ├── flag_na.gif │ │ │ │ │ ├── flag_ne.gif │ │ │ │ │ ├── flag_nl.gif │ │ │ │ │ ├── flag_no.gif │ │ │ │ │ ├── flag_or.gif │ │ │ │ │ ├── flag_pl.gif │ │ │ │ │ ├── flag_ps.gif │ │ │ │ │ ├── flag_pt.gif │ │ │ │ │ ├── flag_pt_BR.gif │ │ │ │ │ ├── flag_qu.gif │ │ │ │ │ ├── flag_rn.gif │ │ │ │ │ ├── flag_ro.gif │ │ │ │ │ ├── flag_ru.gif │ │ │ │ │ ├── flag_rw.gif │ │ │ │ │ ├── flag_se.gif │ │ │ │ │ ├── flag_si.gif │ │ │ │ │ ├── flag_sk.gif │ │ │ │ │ ├── flag_sl.gif │ │ │ │ │ ├── flag_sm.gif │ │ │ │ │ ├── flag_so.gif │ │ │ │ │ ├── flag_sq.gif │ │ │ │ │ ├── flag_sr.gif │ │ │ │ │ ├── flag_ss.gif │ │ │ │ │ ├── flag_st.gif │ │ │ │ │ ├── flag_sv.gif │ │ │ │ │ ├── flag_sw.gif │ │ │ │ │ ├── flag_tg.gif │ │ │ │ │ ├── flag_th.gif │ │ │ │ │ ├── flag_tk.gif │ │ │ │ │ ├── flag_tl.gif │ │ │ │ │ ├── flag_tn.gif │ │ │ │ │ ├── flag_to.gif │ │ │ │ │ ├── flag_tr.gif │ │ │ │ │ ├── flag_ts.gif │ │ │ │ │ ├── flag_tw.gif │ │ │ │ │ ├── flag_uk.gif │ │ │ │ │ ├── flag_us_eu.gif │ │ │ │ │ ├── flag_uz.gif │ │ │ │ │ ├── flag_vi.gif │ │ │ │ │ ├── flag_vo.gif │ │ │ │ │ ├── flag_wo.gif │ │ │ │ │ ├── flag_xh.gif │ │ │ │ │ ├── flag_zh.gif │ │ │ │ │ └── flag_zu.gif │ │ │ │ │ └── text-html.png │ │ │ ├── io │ │ │ │ └── resources │ │ │ │ │ └── Messages.properties │ │ │ └── resources │ │ │ │ ├── Messages.properties │ │ │ │ └── XMLResourceDescriptor.properties │ │ │ └── xml │ │ │ └── scanner │ │ │ └── resources │ │ │ └── Messages.properties │ ├── samples │ │ ├── 3D.svg │ │ ├── GVT.svg │ │ ├── anne.svg │ │ ├── asf-logo.svg │ │ ├── barChart.svg │ │ ├── batik3D.svg │ │ ├── batik70.svg │ │ ├── batikBatik.svg │ │ ├── batikCandy.svg │ │ ├── batikFX.svg │ │ ├── batikLogo.svg │ │ ├── batikYin.svg │ │ ├── chessFont.svg │ │ ├── chessboard.svg │ │ ├── extensions │ │ │ ├── colorSwitch.svg │ │ │ ├── extension.css │ │ │ ├── flowText.svg │ │ │ ├── flowTextAlign.svg │ │ │ ├── gears.svg │ │ │ ├── histogramNormalization.jpg │ │ │ ├── histogramNormalization.svg │ │ │ ├── regularPolygon.svg │ │ │ ├── solidColor.svg │ │ │ ├── solidColor2.svg │ │ │ ├── star.svg │ │ │ └── xsl │ │ │ │ ├── data.xml │ │ │ │ ├── data.xsl │ │ │ │ └── nodata.xsl │ │ ├── gradients.svg │ │ ├── henryV.svg │ │ ├── logoShadowOffset.svg │ │ ├── logoTexture.svg │ │ ├── mapSpain.svg │ │ ├── mapWaadt.svg │ │ ├── mathMetal.svg │ │ ├── mines.svg │ │ ├── moonPhases.svg │ │ ├── sizeOfSun.svg │ │ ├── solitaire │ │ │ ├── cards │ │ │ │ └── default.svg │ │ │ ├── klondike.svg │ │ │ ├── script │ │ │ │ ├── board.js │ │ │ │ ├── card.js │ │ │ │ ├── deck.js │ │ │ │ ├── pile.js │ │ │ │ └── util.js │ │ │ └── towers.svg │ │ ├── starfield.svg │ │ ├── strokeFont.svg │ │ ├── sunRise.svg │ │ ├── sydney.svg │ │ ├── tests │ │ │ ├── resources │ │ │ │ ├── icc │ │ │ │ │ └── changeColor.icm │ │ │ │ ├── images │ │ │ │ │ ├── arabic.png │ │ │ │ │ ├── bmpCursor.bmp │ │ │ │ │ ├── brushedMetal.jpg │ │ │ │ │ ├── canaryRelief.png │ │ │ │ │ ├── hotSpotCenter.png │ │ │ │ │ ├── hotSpotCenterBig.png │ │ │ │ │ ├── hotSpotCenterSmall.png │ │ │ │ │ ├── hotSpotE.png │ │ │ │ │ ├── hotSpotN.png │ │ │ │ │ ├── hotSpotNE.png │ │ │ │ │ ├── hotSpotNW.png │ │ │ │ │ ├── hotSpotS.png │ │ │ │ │ ├── hotSpotSE.png │ │ │ │ │ ├── hotSpotSW.png │ │ │ │ │ ├── hotSpotW.png │ │ │ │ │ ├── jpeg.jpg │ │ │ │ │ ├── jpegCursor.jpg │ │ │ │ │ ├── operaBridge.jpg │ │ │ │ │ ├── operaSteps.jpg │ │ │ │ │ ├── operaWalk.jpg │ │ │ │ │ ├── png.png │ │ │ │ │ ├── png2.png │ │ │ │ │ ├── pngCursor.png │ │ │ │ │ ├── sm_colors.tif │ │ │ │ │ ├── sm_colors_pb.tif │ │ │ │ │ ├── sm_colors_pb_tile.tif │ │ │ │ │ ├── sm_colors_tile.tif │ │ │ │ │ ├── spainRelief.png │ │ │ │ │ ├── svg.png │ │ │ │ │ ├── svg.svg │ │ │ │ │ ├── svg2.svg │ │ │ │ │ ├── svg3.svg │ │ │ │ │ ├── svgCursor.svg │ │ │ │ │ ├── svgCursor2.svg │ │ │ │ │ ├── svgCursor3.svg │ │ │ │ │ ├── svgCursor4.svg │ │ │ │ │ ├── tde.jpg │ │ │ │ │ ├── tiffCursor.tif │ │ │ │ │ └── toBeProfiled.png │ │ │ │ ├── java │ │ │ │ │ ├── resources │ │ │ │ │ │ └── com │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── script │ │ │ │ │ │ │ │ └── java-binding.mf │ │ │ │ │ │ │ └── untrusted │ │ │ │ │ │ │ └── script │ │ │ │ │ │ │ └── security2.mf │ │ │ │ │ └── sources │ │ │ │ │ │ └── com │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── script │ │ │ │ │ │ │ └── EventListenerInitializerImpl.java │ │ │ │ │ │ └── untrusted │ │ │ │ │ │ └── script │ │ │ │ │ │ └── UntrustedScriptHandler.java │ │ │ │ ├── script │ │ │ │ │ ├── common.js │ │ │ │ │ ├── rhinoSecurity.js │ │ │ │ │ └── scrollbar.js │ │ │ │ ├── style │ │ │ │ │ ├── basicsad.css │ │ │ │ │ ├── cold.css │ │ │ │ │ ├── cssMediaList.css │ │ │ │ │ ├── cssMediaPrint.css │ │ │ │ │ ├── cssMediaProjection.css │ │ │ │ │ ├── cssMediaScreen.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── grim.css │ │ │ │ │ ├── hot.css │ │ │ │ │ ├── oups.css │ │ │ │ │ ├── smiling.css │ │ │ │ │ ├── subdir │ │ │ │ │ │ ├── useStylesheet.css │ │ │ │ │ │ └── useStylesheet2.css │ │ │ │ │ ├── test.css │ │ │ │ │ └── wow.css │ │ │ │ ├── svg │ │ │ │ │ ├── defs.svg │ │ │ │ │ └── defs2.svg │ │ │ │ ├── ttf │ │ │ │ │ └── glb12.ttf │ │ │ │ └── wmf │ │ │ │ │ ├── batik-rendering-nothing2.wmf │ │ │ │ │ ├── black_shapes.wmf │ │ │ │ │ ├── imageWMF.wmf │ │ │ │ │ ├── negApmText1.wmf │ │ │ │ │ ├── negApmText2.wmf │ │ │ │ │ ├── testChart.wmf │ │ │ │ │ └── textGreek.wmf │ │ │ ├── spec │ │ │ │ ├── color │ │ │ │ │ ├── colorProfile.svg │ │ │ │ │ ├── colors.svg │ │ │ │ │ └── systemColors.svg │ │ │ │ ├── coordinates │ │ │ │ │ ├── em.svg │ │ │ │ │ └── percentagesAndUnits.svg │ │ │ │ ├── filters │ │ │ │ │ ├── enableBackground.svg │ │ │ │ │ ├── feColorMatrix.svg │ │ │ │ │ ├── feComponentTransfer.svg │ │ │ │ │ ├── feComponentTransfer2.svg │ │ │ │ │ ├── feComposite.svg │ │ │ │ │ ├── feConvolveMatrix.svg │ │ │ │ │ ├── feDisplacementMap.svg │ │ │ │ │ ├── feGaussianDefault.svg │ │ │ │ │ ├── feImage.svg │ │ │ │ │ ├── feImage2.svg │ │ │ │ │ ├── feMerge.svg │ │ │ │ │ ├── feMorphology.svg │ │ │ │ │ ├── feTile.svg │ │ │ │ │ ├── feTileTarget.svg │ │ │ │ │ ├── feTurbulence.svg │ │ │ │ │ ├── filterRegions.svg │ │ │ │ │ └── svgEnableBackground.svg │ │ │ │ ├── fonts │ │ │ │ │ ├── batikFont.svg │ │ │ │ │ ├── fontAltGlyph.svg │ │ │ │ │ ├── fontAltGlyph2.svg │ │ │ │ │ ├── fontAltGlyph3.svg │ │ │ │ │ ├── fontArabic.svg │ │ │ │ │ ├── fontBounds.svg │ │ │ │ │ ├── fontChoice.svg │ │ │ │ │ ├── fontDecorations.svg │ │ │ │ │ ├── fontExternalFont.svg │ │ │ │ │ ├── fontFace.svg │ │ │ │ │ ├── fontFamilyCaseSensitivity.svg │ │ │ │ │ ├── fontGlyphChoice.svg │ │ │ │ │ ├── fontGlyphsBoth.svg │ │ │ │ │ ├── fontGlyphsChildSVG.svg │ │ │ │ │ ├── fontGlyphsD.svg │ │ │ │ │ ├── fontKerning.svg │ │ │ │ │ ├── fontOnPath.svg │ │ │ │ │ └── fontStyling.svg │ │ │ │ ├── interactivity │ │ │ │ │ ├── cursor.svg │ │ │ │ │ ├── cursor2.svg │ │ │ │ │ ├── cursor3.svg │ │ │ │ │ ├── cursor4.svg │ │ │ │ │ ├── cursorImage.svg │ │ │ │ │ ├── cursorImage2.svg │ │ │ │ │ ├── focus.svg │ │ │ │ │ ├── keyEvents.svg │ │ │ │ │ ├── keyEvents2.svg │ │ │ │ │ └── pointerEvents.svg │ │ │ │ ├── linking │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── anchorInsideText.svg │ │ │ │ │ ├── linkingTransform.svg │ │ │ │ │ ├── linkingViewBox.svg │ │ │ │ │ ├── pointerEvents.svg │ │ │ │ │ └── pointerEvents2.svg │ │ │ │ ├── masking │ │ │ │ │ ├── clip.svg │ │ │ │ │ ├── clipQuality.svg │ │ │ │ │ ├── clipTransform.svg │ │ │ │ │ └── maskRegions.svg │ │ │ │ ├── painting │ │ │ │ │ ├── bboxOnText.svg │ │ │ │ │ ├── display.svg │ │ │ │ │ ├── image-rendering.svg │ │ │ │ │ ├── markersExt.svg │ │ │ │ │ ├── markersMisc.svg │ │ │ │ │ ├── markersOrientA.svg │ │ │ │ │ ├── markersOrientB.svg │ │ │ │ │ ├── markersPreserveAspectRatio.svg │ │ │ │ │ ├── markersShapes.svg │ │ │ │ │ ├── shape-rendering.svg │ │ │ │ │ ├── stroke-rendering.svg │ │ │ │ │ ├── text-rendering.svg │ │ │ │ │ ├── text-rendering2.svg │ │ │ │ │ └── visibility.svg │ │ │ │ ├── paints │ │ │ │ │ ├── externalPaints.svg │ │ │ │ │ ├── gradientLimit.svg │ │ │ │ │ ├── gradientPoint.svg │ │ │ │ │ ├── linearGradientLine.svg │ │ │ │ │ ├── linearGradientOrientation.svg │ │ │ │ │ ├── linearGradientRepeat.svg │ │ │ │ │ ├── patternPreserveAspectRatioA.svg │ │ │ │ │ ├── patternRegionA.svg │ │ │ │ │ ├── patternRegionB.svg │ │ │ │ │ ├── patternRegions.svg │ │ │ │ │ ├── radialGradient.svg │ │ │ │ │ ├── radialGradient2.svg │ │ │ │ │ ├── radialGradient3.svg │ │ │ │ │ ├── radialGradientLine.svg │ │ │ │ │ └── radialGradientOrientation.svg │ │ │ │ ├── rendering │ │ │ │ │ ├── opacity.svg │ │ │ │ │ ├── opacity2.svg │ │ │ │ │ └── paintOpacity.svg │ │ │ │ ├── scripting │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── addDescOnClick.svg │ │ │ │ │ ├── alert.svg │ │ │ │ │ ├── bbox.svg │ │ │ │ │ ├── boundsTransformChange.svg │ │ │ │ │ ├── bug12933.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── currentScaleTranslate.svg │ │ │ │ │ ├── display.svg │ │ │ │ │ ├── domSVGColor.svg │ │ │ │ │ ├── ellipse.svg │ │ │ │ │ ├── enclosureList.svg │ │ │ │ │ ├── enclosureList2.svg │ │ │ │ │ ├── eventAttrAdd.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── filterPatternUpdate.svg │ │ │ │ │ ├── filterPatternUpdateRef.svg │ │ │ │ │ ├── forceRedraw.svg │ │ │ │ │ ├── getElementById.svg │ │ │ │ │ ├── gradientsUpdate.svg │ │ │ │ │ ├── gradientsUpdateRef.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── imageRefUpdate.svg │ │ │ │ │ ├── imageRendering.svg │ │ │ │ │ ├── imageUpdate.svg │ │ │ │ │ ├── imageraster.svg │ │ │ │ │ ├── imagesvg.svg │ │ │ │ │ ├── intersectionList.svg │ │ │ │ │ ├── intersectionList2.svg │ │ │ │ │ ├── javaBinding.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── markerUpdate.svg │ │ │ │ │ ├── markerUpdateRef.svg │ │ │ │ │ ├── maskClipUpdate.svg │ │ │ │ │ ├── maskClipUpdateRef.svg │ │ │ │ │ ├── memoryLeak1.svg │ │ │ │ │ ├── modalEventTest.svg │ │ │ │ │ ├── nestedsvg.svg │ │ │ │ │ ├── normalizedPathTest.svg │ │ │ │ │ ├── paintType.svg │ │ │ │ │ ├── path.svg │ │ │ │ │ ├── pathLength.svg │ │ │ │ │ ├── path_pathSegList1.svg │ │ │ │ │ ├── path_pathSegList2.svg │ │ │ │ │ ├── path_pathSegList_create.svg │ │ │ │ │ ├── polygon.svg │ │ │ │ │ ├── polygon_points1.svg │ │ │ │ │ ├── polygon_points2.svg │ │ │ │ │ ├── polyline.svg │ │ │ │ │ ├── polyline_points1.svg │ │ │ │ │ ├── polyline_points2.svg │ │ │ │ │ ├── primaryDoc.svg │ │ │ │ │ ├── rect.svg │ │ │ │ │ ├── rectResizeOnClick.svg │ │ │ │ │ ├── relativeURI.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── removeLast.svg │ │ │ │ │ ├── removeOnclick.svg │ │ │ │ │ ├── resourceDocDynamic11.svg │ │ │ │ │ ├── resourceDocDynamic12.svg │ │ │ │ │ ├── resourceDocStatic11.svg │ │ │ │ │ ├── resourceDocStatic12.svg │ │ │ │ │ ├── rootSizeChange.svg │ │ │ │ │ ├── security.svg │ │ │ │ │ ├── security2.svg │ │ │ │ │ ├── security3.svg │ │ │ │ │ ├── security3Include.svg │ │ │ │ │ ├── setProperty.svg │ │ │ │ │ ├── styling.svg │ │ │ │ │ ├── suspendRedraw.svg │ │ │ │ │ ├── svg.svg │ │ │ │ │ ├── svg2.svg │ │ │ │ │ ├── svgFontMove.svg │ │ │ │ │ ├── text.svg │ │ │ │ │ ├── textAllProperties.svg │ │ │ │ │ ├── textProperties.svg │ │ │ │ │ ├── textProperties2.svg │ │ │ │ │ ├── textSelection.svg │ │ │ │ │ ├── text_children1.svg │ │ │ │ │ ├── text_children2.svg │ │ │ │ │ ├── text_children3.svg │ │ │ │ │ ├── text_content.svg │ │ │ │ │ ├── text_dxlist1.svg │ │ │ │ │ ├── text_dxlist2.svg │ │ │ │ │ ├── text_dylist1.svg │ │ │ │ │ ├── text_dylist2.svg │ │ │ │ │ ├── text_xlist1.svg │ │ │ │ │ ├── text_xlist2.svg │ │ │ │ │ ├── text_ylist1.svg │ │ │ │ │ ├── text_ylist2.svg │ │ │ │ │ ├── textcontent │ │ │ │ │ │ ├── missing-glpyh.svg │ │ │ │ │ │ └── numberOfChars.svg │ │ │ │ │ ├── textpathProperties.svg │ │ │ │ │ ├── transform.svg │ │ │ │ │ ├── transform2.svg │ │ │ │ │ ├── transform_create.svg │ │ │ │ │ ├── transform_create1.svg │ │ │ │ │ ├── transform_getTransform1.svg │ │ │ │ │ ├── transform_getTransform2.svg │ │ │ │ │ ├── trefProperties.svg │ │ │ │ │ ├── tspan.svg │ │ │ │ │ ├── tspanProperties.svg │ │ │ │ │ ├── tspan_children1.svg │ │ │ │ │ ├── tspan_children2.svg │ │ │ │ │ ├── tspan_children3.svg │ │ │ │ │ ├── use.svg │ │ │ │ │ ├── viewBoxOnLoad.svg │ │ │ │ │ ├── visibility.svg │ │ │ │ │ ├── visibilityOnClick.svg │ │ │ │ │ ├── xAnimOnClick.svg │ │ │ │ │ ├── xyModifOnClick.svg │ │ │ │ │ ├── xyModifOnLoad.svg │ │ │ │ │ └── zeroSize.svg │ │ │ │ ├── shapes │ │ │ │ │ ├── emptyShape.svg │ │ │ │ │ └── zero.svg │ │ │ │ ├── structure │ │ │ │ │ ├── dataProtocol.svg │ │ │ │ │ ├── externalUseCascading.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── rasterImageViewBox.svg │ │ │ │ │ ├── rasterImageViewBoxClip.svg │ │ │ │ │ ├── rasterImageViewBoxOverflow.svg │ │ │ │ │ ├── requiredFeatures.svg │ │ │ │ │ ├── requiredFeaturesCombo.svg │ │ │ │ │ ├── svgImageViewBox.svg │ │ │ │ │ ├── svgImageViewBoxClip.svg │ │ │ │ │ ├── svgImageViewBoxOverflow.svg │ │ │ │ │ ├── switch.svg │ │ │ │ │ ├── symbolViewBox.svg │ │ │ │ │ ├── symbolViewBoxClip.svg │ │ │ │ │ ├── symbolViewBoxOverflow.svg │ │ │ │ │ ├── systemLanguage.svg │ │ │ │ │ ├── systemLanguageDialect.svg │ │ │ │ │ ├── tiff.svg │ │ │ │ │ ├── toolTips.svg │ │ │ │ │ ├── useMultiple.svg │ │ │ │ │ ├── useMultipleURI.svg │ │ │ │ │ ├── useStylesheet.svg │ │ │ │ │ ├── useStyling.svg │ │ │ │ │ ├── useStylingURI.svg │ │ │ │ │ ├── useTargets.svg │ │ │ │ │ ├── useTargets2.svg │ │ │ │ │ ├── xmlBase.svg │ │ │ │ │ └── xmlBaseStyling.svg │ │ │ │ ├── styling │ │ │ │ │ ├── alternateStylesheet.svg │ │ │ │ │ ├── cssMedia.svg │ │ │ │ │ ├── cssMediaList.svg │ │ │ │ │ ├── defaultFontFamily.svg │ │ │ │ │ ├── emptyStyle.svg │ │ │ │ │ ├── fontShorthand.svg │ │ │ │ │ ├── important.svg │ │ │ │ │ ├── smiley.svg │ │ │ │ │ └── styleElement.svg │ │ │ │ └── text │ │ │ │ │ ├── longTextOnPath.svg │ │ │ │ │ ├── smallFonts.svg │ │ │ │ │ ├── textAnchor.svg │ │ │ │ │ ├── textAnchor2.svg │ │ │ │ │ ├── textAnchor3.svg │ │ │ │ │ ├── textBiDi.svg │ │ │ │ │ ├── textBiDi2.svg │ │ │ │ │ ├── textDecoration.svg │ │ │ │ │ ├── textDecoration2.svg │ │ │ │ │ ├── textEffect.svg │ │ │ │ │ ├── textEffect2.svg │ │ │ │ │ ├── textEffect3.svg │ │ │ │ │ ├── textFeatures.svg │ │ │ │ │ ├── textGlyphOrientationHorizontal.svg │ │ │ │ │ ├── textLayout.svg │ │ │ │ │ ├── textLayout2.svg │ │ │ │ │ ├── textLength.svg │ │ │ │ │ ├── textOnPath.svg │ │ │ │ │ ├── textOnPath2.svg │ │ │ │ │ ├── textOnPath3.svg │ │ │ │ │ ├── textOnPathSpaces.svg │ │ │ │ │ ├── textPCDATA.svg │ │ │ │ │ ├── textPosition.svg │ │ │ │ │ ├── textPosition2.svg │ │ │ │ │ ├── textProperties.svg │ │ │ │ │ ├── textProperties2.svg │ │ │ │ │ ├── textStyles.svg │ │ │ │ │ ├── verticalText.svg │ │ │ │ │ ├── verticalTextOnPath.svg │ │ │ │ │ └── xmlSpace.svg │ │ │ └── spec12 │ │ │ │ ├── filters │ │ │ │ ├── filterRegion.svg │ │ │ │ └── filterRegionDetailed.svg │ │ │ │ ├── paints │ │ │ │ ├── colorFunctions.svg │ │ │ │ ├── colorFunctionsDevice.svg │ │ │ │ ├── ncp-example.icc │ │ │ │ ├── solidColor.svg │ │ │ │ └── solidColor2.svg │ │ │ │ ├── structure │ │ │ │ ├── multi-2.jpg │ │ │ │ ├── multi-3.jpg │ │ │ │ ├── multi-4.jpg │ │ │ │ ├── multi-5.jpg │ │ │ │ ├── multi.svg │ │ │ │ ├── multi2.svg │ │ │ │ └── opera │ │ │ │ │ ├── multires │ │ │ │ │ ├── opera-0-0-0.jpg │ │ │ │ │ ├── opera-0-0-1.jpg │ │ │ │ │ ├── opera-0-0-2.jpg │ │ │ │ │ ├── opera-0-0-3.jpg │ │ │ │ │ ├── opera-0-0-4.jpg │ │ │ │ │ ├── opera-0-0-5.jpg │ │ │ │ │ ├── opera-0-1-0.jpg │ │ │ │ │ ├── opera-0-1-1.jpg │ │ │ │ │ ├── opera-0-1-2.jpg │ │ │ │ │ ├── opera-0-1-3.jpg │ │ │ │ │ ├── opera-0-1-4.jpg │ │ │ │ │ ├── opera-0-1-5.jpg │ │ │ │ │ ├── opera-0-2-0.jpg │ │ │ │ │ ├── opera-0-2-1.jpg │ │ │ │ │ ├── opera-0-2-2.jpg │ │ │ │ │ ├── opera-0-2-3.jpg │ │ │ │ │ ├── opera-0-2-4.jpg │ │ │ │ │ ├── opera-0-2-5.jpg │ │ │ │ │ ├── opera-0-3-0.jpg │ │ │ │ │ ├── opera-0-3-1.jpg │ │ │ │ │ ├── opera-0-3-2.jpg │ │ │ │ │ ├── opera-0-3-3.jpg │ │ │ │ │ ├── opera-0-3-4.jpg │ │ │ │ │ ├── opera-0-3-5.jpg │ │ │ │ │ ├── opera-1-0-0.jpg │ │ │ │ │ ├── opera-1-0-1.jpg │ │ │ │ │ ├── opera-1-0-2.jpg │ │ │ │ │ ├── opera-1-1-0.jpg │ │ │ │ │ ├── opera-1-1-1.jpg │ │ │ │ │ ├── opera-1-1-2.jpg │ │ │ │ │ ├── opera-2-0-0.jpg │ │ │ │ │ ├── opera-2-0-1.jpg │ │ │ │ │ └── opera-3-0-0.jpg │ │ │ │ │ ├── opera-0-0-0.svg │ │ │ │ │ ├── opera-0-0-2.svg │ │ │ │ │ ├── opera-0-0-4.svg │ │ │ │ │ ├── opera-0-2-0.svg │ │ │ │ │ ├── opera-0-2-2.svg │ │ │ │ │ ├── opera-0-2-4.svg │ │ │ │ │ ├── opera-1-0-0.svg │ │ │ │ │ ├── opera-1-0-2.svg │ │ │ │ │ ├── opera-2-0-0.svg │ │ │ │ │ ├── opera-3-0-0.svg │ │ │ │ │ ├── opera-subImage.svg │ │ │ │ │ └── opera-subImageRef.svg │ │ │ │ └── text │ │ │ │ ├── flowBidi.svg │ │ │ │ ├── flowRegionBreak.svg │ │ │ │ ├── flowText.svg │ │ │ │ ├── flowText2.svg │ │ │ │ ├── flowText3.svg │ │ │ │ ├── flowText4.svg │ │ │ │ ├── flowText5.svg │ │ │ │ ├── flowTextAlign.svg │ │ │ │ └── lineHeightFontShorthand.svg │ │ ├── textRotate.svg │ │ └── textRotateShadows.svg │ ├── sources │ │ ├── Squiggle.icns │ │ ├── batik-anim.pom.template │ │ ├── batik-awt-util.pom.template │ │ ├── batik-bridge.pom.template │ │ ├── batik-codec.pom.template │ │ ├── batik-css.pom.template │ │ ├── batik-dom.pom.template │ │ ├── batik-ext.pom.template │ │ ├── batik-extension.pom.template │ │ ├── batik-gui-util.pom.template │ │ ├── batik-gvt.pom.template │ │ ├── batik-js.pom.template │ │ ├── batik-parser.pom.template │ │ ├── batik-rasterizer-ext.pom.template │ │ ├── batik-rasterizer.pom.template │ │ ├── batik-script.pom.template │ │ ├── batik-slideshow.pom.template │ │ ├── batik-squiggle-ext.pom.template │ │ ├── batik-squiggle.pom.template │ │ ├── batik-svg-dom.pom.template │ │ ├── batik-svggen.pom.template │ │ ├── batik-svgpp.pom.template │ │ ├── batik-swing.pom.template │ │ ├── batik-transcoder.pom.template │ │ ├── batik-ttf2svg.pom.template │ │ ├── batik-util.pom.template │ │ ├── batik-xml.pom.template │ │ ├── make-squiggle-app.sh.template │ │ └── org │ │ │ ├── apache │ │ │ └── batik │ │ │ │ ├── Version.java │ │ │ │ ├── anim │ │ │ │ ├── AbstractAnimation.java │ │ │ │ ├── AnimationEngine.java │ │ │ │ ├── AnimationException.java │ │ │ │ ├── ColorAnimation.java │ │ │ │ ├── InterpolatingAnimation.java │ │ │ │ ├── MotionAnimation.java │ │ │ │ ├── SetAnimation.java │ │ │ │ ├── SimpleAnimation.java │ │ │ │ ├── TransformAnimation.java │ │ │ │ ├── dom │ │ │ │ │ ├── AbstractElement.java │ │ │ │ │ ├── AbstractSVGAnimatedLength.java │ │ │ │ │ ├── AbstractSVGAnimatedValue.java │ │ │ │ │ ├── AbstractSVGLength.java │ │ │ │ │ ├── AbstractSVGLengthList.java │ │ │ │ │ ├── AnimatableElement.java │ │ │ │ │ ├── AnimatedAttributeListener.java │ │ │ │ │ ├── AnimatedLiveAttributeValue.java │ │ │ │ │ ├── AnimationTarget.java │ │ │ │ │ ├── AnimationTargetListener.java │ │ │ │ │ ├── AttributeInitializer.java │ │ │ │ │ ├── BindableElement.java │ │ │ │ │ ├── SAXSVGDocumentFactory.java │ │ │ │ │ ├── SVG12DOMImplementation.java │ │ │ │ │ ├── SVG12OMDocument.java │ │ │ │ │ ├── SVGAnimationTargetContext.java │ │ │ │ │ ├── SVGDOMImplementation.java │ │ │ │ │ ├── SVGDescriptiveElement.java │ │ │ │ │ ├── SVGGraphicsElement.java │ │ │ │ │ ├── SVGLocatableSupport.java │ │ │ │ │ ├── SVGOMAElement.java │ │ │ │ │ ├── SVGOMAltGlyphDefElement.java │ │ │ │ │ ├── SVGOMAltGlyphElement.java │ │ │ │ │ ├── SVGOMAltGlyphItemElement.java │ │ │ │ │ ├── SVGOMAnimateColorElement.java │ │ │ │ │ ├── SVGOMAnimateElement.java │ │ │ │ │ ├── SVGOMAnimateMotionElement.java │ │ │ │ │ ├── SVGOMAnimateTransformElement.java │ │ │ │ │ ├── SVGOMAnimatedBoolean.java │ │ │ │ │ ├── SVGOMAnimatedEnumeration.java │ │ │ │ │ ├── SVGOMAnimatedInteger.java │ │ │ │ │ ├── SVGOMAnimatedLength.java │ │ │ │ │ ├── SVGOMAnimatedLengthList.java │ │ │ │ │ ├── SVGOMAnimatedMarkerOrientValue.java │ │ │ │ │ ├── SVGOMAnimatedNumber.java │ │ │ │ │ ├── SVGOMAnimatedNumberList.java │ │ │ │ │ ├── SVGOMAnimatedPathData.java │ │ │ │ │ ├── SVGOMAnimatedPoints.java │ │ │ │ │ ├── SVGOMAnimatedPreserveAspectRatio.java │ │ │ │ │ ├── SVGOMAnimatedRect.java │ │ │ │ │ ├── SVGOMAnimatedString.java │ │ │ │ │ ├── SVGOMAnimatedTransformList.java │ │ │ │ │ ├── SVGOMAnimationElement.java │ │ │ │ │ ├── SVGOMCircleElement.java │ │ │ │ │ ├── SVGOMClipPathElement.java │ │ │ │ │ ├── SVGOMColorProfileElement.java │ │ │ │ │ ├── SVGOMComponentTransferFunctionElement.java │ │ │ │ │ ├── SVGOMCursorElement.java │ │ │ │ │ ├── SVGOMDefinitionSrcElement.java │ │ │ │ │ ├── SVGOMDefsElement.java │ │ │ │ │ ├── SVGOMDescElement.java │ │ │ │ │ ├── SVGOMDocument.java │ │ │ │ │ ├── SVGOMElement.java │ │ │ │ │ ├── SVGOMEllipseElement.java │ │ │ │ │ ├── SVGOMFEBlendElement.java │ │ │ │ │ ├── SVGOMFEColorMatrixElement.java │ │ │ │ │ ├── SVGOMFEComponentTransferElement.java │ │ │ │ │ ├── SVGOMFECompositeElement.java │ │ │ │ │ ├── SVGOMFEConvolveMatrixElement.java │ │ │ │ │ ├── SVGOMFEDiffuseLightingElement.java │ │ │ │ │ ├── SVGOMFEDisplacementMapElement.java │ │ │ │ │ ├── SVGOMFEDistantLightElement.java │ │ │ │ │ ├── SVGOMFEFloodElement.java │ │ │ │ │ ├── SVGOMFEFuncAElement.java │ │ │ │ │ ├── SVGOMFEFuncBElement.java │ │ │ │ │ ├── SVGOMFEFuncGElement.java │ │ │ │ │ ├── SVGOMFEFuncRElement.java │ │ │ │ │ ├── SVGOMFEGaussianBlurElement.java │ │ │ │ │ ├── SVGOMFEImageElement.java │ │ │ │ │ ├── SVGOMFEMergeElement.java │ │ │ │ │ ├── SVGOMFEMergeNodeElement.java │ │ │ │ │ ├── SVGOMFEMorphologyElement.java │ │ │ │ │ ├── SVGOMFEOffsetElement.java │ │ │ │ │ ├── SVGOMFEPointLightElement.java │ │ │ │ │ ├── SVGOMFESpecularLightingElement.java │ │ │ │ │ ├── SVGOMFESpotLightElement.java │ │ │ │ │ ├── SVGOMFETileElement.java │ │ │ │ │ ├── SVGOMFETurbulenceElement.java │ │ │ │ │ ├── SVGOMFilterElement.java │ │ │ │ │ ├── SVGOMFilterPrimitiveStandardAttributes.java │ │ │ │ │ ├── SVGOMFlowDivElement.java │ │ │ │ │ ├── SVGOMFlowLineElement.java │ │ │ │ │ ├── SVGOMFlowParaElement.java │ │ │ │ │ ├── SVGOMFlowRegionBreakElement.java │ │ │ │ │ ├── SVGOMFlowRegionElement.java │ │ │ │ │ ├── SVGOMFlowRegionExcludeElement.java │ │ │ │ │ ├── SVGOMFlowRootElement.java │ │ │ │ │ ├── SVGOMFlowSpanElement.java │ │ │ │ │ ├── SVGOMFontElement.java │ │ │ │ │ ├── SVGOMFontFaceElement.java │ │ │ │ │ ├── SVGOMFontFaceFormatElement.java │ │ │ │ │ ├── SVGOMFontFaceNameElement.java │ │ │ │ │ ├── SVGOMFontFaceSrcElement.java │ │ │ │ │ ├── SVGOMFontFaceUriElement.java │ │ │ │ │ ├── SVGOMForeignObjectElement.java │ │ │ │ │ ├── SVGOMGElement.java │ │ │ │ │ ├── SVGOMGlyphElement.java │ │ │ │ │ ├── SVGOMGlyphRefElement.java │ │ │ │ │ ├── SVGOMGradientElement.java │ │ │ │ │ ├── SVGOMHKernElement.java │ │ │ │ │ ├── SVGOMHandlerElement.java │ │ │ │ │ ├── SVGOMImageElement.java │ │ │ │ │ ├── SVGOMLength.java │ │ │ │ │ ├── SVGOMLineElement.java │ │ │ │ │ ├── SVGOMLinearGradientElement.java │ │ │ │ │ ├── SVGOMMPathElement.java │ │ │ │ │ ├── SVGOMMarkerElement.java │ │ │ │ │ ├── SVGOMMaskElement.java │ │ │ │ │ ├── SVGOMMetadataElement.java │ │ │ │ │ ├── SVGOMMissingGlyphElement.java │ │ │ │ │ ├── SVGOMMultiImageElement.java │ │ │ │ │ ├── SVGOMPathElement.java │ │ │ │ │ ├── SVGOMPatternElement.java │ │ │ │ │ ├── SVGOMPolygonElement.java │ │ │ │ │ ├── SVGOMPolylineElement.java │ │ │ │ │ ├── SVGOMRadialGradientElement.java │ │ │ │ │ ├── SVGOMRectElement.java │ │ │ │ │ ├── SVGOMSVGElement.java │ │ │ │ │ ├── SVGOMScriptElement.java │ │ │ │ │ ├── SVGOMSetElement.java │ │ │ │ │ ├── SVGOMSolidColorElement.java │ │ │ │ │ ├── SVGOMStopElement.java │ │ │ │ │ ├── SVGOMStyleElement.java │ │ │ │ │ ├── SVGOMSubImageElement.java │ │ │ │ │ ├── SVGOMSubImageRefElement.java │ │ │ │ │ ├── SVGOMSwitchElement.java │ │ │ │ │ ├── SVGOMSymbolElement.java │ │ │ │ │ ├── SVGOMTRefElement.java │ │ │ │ │ ├── SVGOMTSpanElement.java │ │ │ │ │ ├── SVGOMTextContentElement.java │ │ │ │ │ ├── SVGOMTextElement.java │ │ │ │ │ ├── SVGOMTextPathElement.java │ │ │ │ │ ├── SVGOMTextPositioningElement.java │ │ │ │ │ ├── SVGOMTitleElement.java │ │ │ │ │ ├── SVGOMToBeImplementedElement.java │ │ │ │ │ ├── SVGOMURIReferenceElement.java │ │ │ │ │ ├── SVGOMUseElement.java │ │ │ │ │ ├── SVGOMVKernElement.java │ │ │ │ │ ├── SVGOMViewElement.java │ │ │ │ │ ├── SVGPathSupport.java │ │ │ │ │ ├── SVGPointShapeElement.java │ │ │ │ │ ├── SVGStylableElement.java │ │ │ │ │ ├── SVGStyleSheetProcessingInstruction.java │ │ │ │ │ ├── SVGTextContentSupport.java │ │ │ │ │ ├── SVGURIReferenceGraphicsElement.java │ │ │ │ │ ├── SVGURIReferenceTextPositioningElement.java │ │ │ │ │ ├── TraitInformation.java │ │ │ │ │ ├── XBLEventSupport.java │ │ │ │ │ ├── XBLOMContentElement.java │ │ │ │ │ ├── XBLOMDefinitionElement.java │ │ │ │ │ ├── XBLOMElement.java │ │ │ │ │ ├── XBLOMHandlerGroupElement.java │ │ │ │ │ ├── XBLOMImportElement.java │ │ │ │ │ ├── XBLOMShadowTreeElement.java │ │ │ │ │ ├── XBLOMTemplateElement.java │ │ │ │ │ └── XBLOMXBLElement.java │ │ │ │ ├── timing │ │ │ │ │ ├── AccesskeyTimingSpecifier.java │ │ │ │ │ ├── EventLikeTimingSpecifier.java │ │ │ │ │ ├── EventbaseTimingSpecifier.java │ │ │ │ │ ├── IndefiniteTimingSpecifier.java │ │ │ │ │ ├── InstanceTime.java │ │ │ │ │ ├── Interval.java │ │ │ │ │ ├── MediaMarkerTimingSpecifier.java │ │ │ │ │ ├── OffsetTimingSpecifier.java │ │ │ │ │ ├── RepeatTimingSpecifier.java │ │ │ │ │ ├── SyncbaseTimingSpecifier.java │ │ │ │ │ ├── TimeContainer.java │ │ │ │ │ ├── TimedDocumentRoot.java │ │ │ │ │ ├── TimedElement.java │ │ │ │ │ ├── TimegraphAdapter.java │ │ │ │ │ ├── TimegraphListener.java │ │ │ │ │ ├── TimingSpecifier.java │ │ │ │ │ ├── TimingSpecifierListProducer.java │ │ │ │ │ ├── Trace.java │ │ │ │ │ └── WallclockTimingSpecifier.java │ │ │ │ └── values │ │ │ │ │ ├── AnimatableAngleOrIdentValue.java │ │ │ │ │ ├── AnimatableAngleValue.java │ │ │ │ │ ├── AnimatableBooleanValue.java │ │ │ │ │ ├── AnimatableColorValue.java │ │ │ │ │ ├── AnimatableIntegerValue.java │ │ │ │ │ ├── AnimatableLengthListValue.java │ │ │ │ │ ├── AnimatableLengthOrIdentValue.java │ │ │ │ │ ├── AnimatableLengthValue.java │ │ │ │ │ ├── AnimatableMotionPointValue.java │ │ │ │ │ ├── AnimatableNumberListValue.java │ │ │ │ │ ├── AnimatableNumberOptionalNumberValue.java │ │ │ │ │ ├── AnimatableNumberOrIdentValue.java │ │ │ │ │ ├── AnimatableNumberOrPercentageValue.java │ │ │ │ │ ├── AnimatableNumberValue.java │ │ │ │ │ ├── AnimatablePaintValue.java │ │ │ │ │ ├── AnimatablePathDataValue.java │ │ │ │ │ ├── AnimatablePercentageValue.java │ │ │ │ │ ├── AnimatablePointListValue.java │ │ │ │ │ ├── AnimatablePreserveAspectRatioValue.java │ │ │ │ │ ├── AnimatableRectValue.java │ │ │ │ │ ├── AnimatableStringValue.java │ │ │ │ │ ├── AnimatableTransformListValue.java │ │ │ │ │ └── AnimatableValue.java │ │ │ │ ├── apps │ │ │ │ ├── rasterizer │ │ │ │ │ ├── DefaultSVGConverterController.java │ │ │ │ │ ├── DestinationType.java │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── SVGConverter.java │ │ │ │ │ ├── SVGConverterController.java │ │ │ │ │ ├── SVGConverterException.java │ │ │ │ │ ├── SVGConverterFileSource.java │ │ │ │ │ ├── SVGConverterSource.java │ │ │ │ │ └── SVGConverterURLSource.java │ │ │ │ ├── slideshow │ │ │ │ │ └── Main.java │ │ │ │ ├── svgbrowser │ │ │ │ │ ├── AboutDialog.java │ │ │ │ │ ├── AbstractCompoundCommand.java │ │ │ │ │ ├── AbstractUndoableCommand.java │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── DOMDocumentTree.java │ │ │ │ │ ├── DOMDocumentTreeController.java │ │ │ │ │ ├── DOMViewer.java │ │ │ │ │ ├── DOMViewerController.java │ │ │ │ │ ├── DropDownHistoryModel.java │ │ │ │ │ ├── ElementOverlayController.java │ │ │ │ │ ├── ElementOverlayManager.java │ │ │ │ │ ├── FindDialog.java │ │ │ │ │ ├── HistoryBrowser.java │ │ │ │ │ ├── HistoryBrowserInterface.java │ │ │ │ │ ├── JAuthenticator.java │ │ │ │ │ ├── JPEGOptionPanel.java │ │ │ │ │ ├── JSVGViewerFrame.java │ │ │ │ │ ├── LocalHistory.java │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── NodePickerController.java │ │ │ │ │ ├── NodePickerPanel.java │ │ │ │ │ ├── NodeTemplates.java │ │ │ │ │ ├── OptionPanel.java │ │ │ │ │ ├── PNGOptionPanel.java │ │ │ │ │ ├── PreferenceDialog.java │ │ │ │ │ ├── ResourceOrigin.java │ │ │ │ │ ├── Resources.java │ │ │ │ │ ├── SVGInputHandler.java │ │ │ │ │ ├── SVGOptionPanel.java │ │ │ │ │ ├── SquiggleInputHandler.java │ │ │ │ │ ├── SquiggleInputHandlerFilter.java │ │ │ │ │ ├── StatusBar.java │ │ │ │ │ ├── ThumbnailDialog.java │ │ │ │ │ ├── TransformHistory.java │ │ │ │ │ ├── UndoableCommand.java │ │ │ │ │ ├── WindowsAltFileSystemView.java │ │ │ │ │ ├── XMLInputHandler.java │ │ │ │ │ └── XMLPreferenceManager.java │ │ │ │ ├── svgpp │ │ │ │ │ └── Main.java │ │ │ │ └── ttf2svg │ │ │ │ │ └── Main.java │ │ │ │ ├── bridge │ │ │ │ ├── AbstractGraphicsNodeBridge.java │ │ │ │ ├── AbstractSVGBridge.java │ │ │ │ ├── AbstractSVGFilterPrimitiveElementBridge.java │ │ │ │ ├── AbstractSVGGradientElementBridge.java │ │ │ │ ├── AbstractSVGLightingElementBridge.java │ │ │ │ ├── AnimatableGenericSVGBridge.java │ │ │ │ ├── AnimatableSVGBridge.java │ │ │ │ ├── AnimationSupport.java │ │ │ │ ├── BaseScriptingEnvironment.java │ │ │ │ ├── BasicTextPainter.java │ │ │ │ ├── BatikWrapFactory.java │ │ │ │ ├── Bridge.java │ │ │ │ ├── BridgeContext.java │ │ │ │ ├── BridgeEventSupport.java │ │ │ │ ├── BridgeException.java │ │ │ │ ├── BridgeExtension.java │ │ │ │ ├── BridgeUpdateHandler.java │ │ │ │ ├── CSSFontFace.java │ │ │ │ ├── CSSUtilities.java │ │ │ │ ├── ClipBridge.java │ │ │ │ ├── ConcreteTextLayoutFactory.java │ │ │ │ ├── ConcreteTextPainter.java │ │ │ │ ├── ConcreteTextSelector.java │ │ │ │ ├── CursorManager.java │ │ │ │ ├── DefaultExternalResourceSecurity.java │ │ │ │ ├── DefaultFontFamilyResolver.java │ │ │ │ ├── DefaultScriptSecurity.java │ │ │ │ ├── DocumentBridge.java │ │ │ │ ├── DocumentJarClassLoader.java │ │ │ │ ├── DocumentLoader.java │ │ │ │ ├── DynamicGVTBuilder.java │ │ │ │ ├── EmbededExternalResourceSecurity.java │ │ │ │ ├── EmbededScriptSecurity.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── EventTargetWrapper.java │ │ │ │ ├── ExternalResourceSecurity.java │ │ │ │ ├── FilterBridge.java │ │ │ │ ├── FilterPrimitiveBridge.java │ │ │ │ ├── FlowGlyphLayout.java │ │ │ │ ├── FlowTextLayoutFactory.java │ │ │ │ ├── FlowTextNode.java │ │ │ │ ├── FlowTextPainter.java │ │ │ │ ├── FocusManager.java │ │ │ │ ├── FontFace.java │ │ │ │ ├── FontFamilyResolver.java │ │ │ │ ├── GVTBuilder.java │ │ │ │ ├── GenericBridge.java │ │ │ │ ├── GlobalWrapper.java │ │ │ │ ├── GlyphLayout.java │ │ │ │ ├── GraphicsNodeBridge.java │ │ │ │ ├── InterruptedBridgeException.java │ │ │ │ ├── Location.java │ │ │ │ ├── Mark.java │ │ │ │ ├── MarkerBridge.java │ │ │ │ ├── MaskBridge.java │ │ │ │ ├── Messages.java │ │ │ │ ├── MultiResGraphicsNode.java │ │ │ │ ├── NoLoadExternalResourceSecurity.java │ │ │ │ ├── NoLoadScriptSecurity.java │ │ │ │ ├── NoRepaintRunnable.java │ │ │ │ ├── PaintBridge.java │ │ │ │ ├── PaintServer.java │ │ │ │ ├── RelaxedExternalResourceSecurity.java │ │ │ │ ├── RelaxedScriptSecurity.java │ │ │ │ ├── RepaintManager.java │ │ │ │ ├── RhinoInterpreter.java │ │ │ │ ├── RhinoInterpreterFactory.java │ │ │ │ ├── SVG12RhinoInterpreter.java │ │ │ │ ├── SVGAElementBridge.java │ │ │ │ ├── SVGAltGlyphElementBridge.java │ │ │ │ ├── SVGAltGlyphHandler.java │ │ │ │ ├── SVGAnimateColorElementBridge.java │ │ │ │ ├── SVGAnimateElementBridge.java │ │ │ │ ├── SVGAnimateMotionElementBridge.java │ │ │ │ ├── SVGAnimateTransformElementBridge.java │ │ │ │ ├── SVGAnimationElementBridge.java │ │ │ │ ├── SVGAnimationEngine.java │ │ │ │ ├── SVGBridgeExtension.java │ │ │ │ ├── SVGBrokenLinkProvider.java │ │ │ │ ├── SVGCircleElementBridge.java │ │ │ │ ├── SVGClipPathElementBridge.java │ │ │ │ ├── SVGColorProfileElementBridge.java │ │ │ │ ├── SVGDecoratedShapeElementBridge.java │ │ │ │ ├── SVGDescElementBridge.java │ │ │ │ ├── SVGDescriptiveElementBridge.java │ │ │ │ ├── SVGDocumentBridge.java │ │ │ │ ├── SVGEllipseElementBridge.java │ │ │ │ ├── SVGFeBlendElementBridge.java │ │ │ │ ├── SVGFeColorMatrixElementBridge.java │ │ │ │ ├── SVGFeComponentTransferElementBridge.java │ │ │ │ ├── SVGFeCompositeElementBridge.java │ │ │ │ ├── SVGFeConvolveMatrixElementBridge.java │ │ │ │ ├── SVGFeDiffuseLightingElementBridge.java │ │ │ │ ├── SVGFeDisplacementMapElementBridge.java │ │ │ │ ├── SVGFeFloodElementBridge.java │ │ │ │ ├── SVGFeGaussianBlurElementBridge.java │ │ │ │ ├── SVGFeImageElementBridge.java │ │ │ │ ├── SVGFeMergeElementBridge.java │ │ │ │ ├── SVGFeMorphologyElementBridge.java │ │ │ │ ├── SVGFeOffsetElementBridge.java │ │ │ │ ├── SVGFeSpecularLightingElementBridge.java │ │ │ │ ├── SVGFeTileElementBridge.java │ │ │ │ ├── SVGFeTurbulenceElementBridge.java │ │ │ │ ├── SVGFilterElementBridge.java │ │ │ │ ├── SVGFontElementBridge.java │ │ │ │ ├── SVGFontFace.java │ │ │ │ ├── SVGFontFaceElementBridge.java │ │ │ │ ├── SVGFontFamily.java │ │ │ │ ├── SVGFontUtilities.java │ │ │ │ ├── SVGGElementBridge.java │ │ │ │ ├── SVGGVTFont.java │ │ │ │ ├── SVGGlyphElementBridge.java │ │ │ │ ├── SVGHKernElementBridge.java │ │ │ │ ├── SVGImageElementBridge.java │ │ │ │ ├── SVGKernElementBridge.java │ │ │ │ ├── SVGLineElementBridge.java │ │ │ │ ├── SVGLinearGradientElementBridge.java │ │ │ │ ├── SVGMarkerElementBridge.java │ │ │ │ ├── SVGMaskElementBridge.java │ │ │ │ ├── SVGMissingGlyphElementBridge.java │ │ │ │ ├── SVGPathElementBridge.java │ │ │ │ ├── SVGPatternElementBridge.java │ │ │ │ ├── SVGPolygonElementBridge.java │ │ │ │ ├── SVGPolylineElementBridge.java │ │ │ │ ├── SVGRadialGradientElementBridge.java │ │ │ │ ├── SVGRectElementBridge.java │ │ │ │ ├── SVGSVGElementBridge.java │ │ │ │ ├── SVGSetElementBridge.java │ │ │ │ ├── SVGShapeElementBridge.java │ │ │ │ ├── SVGSwitchElementBridge.java │ │ │ │ ├── SVGTextElementBridge.java │ │ │ │ ├── SVGTextPathElementBridge.java │ │ │ │ ├── SVGTitleElementBridge.java │ │ │ │ ├── SVGUseElementBridge.java │ │ │ │ ├── SVGUtilities.java │ │ │ │ ├── SVGVKernElementBridge.java │ │ │ │ ├── ScriptHandler.java │ │ │ │ ├── ScriptSecurity.java │ │ │ │ ├── ScriptingEnvironment.java │ │ │ │ ├── StrokingTextPainter.java │ │ │ │ ├── StyleReference.java │ │ │ │ ├── TextHit.java │ │ │ │ ├── TextLayoutFactory.java │ │ │ │ ├── TextNode.java │ │ │ │ ├── TextPainter.java │ │ │ │ ├── TextSpanLayout.java │ │ │ │ ├── TextUtilities.java │ │ │ │ ├── URIResolver.java │ │ │ │ ├── UnitProcessor.java │ │ │ │ ├── UpdateManager.java │ │ │ │ ├── UpdateManagerAdapter.java │ │ │ │ ├── UpdateManagerEvent.java │ │ │ │ ├── UpdateManagerListener.java │ │ │ │ ├── UserAgent.java │ │ │ │ ├── UserAgentAdapter.java │ │ │ │ ├── UserAgentViewport.java │ │ │ │ ├── ViewBox.java │ │ │ │ ├── Viewport.java │ │ │ │ ├── Window.java │ │ │ │ ├── WindowWrapper.java │ │ │ │ ├── package.html │ │ │ │ └── svg12 │ │ │ │ │ ├── AbstractContentSelector.java │ │ │ │ │ ├── BindableElementBridge.java │ │ │ │ │ ├── BindingListener.java │ │ │ │ │ ├── ContentManager.java │ │ │ │ │ ├── ContentSelectionChangedEvent.java │ │ │ │ │ ├── ContentSelectionChangedListener.java │ │ │ │ │ ├── DefaultContentSelector.java │ │ │ │ │ ├── DefaultXBLManager.java │ │ │ │ │ ├── SVG12BridgeContext.java │ │ │ │ │ ├── SVG12BridgeEventSupport.java │ │ │ │ │ ├── SVG12BridgeExtension.java │ │ │ │ │ ├── SVG12BridgeUpdateHandler.java │ │ │ │ │ ├── SVG12FocusManager.java │ │ │ │ │ ├── SVG12ScriptingEnvironment.java │ │ │ │ │ ├── SVG12TextElementBridge.java │ │ │ │ │ ├── SVG12URIResolver.java │ │ │ │ │ ├── SVGFlowRootElementBridge.java │ │ │ │ │ ├── SVGMultiImageElementBridge.java │ │ │ │ │ ├── SVGSolidColorElementBridge.java │ │ │ │ │ ├── XBLContentElementBridge.java │ │ │ │ │ ├── XBLShadowTreeElementBridge.java │ │ │ │ │ ├── XPathPatternContentSelector.java │ │ │ │ │ └── XPathSubsetContentSelector.java │ │ │ │ ├── css │ │ │ │ ├── dom │ │ │ │ │ ├── CSSOMComputedStyle.java │ │ │ │ │ ├── CSSOMSVGColor.java │ │ │ │ │ ├── CSSOMSVGComputedStyle.java │ │ │ │ │ ├── CSSOMSVGPaint.java │ │ │ │ │ ├── CSSOMSVGStyleDeclaration.java │ │ │ │ │ ├── CSSOMSVGViewCSS.java │ │ │ │ │ ├── CSSOMStoredStyleDeclaration.java │ │ │ │ │ ├── CSSOMStyleDeclaration.java │ │ │ │ │ ├── CSSOMValue.java │ │ │ │ │ └── CSSOMViewCSS.java │ │ │ │ ├── engine │ │ │ │ │ ├── CSSContext.java │ │ │ │ │ ├── CSSEngine.java │ │ │ │ │ ├── CSSEngineEvent.java │ │ │ │ │ ├── CSSEngineListener.java │ │ │ │ │ ├── CSSEngineUserAgent.java │ │ │ │ │ ├── CSSNavigableDocument.java │ │ │ │ │ ├── CSSNavigableDocumentListener.java │ │ │ │ │ ├── CSSNavigableNode.java │ │ │ │ │ ├── CSSStylableElement.java │ │ │ │ │ ├── CSSStyleSheetNode.java │ │ │ │ │ ├── FontFaceRule.java │ │ │ │ │ ├── ImportRule.java │ │ │ │ │ ├── MediaRule.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── Rule.java │ │ │ │ │ ├── SVG12CSSEngine.java │ │ │ │ │ ├── SVGCSSEngine.java │ │ │ │ │ ├── StringIntMap.java │ │ │ │ │ ├── StyleDeclaration.java │ │ │ │ │ ├── StyleDeclarationProvider.java │ │ │ │ │ ├── StyleMap.java │ │ │ │ │ ├── StyleRule.java │ │ │ │ │ ├── StyleSheet.java │ │ │ │ │ ├── SystemColorSupport.java │ │ │ │ │ ├── sac │ │ │ │ │ │ ├── AbstractAttributeCondition.java │ │ │ │ │ │ ├── AbstractCombinatorCondition.java │ │ │ │ │ │ ├── AbstractDescendantSelector.java │ │ │ │ │ │ ├── AbstractElementSelector.java │ │ │ │ │ │ ├── AbstractSiblingSelector.java │ │ │ │ │ │ ├── CSSAndCondition.java │ │ │ │ │ │ ├── CSSAttributeCondition.java │ │ │ │ │ │ ├── CSSBeginHyphenAttributeCondition.java │ │ │ │ │ │ ├── CSSChildSelector.java │ │ │ │ │ │ ├── CSSClassCondition.java │ │ │ │ │ │ ├── CSSConditionFactory.java │ │ │ │ │ │ ├── CSSConditionalSelector.java │ │ │ │ │ │ ├── CSSDescendantSelector.java │ │ │ │ │ │ ├── CSSDirectAdjacentSelector.java │ │ │ │ │ │ ├── CSSElementSelector.java │ │ │ │ │ │ ├── CSSIdCondition.java │ │ │ │ │ │ ├── CSSLangCondition.java │ │ │ │ │ │ ├── CSSOneOfAttributeCondition.java │ │ │ │ │ │ ├── CSSPseudoClassCondition.java │ │ │ │ │ │ ├── CSSPseudoElementSelector.java │ │ │ │ │ │ ├── CSSSelectorFactory.java │ │ │ │ │ │ ├── ExtendedCondition.java │ │ │ │ │ │ └── ExtendedSelector.java │ │ │ │ │ └── value │ │ │ │ │ │ ├── AbstractColorManager.java │ │ │ │ │ │ ├── AbstractValue.java │ │ │ │ │ │ ├── AbstractValueFactory.java │ │ │ │ │ │ ├── AbstractValueManager.java │ │ │ │ │ │ ├── ComputedValue.java │ │ │ │ │ │ ├── FloatValue.java │ │ │ │ │ │ ├── IdentifierManager.java │ │ │ │ │ │ ├── InheritValue.java │ │ │ │ │ │ ├── LengthManager.java │ │ │ │ │ │ ├── ListValue.java │ │ │ │ │ │ ├── Messages.java │ │ │ │ │ │ ├── RGBColorValue.java │ │ │ │ │ │ ├── RectManager.java │ │ │ │ │ │ ├── RectValue.java │ │ │ │ │ │ ├── ShorthandManager.java │ │ │ │ │ │ ├── StringMap.java │ │ │ │ │ │ ├── StringValue.java │ │ │ │ │ │ ├── URIValue.java │ │ │ │ │ │ ├── Value.java │ │ │ │ │ │ ├── ValueConstants.java │ │ │ │ │ │ ├── ValueManager.java │ │ │ │ │ │ ├── css2 │ │ │ │ │ │ ├── ClipManager.java │ │ │ │ │ │ ├── CursorManager.java │ │ │ │ │ │ ├── DirectionManager.java │ │ │ │ │ │ ├── DisplayManager.java │ │ │ │ │ │ ├── FontFamilyManager.java │ │ │ │ │ │ ├── FontShorthandManager.java │ │ │ │ │ │ ├── FontSizeAdjustManager.java │ │ │ │ │ │ ├── FontSizeManager.java │ │ │ │ │ │ ├── FontStretchManager.java │ │ │ │ │ │ ├── FontStyleManager.java │ │ │ │ │ │ ├── FontVariantManager.java │ │ │ │ │ │ ├── FontWeightManager.java │ │ │ │ │ │ ├── OverflowManager.java │ │ │ │ │ │ ├── SrcManager.java │ │ │ │ │ │ ├── TextDecorationManager.java │ │ │ │ │ │ ├── UnicodeBidiManager.java │ │ │ │ │ │ └── VisibilityManager.java │ │ │ │ │ │ ├── svg │ │ │ │ │ │ ├── AlignmentBaselineManager.java │ │ │ │ │ │ ├── BaselineShiftManager.java │ │ │ │ │ │ ├── ClipPathManager.java │ │ │ │ │ │ ├── ClipRuleManager.java │ │ │ │ │ │ ├── ColorInterpolationFiltersManager.java │ │ │ │ │ │ ├── ColorInterpolationManager.java │ │ │ │ │ │ ├── ColorManager.java │ │ │ │ │ │ ├── ColorProfileManager.java │ │ │ │ │ │ ├── ColorRenderingManager.java │ │ │ │ │ │ ├── DominantBaselineManager.java │ │ │ │ │ │ ├── EnableBackgroundManager.java │ │ │ │ │ │ ├── FillRuleManager.java │ │ │ │ │ │ ├── FilterManager.java │ │ │ │ │ │ ├── GlyphOrientationHorizontalManager.java │ │ │ │ │ │ ├── GlyphOrientationManager.java │ │ │ │ │ │ ├── GlyphOrientationVerticalManager.java │ │ │ │ │ │ ├── ICCColor.java │ │ │ │ │ │ ├── ImageRenderingManager.java │ │ │ │ │ │ ├── KerningManager.java │ │ │ │ │ │ ├── MarkerManager.java │ │ │ │ │ │ ├── MarkerShorthandManager.java │ │ │ │ │ │ ├── MaskManager.java │ │ │ │ │ │ ├── OpacityManager.java │ │ │ │ │ │ ├── PointerEventsManager.java │ │ │ │ │ │ ├── SVGColorManager.java │ │ │ │ │ │ ├── SVGPaintManager.java │ │ │ │ │ │ ├── SVGValue.java │ │ │ │ │ │ ├── SVGValueConstants.java │ │ │ │ │ │ ├── ShapeRenderingManager.java │ │ │ │ │ │ ├── SpacingManager.java │ │ │ │ │ │ ├── StrokeDasharrayManager.java │ │ │ │ │ │ ├── StrokeDashoffsetManager.java │ │ │ │ │ │ ├── StrokeLinecapManager.java │ │ │ │ │ │ ├── StrokeLinejoinManager.java │ │ │ │ │ │ ├── StrokeMiterlimitManager.java │ │ │ │ │ │ ├── StrokeWidthManager.java │ │ │ │ │ │ ├── TextAnchorManager.java │ │ │ │ │ │ ├── TextRenderingManager.java │ │ │ │ │ │ └── WritingModeManager.java │ │ │ │ │ │ └── svg12 │ │ │ │ │ │ ├── AbstractCIEColor.java │ │ │ │ │ │ ├── CIELCHColor.java │ │ │ │ │ │ ├── CIELabColor.java │ │ │ │ │ │ ├── DeviceColor.java │ │ │ │ │ │ ├── ICCNamedColor.java │ │ │ │ │ │ ├── LineHeightManager.java │ │ │ │ │ │ ├── LineHeightValue.java │ │ │ │ │ │ ├── MarginLengthManager.java │ │ │ │ │ │ ├── MarginShorthandManager.java │ │ │ │ │ │ ├── SVG12ValueConstants.java │ │ │ │ │ │ └── TextAlignManager.java │ │ │ │ ├── package.html │ │ │ │ └── parser │ │ │ │ │ ├── AbstractAttributeCondition.java │ │ │ │ │ ├── AbstractCombinatorCondition.java │ │ │ │ │ ├── AbstractDescendantSelector.java │ │ │ │ │ ├── AbstractElementSelector.java │ │ │ │ │ ├── AbstractSiblingSelector.java │ │ │ │ │ ├── CSSLexicalUnit.java │ │ │ │ │ ├── CSSSACMediaList.java │ │ │ │ │ ├── CSSSelectorList.java │ │ │ │ │ ├── DefaultAndCondition.java │ │ │ │ │ ├── DefaultAttributeCondition.java │ │ │ │ │ ├── DefaultBeginHyphenAttributeCondition.java │ │ │ │ │ ├── DefaultChildSelector.java │ │ │ │ │ ├── DefaultClassCondition.java │ │ │ │ │ ├── DefaultConditionFactory.java │ │ │ │ │ ├── DefaultConditionalSelector.java │ │ │ │ │ ├── DefaultDescendantSelector.java │ │ │ │ │ ├── DefaultDirectAdjacentSelector.java │ │ │ │ │ ├── DefaultDocumentHandler.java │ │ │ │ │ ├── DefaultElementSelector.java │ │ │ │ │ ├── DefaultErrorHandler.java │ │ │ │ │ ├── DefaultIdCondition.java │ │ │ │ │ ├── DefaultLangCondition.java │ │ │ │ │ ├── DefaultOneOfAttributeCondition.java │ │ │ │ │ ├── DefaultPseudoClassCondition.java │ │ │ │ │ ├── DefaultPseudoElementSelector.java │ │ │ │ │ ├── DefaultSelectorFactory.java │ │ │ │ │ ├── ExtendedParser.java │ │ │ │ │ ├── ExtendedParserWrapper.java │ │ │ │ │ ├── LexicalUnits.java │ │ │ │ │ ├── ParseException.java │ │ │ │ │ ├── Parser.java │ │ │ │ │ ├── Scanner.java │ │ │ │ │ ├── ScannerUtilities.java │ │ │ │ │ └── package.html │ │ │ │ ├── dom │ │ │ │ ├── AbstractAttr.java │ │ │ │ ├── AbstractAttrNS.java │ │ │ │ ├── AbstractCharacterData.java │ │ │ │ ├── AbstractChildNode.java │ │ │ │ ├── AbstractComment.java │ │ │ │ ├── AbstractDOMImplementation.java │ │ │ │ ├── AbstractDocument.java │ │ │ │ ├── AbstractDocumentFragment.java │ │ │ │ ├── AbstractElement.java │ │ │ │ ├── AbstractElementNS.java │ │ │ │ ├── AbstractEntity.java │ │ │ │ ├── AbstractEntityReference.java │ │ │ │ ├── AbstractNode.java │ │ │ │ ├── AbstractNotation.java │ │ │ │ ├── AbstractParentChildNode.java │ │ │ │ ├── AbstractParentNode.java │ │ │ │ ├── AbstractProcessingInstruction.java │ │ │ │ ├── AbstractStylableDocument.java │ │ │ │ ├── AbstractText.java │ │ │ │ ├── DomExtension.java │ │ │ │ ├── ExtendedNode.java │ │ │ │ ├── ExtensibleDOMImplementation.java │ │ │ │ ├── GenericAttr.java │ │ │ │ ├── GenericAttrNS.java │ │ │ │ ├── GenericCDATASection.java │ │ │ │ ├── GenericComment.java │ │ │ │ ├── GenericDOMImplementation.java │ │ │ │ ├── GenericDocument.java │ │ │ │ ├── GenericDocumentFragment.java │ │ │ │ ├── GenericDocumentType.java │ │ │ │ ├── GenericElement.java │ │ │ │ ├── GenericElementNS.java │ │ │ │ ├── GenericEntity.java │ │ │ │ ├── GenericEntityReference.java │ │ │ │ ├── GenericNotation.java │ │ │ │ ├── GenericProcessingInstruction.java │ │ │ │ ├── GenericText.java │ │ │ │ ├── StyleSheetFactory.java │ │ │ │ ├── StyleSheetProcessingInstruction.java │ │ │ │ ├── events │ │ │ │ │ ├── AbstractEvent.java │ │ │ │ │ ├── DOMCustomEvent.java │ │ │ │ │ ├── DOMEvent.java │ │ │ │ │ ├── DOMKeyEvent.java │ │ │ │ │ ├── DOMKeyboardEvent.java │ │ │ │ │ ├── DOMMouseEvent.java │ │ │ │ │ ├── DOMMutationEvent.java │ │ │ │ │ ├── DOMMutationNameEvent.java │ │ │ │ │ ├── DOMTextEvent.java │ │ │ │ │ ├── DOMTimeEvent.java │ │ │ │ │ ├── DOMUIEvent.java │ │ │ │ │ ├── DocumentEventSupport.java │ │ │ │ │ ├── EventListenerList.java │ │ │ │ │ ├── EventSupport.java │ │ │ │ │ ├── NodeEventTarget.java │ │ │ │ │ └── package.html │ │ │ │ ├── package.html │ │ │ │ ├── svg │ │ │ │ │ ├── AbstractSVGItem.java │ │ │ │ │ ├── AbstractSVGList.java │ │ │ │ │ ├── AbstractSVGMatrix.java │ │ │ │ │ ├── AbstractSVGNormPathSegList.java │ │ │ │ │ ├── AbstractSVGNumber.java │ │ │ │ │ ├── AbstractSVGNumberList.java │ │ │ │ │ ├── AbstractSVGPathSegList.java │ │ │ │ │ ├── AbstractSVGPointList.java │ │ │ │ │ ├── AbstractSVGPreserveAspectRatio.java │ │ │ │ │ ├── AbstractSVGTransform.java │ │ │ │ │ ├── AbstractSVGTransformList.java │ │ │ │ │ ├── ExtendedTraitAccess.java │ │ │ │ │ ├── IdContainer.java │ │ │ │ │ ├── ListBuilder.java │ │ │ │ │ ├── ListHandler.java │ │ │ │ │ ├── LiveAttributeException.java │ │ │ │ │ ├── LiveAttributeValue.java │ │ │ │ │ ├── SVGAnimatedPathDataSupport.java │ │ │ │ │ ├── SVGAnimationContext.java │ │ │ │ │ ├── SVGContext.java │ │ │ │ │ ├── SVGDocumentFactory.java │ │ │ │ │ ├── SVGItem.java │ │ │ │ │ ├── SVGMotionAnimatableElement.java │ │ │ │ │ ├── SVGNumberItem.java │ │ │ │ │ ├── SVGOMAngle.java │ │ │ │ │ ├── SVGOMEvent.java │ │ │ │ │ ├── SVGOMException.java │ │ │ │ │ ├── SVGOMMatrix.java │ │ │ │ │ ├── SVGOMPoint.java │ │ │ │ │ ├── SVGOMRect.java │ │ │ │ │ ├── SVGOMTransform.java │ │ │ │ │ ├── SVGOMUseShadowRoot.java │ │ │ │ │ ├── SVGPathContext.java │ │ │ │ │ ├── SVGPathSegConstants.java │ │ │ │ │ ├── SVGPathSegItem.java │ │ │ │ │ ├── SVGPointItem.java │ │ │ │ │ ├── SVGSVGContext.java │ │ │ │ │ ├── SVGTestsSupport.java │ │ │ │ │ ├── SVGTextContent.java │ │ │ │ │ ├── SVGZoomAndPanSupport.java │ │ │ │ │ └── TraitAccess.java │ │ │ │ ├── svg12 │ │ │ │ │ ├── Global.java │ │ │ │ │ ├── SVGGlobal.java │ │ │ │ │ ├── SVGOMWheelEvent.java │ │ │ │ │ └── XBLOMShadowTreeEvent.java │ │ │ │ ├── traversal │ │ │ │ │ ├── DOMNodeIterator.java │ │ │ │ │ ├── DOMTreeWalker.java │ │ │ │ │ ├── TraversalSupport.java │ │ │ │ │ └── package.html │ │ │ │ ├── util │ │ │ │ │ ├── CSSStyleDeclarationFactory.java │ │ │ │ │ ├── DOMUtilities.java │ │ │ │ │ ├── DocumentDescriptor.java │ │ │ │ │ ├── DocumentFactory.java │ │ │ │ │ ├── HashTable.java │ │ │ │ │ ├── HashTableStack.java │ │ │ │ │ ├── IntTable.java │ │ │ │ │ ├── ListNodeList.java │ │ │ │ │ ├── SAXDocumentFactory.java │ │ │ │ │ ├── SAXIOException.java │ │ │ │ │ ├── TriplyIndexedTable.java │ │ │ │ │ ├── XLinkSupport.java │ │ │ │ │ ├── XMLSupport.java │ │ │ │ │ └── package.html │ │ │ │ └── xbl │ │ │ │ │ ├── GenericXBLManager.java │ │ │ │ │ ├── NodeXBL.java │ │ │ │ │ ├── OriginalEvent.java │ │ │ │ │ ├── ShadowTreeEvent.java │ │ │ │ │ ├── XBLManager.java │ │ │ │ │ ├── XBLManagerData.java │ │ │ │ │ └── XBLShadowTreeElement.java │ │ │ │ ├── ext │ │ │ │ ├── awt │ │ │ │ │ ├── AreaOfInterestHintKey.java │ │ │ │ │ ├── AvoidTilingHintKey.java │ │ │ │ │ ├── BufferedImageHintKey.java │ │ │ │ │ ├── ColorSpaceHintKey.java │ │ │ │ │ ├── LinearGradientPaint.java │ │ │ │ │ ├── LinearGradientPaintContext.java │ │ │ │ │ ├── MultipleGradientPaint.java │ │ │ │ │ ├── MultipleGradientPaintContext.java │ │ │ │ │ ├── RadialGradientPaint.java │ │ │ │ │ ├── RadialGradientPaintContext.java │ │ │ │ │ ├── RenderingHintsKeyExt.java │ │ │ │ │ ├── TranscodingHintKey.java │ │ │ │ │ ├── color │ │ │ │ │ │ ├── ICCColorSpaceExt.java │ │ │ │ │ │ └── NamedProfileCache.java │ │ │ │ │ ├── font │ │ │ │ │ │ ├── TextPathLayout.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── g2d │ │ │ │ │ │ ├── AbstractGraphics2D.java │ │ │ │ │ │ ├── DefaultGraphics2D.java │ │ │ │ │ │ ├── GraphicContext.java │ │ │ │ │ │ ├── TransformStackElement.java │ │ │ │ │ │ ├── TransformType.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── geom │ │ │ │ │ │ ├── AbstractSegment.java │ │ │ │ │ │ ├── Cubic.java │ │ │ │ │ │ ├── ExtendedGeneralPath.java │ │ │ │ │ │ ├── ExtendedPathIterator.java │ │ │ │ │ │ ├── ExtendedShape.java │ │ │ │ │ │ ├── Linear.java │ │ │ │ │ │ ├── PathLength.java │ │ │ │ │ │ ├── Polygon2D.java │ │ │ │ │ │ ├── Polyline2D.java │ │ │ │ │ │ ├── Quadradic.java │ │ │ │ │ │ ├── RectListManager.java │ │ │ │ │ │ ├── Segment.java │ │ │ │ │ │ ├── SegmentList.java │ │ │ │ │ │ ├── ShapeExtender.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── image │ │ │ │ │ │ ├── ARGBChannel.java │ │ │ │ │ │ ├── AbstractLight.java │ │ │ │ │ │ ├── ComponentTransferFunction.java │ │ │ │ │ │ ├── CompositeRule.java │ │ │ │ │ │ ├── ConcreteComponentTransferFunction.java │ │ │ │ │ │ ├── DiscreteTransfer.java │ │ │ │ │ │ ├── DistantLight.java │ │ │ │ │ │ ├── GammaTransfer.java │ │ │ │ │ │ ├── GraphicsUtil.java │ │ │ │ │ │ ├── IdentityTransfer.java │ │ │ │ │ │ ├── Light.java │ │ │ │ │ │ ├── LinearTransfer.java │ │ │ │ │ │ ├── PadMode.java │ │ │ │ │ │ ├── PointLight.java │ │ │ │ │ │ ├── SVGComposite.java │ │ │ │ │ │ ├── SpotLight.java │ │ │ │ │ │ ├── TableTransfer.java │ │ │ │ │ │ ├── TransferFunction.java │ │ │ │ │ │ ├── URLImageCache.java │ │ │ │ │ │ ├── codec │ │ │ │ │ │ │ ├── imageio │ │ │ │ │ │ │ │ ├── AbstractImageIORegistryEntry.java │ │ │ │ │ │ │ │ ├── ImageIODebugUtil.java │ │ │ │ │ │ │ │ ├── ImageIOImageWriter.java │ │ │ │ │ │ │ │ ├── ImageIOJPEGImageWriter.java │ │ │ │ │ │ │ │ ├── ImageIOJPEGRegistryEntry.java │ │ │ │ │ │ │ │ ├── ImageIOPNGImageWriter.java │ │ │ │ │ │ │ │ ├── ImageIOPNGRegistryEntry.java │ │ │ │ │ │ │ │ ├── ImageIOTIFFImageWriter.java │ │ │ │ │ │ │ │ ├── ImageIOTIFFRegistryEntry.java │ │ │ │ │ │ │ │ ├── PNGTranscoderImageIOWriteAdapter.java │ │ │ │ │ │ │ │ └── TIFFTranscoderImageIOWriteAdapter.java │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ ├── png │ │ │ │ │ │ │ │ ├── PNGDecodeParam.java │ │ │ │ │ │ │ │ ├── PNGEncodeParam.java │ │ │ │ │ │ │ │ ├── PNGImageDecoder.java │ │ │ │ │ │ │ │ ├── PNGImageEncoder.java │ │ │ │ │ │ │ │ ├── PNGImageWriter.java │ │ │ │ │ │ │ │ ├── PNGRed.java │ │ │ │ │ │ │ │ ├── PNGRegistryEntry.java │ │ │ │ │ │ │ │ ├── PNGSuggestedPaletteEntry.java │ │ │ │ │ │ │ │ └── PNGTranscoderInternalCodecWriteAdapter.java │ │ │ │ │ │ │ ├── tiff │ │ │ │ │ │ │ │ ├── TIFFDecodeParam.java │ │ │ │ │ │ │ │ ├── TIFFDirectory.java │ │ │ │ │ │ │ │ ├── TIFFEncodeParam.java │ │ │ │ │ │ │ │ ├── TIFFFaxDecoder.java │ │ │ │ │ │ │ │ ├── TIFFField.java │ │ │ │ │ │ │ │ ├── TIFFImage.java │ │ │ │ │ │ │ │ ├── TIFFImageDecoder.java │ │ │ │ │ │ │ │ ├── TIFFImageEncoder.java │ │ │ │ │ │ │ │ ├── TIFFLZWDecoder.java │ │ │ │ │ │ │ │ ├── TIFFRegistryEntry.java │ │ │ │ │ │ │ │ └── TIFFTranscoderInternalCodecWriteAdapter.java │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── FileCacheSeekableStream.java │ │ │ │ │ │ │ │ ├── ForwardSeekableStream.java │ │ │ │ │ │ │ │ ├── ImageDecodeParam.java │ │ │ │ │ │ │ │ ├── ImageDecoder.java │ │ │ │ │ │ │ │ ├── ImageDecoderImpl.java │ │ │ │ │ │ │ │ ├── ImageEncodeParam.java │ │ │ │ │ │ │ │ ├── ImageEncoder.java │ │ │ │ │ │ │ │ ├── ImageEncoderImpl.java │ │ │ │ │ │ │ │ ├── MemoryCacheSeekableStream.java │ │ │ │ │ │ │ │ ├── PropertyUtil.java │ │ │ │ │ │ │ │ ├── SeekableOutputStream.java │ │ │ │ │ │ │ │ ├── SeekableStream.java │ │ │ │ │ │ │ │ ├── SimpleRenderedImage.java │ │ │ │ │ │ │ │ └── SingleTileRenderedImage.java │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── renderable │ │ │ │ │ │ │ ├── AbstractColorInterpolationRable.java │ │ │ │ │ │ │ ├── AbstractRable.java │ │ │ │ │ │ │ ├── AffineRable.java │ │ │ │ │ │ │ ├── AffineRable8Bit.java │ │ │ │ │ │ │ ├── ClipRable.java │ │ │ │ │ │ │ ├── ClipRable8Bit.java │ │ │ │ │ │ │ ├── ColorMatrixRable.java │ │ │ │ │ │ │ ├── ColorMatrixRable8Bit.java │ │ │ │ │ │ │ ├── ComponentTransferRable.java │ │ │ │ │ │ │ ├── ComponentTransferRable8Bit.java │ │ │ │ │ │ │ ├── CompositeRable.java │ │ │ │ │ │ │ ├── CompositeRable8Bit.java │ │ │ │ │ │ │ ├── ConvolveMatrixRable.java │ │ │ │ │ │ │ ├── ConvolveMatrixRable8Bit.java │ │ │ │ │ │ │ ├── DeferRable.java │ │ │ │ │ │ │ ├── DiffuseLightingRable.java │ │ │ │ │ │ │ ├── DiffuseLightingRable8Bit.java │ │ │ │ │ │ │ ├── DisplacementMapRable.java │ │ │ │ │ │ │ ├── DisplacementMapRable8Bit.java │ │ │ │ │ │ │ ├── Filter.java │ │ │ │ │ │ │ ├── FilterAlphaRable.java │ │ │ │ │ │ │ ├── FilterAsAlphaRable.java │ │ │ │ │ │ │ ├── FilterChainRable.java │ │ │ │ │ │ │ ├── FilterChainRable8Bit.java │ │ │ │ │ │ │ ├── FilterColorInterpolation.java │ │ │ │ │ │ │ ├── FilterResRable.java │ │ │ │ │ │ │ ├── FilterResRable8Bit.java │ │ │ │ │ │ │ ├── FloodRable.java │ │ │ │ │ │ │ ├── FloodRable8Bit.java │ │ │ │ │ │ │ ├── GaussianBlurRable.java │ │ │ │ │ │ │ ├── GaussianBlurRable8Bit.java │ │ │ │ │ │ │ ├── MorphologyRable.java │ │ │ │ │ │ │ ├── MorphologyRable8Bit.java │ │ │ │ │ │ │ ├── OffsetRable.java │ │ │ │ │ │ │ ├── PadRable.java │ │ │ │ │ │ │ ├── PadRable8Bit.java │ │ │ │ │ │ │ ├── PaintRable.java │ │ │ │ │ │ │ ├── ProfileRable.java │ │ │ │ │ │ │ ├── RedRable.java │ │ │ │ │ │ │ ├── SpecularLightingRable.java │ │ │ │ │ │ │ ├── SpecularLightingRable8Bit.java │ │ │ │ │ │ │ ├── TileRable.java │ │ │ │ │ │ │ ├── TileRable8Bit.java │ │ │ │ │ │ │ ├── TurbulenceRable.java │ │ │ │ │ │ │ └── TurbulenceRable8Bit.java │ │ │ │ │ │ ├── rendered │ │ │ │ │ │ │ ├── AbstractRed.java │ │ │ │ │ │ │ ├── AbstractTiledRed.java │ │ │ │ │ │ │ ├── AffineRed.java │ │ │ │ │ │ │ ├── Any2LsRGBRed.java │ │ │ │ │ │ │ ├── Any2LumRed.java │ │ │ │ │ │ │ ├── Any2sRGBRed.java │ │ │ │ │ │ │ ├── BufferedImageCachableRed.java │ │ │ │ │ │ │ ├── BumpMap.java │ │ │ │ │ │ │ ├── CachableRed.java │ │ │ │ │ │ │ ├── ColorMatrixRed.java │ │ │ │ │ │ │ ├── ComponentTransferRed.java │ │ │ │ │ │ │ ├── CompositeRed.java │ │ │ │ │ │ │ ├── DiffuseLightingRed.java │ │ │ │ │ │ │ ├── DisplacementMapRed.java │ │ │ │ │ │ │ ├── FilterAlphaRed.java │ │ │ │ │ │ │ ├── FilterAsAlphaRed.java │ │ │ │ │ │ │ ├── FloodRed.java │ │ │ │ │ │ │ ├── FormatRed.java │ │ │ │ │ │ │ ├── GaussianBlurRed8Bit.java │ │ │ │ │ │ │ ├── IndexImage.java │ │ │ │ │ │ │ ├── LRUCache.java │ │ │ │ │ │ │ ├── MorphologyOp.java │ │ │ │ │ │ │ ├── MultiplyAlphaRed.java │ │ │ │ │ │ │ ├── PadRed.java │ │ │ │ │ │ │ ├── ProfileRed.java │ │ │ │ │ │ │ ├── RenderedImageCachableRed.java │ │ │ │ │ │ │ ├── SpecularLightingRed.java │ │ │ │ │ │ │ ├── TileBlock.java │ │ │ │ │ │ │ ├── TileCache.java │ │ │ │ │ │ │ ├── TileCacheRed.java │ │ │ │ │ │ │ ├── TileGenerator.java │ │ │ │ │ │ │ ├── TileGrid.java │ │ │ │ │ │ │ ├── TileLRUMember.java │ │ │ │ │ │ │ ├── TileMap.java │ │ │ │ │ │ │ ├── TileRed.java │ │ │ │ │ │ │ ├── TileStore.java │ │ │ │ │ │ │ ├── TranslateRed.java │ │ │ │ │ │ │ └── TurbulencePatternRed.java │ │ │ │ │ │ └── spi │ │ │ │ │ │ │ ├── AbstractRegistryEntry.java │ │ │ │ │ │ │ ├── BrokenLinkProvider.java │ │ │ │ │ │ │ ├── DefaultBrokenLinkProvider.java │ │ │ │ │ │ │ ├── ErrorConstants.java │ │ │ │ │ │ │ ├── ImageTagRegistry.java │ │ │ │ │ │ │ ├── ImageWriter.java │ │ │ │ │ │ │ ├── ImageWriterParams.java │ │ │ │ │ │ │ ├── ImageWriterRegistry.java │ │ │ │ │ │ │ ├── JDKRegistryEntry.java │ │ │ │ │ │ │ ├── MagicNumberRegistryEntry.java │ │ │ │ │ │ │ ├── RegistryEntry.java │ │ │ │ │ │ │ ├── StreamRegistryEntry.java │ │ │ │ │ │ │ └── URLRegistryEntry.java │ │ │ │ │ └── package.html │ │ │ │ └── swing │ │ │ │ │ ├── DoubleDocument.java │ │ │ │ │ ├── GridBagConstants.java │ │ │ │ │ ├── JAffineTransformChooser.java │ │ │ │ │ ├── JGridBagPanel.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ └── Resources.java │ │ │ │ ├── extension │ │ │ │ ├── ExtensionElement.java │ │ │ │ ├── GraphicsExtensionElement.java │ │ │ │ ├── PrefixableStylableExtensionElement.java │ │ │ │ ├── StylableExtensionElement.java │ │ │ │ ├── package.html │ │ │ │ └── svg │ │ │ │ │ ├── BatikBridgeExtension.java │ │ │ │ │ ├── BatikDomExtension.java │ │ │ │ │ ├── BatikExtConstants.java │ │ │ │ │ ├── BatikFlowTextElementBridge.java │ │ │ │ │ ├── BatikHistogramNormalizationElement.java │ │ │ │ │ ├── BatikHistogramNormalizationElementBridge.java │ │ │ │ │ ├── BatikHistogramNormalizationFilter.java │ │ │ │ │ ├── BatikHistogramNormalizationFilter8Bit.java │ │ │ │ │ ├── BatikRegularPolygonElement.java │ │ │ │ │ ├── BatikRegularPolygonElementBridge.java │ │ │ │ │ ├── BatikStarElement.java │ │ │ │ │ ├── BatikStarElementBridge.java │ │ │ │ │ ├── ColorSwitchBridge.java │ │ │ │ │ ├── ColorSwitchElement.java │ │ │ │ │ ├── FlowDivElement.java │ │ │ │ │ ├── FlowExtGlyphLayout.java │ │ │ │ │ ├── FlowExtTextLayoutFactory.java │ │ │ │ │ ├── FlowExtTextNode.java │ │ │ │ │ ├── FlowExtTextPainter.java │ │ │ │ │ ├── FlowLineElement.java │ │ │ │ │ ├── FlowParaElement.java │ │ │ │ │ ├── FlowRegionBreakElement.java │ │ │ │ │ ├── FlowRegionElement.java │ │ │ │ │ ├── FlowSpanElement.java │ │ │ │ │ ├── FlowTextElement.java │ │ │ │ │ ├── GlyphIterator.java │ │ │ │ │ ├── HistogramRed.java │ │ │ │ │ ├── LineInfo.java │ │ │ │ │ ├── MarginInfo.java │ │ │ │ │ └── RegionInfo.java │ │ │ │ ├── gvt │ │ │ │ ├── AbstractGraphicsNode.java │ │ │ │ ├── CanvasGraphicsNode.java │ │ │ │ ├── CompositeGraphicsNode.java │ │ │ │ ├── CompositeShapePainter.java │ │ │ │ ├── FillShapePainter.java │ │ │ │ ├── GVTTreeWalker.java │ │ │ │ ├── GraphicsNode.java │ │ │ │ ├── ImageNode.java │ │ │ │ ├── Marker.java │ │ │ │ ├── MarkerShapePainter.java │ │ │ │ ├── Mask.java │ │ │ │ ├── PatternPaint.java │ │ │ │ ├── PatternPaintContext.java │ │ │ │ ├── ProxyGraphicsNode.java │ │ │ │ ├── RasterImageNode.java │ │ │ │ ├── RootGraphicsNode.java │ │ │ │ ├── Selectable.java │ │ │ │ ├── Selector.java │ │ │ │ ├── ShapeNode.java │ │ │ │ ├── ShapePainter.java │ │ │ │ ├── StrokeShapePainter.java │ │ │ │ ├── UpdateTracker.java │ │ │ │ ├── event │ │ │ │ │ ├── AWTEventDispatcher.java │ │ │ │ │ ├── EventDispatcher.java │ │ │ │ │ ├── GraphicsNodeChangeAdapter.java │ │ │ │ │ ├── GraphicsNodeChangeEvent.java │ │ │ │ │ ├── GraphicsNodeChangeListener.java │ │ │ │ │ ├── GraphicsNodeEvent.java │ │ │ │ │ ├── GraphicsNodeFocusEvent.java │ │ │ │ │ ├── GraphicsNodeFocusListener.java │ │ │ │ │ ├── GraphicsNodeInputEvent.java │ │ │ │ │ ├── GraphicsNodeKeyAdapter.java │ │ │ │ │ ├── GraphicsNodeKeyEvent.java │ │ │ │ │ ├── GraphicsNodeKeyListener.java │ │ │ │ │ ├── GraphicsNodeMouseAdapter.java │ │ │ │ │ ├── GraphicsNodeMouseEvent.java │ │ │ │ │ ├── GraphicsNodeMouseListener.java │ │ │ │ │ ├── GraphicsNodeMouseWheelEvent.java │ │ │ │ │ ├── GraphicsNodeMouseWheelListener.java │ │ │ │ │ ├── SelectionAdapter.java │ │ │ │ │ ├── SelectionEvent.java │ │ │ │ │ ├── SelectionListener.java │ │ │ │ │ └── package.html │ │ │ │ ├── filter │ │ │ │ │ ├── BackgroundRable8Bit.java │ │ │ │ │ ├── ConcreteGraphicsNodeRableFactory.java │ │ │ │ │ ├── GraphicsNodeRable.java │ │ │ │ │ ├── GraphicsNodeRable8Bit.java │ │ │ │ │ ├── GraphicsNodeRableFactory.java │ │ │ │ │ ├── GraphicsNodeRed8Bit.java │ │ │ │ │ ├── Mask.java │ │ │ │ │ ├── MaskRable8Bit.java │ │ │ │ │ ├── filterDesc.txt │ │ │ │ │ └── package.html │ │ │ │ ├── flow │ │ │ │ │ ├── BlockInfo.java │ │ │ │ │ ├── FlowRegions.java │ │ │ │ │ ├── GlyphGroupInfo.java │ │ │ │ │ ├── LineInfo.java │ │ │ │ │ ├── MarginInfo.java │ │ │ │ │ ├── RegionInfo.java │ │ │ │ │ ├── TextLineBreaks.java │ │ │ │ │ └── WordInfo.java │ │ │ │ ├── font │ │ │ │ │ ├── AWTFontFamily.java │ │ │ │ │ ├── AWTGVTFont.java │ │ │ │ │ ├── AWTGVTGlyphVector.java │ │ │ │ │ ├── AWTGlyphGeometryCache.java │ │ │ │ │ ├── AltGlyphHandler.java │ │ │ │ │ ├── GVTFont.java │ │ │ │ │ ├── GVTFontFace.java │ │ │ │ │ ├── GVTFontFamily.java │ │ │ │ │ ├── GVTGlyphMetrics.java │ │ │ │ │ ├── GVTGlyphVector.java │ │ │ │ │ ├── GVTLineMetrics.java │ │ │ │ │ ├── Glyph.java │ │ │ │ │ ├── Kern.java │ │ │ │ │ ├── KerningTable.java │ │ │ │ │ ├── MultiGlyphVector.java │ │ │ │ │ ├── SVGGVTGlyphVector.java │ │ │ │ │ ├── UnicodeRange.java │ │ │ │ │ └── UnresolvedFontFamily.java │ │ │ │ ├── package.html │ │ │ │ ├── renderer │ │ │ │ │ ├── ConcreteImageRendererFactory.java │ │ │ │ │ ├── DynamicRenderer.java │ │ │ │ │ ├── ImageRenderer.java │ │ │ │ │ ├── ImageRendererFactory.java │ │ │ │ │ ├── MacRenderer.java │ │ │ │ │ ├── Renderer.java │ │ │ │ │ ├── RendererFactory.java │ │ │ │ │ └── StaticRenderer.java │ │ │ │ └── text │ │ │ │ │ ├── ArabicTextHandler.java │ │ │ │ │ ├── AttributedCharacterSpanIterator.java │ │ │ │ │ ├── BidiAttributedCharacterIterator.java │ │ │ │ │ ├── GVTACIImpl.java │ │ │ │ │ ├── GVTAttributedCharacterIterator.java │ │ │ │ │ ├── TextPaintInfo.java │ │ │ │ │ └── TextPath.java │ │ │ │ ├── i18n │ │ │ │ ├── ExtendedLocalizable.java │ │ │ │ ├── LocaleGroup.java │ │ │ │ ├── Localizable.java │ │ │ │ ├── LocalizableSupport.java │ │ │ │ └── package.html │ │ │ │ ├── parser │ │ │ │ ├── AWTPathProducer.java │ │ │ │ ├── AWTPolygonProducer.java │ │ │ │ ├── AWTPolylineProducer.java │ │ │ │ ├── AWTTransformProducer.java │ │ │ │ ├── AbstractParser.java │ │ │ │ ├── AbstractScanner.java │ │ │ │ ├── AngleHandler.java │ │ │ │ ├── AngleParser.java │ │ │ │ ├── ClockHandler.java │ │ │ │ ├── ClockParser.java │ │ │ │ ├── DefaultAngleHandler.java │ │ │ │ ├── DefaultErrorHandler.java │ │ │ │ ├── DefaultFragmentIdentifierHandler.java │ │ │ │ ├── DefaultLengthHandler.java │ │ │ │ ├── DefaultLengthListHandler.java │ │ │ │ ├── DefaultNumberListHandler.java │ │ │ │ ├── DefaultPathHandler.java │ │ │ │ ├── DefaultPointsHandler.java │ │ │ │ ├── DefaultPreserveAspectRatioHandler.java │ │ │ │ ├── DefaultTimingSpecifierHandler.java │ │ │ │ ├── DefaultTimingSpecifierListHandler.java │ │ │ │ ├── DefaultTransformListHandler.java │ │ │ │ ├── ErrorHandler.java │ │ │ │ ├── FloatArrayProducer.java │ │ │ │ ├── FragmentIdentifierHandler.java │ │ │ │ ├── FragmentIdentifierParser.java │ │ │ │ ├── LengthArrayProducer.java │ │ │ │ ├── LengthHandler.java │ │ │ │ ├── LengthListHandler.java │ │ │ │ ├── LengthListParser.java │ │ │ │ ├── LengthPairListParser.java │ │ │ │ ├── LengthParser.java │ │ │ │ ├── NumberListHandler.java │ │ │ │ ├── NumberListParser.java │ │ │ │ ├── NumberParser.java │ │ │ │ ├── ParseException.java │ │ │ │ ├── Parser.java │ │ │ │ ├── PathArrayProducer.java │ │ │ │ ├── PathHandler.java │ │ │ │ ├── PathParser.java │ │ │ │ ├── PointsHandler.java │ │ │ │ ├── PointsParser.java │ │ │ │ ├── PreserveAspectRatioHandler.java │ │ │ │ ├── PreserveAspectRatioParser.java │ │ │ │ ├── ShapeProducer.java │ │ │ │ ├── TimingParser.java │ │ │ │ ├── TimingSpecifierHandler.java │ │ │ │ ├── TimingSpecifierListHandler.java │ │ │ │ ├── TimingSpecifierListParser.java │ │ │ │ ├── TimingSpecifierParser.java │ │ │ │ ├── TransformListHandler.java │ │ │ │ ├── TransformListParser.java │ │ │ │ ├── UnitProcessor.java │ │ │ │ └── package.html │ │ │ │ ├── script │ │ │ │ ├── ImportInfo.java │ │ │ │ ├── Interpreter.java │ │ │ │ ├── InterpreterException.java │ │ │ │ ├── InterpreterFactory.java │ │ │ │ ├── InterpreterPool.java │ │ │ │ ├── ScriptEventWrapper.java │ │ │ │ ├── jacl │ │ │ │ │ ├── JaclInterpreter.java │ │ │ │ │ ├── JaclInterpreterFactory.java │ │ │ │ │ └── package.html │ │ │ │ ├── jpython │ │ │ │ │ ├── JPythonInterpreter.java │ │ │ │ │ ├── JPythonInterpreterFactory.java │ │ │ │ │ └── package.html │ │ │ │ ├── package.html │ │ │ │ └── rhino │ │ │ │ │ ├── BatikSecurityController.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── RhinoClassLoader.java │ │ │ │ │ ├── RhinoClassShutter.java │ │ │ │ │ └── package.html │ │ │ │ ├── svggen │ │ │ │ ├── AbstractImageHandlerEncoder.java │ │ │ │ ├── AbstractSVGConverter.java │ │ │ │ ├── AbstractSVGFilterConverter.java │ │ │ │ ├── CachedImageHandler.java │ │ │ │ ├── CachedImageHandlerBase64Encoder.java │ │ │ │ ├── CachedImageHandlerJPEGEncoder.java │ │ │ │ ├── CachedImageHandlerPNGEncoder.java │ │ │ │ ├── DOMGroupManager.java │ │ │ │ ├── DOMTreeManager.java │ │ │ │ ├── DefaultCachedImageHandler.java │ │ │ │ ├── DefaultErrorHandler.java │ │ │ │ ├── DefaultExtensionHandler.java │ │ │ │ ├── DefaultImageHandler.java │ │ │ │ ├── DefaultStyleHandler.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorHandler.java │ │ │ │ ├── ExtensionHandler.java │ │ │ │ ├── GenericImageHandler.java │ │ │ │ ├── ImageCacher.java │ │ │ │ ├── ImageHandler.java │ │ │ │ ├── ImageHandlerBase64Encoder.java │ │ │ │ ├── ImageHandlerJPEGEncoder.java │ │ │ │ ├── ImageHandlerPNGEncoder.java │ │ │ │ ├── NullOp.java │ │ │ │ ├── SVGAlphaComposite.java │ │ │ │ ├── SVGArc.java │ │ │ │ ├── SVGAttribute.java │ │ │ │ ├── SVGAttributeMap.java │ │ │ │ ├── SVGBasicStroke.java │ │ │ │ ├── SVGBufferedImageOp.java │ │ │ │ ├── SVGCSSStyler.java │ │ │ │ ├── SVGClip.java │ │ │ │ ├── SVGClipDescriptor.java │ │ │ │ ├── SVGColor.java │ │ │ │ ├── SVGComposite.java │ │ │ │ ├── SVGCompositeDescriptor.java │ │ │ │ ├── SVGConverter.java │ │ │ │ ├── SVGConvolveOp.java │ │ │ │ ├── SVGCustomBufferedImageOp.java │ │ │ │ ├── SVGCustomComposite.java │ │ │ │ ├── SVGCustomPaint.java │ │ │ │ ├── SVGDescriptor.java │ │ │ │ ├── SVGEllipse.java │ │ │ │ ├── SVGFilterConverter.java │ │ │ │ ├── SVGFilterDescriptor.java │ │ │ │ ├── SVGFont.java │ │ │ │ ├── SVGFontDescriptor.java │ │ │ │ ├── SVGGeneratorContext.java │ │ │ │ ├── SVGGraphicContext.java │ │ │ │ ├── SVGGraphicContextConverter.java │ │ │ │ ├── SVGGraphicObjectConverter.java │ │ │ │ ├── SVGGraphics2D.java │ │ │ │ ├── SVGGraphics2DIOException.java │ │ │ │ ├── SVGGraphics2DRuntimeException.java │ │ │ │ ├── SVGHintsDescriptor.java │ │ │ │ ├── SVGIDGenerator.java │ │ │ │ ├── SVGLine.java │ │ │ │ ├── SVGLinearGradient.java │ │ │ │ ├── SVGLookupOp.java │ │ │ │ ├── SVGPaint.java │ │ │ │ ├── SVGPaintDescriptor.java │ │ │ │ ├── SVGPath.java │ │ │ │ ├── SVGPolygon.java │ │ │ │ ├── SVGRectangle.java │ │ │ │ ├── SVGRenderingHints.java │ │ │ │ ├── SVGRescaleOp.java │ │ │ │ ├── SVGShape.java │ │ │ │ ├── SVGStrokeDescriptor.java │ │ │ │ ├── SVGStylingAttributes.java │ │ │ │ ├── SVGSyntax.java │ │ │ │ ├── SVGTexturePaint.java │ │ │ │ ├── SVGTransform.java │ │ │ │ ├── SVGTransformDescriptor.java │ │ │ │ ├── SimpleImageHandler.java │ │ │ │ ├── StyleHandler.java │ │ │ │ ├── SwingSVGPrettyPrint.java │ │ │ │ ├── XmlWriter.java │ │ │ │ ├── font │ │ │ │ │ ├── Font.java │ │ │ │ │ ├── Glyph.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── Point.java │ │ │ │ │ ├── SVGFont.java │ │ │ │ │ └── table │ │ │ │ │ │ ├── ClassDef.java │ │ │ │ │ │ ├── ClassDefFormat1.java │ │ │ │ │ │ ├── ClassDefFormat2.java │ │ │ │ │ │ ├── CmapFormat.java │ │ │ │ │ │ ├── CmapFormat0.java │ │ │ │ │ │ ├── CmapFormat2.java │ │ │ │ │ │ ├── CmapFormat4.java │ │ │ │ │ │ ├── CmapFormat6.java │ │ │ │ │ │ ├── CmapIndexEntry.java │ │ │ │ │ │ ├── CmapTable.java │ │ │ │ │ │ ├── Coverage.java │ │ │ │ │ │ ├── CoverageFormat1.java │ │ │ │ │ │ ├── CoverageFormat2.java │ │ │ │ │ │ ├── CvtTable.java │ │ │ │ │ │ ├── Device.java │ │ │ │ │ │ ├── DirectoryEntry.java │ │ │ │ │ │ ├── Feature.java │ │ │ │ │ │ ├── FeatureList.java │ │ │ │ │ │ ├── FeatureRecord.java │ │ │ │ │ │ ├── FeatureTags.java │ │ │ │ │ │ ├── FpgmTable.java │ │ │ │ │ │ ├── GlyfCompositeComp.java │ │ │ │ │ │ ├── GlyfCompositeDescript.java │ │ │ │ │ │ ├── GlyfDescript.java │ │ │ │ │ │ ├── GlyfSimpleDescript.java │ │ │ │ │ │ ├── GlyfTable.java │ │ │ │ │ │ ├── GlyphDescription.java │ │ │ │ │ │ ├── GposTable.java │ │ │ │ │ │ ├── GsubTable.java │ │ │ │ │ │ ├── HeadTable.java │ │ │ │ │ │ ├── HheaTable.java │ │ │ │ │ │ ├── HmtxTable.java │ │ │ │ │ │ ├── KernSubtable.java │ │ │ │ │ │ ├── KernSubtableFormat0.java │ │ │ │ │ │ ├── KernSubtableFormat2.java │ │ │ │ │ │ ├── KernTable.java │ │ │ │ │ │ ├── KerningPair.java │ │ │ │ │ │ ├── LangSys.java │ │ │ │ │ │ ├── LangSysRecord.java │ │ │ │ │ │ ├── Ligature.java │ │ │ │ │ │ ├── LigatureSet.java │ │ │ │ │ │ ├── LigatureSubst.java │ │ │ │ │ │ ├── LigatureSubstFormat1.java │ │ │ │ │ │ ├── LocaTable.java │ │ │ │ │ │ ├── Lookup.java │ │ │ │ │ │ ├── LookupList.java │ │ │ │ │ │ ├── LookupSubtable.java │ │ │ │ │ │ ├── LookupSubtableFactory.java │ │ │ │ │ │ ├── MaxpTable.java │ │ │ │ │ │ ├── NameRecord.java │ │ │ │ │ │ ├── NameTable.java │ │ │ │ │ │ ├── Os2Table.java │ │ │ │ │ │ ├── Panose.java │ │ │ │ │ │ ├── PostTable.java │ │ │ │ │ │ ├── PrepTable.java │ │ │ │ │ │ ├── Program.java │ │ │ │ │ │ ├── RangeRecord.java │ │ │ │ │ │ ├── Script.java │ │ │ │ │ │ ├── ScriptList.java │ │ │ │ │ │ ├── ScriptRecord.java │ │ │ │ │ │ ├── ScriptTags.java │ │ │ │ │ │ ├── SingleSubst.java │ │ │ │ │ │ ├── SingleSubstFormat1.java │ │ │ │ │ │ ├── SingleSubstFormat2.java │ │ │ │ │ │ ├── Table.java │ │ │ │ │ │ ├── TableDirectory.java │ │ │ │ │ │ └── TableFactory.java │ │ │ │ └── package.html │ │ │ │ ├── swing │ │ │ │ ├── JSVGCanvas.java │ │ │ │ ├── JSVGCanvasBeanInfo.java │ │ │ │ ├── JSVGScrollPane.java │ │ │ │ ├── Messages.java │ │ │ │ ├── gvt │ │ │ │ │ ├── AbstractImageZoomInteractor.java │ │ │ │ │ ├── AbstractPanInteractor.java │ │ │ │ │ ├── AbstractResetTransformInteractor.java │ │ │ │ │ ├── AbstractRotateInteractor.java │ │ │ │ │ ├── AbstractZoomInteractor.java │ │ │ │ │ ├── GVTTreeRenderer.java │ │ │ │ │ ├── GVTTreeRendererAdapter.java │ │ │ │ │ ├── GVTTreeRendererEvent.java │ │ │ │ │ ├── GVTTreeRendererListener.java │ │ │ │ │ ├── Interactor.java │ │ │ │ │ ├── InteractorAdapter.java │ │ │ │ │ ├── JGVTComponent.java │ │ │ │ │ ├── JGVTComponentAdapter.java │ │ │ │ │ ├── JGVTComponentListener.java │ │ │ │ │ ├── Overlay.java │ │ │ │ │ └── TextSelectionManager.java │ │ │ │ └── svg │ │ │ │ │ ├── GVTTreeBuilder.java │ │ │ │ │ ├── GVTTreeBuilderAdapter.java │ │ │ │ │ ├── GVTTreeBuilderEvent.java │ │ │ │ │ ├── GVTTreeBuilderListener.java │ │ │ │ │ ├── JSVGComponent.java │ │ │ │ │ ├── LinkActivationEvent.java │ │ │ │ │ ├── LinkActivationListener.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── SVGDocumentLoader.java │ │ │ │ │ ├── SVGDocumentLoaderAdapter.java │ │ │ │ │ ├── SVGDocumentLoaderEvent.java │ │ │ │ │ ├── SVGDocumentLoaderListener.java │ │ │ │ │ ├── SVGFileFilter.java │ │ │ │ │ ├── SVGLoadEventDispatcher.java │ │ │ │ │ ├── SVGLoadEventDispatcherAdapter.java │ │ │ │ │ ├── SVGLoadEventDispatcherEvent.java │ │ │ │ │ ├── SVGLoadEventDispatcherListener.java │ │ │ │ │ ├── SVGUpdateOverlay.java │ │ │ │ │ ├── SVGUserAgent.java │ │ │ │ │ ├── SVGUserAgentAdapter.java │ │ │ │ │ └── SVGUserAgentGUIAdapter.java │ │ │ │ ├── transcoder │ │ │ │ ├── AbstractTranscoder.java │ │ │ │ ├── DefaultErrorHandler.java │ │ │ │ ├── ErrorHandler.java │ │ │ │ ├── SVGAbstractTranscoder.java │ │ │ │ ├── ToSVGAbstractTranscoder.java │ │ │ │ ├── Transcoder.java │ │ │ │ ├── TranscoderException.java │ │ │ │ ├── TranscoderInput.java │ │ │ │ ├── TranscoderOutput.java │ │ │ │ ├── TranscoderSupport.java │ │ │ │ ├── TranscodingHints.java │ │ │ │ ├── XMLAbstractTranscoder.java │ │ │ │ ├── image │ │ │ │ │ ├── ImageTranscoder.java │ │ │ │ │ ├── JPEGTranscoder.java │ │ │ │ │ ├── PNGTranscoder.java │ │ │ │ │ ├── TIFFTranscoder.java │ │ │ │ │ ├── package.html │ │ │ │ │ └── resources │ │ │ │ │ │ └── Messages.java │ │ │ │ ├── keys │ │ │ │ │ ├── BooleanKey.java │ │ │ │ │ ├── DOMImplementationKey.java │ │ │ │ │ ├── FloatKey.java │ │ │ │ │ ├── IntegerKey.java │ │ │ │ │ ├── LengthKey.java │ │ │ │ │ ├── PaintKey.java │ │ │ │ │ ├── Rectangle2DKey.java │ │ │ │ │ └── StringKey.java │ │ │ │ ├── package.html │ │ │ │ ├── print │ │ │ │ │ └── PrintTranscoder.java │ │ │ │ ├── svg2svg │ │ │ │ │ ├── OutputManager.java │ │ │ │ │ ├── PrettyPrinter.java │ │ │ │ │ └── SVGTranscoder.java │ │ │ │ └── wmf │ │ │ │ │ ├── WMFConstants.java │ │ │ │ │ └── tosvg │ │ │ │ │ ├── AbstractWMFPainter.java │ │ │ │ │ ├── AbstractWMFReader.java │ │ │ │ │ ├── GdiObject.java │ │ │ │ │ ├── MetaRecord.java │ │ │ │ │ ├── RecordStore.java │ │ │ │ │ ├── TextureFactory.java │ │ │ │ │ ├── WMFFont.java │ │ │ │ │ ├── WMFHeaderProperties.java │ │ │ │ │ ├── WMFPainter.java │ │ │ │ │ ├── WMFRecordStore.java │ │ │ │ │ ├── WMFTranscoder.java │ │ │ │ │ ├── WMFUtilities.java │ │ │ │ │ └── package.html │ │ │ │ ├── util │ │ │ │ ├── AbstractParsedURLProtocolHandler.java │ │ │ │ ├── ApplicationSecurityEnforcer.java │ │ │ │ ├── Base64DecodeStream.java │ │ │ │ ├── Base64EncoderStream.java │ │ │ │ ├── BatikSecurityManager.java │ │ │ │ ├── CSSConstants.java │ │ │ │ ├── ClassFileUtilities.java │ │ │ │ ├── CleanerThread.java │ │ │ │ ├── DOMConstants.java │ │ │ │ ├── DoublyIndexedSet.java │ │ │ │ ├── DoublyIndexedTable.java │ │ │ │ ├── DoublyLinkedList.java │ │ │ │ ├── EncodingUtilities.java │ │ │ │ ├── EventDispatcher.java │ │ │ │ ├── HaltingThread.java │ │ │ │ ├── Messages.java │ │ │ │ ├── MimeTypeConstants.java │ │ │ │ ├── ParsedURL.java │ │ │ │ ├── ParsedURLData.java │ │ │ │ ├── ParsedURLDataProtocolHandler.java │ │ │ │ ├── ParsedURLDefaultProtocolHandler.java │ │ │ │ ├── ParsedURLJarProtocolHandler.java │ │ │ │ ├── ParsedURLProtocolHandler.java │ │ │ │ ├── Platform.java │ │ │ │ ├── PreferenceManager.java │ │ │ │ ├── RunnableQueue.java │ │ │ │ ├── SMILConstants.java │ │ │ │ ├── SVG12CSSConstants.java │ │ │ │ ├── SVG12Constants.java │ │ │ │ ├── SVGConstants.java │ │ │ │ ├── SVGFeatureStrings.java │ │ │ │ ├── SVGTypes.java │ │ │ │ ├── Service.java │ │ │ │ ├── SoftDoublyIndexedTable.java │ │ │ │ ├── SoftReferenceCache.java │ │ │ │ ├── XBLConstants.java │ │ │ │ ├── XMLConstants.java │ │ │ │ ├── XMLResourceDescriptor.java │ │ │ │ ├── gui │ │ │ │ │ ├── CSSMediaPanel.java │ │ │ │ │ ├── DropDownComponent.java │ │ │ │ │ ├── ExtendedGridBagConstraints.java │ │ │ │ │ ├── JErrorPane.java │ │ │ │ │ ├── LanguageDialog.java │ │ │ │ │ ├── LocationBar.java │ │ │ │ │ ├── MemoryMonitor.java │ │ │ │ │ ├── URIChooser.java │ │ │ │ │ ├── UserStyleDialog.java │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── ActionMap.java │ │ │ │ │ │ ├── ButtonFactory.java │ │ │ │ │ │ ├── JComponentModifier.java │ │ │ │ │ │ ├── JToolbarButton.java │ │ │ │ │ │ ├── JToolbarSeparator.java │ │ │ │ │ │ ├── JToolbarToggleButton.java │ │ │ │ │ │ ├── MenuFactory.java │ │ │ │ │ │ ├── MissingListenerException.java │ │ │ │ │ │ └── ToolBarFactory.java │ │ │ │ │ └── xmleditor │ │ │ │ │ │ ├── XMLContext.java │ │ │ │ │ │ ├── XMLDocument.java │ │ │ │ │ │ ├── XMLEditorKit.java │ │ │ │ │ │ ├── XMLScanner.java │ │ │ │ │ │ ├── XMLTextEditor.java │ │ │ │ │ │ ├── XMLToken.java │ │ │ │ │ │ └── XMLView.java │ │ │ │ ├── io │ │ │ │ │ ├── ASCIIDecoder.java │ │ │ │ │ ├── AbstractCharDecoder.java │ │ │ │ │ ├── CharDecoder.java │ │ │ │ │ ├── GenericDecoder.java │ │ │ │ │ ├── ISO_8859_1Decoder.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── NormalizingReader.java │ │ │ │ │ ├── StreamNormalizingReader.java │ │ │ │ │ ├── StringDecoder.java │ │ │ │ │ ├── StringNormalizingReader.java │ │ │ │ │ ├── UTF16Decoder.java │ │ │ │ │ └── UTF8Decoder.java │ │ │ │ ├── package.html │ │ │ │ └── resources │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── ResourceFormatException.java │ │ │ │ │ └── ResourceManager.java │ │ │ │ └── xml │ │ │ │ ├── LexicalUnits.java │ │ │ │ ├── XMLCharacters.java │ │ │ │ ├── XMLException.java │ │ │ │ ├── XMLScanner.java │ │ │ │ ├── XMLStreamNormalizingReader.java │ │ │ │ └── XMLUtilities.java │ │ │ └── w3c │ │ │ └── dom │ │ │ ├── ElementTraversal.java │ │ │ ├── Location.java │ │ │ ├── Window.java │ │ │ └── events │ │ │ ├── CustomEvent.java │ │ │ ├── DocumentEvent.java │ │ │ ├── Event.java │ │ │ ├── EventException.java │ │ │ ├── EventListener.java │ │ │ ├── EventTarget.java │ │ │ ├── KeyboardEvent.java │ │ │ ├── MouseEvent.java │ │ │ ├── MutationEvent.java │ │ │ ├── MutationNameEvent.java │ │ │ ├── TextEvent.java │ │ │ └── UIEvent.java │ ├── svn-revision │ ├── test-resources │ │ └── org │ │ │ └── apache │ │ │ └── batik │ │ │ ├── apps │ │ │ └── rasterizer │ │ │ │ ├── invalidSVG.svg │ │ │ │ ├── notReadable.svg │ │ │ │ ├── readOnly.png │ │ │ │ ├── readOnly.svg │ │ │ │ └── unitTesting.xml │ │ │ ├── bridge │ │ │ ├── IWasLoaded.jar │ │ │ ├── IWasLoaded.java │ │ │ ├── IWasLoaded.mf │ │ │ ├── IWasLoadedToo.jar │ │ │ ├── IWasLoadedToo.java │ │ │ ├── IWasLoadedToo.mf │ │ │ ├── JarCheckPermissionsDenied.java │ │ │ ├── JarCheckPermissionsDenied.mf │ │ │ ├── JarCheckPermissionsGranted.java │ │ │ ├── JarCheckPermissionsGranted.mf │ │ │ ├── ecmaCheckConstrain.svg │ │ │ ├── ecmaCheckLoad.svg │ │ │ ├── ecmaCheckLoadAny.svg │ │ │ ├── ecmaCheckLoadEmbed.svg │ │ │ ├── ecmaCheckLoadEmbedAttr.svg │ │ │ ├── ecmaCheckLoadSameAsDocument.svg │ │ │ ├── ecmaCheckNoConstrain.svg │ │ │ ├── ecmaCheckNoEmbed.svg │ │ │ ├── ecmaCheckNoLoad.svg │ │ │ ├── ecmaCheckNoLoad2.svg │ │ │ ├── ecmaCheckNoLoadAny.svg │ │ │ ├── ecmaCheckNoLoadEmbed.svg │ │ │ ├── ecmaCheckNoLoadEmbedAttr.svg │ │ │ ├── ecmaCheckNoLoadSameAsDocument.svg │ │ │ ├── ecmaCheckPermissionsDenied.svg │ │ │ ├── ecmaCheckPermissionsDenied2.svg │ │ │ ├── ecmaCheckPermissionsDeniedEval.svg │ │ │ ├── ecmaCheckPermissionsDeniedFunction.svg │ │ │ ├── ecmaCheckPermissionsDeniedScript.svg │ │ │ ├── ecmaCheckPermissionsGranted.svg │ │ │ ├── ecmaCheckPermissionsGrantedEval.svg │ │ │ ├── ecmaCheckPermissionsGrantedFunction.svg │ │ │ ├── ecmaCheckPermissionsGrantedScript.svg │ │ │ ├── ecmaScriptSecurity.svg │ │ │ ├── ecmaScriptSecurity2.svg │ │ │ ├── embedData.svg │ │ │ ├── error │ │ │ │ ├── batikMark.svg │ │ │ │ ├── clipPath-clipPathUnits-invalid.svg │ │ │ │ ├── clipPath-empty.svg │ │ │ │ ├── clipPath-subelement-invalid.svg │ │ │ │ ├── clipPath-uri-illegal.svg │ │ │ │ ├── css-invalid.svg │ │ │ │ ├── ellipse-missing-rx.svg │ │ │ │ ├── ellipse-missing-ry.svg │ │ │ │ ├── ellipse-negative-rx.svg │ │ │ │ ├── ellipse-negative-ry.svg │ │ │ │ ├── feColorMatrix-type-invalid.svg │ │ │ │ ├── feColorMatrix-value-invalid.svg │ │ │ │ ├── feColorMatrix-values-invalid.svg │ │ │ │ ├── feComponentTransfert-type-invalid.svg │ │ │ │ ├── feComponentTransfert-type-missing.svg │ │ │ │ ├── feComponentTransfert-value-invalid.svg │ │ │ │ ├── feComposite-in2-missing.svg │ │ │ │ ├── feComposite-operator-invalid.svg │ │ │ │ ├── feDisplacementMap-channelSelector-invalid.svg │ │ │ │ ├── feDisplacementMap-in2-missing.svg │ │ │ │ ├── feGaussianBlur-stdDeviationX-invalid.svg │ │ │ │ ├── feGaussianBlur-stdDeviationY-invalid.svg │ │ │ │ ├── feImage-badurl.svg │ │ │ │ ├── feMerge-feMergeNode-invalid.svg │ │ │ │ ├── feMorphology-operator-invalid.svg │ │ │ │ ├── feMorphology-radiusX-negative.svg │ │ │ │ ├── feMorphology-radiusY-negative.svg │ │ │ │ ├── feTurbulence-stitchTiles.invalid.svg │ │ │ │ ├── feTurbulence-type-invalid.svg │ │ │ │ ├── filter-empty.svg │ │ │ │ ├── filter-filterPrimitive-invalid.svg │ │ │ │ ├── filter-filterResX-negative.svg │ │ │ │ ├── filter-filterResY-negative.svg │ │ │ │ ├── filter-filterUnits-invalid.svg │ │ │ │ ├── filter-uri-illegal.svg │ │ │ │ ├── image-badurl.svg │ │ │ │ ├── image-missing-height.svg │ │ │ │ ├── image-missing-width.svg │ │ │ │ ├── image-negative-height.svg │ │ │ │ ├── image-negative-width.svg │ │ │ │ ├── linearGradient-empty.svg │ │ │ │ ├── linearGradient-gradientUnits-invalid.svg │ │ │ │ ├── linearGradient-missing-offset.svg │ │ │ │ ├── linearGradient-spreadMethod-invalid.svg │ │ │ │ ├── linearGradient-uri-invalid.svg │ │ │ │ ├── mask-empty.svg │ │ │ │ ├── mask-maskUnits-invalid.svg │ │ │ │ ├── mask-subelement-invalid.svg │ │ │ │ ├── mask-uri-illegal.svg │ │ │ │ ├── path-invalid-d.svg │ │ │ │ ├── pattern-empty.svg │ │ │ │ ├── pattern-patternUnits-invalid.svg │ │ │ │ ├── pattern-subelement-invalid.svg │ │ │ │ ├── polygon-invalid-points.svg │ │ │ │ ├── polyline-invalid-points.svg │ │ │ │ ├── radialGradient-empty.svg │ │ │ │ ├── radialGradient-gradientUnits-invalid.svg │ │ │ │ ├── radialGradient-missing-offset.svg │ │ │ │ ├── radialGradient-r-negative.svg │ │ │ │ ├── radialGradient-r-zero.svg │ │ │ │ ├── radialGradient-spreadMethod-invalid.svg │ │ │ │ ├── rect-missing-height.svg │ │ │ │ ├── rect-missing-width.svg │ │ │ │ ├── rect-negative-height.svg │ │ │ │ ├── rect-negative-rx.svg │ │ │ │ ├── rect-negative-ry.svg │ │ │ │ ├── rect-negative-width.svg │ │ │ │ ├── svg.svg │ │ │ │ ├── test.css │ │ │ │ ├── transform.svg │ │ │ │ └── xml-invalid.svg │ │ │ ├── externalResourcesAccess.svg │ │ │ ├── function.js │ │ │ ├── getURLException.svg │ │ │ ├── iWasLoaded.js │ │ │ ├── iWasLoadedToo.js │ │ │ ├── jarCheckConstrain.svg │ │ │ ├── jarCheckLoad.svg │ │ │ ├── jarCheckLoadAny.svg │ │ │ ├── jarCheckLoadEmbed.svg │ │ │ ├── jarCheckLoadSameAsDocument.svg │ │ │ ├── jarCheckNoConstrain.svg │ │ │ ├── jarCheckNoLoad.svg │ │ │ ├── jarCheckNoLoadAny.svg │ │ │ ├── jarCheckNoLoadEmbed.svg │ │ │ ├── jarCheckNoLoadSameAsDocument.svg │ │ │ ├── jarCheckPermissionsDenied.svg │ │ │ ├── jarCheckPermissionsGranted.svg │ │ │ ├── scriptPermissions.svg │ │ │ ├── scriptPermissions2.svg │ │ │ └── unitTesting.xml │ │ │ ├── css │ │ │ ├── dom │ │ │ │ ├── bug11670.svg │ │ │ │ ├── bug9740-1.css │ │ │ │ ├── bug9740-2.css │ │ │ │ ├── bug9740.svg │ │ │ │ ├── bug9779.svg │ │ │ │ ├── rgbPresentationTest.svg │ │ │ │ ├── rgbTest.svg │ │ │ │ ├── rgbUpdateTest.svg │ │ │ │ └── unitTesting.xml │ │ │ └── engine │ │ │ │ └── value │ │ │ │ └── unitTesting.xml │ │ │ ├── dom │ │ │ ├── bug18143.svg │ │ │ ├── bug20331.svg │ │ │ ├── bug20332.svg │ │ │ ├── dummyXML.xml │ │ │ ├── dummyXML2.xml │ │ │ ├── dummyXML3.xml │ │ │ ├── dummyXML4.xml │ │ │ ├── svg │ │ │ │ ├── bug30580.svg │ │ │ │ ├── bug30580_image.png │ │ │ │ ├── lengthTest.svg │ │ │ │ ├── locatableTest.svg │ │ │ │ ├── presentationAttrRemovalTest.svg │ │ │ │ ├── test.svg │ │ │ │ └── unitTesting.xml │ │ │ └── unitTesting.xml │ │ │ ├── ext │ │ │ └── awt │ │ │ │ ├── geom │ │ │ │ ├── resources │ │ │ │ │ └── TestMessages.properties │ │ │ │ └── unitTesting.xml │ │ │ │ └── image │ │ │ │ └── codec │ │ │ │ ├── resources │ │ │ │ └── Messages.properties │ │ │ │ └── unitTesting.xml │ │ │ ├── gvt │ │ │ ├── resources │ │ │ │ └── TestMessages.properties │ │ │ └── unitTesting.xml │ │ │ ├── parser │ │ │ └── unitTesting.xml │ │ │ ├── script │ │ │ └── rhino │ │ │ │ ├── eval.svg │ │ │ │ └── unitTesting.xml │ │ │ ├── svggen │ │ │ ├── regsvggen.xml │ │ │ └── resources │ │ │ │ ├── Messages.properties │ │ │ │ ├── vangogh.jpg │ │ │ │ └── vangogh.png │ │ │ ├── swing │ │ │ ├── resources │ │ │ │ └── TestMessages.properties │ │ │ └── unitTesting.xml │ │ │ ├── test │ │ │ ├── beSuite.xml │ │ │ ├── interactiveSamples.xml │ │ │ ├── regard.xml │ │ │ ├── regardManual.xml │ │ │ ├── resources │ │ │ │ └── Messages.properties │ │ │ ├── samplesRendering.xml │ │ │ ├── svg │ │ │ │ ├── HTMLReport.xsl │ │ │ │ ├── bug19363.svg │ │ │ │ ├── error.svg │ │ │ │ ├── errorAndEntries.svg │ │ │ │ ├── getCharacterPosition.js │ │ │ │ ├── getCharacterRotation.js │ │ │ │ ├── getComputedTextLength.js │ │ │ │ ├── getExtentOfChar.js │ │ │ │ ├── invalidTestResultElementsNumber.svg │ │ │ │ ├── missingOrEmptyErrorCode.svg │ │ │ │ ├── processingError.svg │ │ │ │ ├── resources │ │ │ │ │ ├── Configuration.properties │ │ │ │ │ ├── Messages.properties │ │ │ │ │ ├── images │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── deco.png │ │ │ │ │ └── style │ │ │ │ │ │ └── style.css │ │ │ │ ├── success.svg │ │ │ │ └── unexpectedResultValue.svg │ │ │ ├── unitTesting.xml │ │ │ └── xml │ │ │ │ ├── dummyTestRun.xml │ │ │ │ ├── resources │ │ │ │ └── Messages.properties │ │ │ │ ├── testSuiteA.xml │ │ │ │ └── testSuiteB.xml │ │ │ ├── transcoder │ │ │ ├── image │ │ │ │ ├── resources │ │ │ │ │ ├── butterfly.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ └── px2mm.svg │ │ │ │ └── unitTesting.xml │ │ │ ├── unitTesting.xml │ │ │ └── wmf │ │ │ │ └── resources │ │ │ │ └── Messages.properties │ │ │ └── util │ │ │ ├── regBase64.xml │ │ │ ├── regParsedURL.xml │ │ │ ├── resources │ │ │ └── TestMessages.properties │ │ │ └── unitTesting.xml │ └── test-sources │ │ └── org │ │ └── apache │ │ └── batik │ │ ├── anim │ │ └── dom │ │ │ └── SystemIdTest.java │ │ ├── apps │ │ └── rasterizer │ │ │ ├── MainTest.java │ │ │ └── SVGConverterTest.java │ │ ├── bridge │ │ ├── EcmaLoadTest.java │ │ ├── EcmaNoLoadTest.java │ │ ├── ExternalResourcesTest.java │ │ ├── JarLoadTest.java │ │ ├── JarNoLoadTest.java │ │ └── ScriptSelfTest.java │ │ ├── css │ │ ├── dom │ │ │ └── EcmaScriptCSSDOMTest.java │ │ └── engine │ │ │ └── value │ │ │ └── PropertyManagerTest.java │ │ ├── dom │ │ ├── AppendChildTest.java │ │ ├── AttrIsIdTest.java │ │ ├── CloneElementTest.java │ │ ├── DOM3Test.java │ │ ├── DOMUtilitiesCharacterEscaping.java │ │ ├── DocumentAdoptNodeTest.java │ │ ├── DocumentNormalizeDocumentTest.java │ │ ├── DocumentRenameNodeTest.java │ │ ├── EcmaScriptDOMTest.java │ │ ├── ElementSetIdAttributeNSTest.java │ │ ├── ElementTraversalTest.java │ │ ├── EventTargetAddEventListenerNSTest.java │ │ ├── GetElementsByTagNameNSTest.java │ │ ├── HasChildNodesTest.java │ │ ├── NodeBaseURITest.java │ │ ├── NodeCompareDocumentPositionTest.java │ │ ├── NodeGetUserDataTest.java │ │ ├── NodeTextContentTest.java │ │ ├── NullNamespaceTest.java │ │ ├── RemoveAttributeTest.java │ │ ├── ReplaceChildTest.java │ │ ├── SerializationTest.java │ │ ├── SetAttributeTest.java │ │ ├── TextReplaceWholeTextTest.java │ │ ├── TextWholeTextTest.java │ │ └── svg │ │ │ ├── CloneNodeTest.java │ │ │ ├── EcmaScriptSVGDOMTest.java │ │ │ └── ImportNodeTest.java │ │ ├── ext │ │ └── awt │ │ │ ├── geom │ │ │ ├── Messages.java │ │ │ └── RectListManagerTest.java │ │ │ └── image │ │ │ └── codec │ │ │ ├── Messages.java │ │ │ └── png │ │ │ ├── Base64PNGEncoderTest.java │ │ │ └── PNGEncoderTest.java │ │ ├── gvt │ │ ├── Messages.java │ │ └── TextSelectionTest.java │ │ ├── parser │ │ ├── LengthParserFailureTest.java │ │ ├── LengthParserTest.java │ │ ├── PathParserFailureTest.java │ │ ├── PathParserTest.java │ │ └── TransformListParserTest.java │ │ ├── script │ │ └── rhino │ │ │ └── ScriptSelfTest.java │ │ ├── svggen │ │ ├── ATransform.java │ │ ├── AttributedCharacterIterator.java │ │ ├── BEExample.java │ │ ├── BStroke.java │ │ ├── BasicShapes.java │ │ ├── BasicShapes2.java │ │ ├── Bug17965.java │ │ ├── Bug21259.java │ │ ├── Bug4389.java │ │ ├── Bug4945.java │ │ ├── Bug6535.java │ │ ├── Clip.java │ │ ├── Color1.java │ │ ├── Color2.java │ │ ├── DoubleString.java │ │ ├── DoubleStringPerformanceTest.java │ │ ├── DrawImage.java │ │ ├── Font1.java │ │ ├── Font2.java │ │ ├── GVector.java │ │ ├── GeneratorContext.java │ │ ├── GetRootTest.java │ │ ├── Gradient.java │ │ ├── GraphicObjects.java │ │ ├── IdentityTest.java │ │ ├── JPainterCompare.java │ │ ├── JPainterComponent.java │ │ ├── Lookup.java │ │ ├── Messages.java │ │ ├── NegativeLengths.java │ │ ├── Painter.java │ │ ├── Paints.java │ │ ├── RHints.java │ │ ├── Rescale.java │ │ ├── SVGAccuracyTest.java │ │ ├── SVGAccuracyTestValidator.java │ │ ├── SVGGeneratorTests.java │ │ ├── ShearTest.java │ │ ├── ShowGraphics2DOutput.java │ │ ├── TextSpacePreserve.java │ │ ├── Texture.java │ │ └── TransformCollapse.java │ │ ├── swing │ │ ├── JSVGCanvasHandler.java │ │ ├── JSVGInterruptTest.java │ │ ├── JSVGMemoryLeakTest.java │ │ ├── NullSetSVGDocumentTest.java │ │ ├── NullURITest.java │ │ ├── SetSVGDocumentTest.java │ │ └── TestMessages.java │ │ ├── test │ │ ├── AbstractTest.java │ │ ├── AbstractTestSuite.java │ │ ├── AssertEqualsException.java │ │ ├── AssertException.java │ │ ├── AssertNullException.java │ │ ├── AssertTrueException.java │ │ ├── DefaultTestReport.java │ │ ├── DefaultTestSuite.java │ │ ├── DefaultTestSuiteReport.java │ │ ├── MemoryLeakTest.java │ │ ├── MemoryLeakTestValidator.java │ │ ├── Messages.java │ │ ├── OnePerformanceTest.java │ │ ├── ParametrizedTest.java │ │ ├── PerformanceTest.java │ │ ├── PerformanceTestValidator.java │ │ ├── SimpleTestReportProcessor.java │ │ ├── SimpleTestRunner.java │ │ ├── Test.java │ │ ├── TestErrorConditionException.java │ │ ├── TestException.java │ │ ├── TestFilter.java │ │ ├── TestReport.java │ │ ├── TestReportProcessor.java │ │ ├── TestReportValidator.java │ │ ├── TestSuite.java │ │ ├── TestSuiteReport.java │ │ ├── svg │ │ │ ├── AbstractRenderingAccuracyTest.java │ │ │ ├── BERenderingTest.java │ │ │ ├── JSVGRenderingAccuracyTest.java │ │ │ ├── Messages.java │ │ │ ├── ParametrizedRenderingAccuracyTest.java │ │ │ ├── PreconfiguredRenderingTest.java │ │ │ ├── SVGAccuracyTestProcessor.java │ │ │ ├── SVGAlternateStyleSheetRenderingAccuracyTest.java │ │ │ ├── SVGMediaRenderingAccuracyTest.java │ │ │ ├── SVGOnLoadExceptionTest.java │ │ │ ├── SVGReferenceRenderingAccuracyTest.java │ │ │ ├── SVGRenderingAccuracyTest.java │ │ │ ├── SVGRenderingAccuracyTestValidator.java │ │ │ ├── SVGTextContentRenderingAccuracyTest.java │ │ │ ├── SamplesRenderingTest.java │ │ │ ├── SelfContainedSVGOnLoadTest.java │ │ │ └── SelfContainedSVGOnLoadTestValidator.java │ │ ├── util │ │ │ └── ImageCompareTest.java │ │ └── xml │ │ │ ├── DummyValidTest.java │ │ │ ├── DummyValidTestSuite.java │ │ │ ├── Messages.java │ │ │ ├── XMLReflect.java │ │ │ ├── XMLReflectConstants.java │ │ │ ├── XMLTestReportProcessor.java │ │ │ ├── XMLTestSuiteLoader.java │ │ │ ├── XMLTestSuiteRunner.java │ │ │ ├── XMLTestSuiteRunnerValidator.java │ │ │ ├── XSLXMLReportConsumer.java │ │ │ ├── XTRConstants.java │ │ │ ├── XTRunConstants.java │ │ │ └── XTSConstants.java │ │ ├── transcoder │ │ ├── TranscoderInputTest.java │ │ ├── image │ │ │ ├── AOITest.java │ │ │ ├── AbstractImageTranscoderTest.java │ │ │ ├── AlternateStylesheetTest.java │ │ │ ├── BackgroundColorTest.java │ │ │ ├── DOMTest.java │ │ │ ├── DefaultFontFamilyTest.java │ │ │ ├── DimensionTest.java │ │ │ ├── GenericDocumentTest.java │ │ │ ├── InputStreamTest.java │ │ │ ├── LanguageTest.java │ │ │ ├── MaxDimensionTest.java │ │ │ ├── MediaTest.java │ │ │ ├── Messages.java │ │ │ ├── ParametrizedDOMTest.java │ │ │ ├── PixelToMMTest.java │ │ │ ├── ReaderTest.java │ │ │ └── URITest.java │ │ └── wmf │ │ │ ├── Messages.java │ │ │ └── WMFAccuracyTest.java │ │ └── util │ │ ├── ApplicationSecurityEnforcerTest.java │ │ ├── Base64Test.java │ │ ├── ParsedURLDataTest.java │ │ ├── ParsedURLTest.java │ │ ├── RunnableQueueTest.java │ │ ├── TestMessages.java │ │ └── ThreadPounder.java └── usb4java-1.2.0 │ ├── AUTHORS.txt │ ├── LICENSE.md │ ├── README.txt │ └── lib │ ├── commons-lang3-3.2.1.jar │ ├── libusb4java-1.2.0-linux-arm.jar │ ├── libusb4java-1.2.0-linux-x86.jar │ ├── libusb4java-1.2.0-linux-x86_64.jar │ ├── libusb4java-1.2.0-osx-x86.jar │ ├── libusb4java-1.2.0-osx-x86_64.jar │ ├── libusb4java-1.2.0-windows-x86.jar │ ├── libusb4java-1.2.0-windows-x86_64.jar │ └── usb4java-1.2.0.jar └── src ├── META-INF └── MANIFEST.MF ├── css └── DefaultStyles.css ├── images ├── AppIcon.gif ├── channel │ ├── mute.svg │ ├── record_arm.svg │ └── solo.svg └── track │ ├── audio_track.svg │ ├── crossfade_a.svg │ ├── crossfade_ab.svg │ ├── crossfade_b.svg │ ├── group_track.svg │ ├── hybrid_track.svg │ ├── instrument_track.svg │ ├── master_track.svg │ ├── multi_layer.svg │ └── return_track.svg └── push22bitwig ├── DisplayEmulator.java ├── LayoutSettings.java ├── Push22Bitwig.java ├── SVGImage.java ├── USBDisplay.java ├── VirtualDisplay.java ├── model ├── ChannelType.java ├── DisplayModel.java └── grid │ ├── AbstractGridElement.java │ ├── ChannelGridElement.java │ ├── ChannelSelectionGridElement.java │ ├── GridElement.java │ ├── ListGridElement.java │ ├── OptionsGridElement.java │ ├── ParamGridElement.java │ └── SendsGridElement.java ├── protocol ├── ProtocolParser.java └── UDPReceiver.java └── util ├── FontCache.java ├── OperatingSystem.java ├── PropertiesEx.java └── TextInputValidator.java /.gitignore: -------------------------------------------------------------------------------- 1 | /classes 2 | INPUT 3 | /Push2Display.config 4 | build 5 | /push2display 6 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Push2Display 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | edu.umd.cs.findbugs.plugin.eclipse.findbugsBuilder 15 | 16 | 17 | 18 | 19 | org.sonarlint.eclipse.core.sonarlintBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.jdt.core.javanature 26 | edu.umd.cs.findbugs.plugin.eclipse.findbugsNature 27 | 28 | 29 | -------------------------------------------------------------------------------- /Build.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem Paths to tools 4 | set TOOLS=C:\Programme\JavaTools 5 | set ANT_HOME=%TOOLS%\apache-ant-1.10.3 6 | 7 | 8 | rem Options 9 | set ANT_OPTS=-Xmx512m 10 | 11 | rem Paths 12 | set BUILD=build 13 | set CHECKOUT=. 14 | 15 | %ANT_HOME%\bin\ant -Dbuild=%BUILD% -Dcheckout=%CHECKOUT% 16 | pause -------------------------------------------------------------------------------- /lib/batik-1.8/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Batik 2 | Copyright 1999-2007 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This software contains code from the World Wide Web Consortium (W3C) for the 8 | Document Object Model API (DOM API) and SVG Document Type Definition (DTD). 9 | 10 | This software contains code from the International Organisation for 11 | Standardization for the definition of character entities used in the software's 12 | documentation. 13 | 14 | This product includes images from the Tango Desktop Project 15 | (http://tango.freedesktop.org/). 16 | 17 | This product includes images from the Pasodoble Icon Theme 18 | (http://www.jesusda.com/projects/pasodoble). 19 | -------------------------------------------------------------------------------- /lib/batik-1.8/batik-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/batik-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/batik-rasterizer-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/batik-rasterizer-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/batik-slideshow-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/batik-slideshow-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/batik-squiggle-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/batik-squiggle-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/batik-svgpp-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/batik-svgpp-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/batik-ttf2svg-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/batik-ttf2svg-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/contrib/charts/README: -------------------------------------------------------------------------------- 1 | # 2 | # Author : Vincent Hardy 3 | # Version : $Id: README 200341 2001-10-22 09:29:39Z vhardy $ 4 | # 5 | 6 | Content of this directory 7 | ========================= 8 | 9 | This directory contains XSL stylesheets to create charts from XML data. 10 | This has been contributed by John Morrison (john.r.morrison@ntlworld.com). 11 | 12 | The directory contains stylesheets for different kinds of charts, 13 | such as bar charts and pie charts. The directory contains an example 14 | of XML document that can be processed by the XSL stylesheets. The DTD has 15 | not been contributed yet but will be added shortly. 16 | 17 | -------------------------------------------------------------------------------- /lib/batik-1.8/contrib/charts/lcp.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: ---------------------------------------------------------------------------- 3 | :: 4 | :: Licensed to the Apache Software Foundation (ASF) under one or more 5 | :: contributor license agreements. See the NOTICE file distributed with 6 | :: this work for additional information regarding copyright ownership. 7 | :: The ASF licenses this file to You under the Apache License, Version 2.0 8 | :: (the "License"); you may not use this file except in compliance with 9 | :: the License. You may obtain a copy of the License at 10 | :: 11 | :: http://www.apache.org/licenses/LICENSE-2.0 12 | :: 13 | :: Unless required by applicable law or agreed to in writing, software 14 | :: distributed under the License is distributed on an "AS IS" BASIS, 15 | :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | :: See the License for the specific language governing permissions and 17 | :: limitations under the License. 18 | :: 19 | :: $Id: lcp.bat 475543 2006-11-16 02:43:17Z cam $ 20 | :: ---------------------------------------------------------------------------- 21 | set LOCALCLASSPATH=%LOCALCLASSPATH%;%1 22 | 23 | -------------------------------------------------------------------------------- /lib/batik-1.8/contrib/fonts/gladiator/README: -------------------------------------------------------------------------------- 1 | # 2 | # Author : Vincent Hardy 3 | # Version : $Id: README 475209 2006-11-15 11:54:06Z cam $ 4 | # 5 | 6 | Content of this directory 7 | ========================= 8 | 9 | This directory contains fonts contributed by Bert Bos to the Apache Batik 10 | project. The svg directory contains SVG fonts and the ttf directory contains 11 | the fonts in the True Type format. 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/contrib/rasterizertask/README: -------------------------------------------------------------------------------- 1 | # 2 | # Author : Henri Ruini 3 | # Version : $Id: README 1372226 2012-08-13 00:49:54Z helder $ 4 | # 5 | 6 | Content of this directory 7 | ========================= 8 | 9 | This directory contains rasterizer task for Ant. The task can be used to 10 | convert SVG files to raster format. This has been contributed by 11 | Henri Ruini (ruini@iki.fi). 12 | 13 | The directory contains source code for the task. To compile the code 14 | you need to compile Batik first and then compile the task by typing 15 | .\build.bat compile 16 | in this directory. Type 17 | .\build.bat help 18 | to display other available targets. In Linux and similar, replace ".\" with 19 | "./" and ".bat" with ".sh" (without the quotes). 20 | 21 | NOTE: Due the internal changes in Ant itself the rasterizer task may not 22 | work if the Ant in use is a different version from the Ant used to build 23 | the task. Use the same Ant version to build and to execute task to avoid 24 | strange problems. 25 | 26 | At least JDK 1.4 is needed to build and execute the task. 27 | 28 | -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/AppletDemo$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/AppletDemo$1.class -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/AppletDemo$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/AppletDemo$2.class -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/AppletDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/AppletDemo.class -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/Makefile: -------------------------------------------------------------------------------- 1 | AppletDemo.class : AppletDemo.java 2 | javac -classpath .:batik-awt-util.jar:batik-bridge.jar:batik-css.jar:batik-dom.jar:batik-ext.jar:batik-gvt.jar:batik-parser.jar:batik-script.jar:batik-svg-dom.jar:batik-swing.jar:batik-util.jar:batik-xml.jar:xml-apis-dom3.jar AppletDemo.java 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-awt-util.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-awt-util.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-bridge.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-bridge.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-css.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-css.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-dom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-dom.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-ext.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-ext.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-gvt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-gvt.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-parser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-parser.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-script.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-script.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-svg-dom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-svg-dom.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-swing.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-swing.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-util.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-util.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/batik-xml.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/batik-xml.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/demo/xml-apis-dom3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/demo/xml-apis-dom3.jar -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/content/xdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/content/xdocs/favicon.ico -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/HighLevelArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/HighLevelArchitecture.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/apache-xml-graphics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/apache-xml-graphics.gif -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/apache-xml-graphics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/apache-xml-graphics.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/apache-xml-graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/apache-xml-graphics.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/batik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/batik.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/batikUses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/batikUses.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/group-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/group-logo-dark.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/group-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/group-logo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/group-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/group-logo.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/group-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/group-logo.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/jarDependImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/jarDependImg.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/logo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/splash.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgapplication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgapplication.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svggen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svggen.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svggenHighLevelArchi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svggenHighLevelArchi.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerAOI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerAOI.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerBrowsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerBrowsing.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerDefaultRegular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerDefaultRegular.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerDefaultRegular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerDefaultRegular.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerFileOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerFileOpen.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerLocationBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerLocationBar.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerMultipleFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerMultipleFiles.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerOpenPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerOpenPage.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerPan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerPan.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerPreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerPreferences.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerThumbnail.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerViewSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerViewSource.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerViewTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerViewTree.png -------------------------------------------------------------------------------- /lib/batik-1.8/documentation-sources/resources/images/svgviewerZoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/documentation-sources/resources/images/svgviewerZoomin.png -------------------------------------------------------------------------------- /lib/batik-1.8/extensions/README.txt: -------------------------------------------------------------------------------- 1 | The Jar files in this directory start the same application as in the 2 | parent directory, except they include the Batik Extensions on the jar 3 | file class path. This means that that the Batik Extensions will work 4 | with the applications started by these jar files. 5 | 6 | Great care should be used when using the Batik Extensions as these are 7 | not part of the SVG standard. If you write content that uses these 8 | extensions you must be aware that this is not conformant SVG content 9 | and other SVG renderers will not render these documents. These 10 | extensions should only be used in content used in closed systems. 11 | 12 | The primary purpose of these extensions is demonstrative and to 13 | generate feedback to the development of the SVG standard. 14 | -------------------------------------------------------------------------------- /lib/batik-1.8/extensions/batik-rasterizer-ext-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/extensions/batik-rasterizer-ext-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/extensions/batik-squiggle-ext-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/extensions/batik-squiggle-ext-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/LICENSE.dom-documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/LICENSE.dom-documentation.txt -------------------------------------------------------------------------------- /lib/batik-1.8/lib/LICENSE.dom-software.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/LICENSE.dom-software.txt -------------------------------------------------------------------------------- /lib/batik-1.8/lib/LICENSE.fop-transcoder-allinone-1.1.txt: -------------------------------------------------------------------------------- 1 | The fop-transcoder-allinone-1.1.jar file is licensed under the Apache License 2.0, which 2 | can be found in the distribution root directory in the LICENSE file. 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/LICENSE.sax.txt: -------------------------------------------------------------------------------- 1 | xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt 201084 2002-12-09 16:15:21Z vhardy $ 2 | 3 | 4 | This license came from: http://www.megginson.com/SAX/copying.html 5 | However please note future versions of SAX may be covered 6 | under http://saxproject.org/?selected=pd 7 | 8 | 9 | This page is now out of date -- see the new SAX site at 10 | http://www.saxproject.org/ for more up-to-date 11 | releases and other information. Please change your bookmarks. 12 | 13 | 14 | SAX2 is Free! 15 | 16 | I hereby abandon any property rights to SAX 2.0 (the Simple API for 17 | XML), and release all of the SAX 2.0 source code, compiled code, and 18 | documentation contained in this distribution into the Public Domain. 19 | SAX comes with NO WARRANTY or guarantee of fitness for any 20 | purpose. 21 | 22 | David Megginson, david@megginson.com 23 | 2000-05-05 -------------------------------------------------------------------------------- /lib/batik-1.8/lib/LICENSE.xalan-2.7.0.txt: -------------------------------------------------------------------------------- 1 | The xalan-2.7.0.jar file is licensed under the Apache License 2.0, which 2 | can be found in the distribution root directory in the LICENSE file. 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/NOTICE.xmlgraphics-commons-2.0.txt: -------------------------------------------------------------------------------- 1 | Apache XML Graphics Commons 2 | Copyright 2006-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/README.fop-transcoder-allinone-1.1.txt: -------------------------------------------------------------------------------- 1 | The fop-transcoder-allinone-1.1.jar file is built from the Apache FOP project 2 | (http://xmlgraphics.apache.org/fop), version 1.1. 3 | 4 | This is only needed if you want to transcode to PDF, otherwise it can 5 | be removed. 6 | 7 | The pdf-transcoder.jar file is licensed under the Apache License 2.0, which 8 | can be found in the distribution root directory in the LICENSE file. 9 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/README.js.txt: -------------------------------------------------------------------------------- 1 | This distribution includes a binary distribution of Mozilla Rhino 1.6 release 5 2 | plus one patch. 3 | 4 | You can get the unpatched 1.6R5 release of Rhino from the following URL: 5 | 6 | ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_6R5.zip 7 | 8 | To obtain the source code for the 1.6R5 release of Rhino, issue the following 9 | commands: 10 | 11 | cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot \ 12 | co -D2006-11-20 mozilla/js/rhino 13 | 14 | The patch is available here: 15 | 16 | https://bugzilla.mozilla.org/attachment.cgi?id=288467 17 | 18 | which is attached to this bug: 19 | 20 | https://bugzilla.mozilla.org/show_bug.cgi?id=367627 21 | 22 | Rhino is licensed under both the MPL (Mozilla Public License) 1.1 and the 23 | GPL (GNU General Public License) 2.0, which are in the LICENSE.js.txt file. 24 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/README.xalan-2.7.0.txt: -------------------------------------------------------------------------------- 1 | The xalan-2.7.0.jar file comes from the Apache Xalan project 2 | (http://xml.apache.org/xalan-j/), and is licensed under the 3 | Apache License 2.0, which can be found in the distribution root directory 4 | in the LICENSE file. 5 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/README.xerces_2_5_0.txt: -------------------------------------------------------------------------------- 1 | The xerces_2_5_0.jar file comes from the Apache Xerces project 2 | (http://xml.apache.org/dist/xerces-j/), and is licensed under the 3 | Apache Software License, Version 1.1, which is in the 4 | LICENSE.xerces_2_5_0.txt file. 5 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/README.xml-apis-1.3.04.txt: -------------------------------------------------------------------------------- 1 | This distribution includes xml-apis.jar from the XML Commons External 2 | 1.3.04 binary distribution, which can also be obtained from: 3 | 4 | http://xml.apache.org/mirrors.cgi 5 | 6 | Source code is available from the XML Commons web site: 7 | 8 | http://xml.apache.org/commons/ 9 | 10 | xml-apis.jar contains: 11 | 12 | - DOM Level 2 Events 13 | - DOM Level 2 HTML 14 | - DOM Level 2 Style 15 | - DOM Level 2 Traversal and Range 16 | - DOM Level 2 Views 17 | - DOM Level 3 Core 18 | - DOM Level 3 Load and Save 19 | - DOM Level 3 XPath 20 | - JAXP 1.3 (JSR 206) 21 | - SAX 22 | 23 | All DOM code is licensed under the W3C Software License, and DOM documentation 24 | under the W3C Document License. See LICENSE.dom-software.txt and 25 | LICENSE.dom-documentation.txt. 26 | 27 | The JAXP 1.3 code is licensed under the Apache Software License 2.0, which is 28 | in the LICENSE in the root directory of this distribution. 29 | 30 | SAX is public domain. See LICENSE.sax.txt. 31 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/README.xml-apis-ext-1.3.04.txt: -------------------------------------------------------------------------------- 1 | This distribution includes xml-apis-ext.jar from the XML Commons External 2 | 1.3.04 binary distribution, which can also be obtained from: 3 | 4 | http://xml.apache.org/mirrors.cgi 5 | 6 | Source code is available from the XML Commons web site: 7 | 8 | http://xml.apache.org/commons/ 9 | 10 | xml-apis-ext.jar contains: 11 | 12 | - SAC 1.3 13 | - SMIL Java bindings 14 | - SVG 1.1 Java bindings 15 | 16 | SAC 1.3, the SMIL Java bindings and the SVG 1.1 Java bindings are licensed 17 | under the W3C Software License. Related documentation is licensed under the 18 | W3C Document License. See LICENSE.dom-software.txt and 19 | LICENSE.dom-documentation.txt. 20 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/Squiggle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/Squiggle.icns -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-anim-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-anim-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-awt-util-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-awt-util-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-bridge-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-bridge-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-codec-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-codec-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-css-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-css-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-dom-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-dom-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-ext-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-ext-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-extension-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-extension-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-gui-util-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-gui-util-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-gvt-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-gvt-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-parser-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-parser-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-script-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-script-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-svg-dom-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-svg-dom-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-svggen-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-svggen-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-swing-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-swing-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-transcoder-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-transcoder-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-util-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-util-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/batik-xml-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/batik-xml-1.8.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/build/LICENSE.ant-1.6.5.txt: -------------------------------------------------------------------------------- 1 | The ant-1.6.5.jar and ant-launcher-1.6.5.jar files are licensed under the 2 | Apache License 2.0, which can be found in the distribution root directory in 3 | the LICENSE file. 4 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/build/README.ant-1.6.5.txt: -------------------------------------------------------------------------------- 1 | The ant-1.6.5.jar and ant-launcher-1.6.5.jar files come from the Apache 2 | Ant project (http://ant.apache.org/). 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/build/README.crimson-1.1.3.txt: -------------------------------------------------------------------------------- 1 | The crimson-1.1.3.jar file comes from the Apache XML project 2 | (http://xml.apache.org/crimson/), and is licensed under the Apache Software 3 | License, Version 1.1, which can be found in the LICENSE.crimson-1.1.3.txt 4 | file. 5 | -------------------------------------------------------------------------------- /lib/batik-1.8/lib/build/ant-1.6.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/build/ant-1.6.5.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/build/ant-launcher-1.6.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/build/ant-launcher-1.6.5.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/build/crimson-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/build/crimson-1.1.3.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/fop-transcoder-allinone-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/fop-transcoder-allinone-1.1.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/js.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/js.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/xalan-2.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/xalan-2.7.0.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/xerces_2_5_0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/xerces_2_5_0.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/xml-apis-1.3.04.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/xml-apis-1.3.04.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/xml-apis-ext-1.3.04.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/xml-apis-ext-1.3.04.jar -------------------------------------------------------------------------------- /lib/batik-1.8/lib/xmlgraphics-commons-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/lib/xmlgraphics-commons-2.0.jar -------------------------------------------------------------------------------- /lib/batik-1.8/resources/META-INF/services/org.apache.batik.apps.svgbrowser.SquiggleInputHandler: -------------------------------------------------------------------------------- 1 | # ----------------------------------------------------------------------------- 2 | # 3 | # Licensed to the Apache Software Foundation (ASF) under one or more 4 | # contributor license agreements. See the NOTICE file distributed with 5 | # this work for additional information regarding copyright ownership. 6 | # The ASF licenses this file to You under the Apache License, Version 2.0 7 | # (the "License"); you may not use this file except in compliance with 8 | # the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | # $Id: org.apache.batik.apps.svgbrowser.SquiggleInputHandler 498556 2007-01-22 08:16:03Z cam $ 19 | # ----------------------------------------------------------------------------- 20 | 21 | # org.apache.batik.apps.svgbrowser.XMLInputHandler 22 | -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/batik.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/batik.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/blank.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/captureClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/captureClick.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/comment.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/disabledRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/disabledRedo.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/disabledUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/disabledUndo.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-open-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-open-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-open.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-print-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-print-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/document-print.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/dom-viewer-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/dom-viewer-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/dom-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/dom-viewer.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/edit-find-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/edit-find-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/edit-find.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/element.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/element.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/enableOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/enableOverlay.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-next-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-next-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-next.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-previous-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-previous-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/go-previous.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-general-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-general-dark.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-general.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-language-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-language-dark.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-language.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-network-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-network-dark.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-network.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-security-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-security-dark.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-security.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-stylesheet-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-stylesheet-dark.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-stylesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/icon-stylesheet.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-pause-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-pause-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-pause.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-start-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-start-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-start.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/pi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/pi.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/process-stop-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/process-stop-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/process-stop.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/redo.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/squiggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/squiggle.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/squiggleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/squiggleIcon.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/system-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/system-search.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/text.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/undo.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/utilities-system-monitor-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/utilities-system-monitor-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/utilities-system-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/utilities-system-monitor.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/view-refresh-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/view-refresh-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/view-refresh.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/window-new-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/window-new-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/window-new.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-in-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-in-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-in.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-out-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-out-small.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/apps/svgbrowser/resources/zoom-out.png -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/bridge/resources/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/bridge/resources/help.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/bridge/resources/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/bridge/resources/move.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/dom/svg/resources/UserAgentStyleSheet.css: -------------------------------------------------------------------------------- 1 | /* 2 | * The default SVG style sheet. 3 | */ 4 | svg, symbol, image, marker, pattern, foreignObject { overflow: hidden } 5 | 6 | /* svg { width:attr(width); height:attr(height) } */ 7 | -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/ext/awt/image/codec/properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/ext/awt/image/codec/properties -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/ext/swing/resources/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/ext/swing/resources/Messages.properties -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/extensions/README.txt: -------------------------------------------------------------------------------- 1 | The Jar files in this directory start the same application as in the 2 | parent directory, except they include the Batik Extensions on the jar 3 | file class path. This means that that the Batik Extensions will work 4 | with the applications started by these jar files. 5 | 6 | Great care should be used when using the Batik Extensions as these are 7 | not part of the SVG standard. If you write content that uses these 8 | extensions you must be aware that this is not conformant SVG content 9 | and other SVG renderers will not render these documents. These 10 | extensions should only be used in content used in closed systems. 11 | 12 | The primary purpose of these extensions is demonstrative and to 13 | generate feedback to the development of the SVG standard. 14 | -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/swing/resources/batikColor16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/swing/resources/batikColor16x16.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/swing/resources/batikColor32x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/swing/resources/batikColor32x32.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/swing/resources/batikMono16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/swing/resources/batikMono16x16.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/swing/resources/batikMono32x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/swing/resources/batikMono32x32.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/blank.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_C.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_aa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_aa.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ab.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_af.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_af.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ar.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_as.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_as.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ay.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_az.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_az.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_be.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_be.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bg.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bi.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_blank.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bn.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_bo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_br.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ca.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ch.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_co.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_cs.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_cy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_cy.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_da.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_da.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_de.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_dz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_dz.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_el.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_el.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_en.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_en_UK.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_en_UK.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_eo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_eo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_es.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_et.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_et.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_eu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_eu.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fa.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fi.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fj.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fr.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fr_CA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_fr_CA.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ga.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ga.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_gd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_gd.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_gn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_gn.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ha.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_he.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_he.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_hr.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_hu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_hu.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_hy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_hy.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ij.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ij.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_in.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_is.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_is.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_it.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ja.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ja.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ka.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ka.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_kk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_kk.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_kl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_kl.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_km.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_km.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ko.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ko.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ku.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ky.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_la.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_la.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ln.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_lo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_lo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_lt.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_lv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_lv.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mg.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mi.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mk.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mn.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ms.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_mt.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_my.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_my.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_na.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ne.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_nl.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_no.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_or.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_or.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_pl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_pl.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ps.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_pt.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_pt_BR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_pt_BR.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_qu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_qu.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_rn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_rn.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ro.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ru.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_rw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_rw.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_se.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_si.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_si.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sk.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sl.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sm.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_so.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_so.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sq.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sr.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ss.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_st.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_st.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sv.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_sw.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tg.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_th.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_th.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tk.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tl.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tn.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_to.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_to.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tr.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_ts.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_tw.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_uk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_uk.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_us_eu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_us_eu.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_uz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_uz.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_vi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_vi.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_vo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_vo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_wo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_wo.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_xh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_xh.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_zh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_zh.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_zu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/flags/flag_zu.gif -------------------------------------------------------------------------------- /lib/batik-1.8/resources/org/apache/batik/util/gui/resources/text-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/resources/org/apache/batik/util/gui/resources/text-html.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/extensions/extension.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .title { 21 | font-family: Arial, Helvetica; 22 | font-size: 16; 23 | text-anchor: middle; 24 | } 25 | .legend { 26 | font-family: Arial, Helvetica; 27 | font-size: 10; 28 | text-anchor: middle; 29 | } 30 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/extensions/histogramNormalization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/extensions/histogramNormalization.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/mapSpain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/mapSpain.svg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/mapWaadt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/mapWaadt.svg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/icc/changeColor.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/icc/changeColor.icm -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/arabic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/arabic.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/bmpCursor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/bmpCursor.bmp -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/brushedMetal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/brushedMetal.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/canaryRelief.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/canaryRelief.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotCenter.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotCenterBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotCenterBig.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotCenterSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotCenterSmall.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotE.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotN.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotNE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotNE.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotNW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotNW.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotS.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotSE.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotSW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotSW.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/hotSpotW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/hotSpotW.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/jpeg.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/jpegCursor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/jpegCursor.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/operaBridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/operaBridge.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/operaSteps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/operaSteps.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/operaWalk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/operaWalk.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/png.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/png2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/png2.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/pngCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/pngCursor.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/sm_colors.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/sm_colors.tif -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/sm_colors_pb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/sm_colors_pb.tif -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/sm_colors_pb_tile.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/sm_colors_pb_tile.tif -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/sm_colors_tile.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/sm_colors_tile.tif -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/spainRelief.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/spainRelief.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/svg.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/tde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/tde.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/tiffCursor.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/tiffCursor.tif -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/images/toBeProfiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/images/toBeProfiled.png -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/java/resources/com/test/script/java-binding.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | SVG-Handler-Class: com.test.script.EventListenerInitializerImpl 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/java/resources/com/untrusted/script/security2.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Script-Handler: com.untrusted.script.UntrustedScriptHandler 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/basicsad.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .smiling { 21 | visibility: hidden; 22 | } 23 | 24 | .basicsad { 25 | visibility: visible; 26 | } 27 | 28 | .wow { 29 | visibility: hidden; 30 | } 31 | 32 | .grim { 33 | visibility: hidden; 34 | } 35 | 36 | .oups { 37 | visibility: hidden; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/cold.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .logo { 21 | fill: RoyalBlue; 22 | } 23 | 24 | .light { 25 | lighting-color: #dfd; 26 | } 27 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/cssMediaPrint.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .fancyBackground { 21 | visibility: hidden; 22 | } 23 | 24 | .background { 25 | fill: white; 26 | stroke: none; 27 | } 28 | 29 | .sectionTitle { 30 | stroke: none; 31 | fill: black; 32 | font-size: 14; 33 | } 34 | 35 | .sectionContent { 36 | visibility: visible; 37 | font-size: 10; 38 | fill: black; 39 | stroke: none; 40 | } 41 | 42 | 43 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/cssMediaProjection.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .fancyBackground { 21 | visibility: visible; 22 | } 23 | 24 | .background { 25 | fill: black; 26 | stroke: none; 27 | } 28 | 29 | .sectionTitle { 30 | stroke: none; 31 | fill: white; 32 | font-size: 14; 33 | font-weight: bold; 34 | } 35 | 36 | .sectionContent { 37 | visibility: hidden; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/cssMediaScreen.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .fancyBackground { 21 | visibility: hidden; 22 | } 23 | 24 | .background { 25 | fill: black; 26 | stroke: none; 27 | } 28 | 29 | .sectionTitle { 30 | stroke: none; 31 | fill: white; 32 | font-size: 14; 33 | } 34 | 35 | .sectionContent { 36 | visibility: visible; 37 | font-size: 10; 38 | fill: white; 39 | stroke: none; 40 | } 41 | 42 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/default.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .smiling { 21 | visibility: hidden; 22 | } 23 | 24 | .basicsad { 25 | visibility: hidden; 26 | } 27 | 28 | .wow { 29 | visibility: hidden; 30 | } 31 | 32 | .grim { 33 | visibility: hidden; 34 | } 35 | 36 | .oups { 37 | visibility: hidden; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/grim.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .smiling { 21 | visibility: hidden; 22 | } 23 | 24 | .basicsad { 25 | visibility: hidden; 26 | } 27 | 28 | .wow { 29 | visibility: hidden; 30 | } 31 | 32 | .grim { 33 | visibility: visible; 34 | } 35 | 36 | .oups { 37 | visibility: hidden; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/hot.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .logo { 21 | fill: crimson; 22 | } 23 | 24 | .light { 25 | lighting-color: #ffd; 26 | } 27 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/oups.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .smiling { 21 | visibility: hidden; 22 | } 23 | 24 | .basicsad { 25 | visibility: hidden; 26 | } 27 | 28 | .wow { 29 | visibility: hidden; 30 | } 31 | 32 | .grim { 33 | visibility: hidden; 34 | } 35 | 36 | .oups { 37 | visibility: visible; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/smiling.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .smiling { 21 | visibility: visible; 22 | } 23 | 24 | .basicsad { 25 | visibility: hidden; 26 | } 27 | 28 | .wow { 29 | visibility: hidden; 30 | } 31 | 32 | .grim { 33 | visibility: hidden; 34 | } 35 | 36 | .oups { 37 | visibility: hidden; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/subdir/useStylesheet.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | /* for the defs.svg part */ 21 | .colorClassStylesheet { 22 | fill: gold; 23 | } 24 | 25 | .pattClassStylesheet { 26 | fill: url(../../svg/defs.svg#patternExtReference); 27 | } 28 | 29 | .gradClassStylesheet { 30 | fill: url(../../svg/defs.svg#extGrad3); 31 | } 32 | 33 | .colorOrangeStylesheet { 34 | fill: orange; 35 | } 36 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/subdir/useStylesheet2.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | /* for the useStylesheet.svg part */ 21 | .gradClass2 { 22 | fill: url(../../../spec/structure/useStylesheet.svg#grad); 23 | } 24 | 25 | .colorClass2 { 26 | fill: crimson; 27 | } 28 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/test.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .title { 21 | font-family: Arial, Helvetica; 22 | font-size: 16; 23 | text-anchor: middle; 24 | } 25 | .legend { 26 | font-family: Arial, Helvetica; 27 | font-size: 10; 28 | text-anchor: middle; 29 | } 30 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/style/wow.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .smiling { 21 | visibility: hidden; 22 | } 23 | 24 | .basicsad { 25 | visibility: hidden; 26 | } 27 | 28 | .wow { 29 | visibility: visible; 30 | } 31 | 32 | .grim { 33 | visibility: hidden; 34 | } 35 | 36 | .oups { 37 | visibility: hidden; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/ttf/glb12.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/ttf/glb12.ttf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/wmf/batik-rendering-nothing2.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/wmf/batik-rendering-nothing2.wmf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/wmf/black_shapes.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/wmf/black_shapes.wmf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/wmf/imageWMF.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/wmf/imageWMF.wmf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/wmf/negApmText1.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/wmf/negApmText1.wmf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/wmf/negApmText2.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/wmf/negApmText2.wmf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/wmf/testChart.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/wmf/testChart.wmf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/resources/wmf/textGreek.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/resources/wmf/textGreek.wmf -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec/interactivity/cursorImage.svg: -------------------------------------------------------------------------------- 1 | 19 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec/interactivity/cursorImage2.svg: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec/styling/emptyStyle.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/paints/ncp-example.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/paints/ncp-example.icc -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/multi-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/multi-2.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/multi-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/multi-3.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/multi-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/multi-4.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/multi-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/multi-5.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-1.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-2.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-3.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-4.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-0-5.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-1.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-2.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-3.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-4.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-1-5.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-1.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-2.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-3.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-4.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-2-5.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-1.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-2.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-3.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-4.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-0-3-5.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-0-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-0-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-0-1.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-0-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-0-2.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-1-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-1-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-1-1.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-1-1-2.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-2-0-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-2-0-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-2-0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-2-0-1.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-3-0-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/samples/tests/spec12/structure/opera/multires/opera-3-0-0.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/sources/Squiggle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/sources/Squiggle.icns -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/apps/svgbrowser/DOMDocumentTreeController.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.apache.batik.apps.svgbrowser; 20 | 21 | /** 22 | * Provides the information to control the DOMDocumentTree behaviour. 23 | */ 24 | public interface DOMDocumentTreeController { 25 | 26 | /** 27 | * Returns whether the DOMDocumentTree supports drag-and-drop. 28 | */ 29 | boolean isDNDSupported(); 30 | } 31 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/bridge/NoRepaintRunnable.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.apache.batik.bridge; 20 | 21 | /** 22 | * A tagging interface to prevent a repaint at the end of the 23 | * execution of this runnable. 24 | * 25 | * @author Stephane Hillion 26 | * @version $Id: NoRepaintRunnable.java 475477 2006-11-15 22:44:28Z cam $ 27 | */ 28 | public interface NoRepaintRunnable extends Runnable { 29 | } 30 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/bridge/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Bridge Package 6 | 7 | 8 | 9 | Provides an API for mapping and maintaining consistency between 10 | the SVG DOM tree and the GVT tree. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/css/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides the classes for accessing CSS2 through DOM level 2 interfaces. 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/css/parser/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.apache.batik.css.parser 5 | 6 | 7 | 8 | Provides a CSS parser conform to the 9 | SAC API. 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/events/DOMEvent.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.apache.batik.dom.events; 20 | 21 | /** 22 | * A simple event. 23 | * 24 | * @author Stephane Hillion 25 | * @version $Id: DOMEvent.java 475477 2006-11-15 22:44:28Z cam $ 26 | */ 27 | public class DOMEvent extends AbstractEvent { 28 | 29 | } 30 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/events/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides an implementation of the DOM level 2 events module. 6 |

7 | It is composed of utility classes independant from a given 8 | DOM core implementation. 9 | 10 | 11 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides an implementation of the DOM level 2 core module. 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/svg/ListBuilder.java: -------------------------------------------------------------------------------- 1 | package org.apache.batik.dom.svg; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | /** 7 | * A class for receiving notification of parsed list items. 8 | */ 9 | public class ListBuilder implements ListHandler { 10 | 11 | /** 12 | * 13 | */ 14 | private final AbstractSVGList abstractSVGList; 15 | 16 | /** 17 | * @param abstractSVGList 18 | */ 19 | public ListBuilder(AbstractSVGList abstractSVGList) { 20 | this.abstractSVGList = abstractSVGList; 21 | } 22 | 23 | /** 24 | * The list being built. 25 | */ 26 | protected List list; 27 | 28 | /** 29 | * Returns the newly created list. 30 | */ 31 | public List getList() { 32 | return list; 33 | } 34 | 35 | /** 36 | * Begins the construction of the list. 37 | */ 38 | public void startList(){ 39 | list = new ArrayList(); 40 | } 41 | 42 | /** 43 | * Adds an item to the list. 44 | */ 45 | public void item(SVGItem item) { 46 | item.setParent(this.abstractSVGList); 47 | list.add(item); 48 | } 49 | 50 | /** 51 | * Ends the construction of the list. 52 | */ 53 | public void endList() { 54 | } 55 | } -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/svg12/Global.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2005 World Wide Web Consortium, 3 | * 4 | * (Massachusetts Institute of Technology, European Research Consortium for 5 | * Informatics and Mathematics, Keio University). All Rights Reserved. This 6 | * work is distributed under the W3C(r) Software License [1] in the hope that 7 | * it will be useful, but WITHOUT ANY WARRANTY; without even the implied 8 | * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * 10 | * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 11 | * 12 | * Modifications: 13 | * 14 | * September 18, 2005 15 | * Translated IDL to Java. 16 | * Placed interface in org.apache.batik.dom.svg12 for the time being. 17 | * Added javadocs. 18 | */ 19 | package org.apache.batik.dom.svg12; 20 | 21 | /** 22 | * Interface for a global scripting object. 23 | * Eventually will move to a W3C package. 24 | * 25 | * @version $Id: Global.java 498740 2007-01-22 18:35:57Z dvholten $ 26 | */ 27 | public interface Global { 28 | } 29 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/traversal/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides an implementation of the DOM level 2 traversal module. 6 |

7 | It is composed of utility classes independant from a given 8 | DOM core implementation. 9 | 10 | 11 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/util/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides some utility classes for the implementation of the DOM. 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/xbl/OriginalEvent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2005 World Wide Web Consortium, 3 | * 4 | * (Massachusetts Institute of Technology, European Research Consortium for 5 | * Informatics and Mathematics, Keio University). All Rights Reserved. This 6 | * work is distributed under the W3C(r) Software License [1] in the hope that 7 | * it will be useful, but WITHOUT ANY WARRANTY; without even the implied 8 | * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * 10 | * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 11 | * 12 | * Modifications: 13 | * 14 | * September 10, 2005 15 | * Placed interface in org.apache.batik.dom.xbl for the time being. 16 | * Added javadocs. 17 | */ 18 | package org.apache.batik.dom.xbl; 19 | 20 | import org.w3c.dom.events.Event; 21 | 22 | /** 23 | * Interface implemented by Event objects usable in an XBL processing 24 | * document. 25 | * Eventually will move to org.w3c.dom.xbl (or some such package). 26 | * 27 | * @version $Id: OriginalEvent.java 498740 2007-01-22 18:35:57Z dvholten $ 28 | */ 29 | public interface OriginalEvent { 30 | 31 | /** 32 | * Gets the event from which this event was cloned. 33 | */ 34 | Event getOriginalEvent(); 35 | } 36 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/dom/xbl/XBLShadowTreeElement.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2005 World Wide Web Consortium, 3 | * 4 | * (Massachusetts Institute of Technology, European Research Consortium for 5 | * Informatics and Mathematics, Keio University). All Rights Reserved. This 6 | * work is distributed under the W3C(r) Software License [1] in the hope that 7 | * it will be useful, but WITHOUT ANY WARRANTY; without even the implied 8 | * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * 10 | * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 11 | * 12 | * Modifications: 13 | * 14 | * September 10, 2005 15 | * Placed interface in org.apache.batik.dom.xbl for the time being. 16 | * Added javadocs. 17 | */ 18 | package org.apache.batik.dom.xbl; 19 | 20 | import org.w3c.dom.Element; 21 | 22 | /** 23 | * The interface for xbl:shadowTree elements. 24 | * Eventually will move to org.w3c.dom.xbl (or some such package). 25 | * 26 | * @version $Id: XBLShadowTreeElement.java 498740 2007-01-22 18:35:57Z dvholten $ 27 | */ 28 | public interface XBLShadowTreeElement extends Element { 29 | 30 | /** 31 | * Returns the Element that has an ID attribute with the given value. 32 | */ 33 | Element getElementById(String elementId); 34 | } 35 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/ext/awt/font/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.apache.batik.ext.awt.font 5 | 6 | 7 | 8 | Contains extensions to the java.awt.font package. This 9 | package provides new TextLayout algorithm and a comprehensive 10 | way to handle SVG text attributes such stroked text or multiple font families. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/ext/awt/g2d/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Abstract Graphics2D Package 6 | 7 | 8 | Provides an API for subclassing the java.awt.Graphics2D 9 | class in order to translate Java 2D primitives into another graphic 10 | format. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/ext/awt/geom/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.apache.batik.ext.awt.geom 5 | 6 | 7 | 8 | Contains extensions to the java.awt.geom package. This 9 | package provides new Shapes and some utility methods to 10 | manage geometric objects. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/ext/awt/image/codec/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.apache.batik.ext.awt.image.codec 5 | 6 | 7 | 8 | Provides a set of classes to encode/decode images in various raster 9 | image file formats. 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/ext/awt/image/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.apache.batik.ext.awt.image 5 | 6 | 7 | 8 | Contains extensions to the java.awt.image package. This 9 | package provides convenient methods and some utility classes. These 10 | generally bypass broken methods in Java2D or provide tweaked 11 | implementations. 12 | 13 | 14 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/ext/awt/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.apache.batik.ext.awt 5 | 6 | 7 | 8 | Contains extensions to the java.awt package. This package 9 | provides some new Paints such as a linear or radial 10 | gradients. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/extension/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | This package contains Batik's extensions to standard SVG (custom elements, 6 | additional bridges...). 7 | 8 | 9 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/gvt/event/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | GVT Event Package 6 | 7 | 8 | 9 | Provides interfaces and classes for dealing with different types 10 | of events fired by GVT graphics nodes. Events are fired by event 11 | sources. An event listener registers with an event source to 12 | receive notifications about the events of a particular type. This 13 | package defines events and event listeners, as well as event 14 | listener adapters, which are convenience classes to make easier 15 | the process of writing event listeners. 16 | 17 | 18 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/gvt/filter/filterDesc.txt: -------------------------------------------------------------------------------- 1 | 2 | Consider the following GVT node tree: 3 | 4 | +----+ 5 | | N1 | BKGRND = new 6 | +----+ 7 | /\ 8 | / \ 9 | / \ 10 | +----+ +----+ 11 | | N2 | | N3 | Opacity=0.5 12 | +----+ +----+ 13 | /|\ | \ 14 | ..... | \ 15 | | \ 16 | +----+ +----+ 17 | | N4 | | N5 | Filter = feOffset(src=Background) 18 | +----+ +----+ 19 | 20 | 21 | N1.paint(G) 22 | Calls N2.paint(G) 23 | N2.paint does it's thing... 24 | 25 | 26 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/gvt/filter/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | GVT Filter Package 6 | 7 | 8 | 9 | Contains all of the interfaces for describing a set of standard 10 | image processing filters Java objects. All filters implement the 11 | Cacheable interface which extends java.awt.image.renderable.RenderableImage 12 | with some extra methods to tell if caching operations are valid.

13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/gvt/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | GVT Package 6 | 7 | 8 | 9 | Contains all of the interfaces for describing and painting vector 10 | graphics as Java objects. Graphical objects are composed into tree 11 | structures to represent part-whole hierarchies (Composite design 12 | pattern). 13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/i18n/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides utility classes for internationalization. 6 |

7 | The responsibility of the i18n package is to provide a facade for 8 | the various internationalization utility classes of the standard 9 | Java API. The API should be used for compositing string messages in 10 | a language-neutral way. 11 |

12 | 13 | 14 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/parser/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides a set of parsers and objects to manipulate SVG attributes. 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/script/jacl/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Jacl Package 6 | 7 | 8 | 9 | Provides an API for interpreting Tcl language through 10 | the Jacl interpreter. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/script/jpython/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | JPython Package 6 | 7 | 8 | 9 | Provides an API for interpreting Python language through 10 | the JPython interpreter. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/script/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Scripting Package 6 | 7 | 8 | 9 | Provides an API for interpreting scripting language found in 10 | SVG files. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/script/rhino/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Rhino Package 6 | 7 | 8 | 9 | Provides an API for interpreting JavaScript language through 10 | the Rhino interpreter. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/svggen/font/table/LookupSubtable.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.apache.batik.svggen.font.table; 20 | 21 | /** 22 | * 23 | * @author David Schweinsberg 24 | * @version $Id: LookupSubtable.java 475477 2006-11-15 22:44:28Z cam $ 25 | */ 26 | public abstract class LookupSubtable { 27 | 28 | } 29 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/svggen/font/table/ScriptTags.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.apache.batik.svggen.font.table; 20 | 21 | /** 22 | * Definition of Script tags 23 | * 24 | * @version $Id: ScriptTags.java 475477 2006-11-15 22:44:28Z cam $ 25 | * @author Vincent Hardy 26 | */ 27 | public interface ScriptTags { 28 | String SCRIPT_TAG_ARAB = "arab"; 29 | } 30 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/svggen/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | SVGGraphics2D Package 6 | 7 | 8 | Provides an API on top of the 9 | {@link org.apache.batik.ext.awt.g2d.AbstractGraphics2D} to translate 10 | Java 2D primitives into the SVG format. 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/transcoder/image/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Provides transcoders for transcoding a SVG document fragment 10 | to an image. 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/transcoder/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Contains all of the interfaces for transcoding an input stream or 10 | a document to a particular ouput format. 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/apache/batik/util/package.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Provides some useful classes. 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/w3c/dom/ElementTraversal.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.w3c.dom; 20 | 21 | public interface ElementTraversal { 22 | 23 | Element getFirstElementChild(); 24 | Element getLastElementChild(); 25 | Element getNextElementSibling(); 26 | Element getPreviousElementSibling(); 27 | int getChildElementCount(); 28 | } 29 | -------------------------------------------------------------------------------- /lib/batik-1.8/sources/org/w3c/dom/Window.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.w3c.dom; 20 | 21 | public interface Window { 22 | Window getParent(); 23 | Location getLocation(); 24 | } 25 | -------------------------------------------------------------------------------- /lib/batik-1.8/svn-revision: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/apps/rasterizer/invalidSVG.svg: -------------------------------------------------------------------------------- 1 | 2 | SVG pretty-printer - (C) Apache Software Foundation 3 | http://xml.apache.org/batik 4 | 5 | Syntax: 6 | svgpp [options] [] 7 | 8 | Available Options: 9 | -no-format 10 | Disables any formatting. Useful for doctype modifications, 11 | newline conversion, ... 12 | -xml-decl 13 | The value to set to the XML declaraction. 14 | -system-id 15 | The value to set to the system ID of the doctype. 16 | -doc-width 17 | Sets the document preferred number of columns. The default is 80. 18 | -tab-width 19 | Sets the tabulation width. The default is 4. 20 | -public-id 21 | The value to set to the public ID of the doctype. 22 | -newline (cr | cr-lf | lf) 23 | Specifies the type of newline to output. Possible values are: 24 | cr (mac), cr-lf (dos), lf (unix - the default). 25 | -doctype (change | remove) 26 | Removes or changes the DOCTYPE declaration. change is used 27 | in conjonction with the -public-id and -system-id options. 28 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/apps/rasterizer/notReadable.svg: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/apps/rasterizer/readOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/apps/rasterizer/readOnly.png -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/apps/rasterizer/readOnly.svg: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/IWasLoaded.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/bridge/IWasLoaded.jar -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/IWasLoaded.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Script-Handler: org.apache.batik.bridge.IWasLoaded 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/IWasLoadedToo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/bridge/IWasLoadedToo.jar -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/IWasLoadedToo.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Script-Handler: org.apache.batik.bridge.IWasLoadedToo 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/JarCheckPermissionsDenied.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Script-Handler: org.apache.batik.bridge.JarCheckPermissionsDenied 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/JarCheckPermissionsGranted.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Script-Handler: org.apache.batik.bridge.JarCheckPermissionsGranted 3 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/error/test.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | .title { 21 | font-family: Arial, Helvetica; 22 | font-size: 16; 23 | text-anchor: middle; 24 | } 25 | .legend { 26 | font-family: Arial, Helvetica; 27 | font-size: 12; 28 | text-anchor: middle; 29 | } 30 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/bridge/function.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | 20 | var f = new Function("alert('I was able to evaluate a Function')"); 21 | document.documentElement.addEventListener('SVGLoad', f, false); 22 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/css/dom/bug9740-1.css: -------------------------------------------------------------------------------- 1 | rect.redBackground { fill: red;} 2 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/css/dom/bug9740-2.css: -------------------------------------------------------------------------------- 1 | rect {stroke: white; fill: #a0a0a0;} 2 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/dom/dummyXML.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/dom/dummyXML2.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | Content 22 | 23 | 24 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/dom/dummyXML3.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | Content 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/dom/dummyXML4.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | Content 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/dom/svg/bug30580_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/dom/svg/bug30580_image.png -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/dom/svg/test.svg: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/svggen/resources/vangogh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/svggen/resources/vangogh.jpg -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/svggen/resources/vangogh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/svggen/resources/vangogh.png -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/test/svg/resources/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/test/svg/resources/images/background.png -------------------------------------------------------------------------------- /lib/batik-1.8/test-resources/org/apache/batik/test/svg/resources/images/deco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/batik-1.8/test-resources/org/apache/batik/test/svg/resources/images/deco.png -------------------------------------------------------------------------------- /lib/batik-1.8/test-sources/org/apache/batik/test/OnePerformanceTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Licensed to the Apache Software Foundation (ASF) under one or more 4 | contributor license agreements. See the NOTICE file distributed with 5 | this work for additional information regarding copyright ownership. 6 | The ASF licenses this file to You under the Apache License, Version 2.0 7 | (the "License"); you may not use this file except in compliance with 8 | the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | */ 19 | package org.apache.batik.test; 20 | 21 | public class OnePerformanceTest extends PerformanceTest { 22 | public void runOp() { 23 | runRef(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Developers 2 | ---------- 3 | 4 | Klaus Reimer 5 | Luca Longinotti 6 | -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/README.txt: -------------------------------------------------------------------------------- 1 | usb4java 1.2.0 2 | http://usb4java.org/ 3 | Copyright 2014 usb4java Team 4 | See LICENSE.md for licensing information. 5 | ------------------------------------------------------------------------------ 6 | 7 | The lib directory contains the following JAR files: 8 | 9 | usb4java-*.jar (The main usb4java library) 10 | libusb4java-*.jar (The native libraries for the various platforms) 11 | commons-lang3-*.jar (Apache Commons Lang library needed by usb4java) 12 | 13 | If you don't want usb4java to extract the native libraries into a temporary 14 | directoy on each program start then you might want to distribute them in 15 | extracted form with your application. Just make sure your classpath points 16 | to the directory where you extracted the JARs. -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/commons-lang3-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/commons-lang3-3.2.1.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/libusb4java-1.2.0-linux-arm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/libusb4java-1.2.0-linux-arm.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/libusb4java-1.2.0-linux-x86.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/libusb4java-1.2.0-linux-x86.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/libusb4java-1.2.0-linux-x86_64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/libusb4java-1.2.0-linux-x86_64.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/libusb4java-1.2.0-osx-x86.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/libusb4java-1.2.0-osx-x86.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/libusb4java-1.2.0-osx-x86_64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/libusb4java-1.2.0-osx-x86_64.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/libusb4java-1.2.0-windows-x86.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/libusb4java-1.2.0-windows-x86.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/libusb4java-1.2.0-windows-x86_64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/libusb4java-1.2.0-windows-x86_64.jar -------------------------------------------------------------------------------- /lib/usb4java-1.2.0/lib/usb4java-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/lib/usb4java-1.2.0/lib/usb4java-1.2.0.jar -------------------------------------------------------------------------------- /src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: Push2Display 3 | Implementation-Version: 1.40 4 | Implementation-Vendor: Juergen Mossgraber 5 | -------------------------------------------------------------------------------- /src/images/AppIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-moss/Push2Display/7381436bf4ecf00aacbb6c7b6f233144e1ded7fd/src/images/AppIcon.gif -------------------------------------------------------------------------------- /src/images/channel/record_arm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/images/track/audio_track.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/images/track/hybrid_track.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/images/track/instrument_track.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/images/track/multi_layer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/push22bitwig/Push22Bitwig.java: -------------------------------------------------------------------------------- 1 | package push22bitwig; 2 | 3 | import javafx.application.Application; 4 | 5 | 6 | /** 7 | * The main application. 8 | * 9 | * Licensed under LGPLv3 - http://www.gnu.org/licenses/lgpl-3.0.txt 10 | * 11 | * @author Jürgen Moßgraber 12 | */ 13 | public class Push22Bitwig 14 | { 15 | /** 16 | * Main function. 17 | * 18 | * @param args Unused 19 | */ 20 | public static void main (final String [] args) 21 | { 22 | Application.launch (DisplayEmulator.class); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/push22bitwig/model/ChannelType.java: -------------------------------------------------------------------------------- 1 | package push22bitwig.model; 2 | 3 | /** 4 | * The different types of channels. 5 | * 6 | * Licensed under LGPLv3 - http://www.gnu.org/licenses/lgpl-3.0.txt 7 | * 8 | * @author Jürgen Moßgraber 9 | */ 10 | public enum ChannelType 11 | { 12 | /** A Track of unknown type. */ 13 | UNKNOWN, 14 | /** Audio Track */ 15 | AUDIO, 16 | /** Instrument Track */ 17 | INSTRUMENT, 18 | /** Hybrid Track (Audio + Midi) */ 19 | HYBRID, 20 | /** Group Track */ 21 | GROUP, // isGroup 22 | /** Effect Track */ 23 | EFFECT, 24 | /** Master Track */ 25 | MASTER, 26 | /** A device layer */ 27 | LAYER 28 | } 29 | --------------------------------------------------------------------------------