Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-22Move csync to src/csyncJocelyn Turcotte
2017-07-13csync: Move the locale<->utf8 conversion to a different fileOlivier Goffart
It's a C++ file so we will be able to use Qt from it
2017-07-13csync: Remove iconv depedencyOlivier Goffart
We use iconv to normalize the string on mac. But the iconv version on mac does not support full unicode. So we will use Qt to normalize the string
2015-08-24csync_excluded: Another speedup #3638Christian Kamm
Build a list of path components outside of the exclude pattern loop.
2015-07-08Created two functions c_utf8_string_to_locale and c_utf8_path_to_locale.Klaas Freitag
Before we only had c_utf8_to_locale, but now functionality is needed to convert a path to UNC before converting it. That does c_utf8_path_to_locale now, while c_utf8_string_to_locale only converts the plain string, ie. to generate wide char strings for output.
2015-07-08Moved the makeWinLongPath function to c_path and rename to c_path_to_UNCKlaas Freitag
Other cleanups like streamlined allocation and more.
2015-07-08long win pathes: Some minor refinements and documentationsKlaas Freitag
2015-07-08Long win pathes: Make makeLongWinPath function return the num of alloc bytes.Klaas Freitag
This enables the calling function to free these accordingly. That is needed because the makeLongWinPath for efficiency reasons does not always realloc the original string.
2015-07-08Add a FIXME comment.Klaas Freitag
2015-07-08Added function to change the filename to be longer than MAX_PATHKlaas Freitag
2015-01-23CSync: Remove memory checksMarkus Goetz
We will get OOMed before this fails.
2014-10-24Ignore reserved words on WindowsDaniel Molkentin
Fixes #2385 and #2386
2014-06-04CSync: Remove unused std functionsMarkus Goetz
2014-02-25Fix potential crash in c_iconv on Mac OS XDaniel Molkentin
2014-01-15Make it compile with the merge of csync mirallOlivier Goffart
2014-01-13Move csync in order to merge it with mirallOlivier Goffart