This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jbehave-core".

The branch, master has been updated
       via  347b46b1e8a6ac13bbd80fcc40559c8edbc55db9 (commit)
       via  e113da21ca095bbdcf3106f84e789c989a066c0c (commit)
       via  c0e5cf9cf473ccc6dd1aa732e9590b9e054b234d (commit)
      from  63b914bb78d74619aa2f91a2f6da09c50de3c7eb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 347b46b1e8a6ac13bbd80fcc40559c8edbc55db9
Author: Mauro Talevi <[email protected]>
Date:   Sat Jun 12 00:04:24 2010 +0100

    JBEHAVE-308:  Updated documentation.

commit e113da21ca095bbdcf3106f84e789c989a066c0c
Author: Mauro Talevi <[email protected]>
Date:   Fri Jun 11 18:18:09 2010 +0100

    JBEHAVE-310:  Renamed failure and pending step strategies.  Renamed package 
to org.jbehave.core.failures. Made implementations standalone classes.

commit c0e5cf9cf473ccc6dd1aa732e9590b9e054b234d
Author: Mauro Talevi <[email protected]>
Date:   Fri Jun 11 09:47:32 2010 +0100

    JBEHAVE-308:  Merged StepsConfiguration into StoryConfiguration.

-----------------------------------------------------------------------

