Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-02-05 | Fix several typos | Gevel Tekens | |
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/L3FFAINJJMIOZQNID5HC2DHKJIIIHEYH/ | |||
2024-08-07 | Use dStrdup instead of strdup | Rodrigo Arias Mallo | |
The strdup function is not available in POSIX-2001, so we use our own implementation in dlib: dStrdup. Reviewed-by: dogma | |||
2016-07-13 | cppcheck: fix format string | Johannes Hofmann | |
2016-03-05 | Cleanup. | Sebastian Geerken | |
2014-05-10 | Whitespace. | Sebastian Geerken | |
2014-03-05 | use delete[] to delete array | Johannes Hofmann | |
2013-09-06 | Fix for recent replace. | Sebastian Geerken | |
2013-09-06 | Replace variable length arrays in C++ by new/delete (the former is only ↵ | Sebastian Geerken | |
standard in C, not in C++). | |||
2013-04-23 | Fixes FTBFS on hurd-i386 | Pino Toscano | |
2013-04-19 | trim some spaces | corvid | |
2013-03-30 | Added/updated copyright notices. | Sebastian Geerken | |
2013-01-02 | Fixed valgrind error in Hyphenator. | Sebastian Geerken | |
2012-12-18 | add NULL check in hyphenateSingleWord() | Johannes Hofmann | |
2012-12-15 | a little more detail on hyphenator provenance | corvid | |
2012-12-13 | New function nextUtf8Char; usage in dw::Hyphenator and (partly) dw::Textblock. | Sebastian Geerken | |
2012-12-09 | share hyphenators between windows/tabs | Johannes Hofmann | |
2012-12-06 | Split up words in hyphenation. | Sebastian Geerken | |
2012-12-05 | Hyphenation regard characters, not bytes, at the end. | Sebastian Geerken | |
2012-11-06 | add copright notice to hyphenation patterns in test directory | Johannes Hofmann | |
Add code to ignore lines starting with '%' when parsing pattern files as comments. noticed-by: corvid <corvid@lavabit.com> | |||
2012-11-05 | trim some spaces | corvid | |
2012-10-29 | rm semicolons | corvid | |
2012-09-21 | fix some free() / delete mismatches | Johannes Hofmann | |
2012-09-20 | use a packed trie to store hyphenation patterns | Johannes Hofmann | |
Hyphenation patterns are now stored in a packed trie as described in Frank Liang's "Word Hy-phen-a-tion by Com-put-er" paper. This reduces memory consumption considerably compared to the previous hash table based trie representation. | |||
2012-09-13 | typos/spelling/a little English | corvid | |
2012-09-13 | Correction of last patch. | Sebastian Geerken (patch by Johannes Hofmann) | |
2012-09-12 | No hard-coded paths for hyphenation patterns anymore. | Sebastian Geerken (patch by Johannes Hofmann) | |
2012-07-12 | new file "unicode.hh" and "unicode.cc" for Unicode and UTF-8 issues | sgeerken | |
2012-07-11 | At least at the beginning, UTF-8 characters are countet correctly. ↵ | sgeerken | |
Ückendorf is now hyphenated correctly. | |||
2012-07-11 | Corrected bug in getHyphenator: wild pointers | sgeerken | |
2012-07-10 | For hyphenation, all characters not belonging to the actual word, e.g. ↵ | sgeerken | |
punctuation marks, are ignored. Currently only words for English and German.y | |||
2012-07-09 | Cleanup | sgeerkenq | |
2012-07-09 | Hyphenation exceptions. Some bug fixes. | sgeerken | |
2012-07-06 | Attribute "lang" is evaluated for hyphenation; part of dw:core::style::Style.y | sgeerken | |
2012-07-04 | Hyphenator: better file error handling | sgeerken | |
2012-06-28 | ... cleanup of Hyphenator finished. Calls to malloc() are now reduced. | sgeerken | |
2012-06-28 | ... cleaning up ... | sgeerken | |
2012-06-28 | Getting rid of the old method ... | sgeerken | |
2012-06-27 | Changed interface (but not yet implementation) of Hyphenator. | sgeerken | |
2012-06-27 | First version of automatic hyphenation. (Still a large number of bugs.) | sgeerken | |
2012-06-26 | some refactoring | sgeerken | |
2012-06-25 | Static hash map for hyphenators. Patterns are loaded from ↵ | sgeerken | |
/usr/local/lib/dillo/hyphenation. | |||
2012-06-25 | Hyphenation moved to dw (soon to be used by dw::Textlock) | sgeerken | |