├── .travis.yml ├── README.md ├── debian ├── application-x-omnigraffle.svg ├── changelog ├── compat ├── control ├── copyright ├── graffle2svg.desktop ├── graffle2svg.install ├── graffle2svg.postinst ├── graffle2svg.postrm ├── graffle2svg.prerm ├── graffle2svg.rtupdate ├── graffle2svg.sharedmimeinfo ├── patches │ └── Makefile.patch ├── pycompat ├── rules └── source │ └── options ├── dist └── graffle2svg-0.1dev-py2.5.egg ├── graffle2svg ├── LICENSE ├── __init__.py ├── fileinfo.py ├── filepack.py ├── geom.py ├── main.py ├── rtf.py ├── scripts │ ├── graffle2svg │ └── graffle2svgview ├── styles.py ├── test.py └── tests │ ├── __init__.py │ ├── testCascadingStyles.py │ ├── testGeom.py │ ├── testMain.py │ └── testRTF.py ├── icon.png ├── icon.svg ├── mime-type.xml ├── setup.cfg └── setup.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/README.md -------------------------------------------------------------------------------- /debian/application-x-omnigraffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/application-x-omnigraffle.svg -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/graffle2svg.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/graffle2svg.desktop -------------------------------------------------------------------------------- /debian/graffle2svg.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/graffle2svg.install -------------------------------------------------------------------------------- /debian/graffle2svg.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/graffle2svg.postinst -------------------------------------------------------------------------------- /debian/graffle2svg.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/graffle2svg.postrm -------------------------------------------------------------------------------- /debian/graffle2svg.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/graffle2svg.prerm -------------------------------------------------------------------------------- /debian/graffle2svg.rtupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/graffle2svg.rtupdate -------------------------------------------------------------------------------- /debian/graffle2svg.sharedmimeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/graffle2svg.sharedmimeinfo -------------------------------------------------------------------------------- /debian/patches/Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/patches/Makefile.patch -------------------------------------------------------------------------------- /debian/pycompat: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- 1 | tar-ignore = ".git" 2 | 3 | -------------------------------------------------------------------------------- /dist/graffle2svg-0.1dev-py2.5.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/dist/graffle2svg-0.1dev-py2.5.egg -------------------------------------------------------------------------------- /graffle2svg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/LICENSE -------------------------------------------------------------------------------- /graffle2svg/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | __all__ = [ 'main' ] 4 | -------------------------------------------------------------------------------- /graffle2svg/fileinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/fileinfo.py -------------------------------------------------------------------------------- /graffle2svg/filepack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/filepack.py -------------------------------------------------------------------------------- /graffle2svg/geom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/geom.py -------------------------------------------------------------------------------- /graffle2svg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/main.py -------------------------------------------------------------------------------- /graffle2svg/rtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/rtf.py -------------------------------------------------------------------------------- /graffle2svg/scripts/graffle2svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/scripts/graffle2svg -------------------------------------------------------------------------------- /graffle2svg/scripts/graffle2svgview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/scripts/graffle2svgview -------------------------------------------------------------------------------- /graffle2svg/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/styles.py -------------------------------------------------------------------------------- /graffle2svg/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/test.py -------------------------------------------------------------------------------- /graffle2svg/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/tests/__init__.py -------------------------------------------------------------------------------- /graffle2svg/tests/testCascadingStyles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/tests/testCascadingStyles.py -------------------------------------------------------------------------------- /graffle2svg/tests/testGeom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/tests/testGeom.py -------------------------------------------------------------------------------- /graffle2svg/tests/testMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/tests/testMain.py -------------------------------------------------------------------------------- /graffle2svg/tests/testRTF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/graffle2svg/tests/testRTF.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/icon.svg -------------------------------------------------------------------------------- /mime-type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/mime-type.xml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnavila/graffle2svg/HEAD/setup.py --------------------------------------------------------------------------------