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
2014-11-06FolderWatcher: Check for hidden outside of loopKlaas Freitag
2014-10-13SocketAPI: Use non-recursive (heuristic) computation of iconsMarkus Goetz
2014-07-10Move Folder, FolderMan, and FolderWatcher outside of owncloudsyncOlivier Goffart
Those class are maintaining the folder for the mirall configuration They are not usefull in command line clients Also the FolderWatcher is only used by the folder and not used by the command line clients
2014-05-15Commented verbose logging.Klaas Freitag
2014-05-13make Debian GNU/kFreeBSD compilehefee
2014-03-25Fix build on FreeBSD.Mathieu Arnold
We use libinotify, so the linux folderwatcher works. Based on a patch by: Tobias Berner
2014-03-11Fixed ignored paths matching on OS X.Denis Dzyubenko
We now listen to changes to files and when an event is received we first match the file name to the "ignored paths list" and only if the the file that was changed didn't match figure out which directory needs to be synced.
2014-02-04FolderWatcher: ignore the csync journalOlivier Goffart
2014-01-27Do not include "private" header from "public" headerOlivier Goffart
2014-01-14Remove inotify from cmake files.Klaas Freitag
2014-01-13License header cleanups.Klaas Freitag
2014-01-13Add a pathIsIgnored method to the folderwatcher.Klaas Freitag
2014-01-13Remove event buffering from watcher, other refactoring.Klaas Freitag
2014-01-10Removed unused event interval getter/setter.Klaas Freitag
2014-01-08Use a more Qt'ish folder recursing method, remove unused class.Klaas Freitag
Added unit test.
2013-10-14Do append non empty lines not starting with a hash to ignores.Klaas Freitag
2013-08-21Add the new directories comming from the sync in the watcherOlivier Goffart
2013-07-24OS X: Fix compileMarkus Goetz
2013-07-22INotify backend: honor ignored filesDaniel Molkentin
Actually this needs a careful redesign, but this is good enough to fix the issue. Fixes: #763
2013-07-22ownCloudFolder -> FolderDaniel Molkentin
Fixes #769
2013-07-05More work on ignore/exclude files:Daniel Molkentin
- Introduce split between sytem and user files - Add Editor Current limitation: Picking up the changes requires a restart
2013-03-28Removed verbose logging on Win32.Klaas Freitag
2013-02-19Simplify and fix startup: Steer starting of sync from folderman.Klaas Freitag
2012-12-06Start fs watching with a delay of 2 seconds to don't catch the journal changes.Klaas Freitag
2012-12-06Fix Windows folder watcherDaniel Molkentin
2012-12-06Implement folder watching for OS X using FSEventsDaniel Molkentin
2012-12-06Add windows backend, require Inotify on LinuxDaniel Molkentin
Dummy-backend yanked for now, no support for other Unixes...
2012-12-04pimpl folderwatcherDaniel Molkentin
2012-12-04factor inotify out of folderwatcherDaniel Molkentin
2012-08-17Fix QLatin1String issues.Klaas Freitag
2012-05-21A lot of krazy2 (codechecker) fixes.Klaas Freitag
2012-04-15Replace USE_WATCHER with USE_INOTIFYKlaas Freitag
2012-04-14removed a compile warning non void return type.Klaas Freitag
2012-03-28Let folderwatcher use the exclude list file.Klaas Freitag
simplified naming in mirallconfigfile class.
2012-03-01some changes to get inotify out of win build.Klaas Freitag
removed moc include.
2012-02-29Fixed ignore handling, do not allow hidden files to trigger sync.Klaas Freitag
2012-02-29Added #ifdef USE_WATCHER to switch between INotify and PollingKlaas Freitag
depending on the platform environment var set by Qt.
2012-02-23Added a splashscreen.Klaas Freitag
2012-02-20introduced theming in the status dialog, removed the syncState againKlaas Freitag
and moved it to the SyncResult object to simplify code, removed icon code from folders (WIP), removed some unused code.
2012-02-16Use a hash to store inotified pathes.Klaas Freitag
2011-04-08force the initial sync even if the list is empty as this pointDuncan Mac-Vicar P
2011-04-07gDuncan Mac-Vicar P
Basic implementation of a CSyncFolder Still waiting for Jann's patches for conflictcopy to hit a stable release to make it the default.
2011-04-07Simplify how the event queue works. Now it is just a timerDuncan Mac-Vicar P
that gets restarted on every new event, and the processing starts when no events reset the timer for the event interval.
2011-04-06add proper licensingDuncan Mac-Vicar P
2011-04-06stop poll timer when syncing, and add path to the debug messagesDuncan Mac-Vicar P
2011-04-05move polling system to Folder where it belongsDuncan Mac-Vicar P
2011-04-04- lot of stability improvementsDuncan Mac-Vicar P
- the crash with threads goes away by using QMap - add a polling timer
2011-03-31If the first event happens before 5 secs after starting theDuncan Mac-Vicar P
program, it will always cause it to queue it to avoid event flood (5 secs). So don't init the QTime for last event, and then check if it is null.
2011-03-30show only a summary of subdirectoriesDuncan Mac-Vicar P
2011-03-28* Missing brackets changed all logic around an 'if'Duncan Mac-Vicar P
* Improve debug output