| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
This allows users to install modules there and use them easily
within other modules (for example required for extension manager)
|
| |
|
|
|
|
|
|
|
|
|
| |
By default, Python 2.x will encode output as ASCII to STDOUT/STDERR if
the output is piped. This commit explicitly requests UTF-8 output by
setting the PYTHONIOENCODING environment variable.
Note this will not fix text encoding problems where the extension itself
does not support Unicode properly.
Refs: https://gitlab.com/inkscape/extensions/merge_requests/90
|
| |
|
|
| |
Closes #223
|
| |
|
|
|
| |
It points at the same folder currently, but this will change with
https://gitlab.com/inkscape/inkscape/issues/82
|
| |
|
|
|
|
|
|
|
|
| |
Contrary to what the name and placing suggest it's not a general
utility function but a specialized function that constructs the full
value to set for PYTHONPATH.
Despite the misleading placement most functionality is unneeded:
* INKSCAPE_EXTENSIONDIR should always be absolute
* g_setenv recommends UTF-8 on Windows
|
| |
|
|
|
|
|
|
|
|
|
|
| |
This primarily allows extensions to simply call "inkscape"
without requiring the user to modify environment variables or
worrying about different versions of inkscape on the same machine
(as we prefix the search path).
We did this already for Windows but the code was removed in
db05b842cba28f01b431eee890537959aa2d8fe3
Partially fixes https://gitlab.com/inkscape/inkscape/issues/115
|
| |
|
|
|
|
|
|
| |
See ecfc9efaf66d054fda239f48ef984190a89e6bae for details.
This was dropped in db05b842cba28f01b431eee890537959aa2d8fe3
Partial fix for https://gitlab.com/inkscape/inkscape/issues/115
|
| | |
|
| |
|
|
|
|
| |
Function got lost in 408cb49b
Fixes #60
|
| | |
|
| | |
|
| |
|
|
| |
usage when graphic server is not available
|
|
|
Use Gio::File for accessing files.
Use Gio options to handle command line arguments.
Use Gio::Actions for some command line arguments.
Move file export code to src/io/file-export-cmd.h/.cpp. Make into class.
|