├── .github └── workflows │ └── runtests.yml ├── .gitignore ├── .hgignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── TODO ├── Vagrantfile ├── doc ├── IDML_insert_idml_coordinate_transformation.dia └── IDML_insert_idml_coordinate_transformation.png ├── requirements_dev.txt ├── setup.py ├── src ├── scripts │ ├── simpleidml_create_package_from_dir.py │ ├── simpleidml_indesign_close_all_documents.py │ ├── simpleidml_indesign_profiles.py │ └── simpleidml_indesign_save_as.py └── simple_idml │ ├── __init__.py │ ├── commands.py │ ├── components.py │ ├── decorators.py │ ├── exceptions.py │ ├── extras.py │ ├── ftp.py │ ├── id_package.py │ ├── idml.py │ ├── indesign │ ├── __init__.py │ ├── indesign.py │ └── scripts │ │ ├── close_all_documents.jsx │ │ ├── export.jsx │ │ ├── list_profiles.jsx │ │ ├── package_to_print.jsx │ │ └── save_as.jsx │ ├── test.py │ └── utils.py └── tests ├── Makefile ├── coveragerc ├── regressiontests ├── IDML │ ├── 2articles-0photo.idml │ ├── 2articles-0photo.indd │ ├── 2articles-1photo-elts-same-layer.idml │ ├── 2articles-1photo-elts-same-layer.indd │ ├── 2articles-1photo.idml │ ├── 2articles-1photo.indd │ ├── 4-pages-layers-with-guides.idml │ ├── 4-pages-layers-with-guides.indd │ ├── 4-pages.idml │ ├── 4-pages.indd │ ├── article-1photo-package.zip │ ├── article-1photo-with-attributes.idml │ ├── article-1photo-with-attributes.indd │ ├── article-1photo.idml │ ├── article-1photo.indd │ ├── article-1photo │ │ ├── META-INF │ │ │ ├── container.xml │ │ │ └── metadata.xml │ │ ├── MasterSpreads │ │ │ └── MasterSpread_ua5.xml │ │ ├── Resources │ │ │ ├── Fonts.xml │ │ │ ├── Graphic.xml │ │ │ ├── Preferences.xml │ │ │ └── Styles.xml │ │ ├── Spreads │ │ │ └── Spread_ud6.xml │ │ ├── Stories │ │ │ ├── Story_u188.xml │ │ │ ├── Story_u19f.xml │ │ │ └── Story_u1db.xml │ │ ├── XML │ │ │ ├── BackingStory.xml │ │ │ ├── Mapping.xml │ │ │ └── Tags.xml │ │ ├── designmap.xml │ │ └── mimetype │ ├── article-1photo_import-xml.idml │ ├── article-1photo_import-xml.indd │ ├── article-1photo_imported-nested-xml.idml │ ├── article-1photo_imported-nested-xml.indd │ ├── article-1photo_imported-xml.idml │ ├── article-1photo_imported-xml.indd │ ├── expected │ │ ├── 4-pages-insert-article-0-photo-complex.idml │ │ ├── 4-pages-insert-article-1-photo-complex.idml │ │ ├── 4-pages-insert-article-1-photo-elts-same-layer.idml │ │ ├── 4-pages-insert-article-1-photo.idml │ │ ├── article-1photo_import-xml-forcecontent.idml │ │ ├── article-1photo_import-xml-forcecontent2.idml │ │ ├── article-1photo_import-xml-forcecontent3.idml │ │ ├── article-1photo_import-xml-ignorecontent.idml │ │ ├── article-1photo_import-xml-nested-tags.idml │ │ ├── article-1photo_import-xml-with-extra-nodes.idml │ │ ├── article-1photo_import-xml-with-extra-nodes2-prefixed.idml │ │ ├── article-1photo_import-xml-with-extra-nodes2.idml │ │ ├── article-1photo_import-xml-with-setcontent-false.idml │ │ ├── article-1photo_import-xml-without-picture.idml │ │ └── article-1photo_import-xml.idml │ ├── interview.idml │ ├── magazineA-bloc-notes.idml │ ├── magazineA-bloc-notes.indd │ ├── magazineA-courrier-des-lecteurs-3pages.idml │ ├── magazineA-courrier-des-lecteurs-3pages.indd │ ├── magazineA-courrier-des-lecteurs.idml │ ├── magazineA-courrier-des-lecteurs.indd │ ├── magazineA-edito.idml │ ├── magazineA-edito.indd │ ├── magazineA-template.idml │ ├── media │ │ ├── Jacques-Yves_Cousteau.jpg │ │ ├── bouboune.jpg │ │ ├── default.jpg │ │ └── default2.jpg │ ├── module1.pdf │ ├── package-pirate.zip │ ├── page-9modules.idml │ └── page-9modules.indd ├── SOAP │ └── indesign-service.xml ├── XML │ ├── article-1photo_import-xml-forcecontent.xml │ ├── article-1photo_import-xml-forcecontent2.xml │ ├── article-1photo_import-xml-forcecontent3.xml │ ├── article-1photo_import-xml-ignorecontent.xml │ ├── article-1photo_import-xml-nested-tags.xml │ ├── article-1photo_import-xml-with-extra-nodes.xml │ ├── article-1photo_import-xml-with-extra-nodes2.xml │ ├── article-1photo_import-xml-with-setcontent-delete-informations.xml │ ├── article-1photo_import-xml-with-setcontent-delete.xml │ ├── article-1photo_import-xml-with-setcontent-false.xml │ ├── article-1photo_import-xml-with-setcontent-remove-br.xml │ ├── article-1photo_import-xml-without-picture.xml │ ├── article-1photo_import-xml.xml │ └── interview_en.xml ├── __init__.py ├── components.py ├── extras.py ├── id_package.py ├── idml.py ├── indesign.py └── utils.py └── runtests.py /.github/workflows/runtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/.github/workflows/runtests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/.hgignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/TODO -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/Vagrantfile -------------------------------------------------------------------------------- /doc/IDML_insert_idml_coordinate_transformation.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/doc/IDML_insert_idml_coordinate_transformation.dia -------------------------------------------------------------------------------- /doc/IDML_insert_idml_coordinate_transformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/doc/IDML_insert_idml_coordinate_transformation.png -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | ipdb 3 | lxml 4 | mock 5 | pylint 6 | suds-py3 7 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/setup.py -------------------------------------------------------------------------------- /src/scripts/simpleidml_create_package_from_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/scripts/simpleidml_create_package_from_dir.py -------------------------------------------------------------------------------- /src/scripts/simpleidml_indesign_close_all_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/scripts/simpleidml_indesign_close_all_documents.py -------------------------------------------------------------------------------- /src/scripts/simpleidml_indesign_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/scripts/simpleidml_indesign_profiles.py -------------------------------------------------------------------------------- /src/scripts/simpleidml_indesign_save_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/scripts/simpleidml_indesign_save_as.py -------------------------------------------------------------------------------- /src/simple_idml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/__init__.py -------------------------------------------------------------------------------- /src/simple_idml/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/commands.py -------------------------------------------------------------------------------- /src/simple_idml/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/components.py -------------------------------------------------------------------------------- /src/simple_idml/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/decorators.py -------------------------------------------------------------------------------- /src/simple_idml/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/exceptions.py -------------------------------------------------------------------------------- /src/simple_idml/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/extras.py -------------------------------------------------------------------------------- /src/simple_idml/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/ftp.py -------------------------------------------------------------------------------- /src/simple_idml/id_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/id_package.py -------------------------------------------------------------------------------- /src/simple_idml/idml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/idml.py -------------------------------------------------------------------------------- /src/simple_idml/indesign/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simple_idml/indesign/indesign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/indesign/indesign.py -------------------------------------------------------------------------------- /src/simple_idml/indesign/scripts/close_all_documents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/indesign/scripts/close_all_documents.jsx -------------------------------------------------------------------------------- /src/simple_idml/indesign/scripts/export.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/indesign/scripts/export.jsx -------------------------------------------------------------------------------- /src/simple_idml/indesign/scripts/list_profiles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/indesign/scripts/list_profiles.jsx -------------------------------------------------------------------------------- /src/simple_idml/indesign/scripts/package_to_print.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/indesign/scripts/package_to_print.jsx -------------------------------------------------------------------------------- /src/simple_idml/indesign/scripts/save_as.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/indesign/scripts/save_as.jsx -------------------------------------------------------------------------------- /src/simple_idml/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/test.py -------------------------------------------------------------------------------- /src/simple_idml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/src/simple_idml/utils.py -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/coveragerc -------------------------------------------------------------------------------- /tests/regressiontests/IDML/2articles-0photo.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/2articles-0photo.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/2articles-0photo.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/2articles-0photo.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/2articles-1photo-elts-same-layer.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/2articles-1photo-elts-same-layer.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/2articles-1photo-elts-same-layer.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/2articles-1photo-elts-same-layer.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/2articles-1photo.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/2articles-1photo.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/2articles-1photo.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/2articles-1photo.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/4-pages-layers-with-guides.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/4-pages-layers-with-guides.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/4-pages-layers-with-guides.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/4-pages-layers-with-guides.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/4-pages.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/4-pages.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/4-pages.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/4-pages.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo-package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo-package.zip -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo-with-attributes.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo-with-attributes.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo-with-attributes.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo-with-attributes.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/META-INF/container.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/META-INF/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/META-INF/metadata.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/MasterSpreads/MasterSpread_ua5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/MasterSpreads/MasterSpread_ua5.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Resources/Fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Resources/Fonts.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Resources/Graphic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Resources/Graphic.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Resources/Preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Resources/Preferences.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Resources/Styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Resources/Styles.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Spreads/Spread_ud6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Spreads/Spread_ud6.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Stories/Story_u188.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Stories/Story_u188.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Stories/Story_u19f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Stories/Story_u19f.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/Stories/Story_u1db.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/Stories/Story_u1db.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/XML/BackingStory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/XML/BackingStory.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/XML/Mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/XML/Mapping.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/XML/Tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/XML/Tags.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/designmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo/designmap.xml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.adobe.indesign-idml-package -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo_import-xml.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo_import-xml.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo_import-xml.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo_import-xml.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo_imported-nested-xml.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo_imported-nested-xml.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo_imported-nested-xml.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo_imported-nested-xml.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo_imported-xml.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo_imported-xml.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/article-1photo_imported-xml.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/article-1photo_imported-xml.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/4-pages-insert-article-0-photo-complex.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/4-pages-insert-article-0-photo-complex.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/4-pages-insert-article-1-photo-complex.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/4-pages-insert-article-1-photo-complex.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/4-pages-insert-article-1-photo-elts-same-layer.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/4-pages-insert-article-1-photo-elts-same-layer.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/4-pages-insert-article-1-photo.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/4-pages-insert-article-1-photo.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-forcecontent.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-forcecontent.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-forcecontent2.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-forcecontent2.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-forcecontent3.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-forcecontent3.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-ignorecontent.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-ignorecontent.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-nested-tags.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-nested-tags.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-with-extra-nodes.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-with-extra-nodes.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-with-extra-nodes2-prefixed.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-with-extra-nodes2-prefixed.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-with-extra-nodes2.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-with-extra-nodes2.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-with-setcontent-false.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-with-setcontent-false.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml-without-picture.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml-without-picture.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/expected/article-1photo_import-xml.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/expected/article-1photo_import-xml.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/interview.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/interview.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-bloc-notes.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-bloc-notes.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-bloc-notes.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-bloc-notes.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-courrier-des-lecteurs-3pages.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-courrier-des-lecteurs-3pages.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-courrier-des-lecteurs-3pages.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-courrier-des-lecteurs-3pages.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-courrier-des-lecteurs.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-courrier-des-lecteurs.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-courrier-des-lecteurs.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-courrier-des-lecteurs.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-edito.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-edito.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-edito.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-edito.indd -------------------------------------------------------------------------------- /tests/regressiontests/IDML/magazineA-template.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/magazineA-template.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/media/Jacques-Yves_Cousteau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/media/Jacques-Yves_Cousteau.jpg -------------------------------------------------------------------------------- /tests/regressiontests/IDML/media/bouboune.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/media/bouboune.jpg -------------------------------------------------------------------------------- /tests/regressiontests/IDML/media/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/media/default.jpg -------------------------------------------------------------------------------- /tests/regressiontests/IDML/media/default2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/media/default2.jpg -------------------------------------------------------------------------------- /tests/regressiontests/IDML/module1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/module1.pdf -------------------------------------------------------------------------------- /tests/regressiontests/IDML/package-pirate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/package-pirate.zip -------------------------------------------------------------------------------- /tests/regressiontests/IDML/page-9modules.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/page-9modules.idml -------------------------------------------------------------------------------- /tests/regressiontests/IDML/page-9modules.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/IDML/page-9modules.indd -------------------------------------------------------------------------------- /tests/regressiontests/SOAP/indesign-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/SOAP/indesign-service.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-forcecontent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-forcecontent.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-forcecontent2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-forcecontent2.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-forcecontent3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-forcecontent3.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-ignorecontent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-ignorecontent.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-nested-tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-nested-tags.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-with-extra-nodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-with-extra-nodes.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-with-extra-nodes2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-with-extra-nodes2.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-delete-informations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-delete-informations.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-delete.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-false.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-false.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-remove-br.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-with-setcontent-remove-br.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml-without-picture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml-without-picture.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/article-1photo_import-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/article-1photo_import-xml.xml -------------------------------------------------------------------------------- /tests/regressiontests/XML/interview_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/XML/interview_en.xml -------------------------------------------------------------------------------- /tests/regressiontests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/components.py -------------------------------------------------------------------------------- /tests/regressiontests/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/extras.py -------------------------------------------------------------------------------- /tests/regressiontests/id_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/id_package.py -------------------------------------------------------------------------------- /tests/regressiontests/idml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/idml.py -------------------------------------------------------------------------------- /tests/regressiontests/indesign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/indesign.py -------------------------------------------------------------------------------- /tests/regressiontests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/regressiontests/utils.py -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starou/SimpleIDML/HEAD/tests/runtests.py --------------------------------------------------------------------------------