summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Pyinotify 0.8.80.8.8Sebastien Martini2009-11-022-3/+3
|
* Fixed path renaming when a subtree is moved (contributed withSebastien Martini2009-10-301-1/+4
| | | | | Linda Octalina linda_octa@yahoo.com and John Feuerstein john@feurix.com).
* Automatically watch a non watched tree moved to a watched directorySebastien Martini2009-10-291-1/+7
| | | | | with flag auto_add activated (contributed by John Feuerstein john@feurix.com).
* Rename all watched sub directories paths of a given parentSebastien Martini2009-10-291-2/+19
| | | | | directory when this parent directory is moved and is assigned a new pathname (contributed by john@feurix.com).
* Updated comments.Sebastien Martini2009-10-251-6/+11
|
* Updated examples (mostly comments).Sebastien Martini2009-10-258-20/+15
|
* Implemented few small changes into ProcessEvent.Sebastien Martini2009-10-246-28/+68
| | | | | | | | | | | | | - Added new method ProcessEvent.process_IN_Q_OVERFLOW. This will serve as default method for catching IN_Q_OVERFLOW events. This method has been implemented because it seems to be some confusion when a process_default method from client code receives this event and try to access unknown attributes. By default this method only outputs a warning. - Added new class PrintAllEvents. This class is used from command line for printing received events. Therefore from now ProcessEvent.process_default behavior is updated to do nothing. - Updated examples.
* Fixed compatibility issue between Python 2.4 and UnicodeLogRecordSebastien Martini2009-10-191-2/+8
| | | | (reported by colin@ximenes.org.uk).
* Fixed typo treshold -> threshold (reported by stromnov@gmail.com).Sebastien Martini2009-10-121-29/+29
|
* Added new example autocompile.py: run a specified command each timeSebastien Martini2009-09-291-0/+61
| | | | a file with a given extension is modified.
* Pyinotify 0.8.70.8.7Sebastien Martini2009-09-242-4/+4
|
* Modified Makefile.Sebastien Martini2009-09-021-2/+8
|
* Removed docstrings/ directory from index.Sebastien Martini2009-09-0269-15353/+1
|
* Added a new attribute 'src_pathname' to IN_MOVED_TO events. ThisSebastien Martini2009-09-021-4/+20
| | | | | | | | | | string attribute is present when an association were found with a previously caught IN_MOVED_FROM event (they share the same cookie). That imply that IN_MOVED_FROM events need to be watched too in order to successfully provide that information. src_pathname represents the source pathname from where the file/directory 'pathname' was moved from. Idea contributed and initially implemented by cruxic@gmail.com.
* Renamed ChangeLog.Sebastien Martini2009-09-021-0/+0
|
* Updated comments and documentation.Sebastien Martini2009-09-0234-93/+93
|
* Minors improvements.Sebastien Martini2009-08-2841-2106/+2366
|
* Updated comments.Sebastien Martini2009-08-2835-2320/+2451
|
* Few trivial changes suggested pinpointed by pylint.Sebastien Martini2009-08-261-12/+12
|
* Removed Psyco optional import (nobody used this option anyway).Sebastien Martini2009-08-063-10/+408
|
* - Added new notifier AsyncNotifier it relies over asyncore.file_dispatcher forSebastien Martini2009-08-0662-1939/+2107
| | | | | | dispatching events (contributed by Guido Trotter ultrotter@quaqua.net). - Fixed issue with compatibility mode. - Updated documentation.
* Updated documentation.Sebastien Martini2009-08-0634-1870/+1980
|
* Added new function compatibility_mode() to turn on the compatibilitySebastien Martini2009-08-061-10/+23
| | | | mode with Pyinotify 0.7.1.
* - Added a new compatibility option COMPATIBILITY_MODE to improve theSebastien Martini2009-08-0652-1905/+2614
| | | | | | | | | | backward compatibility with Pyinotify 0.7.1. This option is set to False by default and should be turned to True only for old programs developped for Pyinotify 0.7.1. With this option: 'is_dir', 'event_name', 'EventsCodes.IN_*' and 'EventsCodes.ALL_EVENTS' are provided. Refer to http://git.dbzteam.org/?p=pyinotify.git;a=blob;f=NEWS; for the list of incompatibles changes introduced with Pyinotify 0.8.x. - Updated documentation.
* Updated example stats_threaded.py and updated various comments intoSebastien Martini2009-06-162-17/+36
| | | | pyinotify.py
* Improved error message in method _SysProcessEvent.process_IN_MOVE_SELFSebastien Martini2009-06-101-5/+11
|
* Removed native unicode support for paths, unicode paths are thereforeSebastien Martini2009-06-062-24/+64
| | | | discouraged and are converted to strings if used anyway.
* Fixed unicode paths support with ctypes.Sebastien Martini2009-06-052-12/+31
|
* Moved examples to dedicated directory.Sebastien Martini2009-05-2313-0/+0
|
* - Updated documentation.Sebastien Martini2009-05-1555-2101/+2205
| | | | - Fixed libc version check (contributed by Terje Røsten terje.rosten@ntnu.no).
* Updated documentation.Sebastien Martini2009-05-0132-1865/+1864
|
* Fixed comments related to the option 'quiet' into WatchManagerSebastien Martini2009-05-011-3/+3
| | | | (reported by forest@alittletooquiet.net).
* Fixed format strings of messages passed to the logging moduleSebastien Martini2009-05-011-18/+16
| | | | (reported by Andrey Rahmatullin wrar@altlinux.org).
* - Updated license header.0.8.6Sebastien Martini2009-04-131-4/+5
|
* - Rewritten Color class.Sebastien Martini2009-04-1368-2926/+1127
| | | | - Updated license to GPLv2+
* - Fixed SysCtlINotify compatibility with Python 2.6.1 (reported by ↵0.8.5Sebastien Martini2009-03-0647-2076/+2031
| | | | | | | | prologic@shortcircuit.net.au) - Improved ThreadedNotifier polling algorithm - Added warning comment in watch_transient_file(), this function will require to be fixed later (reported by Matt Brown deadguysfrom@gmail.com) - Stop catching exceptions on event loop (problem reported by Jonathan Ballet jonathan.ballet@securactive.net)
* - Fixed chain of classes including ChainIfTrue (reported by Matt Brown0.8.4Sebastien Martini2009-02-234-11/+21
| | | | | | deadguysfrom@gmail.com) - Reverted exception handling modifications - Documentation
* - Improved loop event error handling (contributed by0.8.3Sebastien Martini2009-01-309-7/+742
| | | | | jonathan.ballet@securactive.net) - Turned off implicit psyco import (suggested by stromnov@gmail.com)
* Updated docstrings generated documentation.Sebastien Martini2009-01-0662-2954/+3193
|
* Fixed libc version check on arch 64 bits.Sebastien Martini2009-01-061-7/+4
|
* - Removed all sys.exit calls, replaced by exceptionsSebastien Martini2009-01-062-19/+54
| | | | - Reverted (temporaly) libc version check (bug on arch 64 bits)
* Check libc version (contributed by Robin Wittler <robin.wittler@credativ.de>).Sebastien Martini2008-12-171-2/+9
|
* Removed annoying psyco message (suggested by Henri Tuhola).Sebastien Martini2008-11-042-8/+7
|
* Add examples from tutorial.Sebastien Martini2008-09-292-0/+50
|
* - Documentation updated.Sebastien Martini2008-08-1063-2136/+2709
| | | | - Version 0.8.0t released.
* Revert "New attribute Notifier.event_queue_size"Sebastien Martini2008-07-281-2/+1
| | | | This reverts commit 8e300b46ed892704a4484e4734c7d9e2c7100877.
* New attribute Notifier.event_queue_sizeSebastien Martini2008-07-281-1/+2
|
* Flag example files as 'Example'.Sebastien Martini2008-07-018-2/+20
|
* Documentation.Sebastien Martini2008-06-301-4/+16
|
* TODO updated.Sebastien Martini2008-06-301-0/+1
|