Summary of changes:
 .../src/site/content/configuring-stories.html      |  151 +++++-----
 .../src/site/content/developing-stories.html       |   27 +-
 distribution/src/site/content/faq.html             |   12 +-
 distribution/src/site/content/i18n-stories.html    |   28 +-
 .../src/site/content/migrating-from-2.x.html       |   13 +-
 distribution/src/site/content/pending-steps.html   |    6 +-
 distribution/src/site/content/reports.html         |   47 ++-
 distribution/src/site/content/running-stories.html |   43 ++--
 .../com/lunivore/gameoflife/steps/GridStory.java   |    4 +-
 .../examples/trader/ClasspathTraderEmbedder.java   |   33 +-
 .../org/jbehave/examples/trader/TraderStory.java   |   34 +--
 .../jbehave/examples/trader/TraderStoryRunner.java |    2 +-
 .../jbehave/examples/trader/URLTraderEmbedder.java |    6 +-
 .../trader/converters/TraderConverter.java         |    4 +-
 .../trader/guice/TraderStoryUsingGuice.java        |    4 +-
 .../examples/trader/i18n/ItTraderSteps.java        |    4 +-
 .../examples/trader/i18n/ItTraderStory.java        |   37 +--
 .../trader/pico/TraderStoryUsingPicoContainer.java |    4 +-
 .../examples/trader/spring/SpringTraderRunner.java |   25 +-
 .../trader/spring/TraderStoryUsingSpring.java      |    4 +-
 .../trader/stories/ClaimsWithNullCalendar.java     |    8 +-
 .../stories/FailureFollowedByGivenStories.java     |    4 +-
 .../java/org/jbehave/ant/AbstractStoryTask.java    |   20 +-
 .../java/org/jbehave/ant/StoryPathRunnerTask.java  |    2 +-
 .../main/java/org/jbehave/ant/StoryRunnerTask.java |    2 +-
 .../org/jbehave/core/RunnableStoryBehaviour.java   |   12 +-
 .../KeywordsBehaviour.java                         |    5 +-
 .../PropertyBasedStoryConfigurationBehaviour.java  |   44 ++--
 .../UnmodifiableStoryConfigurationBehaviour.java   |   32 ++-
 .../jbehave/core/embedder/EmbedderBehaviour.java   |  149 ++++-----
 .../core/embedder/StoryRunnerBehaviour.java        |   75 +++---
 .../core/errors/ErrorStrategyBehaviour.java        |   16 -
 ...StrategyInWhichWeTrustTheReporterBehaviour.java |   20 --
 .../core/failures/FailureStrategyBehaviour.java    |   19 ++
 .../{errors => failures}/StepFailureBehaviour.java |    9 +-
 .../core/i18n/LocalizedKeywordsBehaviour.java      |   47 ++-
 .../org/jbehave/core/io/StoryLoaderBehaviour.java  |    8 +-
 .../jbehave/core/io/StoryPathFinderBehaviour.java  |    9 -
 .../core/io/StoryPathResolverBehaviour.java        |   10 +-
 .../jbehave/core/io/stories/MyMultipleStory.java   |    4 +-
 .../jbehave/core/io/stories/MyPendingStory.java    |    4 +-
 .../reporters/StepFailureDecoratorBehaviour.java   |    4 +-
 .../jbehave/core/steps/CandidateStepBehaviour.java |    8 +-
 .../MarkUnmatchedStepsAsPendingBehaviour.java      |   29 +-
 .../org/jbehave/core/steps/StepsBehaviour.java     |    8 +-
 .../UnmodifiableStepsConfigurationBehaviour.java   |   50 ---
 .../main/java/org/jbehave/core/AbstractStory.java  |   21 +-
 .../main/java/org/jbehave/core/RunnableStory.java  |   10 +-
 .../jbehave/core/configuration/Configuration.java  |  326 ++++++++++++++++++++
 .../EmbedderControls.java}                         |   16 +-
 .../core/{model => configuration}/Keywords.java    |   13 +-
 .../configuration/MostUsefulConfiguration.java     |   58 ++++
 .../MostUsefulStoryConfiguration.java              |   44 ---
 ...ration.java => PropertyBasedConfiguration.java} |   34 +-
 .../core/configuration/StoryConfiguration.java     |  223 -------------
 .../configuration/UnmodifiableConfiguration.java   |  119 +++++++
 .../UnmodifiableEmbedderControls.java              |   77 +++++
 .../UnmodifiableStoryConfiguration.java            |   82 -----
 .../java/org/jbehave/core/embedder/Embedder.java   |   74 +++---
 .../org/jbehave/core/embedder/StoryRunner.java     |   51 ++--
 .../org/jbehave/core/errors/ErrorStrategy.java     |   38 ---
 .../ErrorStrategyInWhichWeTrustTheReporter.java    |    7 -
 .../core/errors/InvalidRunnableStoryException.java |   16 -
 .../core/errors/InvalidStoryPathException.java     |   15 -
 .../core/errors/InvalidStoryResourceException.java |   15 -
 .../java/org/jbehave/core/errors/PendingError.java |   11 -
 .../jbehave/core/errors/PendingErrorStrategy.java  |   36 ---
 .../java/org/jbehave/core/errors/StepFailure.java  |   22 --
 .../core/errors/StoryNotFoundException.java        |   15 -
 .../BeforeOrAfterFailed.java}                      |   12 +-
 .../core/failures/FailingUponPendingStep.java      |    9 +
 .../org/jbehave/core/failures/FailureStrategy.java |   15 +
 .../core/failures/PassingUponPendingStep.java      |    9 +
 .../jbehave/core/failures/PendingStepFound.java    |   10 +
 .../jbehave/core/failures/PendingStepStrategy.java |   13 +
 .../jbehave/core/failures/RethrowingFailure.java   |    9 +
 .../core/failures/SilentlyAbsorbingFailure.java    |    9 +
 .../java/org/jbehave/core/failures/StepFailed.java |   21 ++
 .../org/jbehave/core/i18n/LocalizedKeywords.java   |    2 +-
 .../jbehave/core/io/AbstractStoryPathResolver.java |    2 +-
 .../org/jbehave/core/io/InvalidStoryResource.java  |   20 ++
 .../org/jbehave/core/io/LoadFromClasspath.java     |    7 +-
 .../org/jbehave/core/io/LoadFromRelativeFile.java  |    3 +-
 .../main/java/org/jbehave/core/io/LoadFromURL.java |   10 +-
 .../org/jbehave/core/io/StoryResourceNotFound.java |   18 +
 .../org/jbehave/core/parsers/RegexStoryParser.java |    1 +
 .../org/jbehave/core/reporters/ConsoleOutput.java  |    2 +-
 .../org/jbehave/core/reporters/HtmlOutput.java     |    2 +-
 .../core/reporters/IdeOnlyConsoleOutput.java       |    2 +-
 .../jbehave/core/reporters/PrintStreamOutput.java  |    2 +-
 .../core/reporters/StepFailureDecorator.java       |   14 +-
 .../core/reporters/StoryReporterBuilder.java       |    3 +
 .../java/org/jbehave/core/reporters/TxtOutput.java |    2 +-
 .../java/org/jbehave/core/reporters/XmlOutput.java |    2 +-
 .../org/jbehave/core/steps/CandidateSteps.java     |    8 +-
 .../core/steps/MostUsefulStepsConfiguration.java   |   30 --
 .../java/org/jbehave/core/steps/StepCreator.java   |    6 +-
 .../java/org/jbehave/core/steps/StepResult.java    |    8 +-
 .../main/java/org/jbehave/core/steps/Steps.java    |   52 ++--
 .../org/jbehave/core/steps/StepsConfiguration.java |  170 ----------
 .../java/org/jbehave/core/steps/StepsFactory.java  |    9 +-
 .../core/steps/UnmodifiableStepsConfiguration.java |   75 -----
 .../steps/guice/GuiceStepsFactoryBehaviour.java    |    8 +-
 .../core/steps/guice/GuiceStepsFactory.java        |    6 +-
 .../java/org/jbehave/mojo/AbstractStoryMojo.java   |   16 +-
 .../java/org/jbehave/mojo/StoryPathRunnerMojo.java |    2 +-
 .../java/org/jbehave/mojo/StoryRunnerMojo.java     |    2 +-
 .../core/steps/pico/PicoStepsFactoryBehaviour.java |    8 +-
 .../jbehave/core/steps/pico/PicoStepsFactory.java  |    6 +-
 .../steps/spring/SpringStepsFactoryBehaviour.java  |    8 +-
 .../core/steps/spring/SpringStepsFactory.java      |    6 +-
 111 files changed, 1448 insertions(+), 1580 deletions(-)
 rename jbehave-core/src/behaviour/java/org/jbehave/core/{model => 
configuration}/KeywordsBehaviour.java (89%)
 delete mode 100644 
