summaryrefslogtreecommitdiffstats
path: root/src/xml/Makefile_insert (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-08-08Remove deprecated Autotools and btool files. Please use CMake insteadAlex Valavanis1-51/+0
(bzr r15046)
2012-10-15Files in /src that no longer existTed Gould1-2/+1
(bzr r11804.1.2)
2011-05-06Adding initial cut of resource manager.Jon A. Cruz1-0/+1
(bzr r10198)
2010-03-14Move around files to remove some vanity directories.Krzysztof Kosi??ski1-1/+0
Also remove the obsolete IDL file stub. (bzr r9194)
2009-04-07Move Inkscape::IO::fixupHrefs to Inkscape::XML::rebase_hrefs in new file ↵Peter Moulder1-0/+2
xml/rebase-hrefs.*. Give it the old and new base directory, so that it can change hrefs without relying on sodipodi:absref. Also create a new function sp_repr_save_rebased_file that changes all xlink:href attributes as it writes them, so that we don't need to modify the owning document. (Especially useful for "Save a copy" or exporting.) extension/system.cpp: (Inkscape::Extension::save): Don't call sp_document_set_uri even temporarily other than at the same time as calling rebase_hrefs. (Otherwise, existing relative hrefs will point nowhere.) When exporting plain SVG, change the relative hrefs according to the destination filename. (bzr r7643)
2009-02-20Only build static libraries for subdirs than actually contain libraries, Krzysztof Kosi??ski1-14/+1
rather than for every subdirectory. (bzr r7336)
2008-12-29Build a single test executable on Linux to match Windows build system.Krzysztof Kosi??ski1-18/+1
(bzr r7040)
2008-12-28Now users can design a font within inkscape, save it and then open the Felipe Corr??a da Silva Sanches1-0/+2
SVG file in Fontforge in order to export a truetype font (or other system font formarts fontforge supports). This improves previous workflow of font design using Inkscape which involved creating one SVG for each glyph. Now user only needs to create a single SVG file containing an SVGFont. Glyph kerning settings for the font can also be defined withing Inkscape itself with live preview. The kerning management still needs some improvements but is currently functional at least. Improvements in the SVGFonts dialog: * In Global Settings tab you can define the font family name. Other attributes should be added to this tab in the future. * Glyphs tab allows the user to: ** see a list (combobox) of glyphs available in the currently selected font. ** add/remove glyphs ** edit glyph name and unicode ** set the glyph curves based on a given path (selected from canvas). Same feature for the missing glyph. * Kerning tab allows user to: ** add new kerning pairs ** adjust kerning values of selected kerning pair ** live preview while adjusting the kerning values Code refactoring: * Inner classes DocumentProperties::SignalObserver and FilterEffectsDialog::SignalObserver were duplicated code and another instance would be needed in SVGFonts dialog. So, I moved it to Inkscape::XML::SignalObserver (in helper-observer.{cpp,h}) * changed SPGlyph->glyph_name and SPGlyph->unicode from char* to Glib::ustring * added sp_remove_resource to the release method in sp-font.cpp * glyph curves used to be stored (in d attribute) and rendered upside-down. Now that bug is fixed. Sorry about this huge commit. I got one week away from the Internet during a xmas travel. The lack of 'net connection made me work more intensely in Inkscape :-D Felipe Sanches (bzr r7029)
2008-12-09Simplify "make check" makefile rules and remove most of the obsolete Krzysztof Kosi??ski1-28/+9
utest-based tests. (bzr r6976)
2008-12-08"make check" now compiles and runs on Linux.Krzysztof Kosi??ski1-5/+5
(bzr r6973)
2008-09-23* Lots of documentation for the Inkscape::XML namespaceKrzysztof Kosi??ski1-1/+2
* Doxygen fixes for a few files * Garbage-collected allocator for STL containers (bzr r6877)
2008-08-02Enable exception handling for CxxTest in MakefilesJasper van de Gronde1-1/+1
(bzr r6524)
2008-07-05Change link line for a couple of the test programs, so that `make check' ↵Peter Moulder1-0/+3
compiles again. (bzr r6193)
2008-03-07add basic support for preserving processing instructions in the ASTMenTaLguY1-0/+1
(bzr r4987)
2007-07-01initial implementation of XML::Subtree API for tracking changes on aMenTaLguY1-0/+2
whole-subtree basis; the initial implementation does not have very good performance for large subtrees, but should work well for smaller ones (bzr r3158)
2007-01-20merge XML::Session into XML::DocumentMenTaLguY1-4/+0
(bzr r2248)
2007-01-13full correction for rest of test buildsKees Cook1-3/+11
(bzr r2201)
2006-07-14* src/Makefile_insert, src/Makefile.am, src/svg/Makefile_insert,mjwybrow1-1/+1
src/xml/Makefile_insert, src/libnr/Makefile_insert: Add "$(srcdir)/" to some things so that "make check" works in the case that the build directory is somewhere other than the source directory. (bzr r1414)
2006-04-27Adding multiple test output formats.Jon A. Cruz1-1/+1
(bzr r592)