summaryrefslogtreecommitdiffstats
path: root/src/object/uri.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-12-24rebase_hrefs: store IRI (UTF-8), not URI (ASCII)Thomas Holder1-0/+79
2018-12-16Inkscape::URI::Impl -> shared_ptrThomas Holder1-43/+2
2018-12-13remove most of Inkscape::URI::ImplThomas Holder1-36/+24
2018-12-13remove Inkscape::URI::fromUtf8Thomas Holder1-31/+0
2018-12-09remove Inkscape::URI::getFullPathThomas Holder1-39/+7
2018-12-09fix, test, and document more Inkscape::URI methodsThomas Holder1-20/+36
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-05Replacement for xmlBuildRelativeURIThomas Holder1-11/+62
- xmlBuildRelativeURI has a bug - we add a special case: Don't cross filesystem root
2018-11-05fix URI::from_dirname("/")Thomas Holder1-1/+6
2018-11-04include <cstring>Thomas Holder1-0/+2
fixes compiling on Linux Mint 18.3
2018-11-03Inkscape::URI API enhancementsThomas Holder1-25/+197
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-6/+6
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-1/+1
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-1/+1
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-0/+0
A lot of header clean-up.
2017-11-07Misc. typosUnknown1-1/+1
Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
2017-10-06Small refactoring + elim trail space.Shlomi Fish1-5/+3
2017-02-05Fix C++11 errors and warnings with g++-7Alex Valavanis1-6/+8
Fixed bugs: - https://launchpad.net/bugs/1660992 (bzr r15477)
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-1/+0
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-0/+1
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-1/+0
(bzr r15025)
2015-10-28static code analysisKris De Gussem1-1/+1
(bzr r14432)
2014-03-18Fix for Bug #1291546 (Linking color profile from Document properties dialog ↵Nicolas Dufour1-0/+3
crashes Inkscape). Fixed bugs: - https://launchpad.net/bugs/1291546 (bzr r13165)
2014-02-26Remove DOM directory and reduce size of inkscape. Use Inkscape::URI and save ↵Martin Owens1-13/+44
ziptool to utils. (bzr r13047.1.5)
2014-02-20Not finished by improved data uri supportMartin Owens1-0/+18
(bzr r13047.1.2)
2014-02-20Add data uri checking back into the codeMartin Owens1-0/+22
(bzr r13047.1.1)
2014-02-20Reverting r13045.Johan B. C. Engelen1-46/+4
1. It contains a memleak realpath allocates new memory if the second argument is NULL. In the added code, this memory is never freed. 2. Breaks build on Windows (realpath(...) not found) 3. Please don't add functions that use C-strings unnecessarily. Simply rewrite parseDataUri to parseDataUri(const std::string &uri), and use C++'s string methods. ("#include <cstring.h>" is a huge red flag upon code review) 4. Please read this about "realpath" http://insanecoding.blogspot.ch/2007/11/pathmax-simply-isnt.html (bzr r13046)
2014-02-20Add test for URI and help with data uris.Martin Owens1-4/+46
(bzr r13045)
2014-01-26Check file existance and clean up memory issues thanks to KK and JohanMartin Owens1-3/+14
(bzr r12979)
2014-01-25Move absolute path generator to URI and use std::stringsMartin Owens1-0/+13
(bzr r12977)
2011-10-27Fixing more broken and split doc comments.Jon A. Cruz1-60/+1
(bzr r10697)
2011-10-03Another minor pass of Doxygen cleanup.Jon A. Cruz1-41/+55
(bzr r10659)
2010-11-17Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan1-1/+1
fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)