jbehave-core/src/behaviour/java/org/jbehave/core/errors/ErrorStrategyBehaviour.java
 delete mode 100644 
jbehave-core/src/behaviour/java/org/jbehave/core/errors/ErrorStrategyInWhichWeTrustTheReporterBehaviour.java
 create mode 100644 
jbehave-core/src/behaviour/java/org/jbehave/core/failures/FailureStrategyBehaviour.java
 rename jbehave-core/src/behaviour/java/org/jbehave/core/{errors => 
failures}/StepFailureBehaviour.java (80%)
 delete mode 100644 
jbehave-core/src/behaviour/java/org/jbehave/core/steps/UnmodifiableStepsConfigurationBehaviour.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/configuration/Configuration.java
 rename 
jbehave-core/src/main/java/org/jbehave/core/{embedder/EmbedderConfiguration.java
 => configuration/EmbedderControls.java} (69%)
 rename jbehave-core/src/main/java/org/jbehave/core/{model => 
configuration}/Keywords.java (95%)
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/configuration/MostUsefulConfiguration.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/configuration/MostUsefulStoryConfiguration.java
 rename 
jbehave-core/src/main/java/org/jbehave/core/configuration/{PropertyBasedStoryConfiguration.java
 => PropertyBasedConfiguration.java} (64%)
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/configuration/StoryConfiguration.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/configuration/UnmodifiableConfiguration.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/configuration/UnmodifiableEmbedderControls.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/configuration/UnmodifiableStoryConfiguration.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/ErrorStrategy.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/ErrorStrategyInWhichWeTrustTheReporter.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/InvalidRunnableStoryException.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/InvalidStoryPathException.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/InvalidStoryResourceException.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/PendingError.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/PendingErrorStrategy.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/StepFailure.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/errors/StoryNotFoundException.java
 rename 
jbehave-core/src/main/java/org/jbehave/core/{errors/BeforeOrAfterException.java 
=> failures/BeforeOrAfterFailed.java} (67%)
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/FailingUponPendingStep.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/FailureStrategy.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/PassingUponPendingStep.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/PendingStepFound.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/PendingStepStrategy.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/RethrowingFailure.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/SilentlyAbsorbingFailure.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/failures/StepFailed.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/io/InvalidStoryResource.java
 create mode 100644 
jbehave-core/src/main/java/org/jbehave/core/io/StoryResourceNotFound.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/steps/MostUsefulStepsConfiguration.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/steps/StepsConfiguration.java
 delete mode 100644 
jbehave-core/src/main/java/org/jbehave/core/steps/UnmodifiableStepsConfiguration.java


hooks/post-receive
-- 
jbehave-core

<hr/>
<p>
To unsubscribe from this list please visit:
</p>
<p>
    <a 
href="http://xircles.codehaus.org/manage_email";>http://xircles.codehaus.org/manage_email</a>

Reply via email to