Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-02-18 | lib/util/charset Use top level iconv.c in source3 | Andrew Bartlett | 1 | -3/+6 | |
The two files were very similar already, the only change required was to adopt the s3 module registration fucntion name. (NTSTATUS wasn't used as the charset code does not otherwise use that type). Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org> | |||||
2011-02-18 | lib/util/charset add functions isupper_m and islower_m | Andrew Bartlett | 1 | -0/+3 | |
2010-11-03 | lib/util/charset/util_unistr: add strlen_m_ext_term() - variant of ↵ | Michael Adam | 1 | -0/+2 | |
strlen_m_ext() counting terminator | |||||
2010-11-03 | lib/util/charset/util_unistr: add strlen_m_ext that takes input and output ↵ | Michael Adam | 1 | -0/+1 | |
charset The function calculates the number of units (8 or 16-bit, depending on the destination charset), that would be needed to convert the input string which is expected to be in in src_charset encoding to the dst_charset (which should be a unicode charset). | |||||
2010-11-03 | lib/charcnv/util_unistr: add next_codepoint_ext() that accepts input charset. | Michael Adam | 1 | -0/+2 | |
next_codepoint() takes as string in CH_UNIX encoding and returns the unicode codepoint of the next (possibly multibyte) character of the input string. The new next_codepoint_ext() function adds the encoding of the input string as a parameter. next_codepoint() now only calls next_codepoint_ext() with CH_UNIX als src_charset argument. | |||||
2010-11-03 | lib/charset/charcnv: add next_codepoint_convenience_ext() that accepts input ↵ | Michael Adam | 1 | -0/+3 | |
charset. next_codepoint_convenience() takes as string in CH_UNIX encoding and returns the unicode codepoint of the next (possibly multibyte) character of the input string. The new next_codepoint_convenience_ext() function adds the encoding of the input string as a parameter. next_codepoint_convenience() now only calls next_codepoint_convenience_ext() with CH_UNIX als src_charset argument. | |||||
2010-11-03 | util/charset: remove a duplicate comment. | Michael Adam | 1 | -5/+0 | |
This seems to have been copied twice from source3/ code. | |||||
2010-09-19 | s3: Fix the charset_pull routine (bug 7531) | Volker Lendecke | 1 | -1/+1 | |
In the push routine we do the SVAL, so we should do the SSVAL here. | |||||
2010-06-25 | Move UCS2 macros to common code | Jelmer Vernooij | 1 | -0/+23 | |
2010-03-18 | charset: fixed a problem with the global use of the iconv_convenience structure | Andrew Tridgell | 1 | -4/+5 | |
We had a crash bug where a cached copy of a iconv convenience pointer was used after being freed when loadparm asked for iconv to reload. This could happen if a python module used a iconv based function before loadparm was completed. The fix is to ensure that any use of this pointer remains valid, by reusing the pointer itself when it has already been initialised, but filling in the child elements with the updated values. | |||||
2009-04-23 | Add a new non-convenience version of push_codepoint. | Jelmer Vernooij | 1 | -1/+2 | |
2009-03-08 | Revert accidental reintroduction of void ** bug. | Jelmer Vernooij | 1 | -3/+3 | |
2009-03-01 | Use common header file for character set handling in Samba 3 and Samba 4. | Jelmer Vernooij | 1 | -8/+103 | |
2009-03-01 | s4: Use same function signature for convert_* as s3. | Jelmer Vernooij | 1 | -6/+8 | |
2009-03-01 | Sync smb_iconv_t type, convert_string return type with Samba 3 equivalents. | Jelmer Vernooij | 1 | -1/+2 | |
2009-03-01 | Add allow_badcharcnv argument to all conversion function, for | Jelmer Vernooij | 1 | -4/+4 | |
consistency with Samba 3. | |||||
2009-01-16 | lib: add strlen_m_term_null from s3. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2008-11-01 | Remove convert_string_talloc_descriptor, add iconv_talloc(). | Jelmer Vernooij | 1 | -1/+5 | |
2008-10-31 | finished adding UTF16_MUNGED charset | Andrew Tridgell | 1 | -2/+2 | |
Changed the approach for the charset to go via utf16, which makes a bit more sense to read. Added a testsuiite for UTF16_MUNGED as part of LOCAL-ICONV | |||||
2008-10-24 | Remove more global_loadparm instances, fix syntax errors. | Jelmer Vernooij | 1 | -1/+1 | |
2008-10-24 | Add version of next_codepoint without iconv_convenience. | Jelmer Vernooij | 1 | -1/+3 | |
2008-10-24 | Remove dependency of charset code on loadparm. | Jelmer Vernooij | 1 | -0/+1 | |
2008-10-24 | Remove iconv_convenience argument from convert_string{,talloc}() but | Jelmer Vernooij | 1 | -2/+12 | |
make them wrappers around convert_string{,talloc}_convenience(). | |||||
2008-10-24 | Remove iconv_convenience parameter from simple string push/pull | Jelmer Vernooij | 1 | -17/+16 | |
functions. | |||||
2008-10-24 | Split up codepoints code, use consistent _m suffix. | Jelmer Vernooij | 1 | -5/+5 | |
2008-10-24 | Rename string_replace_w to string_replace_m, which is more correct. | Jelmer Vernooij | 1 | -1/+1 | |
2008-10-24 | Move charset library to top level. | Jelmer Vernooij | 1 | -0/+154 | |