Author: svenmeier
Date: Sat Jul 23 21:49:36 2011
New Revision: 1150227
URL: http://svn.apache.org/viewvc?rev=1150227&view=rev
Log:
WICKET-3920 corrected snapshot repository
Modified:
wicket/common/site/trunk/_site/start/download.html
wicket/common/site/trunk/readme.md
wicket/common/site/trunk/start/download.md
Modified: wicket/common/site/trunk/_site/start/download.html
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/download.html?rev=1150227&r1=1150226&r2=1150227&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/download.html (original)
+++ wicket/common/site/trunk/_site/start/download.html Sat Jul 23 21:49:36 2011
@@ -190,7 +190,7 @@
</div>
<h2 id='snapshots_and_latest_bleedingedge_code'>SNAPSHOTs and latest
bleeding-edge code</h2>
-<p>If you wish to build the latest code from scratch, the two branches live in
the following places in Subversion:</p>
+<p>If you wish to build the latest code from scratch, trunk and branches live
in the following places in Subversion:</p>
<ul>
<li><strong>1.5.x</strong>: <a
href='http://svn.apache.org/repos/asf/wicket/trunk'>http://svn.apache.org/repos/asf/wicket/trunk</a></li>
@@ -205,9 +205,16 @@
<p>There’s also a Maven 2 repository providing SNAPSHOTs available
here:</p>
<div class='highlight'><pre><code class='xml'><span
class='nt'><repositories></span>
<span class='nt'><repository></span>
- <span class='nt'><id></span>org.wicketstuff<span
class='nt'></id></span>
- <span class='nt'><name></span>Wicket Stuff Repository<span
class='nt'></name></span>
- <span
class='nt'><url></span>http://wicketstuff.org/maven/repository<span
class='nt'></url></span>
+ <span class='nt'><releases></span>
+ <span class='nt'><enabled></span>false<span
class='nt'></enabled></span>
+ <span class='nt'></releases></span>
+ <span class='nt'><snapshots></span>
+ <span class='nt'><enabled></span>true<span
class='nt'></enabled></span>
+ <span class='nt'></snapshots></span>
+ <span class='nt'><id></span>apache.snapshots<span
class='nt'></id></span>
+ <span class='nt'><name></span>Apache Snapshot Repository<span
class='nt'></name></span>
+ <span
class='nt'><url></span>https://repository.apache.org/content/groups/snapshots<span
class='nt'></url></span>
+ <span class='nt'><layout></span>default<span
class='nt'></layout></span>
<span class='nt'></repository></span>
<span class='nt'></repositories></span>
</code></pre>
Modified: wicket/common/site/trunk/readme.md
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/readme.md?rev=1150227&r1=1150226&r2=1150227&view=diff
==============================================================================
--- wicket/common/site/trunk/readme.md (original)
+++ wicket/common/site/trunk/readme.md Sat Jul 23 21:49:36 2011
@@ -18,7 +18,11 @@ Running the site
Use (after installing jekyll) the following command to run jekyll in a server
mode:
- $ jekyll --auto --server
+ $ ./regenerate.sh
This instructs jekyll to generate new output whenever something changes on
the filesystem, and serve those files to the default port (4000) on your box.
+
+Note that this script restores Subversion (`.svn`) subfolders
+inside `_site`, which are erased when Jekyll is generating the content.
+
Modified: wicket/common/site/trunk/start/download.md
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/start/download.md?rev=1150227&r1=1150226&r2=1150227&view=diff
==============================================================================
--- wicket/common/site/trunk/start/download.md (original)
+++ wicket/common/site/trunk/start/download.md Sat Jul 23 21:49:36 2011
@@ -62,7 +62,7 @@ For the SLF4J log4j binding:
## SNAPSHOTs and latest bleeding-edge code ##
-If you wish to build the latest code from scratch, the two branches live in
+If you wish to build the latest code from scratch, trunk and branches live in
the following places in Subversion:
* **1.5.x**: <http://svn.apache.org/repos/asf/wicket/trunk>
@@ -75,9 +75,16 @@ There's also a Maven 2 repository provid
{% highlight xml %}
<repositories>
<repository>
- <id>org.wicketstuff</id>
- <name>Wicket Stuff Repository</name>
- <url>http://wicketstuff.org/maven/repository</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>apache.snapshots</id>
+ <name>Apache Snapshot Repository</name>
+ <url>https://repository.apache.org/content/groups/snapshots</url>
+ <layout>default</layout>
</repository>
</repositories>
{% endhighlight %}