summaryrefslogtreecommitdiffstats
path: root/src/extension/output.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-31Add base_directory for extensions loaded from a file.Patrick Storz1-1/+2
2019-08-31cleanup includes a bitPatrick Storz1-2/+7
2019-08-31Implement "translationdomain" attribute for extensionsPatrick Storz1-9/+22
Will allow extensions to ship their own message catalog used for translation of the extension#s strings. Needs to be set on the root <inkscape-extension> element of the .inx Currently supported values: - unset: use default textdomain (which happens to be 'inkscape') - 'inkscape': use Inkscape's message catalog - 'none': disable translation for the extension's strings
2019-08-31Remove unused and disabled "help" feature for extensionsPatrick Storz1-1/+1
2019-08-31Move prefdialog to own directoryPatrick Storz1-1/+1
2018-11-08Clarify licensesMax Gaukler1-1/+2
- add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
2018-11-07fix clipboard URL rebasingThomas Holder1-1/+2
2018-06-19Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot1-7/+7
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-11/+11
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-01-08Misc. typosluz.paz1-2/+2
Found via `codespell`
2017-12-22Allow extensions to throw more fine-grained exceptionsEduard Braun1-6/+1
This allows to tell the user something more helpful than "File could not be saved" (leaving the reason open for speculation). The former implementation somehow grew to only ever throw Inkscape::Extension::Output::save_failed for any exception that occurred (which did not really matter as we did not throw anything else but certainly wasn't very useful either). Questionable throwing behavior was introduced in commits trying to workaround other issues: - output.cpp a874b82b41c08fc1738b449d400fcc6aeb85d72a - system.cpp d8d60c60ebeeefb068d9b68bf7d96f1f1f88518a
2016-03-18[Bug #1558177] Simplify if conditions in Script.cpp.raphael02021-2/+1
Fixed bugs: - https://launchpad.net/bugs/1558177 (bzr r14715)
2012-02-26header cleaningAlex Valavanis1-1/+1
(bzr r11017)
2012-01-03Janitorial tasks: get rid of deprecated repr wrapper functionsKris De Gussem1-9/+9
(bzr r10830)
2009-08-06Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert1-1/+1
which cannot be fixed easily. (bzr r8422)
2009-08-05SPDocument->Documentjohnce1-1/+1
(bzr r8405)
2009-08-01FIX 309856 353847: correctly advertise exception leads to error message dialogueAdib Taraben1-1/+1
(bzr r8380)
2009-04-06noop: Rename argument from uri to filename for Extension::...::save ↵Peter Moulder1-3/+3
implementations, given that that's how it's used at present. Add a couple of fixme comments to do with use of this argument. (bzr r7637)
2008-09-21if export (most likely cairo) fails, issue a warning instead of crashingbulia byak1-2/+2
(bzr r6858)
2008-04-21r19076@shi: ted | 2008-04-21 15:42:45 -0700Ted Gould1-1/+4
Core of having a real namespace for Inkscape extensions. r19077@shi: ted | 2008-04-21 15:50:12 -0700 First layer of adding NS r19078@shi: ted | 2008-04-21 15:56:03 -0700 Whew, doing the rest of them. (bzr r5483)
2008-04-17A small step towards making the inx files fully XML / schema compliantMarcin Floryan1-1/+1
(bzr r5464)
2006-08-22I added Johan's badass patch for save a copy with the features I requested. Jon Phillips1-28/+1
Now it all works quite well! Great! (bzr r1630)
2006-08-22Committed a great patch which adds a Save A Copy menu function. This is the ↵Jon Phillips1-2/+2
first gloss of this patch...I will add more stuff to it shortly... (bzr r1628)
2006-03-29r10921@tres: ted | 2006-02-13 09:40:25 -0800Ted Gould1-1/+1
Adding in support for a <help> tag in the base extension part of the INX file. Currently that just gets passed to the prefdialog, but it will be used in a little while. (bzr r334)