|
From: <be...@us...> - 2010-04-15 20:20:04
|
Revision: 355
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=355&view=rev
Author: benoitx
Date: 2010-04-15 20:19:57 +0000 (Thu, 15 Apr 2010)
Log Message:
-----------
Added ohloh.net "Use It"
Added 2 scripts for Twitter
Added the Maven Repository.
Modified Paths:
--------------
trunk/src/site/xdoc/index.xml
Modified: trunk/src/site/xdoc/index.xml
===================================================================
--- trunk/src/site/xdoc/index.xml 2010-04-15 10:49:45 UTC (rev 354)
+++ trunk/src/site/xdoc/index.xml 2010-04-15 20:19:57 UTC (rev 355)
@@ -22,12 +22,85 @@
<section name="Quick News">
<p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p>
- <p><b>2010-03-xx</b>: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic).
+ <p><script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_users.js?style=blue"></script><b>2010-03-xx</b>: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic).
More info on the changes <a href="changes-report.html">here</a>. Also, one of the authors is on Twitter, follow your favorite Belgian at <a href="http://twitter.com/benoitx">http://twitter.com/benoitx</a>.</p>
<p><b>2007-03-25</b>: version 1.1.0 is out and contains a couple of changes, a new HolidayHandler and the ability to define a valid range for the holiday (and
if the calculation is beyond that range, an exception is thrown). This is done via HolidayCalendar which should replace the simple Set<E> for holidays.
More info on the changes <a href="changes-report.html">here</a>.</p>
+
+
+<script src="http://widgets.twimg.com/j/2/widget.js"></script>
+<table>
+<tr><td valign='top'>
+<script>
+new TWTR.Widget({
+ version: 2,
+ type: 'profile',
+ rpp: 5,
+ interval: 6000,
+ width: 300,
+ height: 300,
+ theme: {
+ shell: {
+ background: '#8ec1da',
+ color: '#ffffff'
+ },
+ tweets: {
+ background: '#ffffff',
+ color: '#444444',
+ links: '#1985b5'
+ }
+ },
+ features: {
+ scrollbar: false,
+ loop: false,
+ live: false,
+ hashtags: true,
+ timestamp: true,
+ avatars: true,
+ behavior: 'all'
+ }
+}).render().setUser('benoitx').start();
+</script>
+</td>
+<td valign='top'>
+
+<script>
+new TWTR.Widget({
+ version: 2,
+ type: 'search',
+ search: 'objectlab OR Appendium',
+ interval: 6000,
+ title: 'Excitement is in the air...',
+ subject: 'ObjectLab',
+ width: 300,
+ height: 300,
+ theme: {
+ shell: {
+ background: '#8ec1da',
+ color: '#ffffff'
+ },
+ tweets: {
+ background: '#ffffff',
+ color: '#444444',
+ links: '#1985b5'
+ }
+ },
+ features: {
+ scrollbar: false,
+ loop: true,
+ live: true,
+ hashtags: true,
+ timestamp: true,
+ avatars: true,
+ behavior: 'default'
+ }
+}).render().start();
+</script>
+</td></tr>
+</table>
+
</section>
<section name="ObjectLab Kit Introduction">
@@ -84,6 +157,37 @@
<p>1.5 or above.</p>
</subsection>
+ <subsection name="Maven Repository">
+ <p>The ObjectLab Kit should be in the Maven Central Repository.</p>
+ <p>To use the JDK Version:</p>
+ <pre class="brush: xml">
+ <dependency>
+ <groupId>net.objectlab.kit</groupId>
+ <artifactId>datecalc-common</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>net.objectlab.kit</groupId>
+ <artifactId>datecalc-jdk</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ </pre>
+
+ <p>To use the JODA Version:</p>
+ <pre class="brush: xml">
+ <dependency>
+ <groupId>net.objectlab.kit</groupId>
+ <artifactId>datecalc-common</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>net.objectlab.kit</groupId>
+ <artifactId>datecalc-joda</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ </pre>
+ </subsection>
+
<subsection name="UML?">
<p>We generate our JavaDocs with the added twist of UML diagrams:</p>
<ul>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|