Quick Search:

View detailed chart Line History

line history graph

View Mode

Logical Physical

Show Arbitrary Diff

From to

Supports revisions and tags.

Watches and RSS

History

trunk 838 145

latest revision download trunk

838 annotated / raw | Diffs: previous, other | Lines: 554 ( +4, -3 )

Created: 2008-09-05 18:07:47 -0500 (2 months 15 days ago) | Author: jhouse | Changeset: 838

QUARTZ-691: improper calculation of whether newly added trigger is earlier than the currently acquired trigger.

Properties

 svn:eol-style = native

830 annotated / raw | Diffs: previous, other | Lines: 553 ( +8, -4 )

Created: 2008-08-20 16:24:51 -0500 (3 months 1 day ago) | Author: jhouse | Changeset: 830

QUARTZ-688: triggers firing early.

Properties

 svn:eol-style = native

824 annotated / raw | Diffs: previous, other | Lines: 549 ( +100, -139 )

Created: 2008-08-19 23:27:54 -0500 (3 months 1 day ago) | Author: jhouse | Changeset: 824

QUARTZ-668, QUARTZ-669: fixes to threading issues with multicore/multicpu systems.

Properties

 svn:eol-style = native

821 annotated / raw | Diffs: previous, other | Lines: 588 ( +5, -0 )

Created: 2008-08-02 23:05:52 -0500 (3 months 18 days ago) | Author: jhouse | Changeset: 821

QUARTZ-686: New config property: org.quartz.scheduler.threadsInheritContextClassLoaderOfInitializer

Properties

 svn:eol-style = native

793 annotated / raw | Diffs: previous, other | Lines: 583 ( +96, -32 )

Created: 2008-04-24 10:42:11 -0500 (6 months ago) | Author: jhouse | Changeset: 793

QUARTZ-632: Scheduling change causes a paused/blocked scheduler to do unnecessary trigger release

Properties

 svn:eol-style = native

785 annotated / raw | Diffs: previous, other | Lines: 519 ( +28, -16 )

Created: 2008-04-10 18:25:02 -0500 (7 months ago) | Author: jhouse | Changeset: 785

QUARTZ-638: synchronize access/mutation of 'signaled' value.

Properties

 svn:eol-style = native

783 annotated / raw | Diffs: previous, other | Lines: 507 ( +5, -5 )

Created: 2008-03-26 21:34:42 -0500 (7 months ago) | Author: jhouse | Changeset: 783

QUARTZ-641: Invalid run triggers with startTime older than about 248 days

Properties

 svn:eol-style = native

612 annotated / raw | Diffs: previous, other | Lines: 507 ( +1, -0 )

Created: 2006-08-27 11:36:42 -0500 (2 years 2 months ago) | Author: jhouse | Changeset: 612

general overhaul of locking, thread-handoff within SimpleThreadPool

Branch point for: quartz_1-6

Tags: quartz_1-6-0-alpha

Properties

 svn:eol-style = native

599 annotated / raw | Diffs: previous, other | Lines: 506 ( +72, -68 )

Created: 2006-07-24 11:19:24 -0500 (2 years 3 months ago) | Author: jhouse | Changeset: 599

QUARTZ-13 - handle missed error case for thread pool - and avoid error case due to shutdown

Properties

 svn:eol-style = native

598 annotated / raw | Diffs: previous, other | Lines: 502 ( +18, -2 )

Created: 2006-07-24 11:10:30 -0500 (2 years 3 months ago) | Author: jhouse | Changeset: 598

QUARTZ-13 - handle missed error case for thread pool

Properties

 svn:eol-style = native

596 annotated / raw | Diffs: previous, other | Lines: 486 ( +1, -2 )

Created: 2006-07-20 13:56:16 -0500 (2 years 4 months ago) | Author: jrosenberg | Changeset: 596

Issue number: QUARTZ-490
Cleare the signaled flag right before we try to acquire a trigger, rather than before we wait to be unpaused/have an avail thread.

Properties

 svn:eol-style = native

574 annotated / raw | Diffs: previous, other | Lines: 487 ( +1, -2 )

Created: 2006-07-05 08:51:14 -0500 (2 years 4 months ago) | Author: jrosenberg | Changeset: 574

Issue number: QUARTZ-13
Fixed checkstyle issues.

Properties

 svn:eol-style = native

570 annotated / raw | Diffs: previous, other | Lines: 488 ( +136, -130 )

Created: 2006-06-21 18:16:39 -0500 (2 years 5 months ago) | Author: jhouse | Changeset: 570

QUARTZ-13 - don't acquire trigger until thread is available.

Properties

 svn:eol-style = native

509 annotated / raw | Diffs: previous, other | Lines: 482 ( +1, -1 )

Created: 2006-05-16 07:27:34 -0500 (2 years 6 months ago) | Author: jrosenberg | Changeset: 509

