├── ooPackage
├── sources
│ ├── readme.fr
│ ├── readme.txt
│ ├── open_16.bmp
│ ├── open_26.bmp
│ ├── save_16.bmp
│ ├── save_26.bmp
│ ├── saveas_16.bmp
│ ├── saveas_26.bmp
│ ├── eZextension
│ │ ├── dialog.xlb
│ │ ├── script.xlb
│ │ ├── Module1.xba
│ │ ├── Module2.xba
│ │ └── Module5.xba
│ ├── eZ.ini
│ ├── META-INF
│ │ └── manifest.xml
│ ├── getNode.py
│ ├── receive.py
│ ├── addon.xcu
│ └── send.py
└── eZExtension.uno.pkg
├── doc
├── eZconversion.zip
├── OOo_documentation_benoit.odt
├── changelogs
│ ├── 2.2
│ │ └── CHANGELOG-2.1.0-to-2.2.0
│ ├── 1.0
│ │ └── unstable
│ │ │ ├── CHANGELOG-1.0.0beta2-to-1.0.0
│ │ │ ├── CHANGELOG-1.0.0beta1-to-1.0.0beta2
│ │ │ └── CHANGELOG-1.0.0alpha1-to-1.0.0beta1
│ ├── 2.5
│ │ └── CHANGELOG-2.4.0-to-2.5.0
│ ├── 2.4
│ │ └── CHANGELOG-2.3.0-to-2.4.0
│ ├── 2.0
│ │ ├── unstable
│ │ │ ├── CHANGELOG-2.0.0beta2-to-2.0.0beta3
│ │ │ ├── CHANGELOG-1.0.0-to-2.0.0beta1
│ │ │ └── CHANGELOG-2.0.0beta1-to-2.0.0beta2
│ │ └── CHANGELOG-1.0.0-to-2.0.0
│ ├── 2.1
│ │ ├── CHANGELOG-2.0.0-to-2.1.0
│ │ └── unstable
│ │ │ └── CHANGELOG-2.0.0beta3-to-2.1.0beta1
│ └── 2.3
│ │ └── CHANGELOG-2.2.0-to-2.3.0
├── ezodf_extension_documentation.odt
├── ezodf_extension_documentation.pdf
├── eZconversion.txt
└── README.daemon
├── examples
├── article.odt
└── general_document_example.odt
├── templates
└── ezpublish.ott
├── design
└── standard
│ ├── templates
│ ├── ezodf
│ │ ├── icon.tpl
│ │ ├── browse_place.tpl
│ │ ├── export.tpl
│ │ └── import.tpl
│ └── node
│ │ ├── oosubitemscontextmenu.tpl
│ │ ├── oocontextsubmenu.tpl
│ │ └── oocontextmenu.tpl
│ └── images
│ └── ooo_logo.gif
├── settings
├── ezrest.ini.append.php
├── module.ini.append.php
├── browse.ini.append.php
├── design.ini.append.php
├── admininterface.ini.append.php
├── upload.ini.append.php
├── site.ini.append.php
└── odf.ini.append.php
├── extension.xml
├── dist.sh
├── composer.json
├── README
├── modules
└── ezodf
│ ├── module.php
│ ├── upload_export.php
│ ├── upload_import.php
│ ├── authenticate.php
│ ├── export.php
│ └── import.php
├── uploadhandlers
└── ezopenofficeuploadhandler.php
├── scripts
├── converttooo.php
└── daemon.php
└── translations
├── dan-DK
└── translation.ts
├── dut-NL
└── translation.ts
├── ger-DE
└── translation.ts
├── swe-SE
└── translation.ts
├── untranslated
└── translation.ts
├── chi-CN
└── translation.ts
├── chi-TW
└── translation.ts
├── jpn-JP
└── translation.ts
├── cro-HR
└── translation.ts
├── ita-IT
└── translation.ts
└── cze-CZ
└── translation.ts
/ooPackage/sources/readme.fr:
--------------------------------------------------------------------------------
1 | eZ extension version 0.1 [fr]
2 |
--------------------------------------------------------------------------------
/ooPackage/sources/readme.txt:
--------------------------------------------------------------------------------
1 | eZ extension version 0.1 [en]
2 |
--------------------------------------------------------------------------------
/doc/eZconversion.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/eZconversion.zip
--------------------------------------------------------------------------------
/examples/article.odt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/examples/article.odt
--------------------------------------------------------------------------------
/templates/ezpublish.ott:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/templates/ezpublish.ott
--------------------------------------------------------------------------------
/design/standard/templates/ezodf/icon.tpl:
--------------------------------------------------------------------------------
1 | {$node.class_identifier|class_icon( small, $node.class_name )}
2 |
--------------------------------------------------------------------------------
/ooPackage/eZExtension.uno.pkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/eZExtension.uno.pkg
--------------------------------------------------------------------------------
/ooPackage/sources/open_16.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/open_16.bmp
--------------------------------------------------------------------------------
/ooPackage/sources/open_26.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/open_26.bmp
--------------------------------------------------------------------------------
/ooPackage/sources/save_16.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/save_16.bmp
--------------------------------------------------------------------------------
/ooPackage/sources/save_26.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/save_26.bmp
--------------------------------------------------------------------------------
/ooPackage/sources/saveas_16.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/saveas_16.bmp
--------------------------------------------------------------------------------
/ooPackage/sources/saveas_26.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/saveas_26.bmp
--------------------------------------------------------------------------------
/doc/OOo_documentation_benoit.odt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/OOo_documentation_benoit.odt
--------------------------------------------------------------------------------
/settings/ezrest.ini.append.php:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/design/standard/images/ooo_logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/images/ooo_logo.gif
--------------------------------------------------------------------------------
/doc/changelogs/2.2/CHANGELOG-2.1.0-to-2.2.0:
--------------------------------------------------------------------------------
1 | Changes from 2.1.0 to 2.2.0
2 |
3 | *Bugs*
4 |
5 | *Enhancements*
6 |
7 |
--------------------------------------------------------------------------------
/doc/ezodf_extension_documentation.odt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/ezodf_extension_documentation.odt
--------------------------------------------------------------------------------
/doc/ezodf_extension_documentation.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/ezodf_extension_documentation.pdf
--------------------------------------------------------------------------------
/examples/general_document_example.odt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/examples/general_document_example.odt
--------------------------------------------------------------------------------
/settings/module.ini.append.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/settings/browse.ini.append.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/settings/design.ini.append.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/settings/admininterface.ini.append.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doc/changelogs/1.0/unstable/CHANGELOG-1.0.0beta2-to-1.0.0:
--------------------------------------------------------------------------------
1 | Changes from 1.0.0beta2 to 1.0.0
2 |
3 | *Bugs*
4 |
5 | - Fixed name of generated filename on export to be based on the name of the exported object
6 |
7 | *Enhancements*
8 |
9 | - Updated documentation
10 | - Made PDF version of the documentation
11 |
12 |
--------------------------------------------------------------------------------
/ooPackage/sources/eZextension/dialog.xlb:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 | {"Please choose the placement for the OpenOffice.org object. 17 | 18 | Select the placements and click the %buttonname button. 19 | Using the recent and bookmark items for quick placement is also possible. 20 | Click on placement names to change the browse listing." 21 | |i18n('extension/ezodf/browse',, 22 | hash( '%buttonname','Select'|i18n('extension/ezodf/browse'))) 23 | |nl2br} 24 |
25 |