summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Moved version history under docs/Alex Grönholm2014-06-182-186/+183
| |
* | Defer replacing undefined options with defaults until the job is really ↵Alex Grönholm2014-06-188-32/+59
| | | | | | | | | | | | scheduled Allow specifying an explicit next_run_time when adding a job
* | Finished the migration docsAlex Grönholm2014-06-171-16/+40
| |
* | Somewhat improved the README to look better on non-sphinx renderersAlex Grönholm2014-06-171-5/+4
| |
* | Finished the "Extending APScheduler" documentationAlex Grönholm2014-06-175-26/+120
| |
* | Format tracebacks before trying to pass them from run_job() because they ↵Alex Grönholm2014-06-164-5/+33
| | | | | | | | aren't serializable
* | Raise ValueError instead of KeyError when attempting to add an executor or ↵Alex Grönholm2014-06-162-6/+8
| | | | | | | | job store and one already exists with the same alias
* | Added entry points for executors and job stores tooAlex Grönholm2014-06-1617-52/+140
| | | | | | | | Added shortcut methods for configuring executors and job stores
* | Accept the max_workers parameter as a string tooAlex Grönholm2014-06-161-2/+2
| |
* | Made the wakeup() method publicAlex Grönholm2014-06-167-26/+29
| |
* | Fixed infinite loop and index corruption in MemoryJobStoreAlex Grönholm2014-06-162-38/+80
| |
* | Separated the two pool executors to different classes and moved the debug ↵Alex Grönholm2014-06-159-68/+96
| | | | | | | | executor to its own module
* | Added the prefix option to configure()Alex Grönholm2014-06-151-2/+7
| |
* | Made the trigger plugins/classes lists privateAlex Grönholm2014-06-152-12/+12
| |
* | Added unit tests for the BaseScheduler classAlex Grönholm2014-06-1515-539/+946
| | | | | | | | | | | | | | Fixed a number of bugs in BaseScheduler Added the jobstore_alias parameter to run_job() so that the proper event can be generated Added scheduler events for adds/removals of executors Fixed the scheduler configuration to match with the documentation
* | Stop looking for due jobs when the first non-matching job is foundAlex Grönholm2014-06-131-2/+3
| |
* | Added __slots__ to the trigger classesAlex Grönholm2014-06-133-0/+6
| |
* | Changed the trigger API to allow it to work with run times in the pastAlex Grönholm2014-05-319-116/+108
| |
* | Fixed AsyncIO not getting tested on Python 3.2 and lowerAlex Grönholm2014-05-302-3/+6
| |
* | Overhauled the tests for apscheduler.util moduleAlex Grönholm2014-05-302-122/+150
| |
* | Overhauled the tests for Job classAlex Grönholm2014-05-303-89/+229
| |
* | Tweaked the scheduler and job stores API and added the reschedule_job() methodAlex Grönholm2014-05-3011-167/+201
| |
* | Gave up on gevent+py3 with tox for nowAlex Grönholm2014-05-301-3/+2
| |
* | Revised the rest of the documentationAlex Grönholm2014-05-2910-495/+544
| |
* | Documented both scheduler exceptions in the correct placeAlex Grönholm2014-05-292-2/+5
| |
* | Removed job run counting and the max_runs options since they could not be ↵Alex Grönholm2014-05-287-52/+24
| | | | | | | | reliably implemented
* | Fixed invocation of scheduler.modify_job()Alex Grönholm2014-05-282-4/+28
| |
* | Respect the scheduler defaults in @scheduled_job()Alex Grönholm2014-05-281-3/+4
| |
* | Show inheritance for events, job stores and schedulersAlex Grönholm2014-05-2812-0/+13
| |
* | Display trigger aliases and show inheritanceAlex Grönholm2014-05-283-0/+9
| |
* | Exclude several directories from autodoc searchAlex Grönholm2014-05-281-1/+2
| | | | | | | | Arrange class members in documentation alphabetically
* | Fixed signatures of job store constructors to show the correct default value ↵Alex Grönholm2014-05-284-4/+5
| | | | | | | | for pickle_protocol
* | Fixed the signature of the add_job() method in the docsAlex Grönholm2014-05-282-5/+11
| |
* | Added API documentation for apscheduler.eventsAlex Grönholm2014-05-282-12/+58
| |
* | Omit the static path since this project has no static filesAlex Grönholm2014-05-281-1/+1
| |
* | Added API documentation for job storesAlex Grönholm2014-05-289-36/+121
| | | | | | | | Changed MongoDBJobStore to use MongoClient instead of Connection
* | Moved scheduler documentation to the appropriate API documentation locationsAlex Grönholm2014-05-2813-28/+191
| | | | | | | | Documented extra scheduler options
* | Moved the trigger documentation to the API documentationAlex Grönholm2014-05-289-244/+238
| | | | | | | | Updated and rearranged the trigger examples
* | Updated API documentationAlex Grönholm2014-05-2827-42/+207
| |
* | Fixed print_jobs() related tests on WindowsAlex Grönholm2014-05-281-9/+6
| |
* | Fixed OverflowError on WindowsAlex Grönholm2014-05-2813-18/+30
| | | | | | | | Instruct users to use Ctrl+Break on Windows rather than Ctrl+C
* | Forgot to commit test_job after renaming Job.get_run_timesAlex Grönholm2014-05-261-3/+3
| |
* | Removed commented code and improved the docstrings in the Job classAlex Grönholm2014-05-261-9/+21
| |
* | Marked Job.get_run_times() as privateAlex Grönholm2014-05-262-10/+12
| |
* | Renamed alias -> jobstore_aliasAlex Grönholm2014-05-261-3/+3
| |
* | Fixed Py3 unicode issueAlex Grönholm2014-05-261-1/+1
| |
* | Added apscheduler.__version__ for PEP 396 compliancyAlex Grönholm2014-05-261-0/+2
| |
* | Use an include directive to prevent duplication of textAlex Grönholm2014-05-261-22/+5
| |
* | Skip coverage reporting until a reliable method for doing so can be foundAlex Grönholm2014-05-262-3/+3
| |
* | Removed the JobHandle classAlex Grönholm2014-05-2611-196/+128
| |