PDFreactor configuration parser
Project description
This package provides a parsing facility for the PDFreactor client API, as provided by the pdfreactor-api package.
To effectively make use of it, you’ll need
a running PDFreactor server
some PDFreactor integration for your framework; when using Plone, you may use the pdfreactor.plone package.
Features
A parse_configuration function
In a Plone context, a pdfreactor-config browser view to make basic use of it, i.e. producing a config dictionary from:
a site-global textual conversion configuration which is stored in the Plone registry.
a custom @@pdfreactor-conversion-settings form
Note: Despite the fact that the license key – unless, as recommended, installed on the server – needs to be put in the config dictionary, we consider this to be connection-related, so we don’t expect you to put it in your conversion configuration.
You could do so (specifying it in one single string token), but e.g. our pdfreactor.plone package offers a dedicated setting in the IPdfReactorConnectionSettings interface.
Examples
The textual configuration could for example look like:
# line comments are possible outputFormat = { width: 640, # and so are end-of-line comments type: OutputType.PNG_TRANSPARENT, }
The symbols defined by the PDFreactor API class are recognized, so this would be converted to the following config dictionary:
{'outputFormat': { 'width': 640, 'type': 'PNG_TRANSPARENT', } }
This doesn’t look very magic, but it saves you from finding a way to save settings for each possible key; you just need one configuration string.
On the values side, we’ll accept valid configuration symbols only (case sensitively, so OutputType.png_transparent would cause an error) or valid Python string or number tokens; for convenience, several common names for true, false and nothing are accepted (case-insensitively).
Limitations
We are still limited in what we can process; for stylesheets, for example, the API expects “objects” (in JSON terms; Python: dictionaries), not just URIs. For now, we take strings as URI specifications:
integrationStyleSheets = ['++resource++pdfreactor.plone/export.css']
is converted to:
{'integrationStyleSheets': [{ 'uri': '++resource++pdfreactor.plone/export.css' }] }
API methods conversion
We provide as well a (still incomplete and/or experimental – “use on your own risk”) conversion function which allows you to convert API calls, as they have been used until PDFreactor v7; for example:
enableDebugMode()
would be transformed to this config value:
{'debugSettings': {'appendLogs': True}}
This is not done by default; use:
from pdfreactor.parsecfg.oldmethods import convert_api_method parse_configuration(..., convert=convert_api_method)
to make it happen.
Documentation
Installation
Simply install the configuration parser by using pip:
pip install pdfreactor.parsecfg
or, for projects using buildout, add to your buildout.cfg script:
[buildout] ... eggs = pdfreactor.parsecfg
and then run bin/buildout.
This will get you the pdfreactor-api package as well.
After restarting your Zope instance, you’ll find the package in the Quick-Installer or the Plone Add-Ons view.
Plone integration
After restarting your Zope instance with pdfreactor.parsecfg (and, likely, pdfreactor.plone) added to your eggs, simply use the Plone Add-Ons view or the Quick-Installer to activate it.
Then you may use the configuration registry and use the IPdfReactorConversionSettings prefix to adjust your conversion preferences.
Note: This package is about configuration parsing, not primarily about Zope / Plone. To have the PDFreactor web service use your actual session cookies, use pdfreactor.plone as well.
Possible values
For the values which will be recognized by the PDFreactor backend, please refer to the documentation by RealObjects GmbH:
If, for example, the documentation for the debugSettings model tells you about the boolean properties appendLogs, attachConfiguration, attachDocuments, attachResources, forceResult and all, this means that you may configure e.g.:
debugSettings.all = on
or:
debugSettings = { appendLogs: yes, forceResult: true, }
Other packages
pdfreactor-api, the required API distribution package
Support
If you are having issues concerning this configuration parser, please let us know; please use the issue tracker mentioned below.
For issues regarding the PDFreactor itself, please refer to RealObjects GmbH:
Contribute
(To this configuration parser package:)
Issue Tracker: https://github.com/visaplan/pdfreactor.plone/issues
Source Code: https://github.com/visaplan/pdfreactor.plone
License
The project is licensed under the MIT License.
Changelog
1.0.1 (2023-01-20)
Bugfixes:
For userScripts, we need to create dictionaries with ‘uri’ keys as well.
Miscellaneous:
Obsolete files and directories removed
[tobiasherp]
1.0.0 (2022-07-12)
Initial release. [tobiasherp]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pdfreactor.parsecfg-1.0.1.tar.gz
.
File metadata
- Download URL: pdfreactor.parsecfg-1.0.1.tar.gz
- Upload date:
- Size: 32.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28c42af8548f41a1d80475bd8c5170b7a79ef989ec2d50cad0e9bc8018ea14a9 |
|
MD5 | 33c772e651e642182ce952fe4f063904 |
|
BLAKE2b-256 | 3f91efaeb883b3ae2824f74a6ae332943cf4def1b81892d89f532e4a8e7f7811 |