Issue number: QUARTZ-204
Support "org.quartz.scheduler.makeSchedulerThreadDaemon" property which if true marks the main quartz scheduler thread as daemon.

Properties

 svn:eol-style = native

426 annotated / raw | Diffs: previous, other | Lines: 482 ( +178, -176 )

Created: 2006-03-20 15:40:36 -0600 (2 years 8 months ago) | Author: jrosenberg | Changeset: 426

Issue number: QUARTZ-374
Fixed main Quartz src to comply with checkstyle

Properties

 svn:eol-style = native

413 annotated / raw | Diffs: previous, other | Lines: 480 ( +4, -2 )

Created: 2006-03-16 11:03:27 -0600 (2 years 8 months ago) | Author: jrosenberg | Changeset: 413

Issue number: QUARTZ-369
Cleaned up the logging to be consistent, following these rules:
1. Do not cache the log statically, to avoid potential redeployment issues.
2. Where appropriate, do cache the log in a private final member. By appropriate, I mean if the class always uses the log during normal execution, or if very few of the object are ever created.
For example, AttributeRestoringConnectionWrapper does not cache the log because it only uses the log for warning cases, and an instance is created per connection.
   private final Log log = LogFactory.getLog(getClass());
3. Expose the log through a protected non-static getLog() method that can be then used by any subclass (existing public methods are left public for backwards compatibility, though in a few cases a static getLog() method was changed to be non-static which would break backwards compatibility if the methods were being used, though it seems extremely unlikely they would be.)
4. Pass getClass() to LogFactory.getLog() rather than ClassName.class, so that subclasses always get the correct category name
5. One exception to these rules is UserTransactionHelper which is an all static class, and so has a static getLog method, does not cache the log, and must use the UserTransactionHelper.class category.
6. Also did a quick run through to make sure any debug messages that are building strings dynamically are protected by isDebugEnabled()

Properties

 svn:eol-style = native

170 annotated / raw | Diffs: previous, other | Lines: 478 ( +0, -1 )

Created: 2005-07-16 23:20:59 -0500 (3 years 4 months ago) | Author: jhouse | Changeset: 170

clean up
CVS: ----------------------------------------------------------------------
CVS: Issue number:
CVS:   If this change addresses one or more issues,
CVS:   then enter the issue number(s) here.
CVS: Obtained from:
CVS:   If this change has been taken from another system,
CVS:   then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS:   If this code has been contributed to the project by someone else; i.e.,
CVS:   they sent us a patch or a set of diffs, then include their name/email
CVS:   address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS:   If we are doing pre-commit code reviews and someone else has
CVS:   reviewed your changes, include their name(s) here.
CVS:   If you have not had it reviewed then delete this line.

Branch point for: b_quartz_1-5-x

Tags: quartz_1_5_0_rc1 v1_5_0 quartz_1-5-1 quartz_1-5-2

Properties

 svn:eol-style = native

169 annotated / raw | Diffs: previous, other | Lines: 479 ( +135, -114 )

Created: 2005-07-16 23:20:18 -0500 (3 years 4 months ago) | Author: jhouse | Changeset: 169

Issue number:  QUARTZ-221
Obtained from: jhouse
Submitted by:  jhouse
Reviewed by:   jhouse
CVS: ----------------------------------------------------------------------
CVS: Issue number:
CVS:   If this change addresses one or more issues,
CVS:   then enter the issue number(s) here.
CVS: Obtained from:
CVS:   If this change has been taken from another system,
CVS:   then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS:   If this code has been contributed to the project by someone else; i.e.,
CVS:   they sent us a patch or a set of diffs, then include their name/email
CVS:   address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS:   If we are doing pre-commit code reviews and someone else has
CVS:   reviewed your changes, include their name(s) here.
CVS:   If you have not had it reviewed then delete this line.

Properties

 svn:eol-style = native

145 new annotated / raw | Lines: 458 ( +458, -0 )

Created: 2005-07-12 15:28:48 -0500 (3 years 4 months ago) | Author: jhouse | Changeset: 145

new files (reorganizing repository)
CVS: ----------------------------------------------------------------------
CVS: Issue number:
CVS:   If this change addresses one or more issues,
CVS:   then enter the issue number(s) here.
CVS: Obtained from:
CVS:   If this change has been taken from another system,
CVS:   then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS:   If this code has been contributed to the project by someone else; i.e.,
CVS:   they sent us a patch or a set of diffs, then include their name/email
CVS:   address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS:   If we are doing pre-commit code reviews and someone else has
CVS:   reviewed your changes, include their name(s) here.
CVS:   If you have not had it reviewed then delete this line.

Properties

 svn:eol-style = native

Open Source License registered to the OpenSymphony Project. This license of FishEye is provided to support the development of OpenSymphony only.
Atlassian FishEye, Subversion analysis. (Version:1.6.1 Build:build-325 2008-09-24) - Administration - Page generated 2008-11-21 16:14 -0600