├── .gitignore ├── LICENSE ├── README.md ├── base └── Dockerfile ├── deployment-examples ├── cdk │ ├── cdk.json │ └── deploy.py └── sam │ └── template.yaml ├── test ├── fixtures │ ├── expected │ │ ├── churchill-pdf.txt │ │ ├── churchill-txt.txt │ │ ├── lincoln-docx.txt │ │ └── lincoln-pdf.txt │ └── inputs │ │ ├── churchill.docx │ │ └── lincoln.txt ├── template.yaml ├── test-requirements.txt ├── test_locally.sh └── test_unofunction.py └── unofunction ├── Dockerfile ├── convert.py ├── handler.py └── user ├── autotext └── mytexts.bau ├── basic ├── Standard │ ├── Module1.xba │ ├── dialog.xlb │ └── script.xlb ├── dialog.xlc └── script.xlc ├── config └── autotbl.fmt ├── database ├── biblio.odb ├── biblio │ ├── biblio.dbf │ └── biblio.dbt └── evolocal.odb ├── extensions ├── buildid ├── bundled │ ├── lastsynchronized │ └── registry │ │ ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend │ │ └── backenddb.xml │ │ └── com.sun.star.comp.deployment.help.PackageRegistryBackend │ │ └── backenddb.xml ├── shared │ ├── lastsynchronized │ └── registry │ │ ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend │ │ └── backenddb.xml │ │ └── com.sun.star.comp.deployment.help.PackageRegistryBackend │ │ └── backenddb.xml └── tmp │ └── registry │ ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend │ └── backenddb.xml │ └── com.sun.star.comp.deployment.help.PackageRegistryBackend │ └── backenddb.xml ├── gallery ├── sg30.sdv └── sg30.thm ├── pack ├── ExtensionInfo.pack ├── autotext │ └── mytexts.pack ├── basic │ ├── Standard │ │ ├── Module1.pack │ │ ├── dialog.pack │ │ └── script.pack │ ├── dialog.pack │ └── script.pack ├── config │ └── autotbl.pack ├── database │ ├── biblio.pack │ ├── biblio │ │ └── biblio.pack │ └── evolocal.pack └── registrymodifications.pack ├── registrymodifications.xcu └── uno_packages └── cache └── registry ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend └── backenddb.xml └── com.sun.star.comp.deployment.help.PackageRegistryBackend └── backenddb.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/README.md -------------------------------------------------------------------------------- /base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/base/Dockerfile -------------------------------------------------------------------------------- /deployment-examples/cdk/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/deployment-examples/cdk/cdk.json -------------------------------------------------------------------------------- /deployment-examples/cdk/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/deployment-examples/cdk/deploy.py -------------------------------------------------------------------------------- /deployment-examples/sam/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/deployment-examples/sam/template.yaml -------------------------------------------------------------------------------- /test/fixtures/expected/churchill-pdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/fixtures/expected/churchill-pdf.txt -------------------------------------------------------------------------------- /test/fixtures/expected/churchill-txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/fixtures/expected/churchill-txt.txt -------------------------------------------------------------------------------- /test/fixtures/expected/lincoln-docx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/fixtures/expected/lincoln-docx.txt -------------------------------------------------------------------------------- /test/fixtures/expected/lincoln-pdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/fixtures/expected/lincoln-pdf.txt -------------------------------------------------------------------------------- /test/fixtures/inputs/churchill.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/fixtures/inputs/churchill.docx -------------------------------------------------------------------------------- /test/fixtures/inputs/lincoln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/fixtures/inputs/lincoln.txt -------------------------------------------------------------------------------- /test/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/template.yaml -------------------------------------------------------------------------------- /test/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/test-requirements.txt -------------------------------------------------------------------------------- /test/test_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/test_locally.sh -------------------------------------------------------------------------------- /test/test_unofunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/test/test_unofunction.py -------------------------------------------------------------------------------- /unofunction/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/Dockerfile -------------------------------------------------------------------------------- /unofunction/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/convert.py -------------------------------------------------------------------------------- /unofunction/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/handler.py -------------------------------------------------------------------------------- /unofunction/user/autotext/mytexts.bau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/autotext/mytexts.bau -------------------------------------------------------------------------------- /unofunction/user/basic/Standard/Module1.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/basic/Standard/Module1.xba -------------------------------------------------------------------------------- /unofunction/user/basic/Standard/dialog.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/basic/Standard/dialog.xlb -------------------------------------------------------------------------------- /unofunction/user/basic/Standard/script.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/basic/Standard/script.xlb -------------------------------------------------------------------------------- /unofunction/user/basic/dialog.xlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/basic/dialog.xlc -------------------------------------------------------------------------------- /unofunction/user/basic/script.xlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/basic/script.xlc -------------------------------------------------------------------------------- /unofunction/user/config/autotbl.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/config/autotbl.fmt -------------------------------------------------------------------------------- /unofunction/user/database/biblio.odb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/database/biblio.odb -------------------------------------------------------------------------------- /unofunction/user/database/biblio/biblio.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/database/biblio/biblio.dbf -------------------------------------------------------------------------------- /unofunction/user/database/biblio/biblio.dbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/database/biblio/biblio.dbt -------------------------------------------------------------------------------- /unofunction/user/database/evolocal.odb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/database/evolocal.odb -------------------------------------------------------------------------------- /unofunction/user/extensions/buildid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unofunction/user/extensions/bundled/lastsynchronized: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /unofunction/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /unofunction/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /unofunction/user/extensions/shared/lastsynchronized: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /unofunction/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /unofunction/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /unofunction/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /unofunction/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /unofunction/user/gallery/sg30.sdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/gallery/sg30.sdv -------------------------------------------------------------------------------- /unofunction/user/gallery/sg30.thm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/gallery/sg30.thm -------------------------------------------------------------------------------- /unofunction/user/pack/ExtensionInfo.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/ExtensionInfo.pack -------------------------------------------------------------------------------- /unofunction/user/pack/autotext/mytexts.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/autotext/mytexts.pack -------------------------------------------------------------------------------- /unofunction/user/pack/basic/Standard/Module1.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/basic/Standard/Module1.pack -------------------------------------------------------------------------------- /unofunction/user/pack/basic/Standard/dialog.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/basic/Standard/dialog.pack -------------------------------------------------------------------------------- /unofunction/user/pack/basic/Standard/script.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/basic/Standard/script.pack -------------------------------------------------------------------------------- /unofunction/user/pack/basic/dialog.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/basic/dialog.pack -------------------------------------------------------------------------------- /unofunction/user/pack/basic/script.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/basic/script.pack -------------------------------------------------------------------------------- /unofunction/user/pack/config/autotbl.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/config/autotbl.pack -------------------------------------------------------------------------------- /unofunction/user/pack/database/biblio.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/database/biblio.pack -------------------------------------------------------------------------------- /unofunction/user/pack/database/biblio/biblio.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/database/biblio/biblio.pack -------------------------------------------------------------------------------- /unofunction/user/pack/database/evolocal.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/database/evolocal.pack -------------------------------------------------------------------------------- /unofunction/user/pack/registrymodifications.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/pack/registrymodifications.pack -------------------------------------------------------------------------------- /unofunction/user/registrymodifications.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/registrymodifications.xcu -------------------------------------------------------------------------------- /unofunction/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /unofunction/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javidlakha/unofunction/HEAD/unofunction/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml --------------------------------------------------------------------------------