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-git".

The branch, master has been updated
       via  ee87b5f9c27d1fbaad96fc00968f55a8bde2bf58 (commit)
       via  bfa47d949df2fae060ece60903aa9b821ad2393e (commit)
       via  1772e35636e459fae9aac09dea3a54983e801bfa (commit)
       via  a4540c49d7d28d482979760860589bff60c25ba9 (commit)
      from  2ea06d808144313fb4599169b6c72de793c615c5 (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 ee87b5f9c27d1fbaad96fc00968f55a8bde2bf58
Author: Mauro Talevi <mauro.tal...@aquilonia.org>
Date:   Sat Apr 3 14:13:44 2010 +0200

    Updated documentation.

commit bfa47d949df2fae060ece60903aa9b821ad2393e
Author: Mauro Talevi <mauro.tal...@aquilonia.org>
Date:   Sat Apr 3 13:35:12 2010 +0200

    JBEHAVE-256:  Add URLStoryDefiner to allow story resource to be specified 
as URLs.

commit 1772e35636e459fae9aac09dea3a54983e801bfa
Author: Mauro Talevi <mauro.tal...@aquilonia.org>
Date:   Sat Apr 3 10:56:22 2010 +0200

    JBEHAVE-256:  Refactored ClasspathStoryDefiner to use a single 
loadStoryAsString method converting the classpath resource to the story content.

commit a4540c49d7d28d482979760860589bff60c25ba9
Author: Mauro Talevi <mauro.tal...@aquilonia.org>
Date:   Sat Apr 3 10:44:04 2010 +0200

    JBEHAVE-256:   Renamed StoryNameResolver to StoryPathResolver to better 
express that the output of resolution is a full story path.

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

Summary of changes:
 .../distribution/src/site/content/aliases.html     |    2 +-
 .../src/site/content/configuring-stories.html      |    2 +-
 .../src/site/content/dependencies.html             |    2 +-
 .../src/site/content/dependency-injection.html     |   12 ++--
 .../src/site/content/developing-stories.html       |   15 ++--
 .../distribution/src/site/content/download.html    |    6 +-
 trunk/core/distribution/src/site/content/faq.html  |   37 ++++-----
 .../src/site/content/i18n-stories.html             |   87 ++++++++-----------
 .../core/distribution/src/site/content/index.html  |   22 +++--
 .../distribution/src/site/content/javadoc.html     |   60 +++++++-------
 .../src/site/content/pending-steps.html            |   13 +--
 .../src/site/content/running-examples.html         |    2 +-
 .../src/site/content/running-stories.html          |    4 +-
 .../src/site/content/table-examples.html           |    2 +-
 trunk/core/examples/trader/pom.xml                 |    2 +
 .../org/jbehave/examples/trader/TraderStories.java |   18 +++-
 .../org/jbehave/examples/trader/TraderStory.java   |    5 +-
 .../examples/trader/i18n/ItTraderStory.java        |    2 +-
 .../trader/stories/ClaimsWithNullCalendar.java     |    6 +-
 .../examples/trader/stories/PriorityMatching.java  |    4 +-
 .../parser/ClasspathStoryDefinerBehaviour.java     |    9 +--
 .../core/parser/URLStoryDefinerBehaviour.java      |   64 ++++++++++++++
 .../UnderscoredCamelCaseResolverBehaviour.java     |   10 +-
 .../reporters/FilePrintStreamFactoryBehaviour.java |   46 ++++++++++
 .../PrintStreamStoryReporterBehaviour.java         |   12 ++--
 .../reporters/StoryReporterBuilderBehaviour.java   |   14 ++--
 .../java/org/jbehave/core/StoryConfiguration.java  |   18 ++--
 .../main/java/org/jbehave/core/StoryRunner.java    |   14 ++--
 .../core/parser/AbstractStoryNameResolver.java     |   55 ------------
 .../core/parser/AbstractStoryPathResolver.java     |   53 ++++++++++++
 .../core/parser/CasePreservingResolver.java        |   12 ++--
 .../jbehave/core/parser/ClasspathStoryDefiner.java |   32 +++----
 .../java/org/jbehave/core/parser/StoryDefiner.java |    2 +-
 .../org/jbehave/core/parser/StoryLocation.java     |   49 +++++++++++
 .../org/jbehave/core/parser/StoryNameResolver.java |   15 ----
 .../org/jbehave/core/parser/StoryPathResolver.java |   15 ++++
 .../org/jbehave/core/parser/URLStoryDefiner.java   |   52 ++++++++++++
 .../core/parser/UnderscoredCamelCaseResolver.java  |   18 ++--
 .../core/reporters/FilePrintStreamFactory.java     |   42 ++++++----
 .../core/reporters/StoryReporterBuilder.java       |    2 +-
 40 files changed, 522 insertions(+), 315 deletions(-)
 create mode 100644 
trunk/core/jbehave-core/src/behaviour/java/org/jbehave/core/parser/URLStoryDefinerBehaviour.java
 create mode 100644 
trunk/core/jbehave-core/src/behaviour/java/org/jbehave/core/reporters/FilePrintStreamFactoryBehaviour.java
 delete mode 100644 
trunk/core/jbehave-core/src/main/java/org/jbehave/core/parser/AbstractStoryNameResolver.java
 create mode 100644 
trunk/core/jbehave-core/src/main/java/org/jbehave/core/parser/AbstractStoryPathResolver.java
 create mode 100644 
trunk/core/jbehave-core/src/main/java/org/jbehave/core/parser/StoryLocation.java
 delete mode 100644 
trunk/core/jbehave-core/src/main/java/org/jbehave/core/parser/StoryNameResolver.java
 create mode 100644 
trunk/core/jbehave-core/src/main/java/org/jbehave/core/parser/StoryPathResolver.java
 create mode 100644 
trunk/core/jbehave-core/src/main/java/org/jbehave/core/parser/URLStoryDefiner.java


hooks/post-receive
-- 
jbehave-git

<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