Thread: [Japi-cvs] SF.net SVN: japi: [5] trunk/src/doc
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2006-04-03 01:41:29
|
Revision: 5 Author: christianhujer Date: 2006-04-02 18:41:18 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=5&view=rev Log Message: ----------- Added subversion documentation. Modified Paths: -------------- trunk/src/doc/start.xhtml Added Paths: ----------- trunk/src/doc/subversion.xhtml Modified: trunk/src/doc/start.xhtml =================================================================== --- trunk/src/doc/start.xhtml 2006-04-03 00:54:20 UTC (rev 4) +++ trunk/src/doc/start.xhtml 2006-04-03 01:41:18 UTC (rev 5) @@ -37,6 +37,7 @@ <li>Overview of <a href="changes">Changes to previous versions</a></li> <li><a href="releasePlan">Release Plan</a></li> <li><a href="wontFixes">Known flaws that won't be fixed</a></li> + <li><a href="subversion">Accessing JAPI's Subversion Repository</a></li> </ul> <h2>Contact the developers</h2> <ul> Added: trunk/src/doc/subversion.xhtml =================================================================== --- trunk/src/doc/subversion.xhtml (rev 0) +++ trunk/src/doc/subversion.xhtml 2006-04-03 01:41:18 UTC (rev 5) @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- $Id: releasePlan.xhtml,v 1.6 2006/03/29 22:21:14 christianhujer Exp $ --> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> + <head> + <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> + <meta name="Date" content="$Date: 2006/03/29 22:21:14 $" /> + <title>JAPI Subversion Developer Access</title> + </head> + <body> + <h2>Checking out a normal working copy</h2> + <p> + To checkout a normal working copy of the latest development, checkout the trunk. + This is what's called HEAD or MAIN/LATEST in other version control systems. + </p> + <p><code>svn co https://svn.sourceforge.net/svnroot/japi japi/trunk</code></p> + <h2>Rules</h2> + <p> + Current rules are this: + </p> + <ul> + <li> + All files need a mime type. + For normal source code, use <code>text/plain</code>. + Use <code>svn propset svn:mime-type text/plain <var>filename</var></code> to set the mime type. + </li> + <li> + All files with a text based mime type need a line ending setting. + JAPI convention is to always use <code>LF</code>. + Use <code>svn propset svn:eol-style LF <var>filename</var></code> to set the line ending style. + </li> + </ul> + <h2>Releases</h2> + <p> + Releases are created in the following way: + </p> + <ol> + <li> + A branch with the new release name is created. + Usually the branch will increase the minor revision and use it as its name. + Example: <code>svn copy trunk branch/0.8</code>. + The policy for branches is that they aren't completely frozen, but only changes required for release and bug fixing are allowed. + </li> + <li> + The branch is braught into releasable state. + This usually should be zero effort, yet consider this a separate step. + </li> + <li> + The release is published. + As a part of the release publishing, a tag with the new release name and patch level is created. + Example: <code>svn copy branch/0.8 tag/0.8.0</code>. + The policy for tags is that they are completely frozen, tags must never ever be changed. + </li> + </ol> + <h2>Checking out a released version</h2> + <p> + To checkout a released version, use <code>svn co https://svn.sourceforge.net/svnroot/japi japi/tag/<var>version</var></code> with + <var>version</var> being the release name. + To checkout, for example, version <samp>0.8.0</samp>, use <samp>svn co https://svn.sourceforge.net/svnroot/japi japi/tag/0.8.0</samp>. + </p> + </body> +</html> Property changes on: trunk/src/doc/subversion.xhtml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + LF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-03 02:07:39
|
Revision: 6 Author: christianhujer Date: 2006-04-02 19:07:32 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=6&view=rev Log Message: ----------- Updated changes and releases for Subversion migration. Modified Paths: -------------- trunk/src/doc/changes.xhtml trunk/src/doc/releasePlan.xhtml Modified: trunk/src/doc/changes.xhtml =================================================================== --- trunk/src/doc/changes.xhtml 2006-04-03 01:41:18 UTC (rev 5) +++ trunk/src/doc/changes.xhtml 2006-04-03 02:07:32 UTC (rev 6) @@ -8,6 +8,7 @@ <title>JAPI - Important Changes</title> </head> <body> + <h2>JAPI migrated to Subversion (2006-04-03)</h2> <h2>Release 0.8.0 (2006-03-29)</h2> <h3>New additions and features</h3> <ul> Modified: trunk/src/doc/releasePlan.xhtml =================================================================== --- trunk/src/doc/releasePlan.xhtml 2006-04-03 01:41:18 UTC (rev 5) +++ trunk/src/doc/releasePlan.xhtml 2006-04-03 02:07:32 UTC (rev 6) @@ -13,7 +13,7 @@ The following releases with the following changes and release dates are planned: </p> <dl> - <dt>2006-04-03: JAPI 0.9.0</dt> + <dt>2006-04-10: JAPI 0.9.0</dt> <dd> <ul> <li>Additions to ActionFactory to support explicitely reading strings from the bundle, ignoring preferences.</li> @@ -32,7 +32,6 @@ <dt>2006-06-01: JAPI 0.11.0</dt> <dd> <ul> - <li>Migrate from CVS to SVN.</li> <li>Final implementation of JAPI's first treetable.</li> <li>Provide a splash screen implementation, which supports both, Java 6.0's new splash screen and a Java 5.0 fallback implementation, and implements progress so the user can be informed about application loading progress while the splash screen is displayed.</li> </ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-03 21:00:49
|
Revision: 7 Author: christianhujer Date: 2006-04-03 14:00:14 -0700 (Mon, 03 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=7&view=rev Log Message: ----------- Set svn:keywords Date on **/*.xhtml. Modified Paths: -------------- trunk/src/doc/api/start.xhtml trunk/src/doc/changes.xhtml trunk/src/doc/copyright.xhtml trunk/src/doc/guide/io/start.xhtml trunk/src/doc/guide/start.xhtml trunk/src/doc/guide/swing/action/basic/start.xhtml trunk/src/doc/guide/swing/action/fromScratch/start.xhtml trunk/src/doc/guide/swing/action/start.xhtml trunk/src/doc/guide/swing/tod/start.xhtml trunk/src/doc/guide/xml/start.xhtml trunk/src/doc/releasePlan.xhtml trunk/src/doc/start.xhtml trunk/src/doc/subversion.xhtml trunk/src/doc/wontFixes.xhtml Property Changed: ---------------- trunk/src/doc/api/start.xhtml trunk/src/doc/changes.xhtml trunk/src/doc/copyright.xhtml trunk/src/doc/guide/io/start.xhtml trunk/src/doc/guide/start.xhtml trunk/src/doc/guide/swing/action/basic/start.xhtml trunk/src/doc/guide/swing/action/fromScratch/start.xhtml trunk/src/doc/guide/swing/action/start.xhtml trunk/src/doc/guide/swing/tod/start.xhtml trunk/src/doc/guide/xml/start.xhtml trunk/src/doc/releasePlan.xhtml trunk/src/doc/start.xhtml trunk/src/doc/subversion.xhtml trunk/src/doc/wontFixes.xhtml Modified: trunk/src/doc/api/start.xhtml =================================================================== --- trunk/src/doc/api/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/api/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -5,7 +5,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8"/> - <meta name="Date" content="$Date: 2006/03/29 21:29:31 $"/> + <meta name="Date" content="$Date$"/> <title>JAPI API Documentation</title> </head> <body> Property changes on: trunk/src/doc/api/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/changes.xhtml =================================================================== --- trunk/src/doc/changes.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/changes.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:09:28 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI - Important Changes</title> </head> <body> Property changes on: trunk/src/doc/changes.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/copyright.xhtml =================================================================== --- trunk/src/doc/copyright.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/copyright.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:20:13 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Copyright</title> </head> <body> Property changes on: trunk/src/doc/copyright.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/io/start.xhtml =================================================================== --- trunk/src/doc/guide/io/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/io/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/08 00:57:38 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: I/O</title> </head> <body> Property changes on: trunk/src/doc/guide/io/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/start.xhtml =================================================================== --- trunk/src/doc/guide/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/15 00:32:35 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide</title> </head> <body> Property changes on: trunk/src/doc/guide/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/action/basic/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/basic/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/action/basic/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/16 14:59:29 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: Swing Actions</title> </head> <body> Property changes on: trunk/src/doc/guide/swing/action/basic/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/action/fromScratch/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/18 22:54:27 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI: How to develop Swing applications with JAPI</title> <xi:include parse="xml" href="src/net/sf/japi/examples/editor/Editor.java.xhtml" xpointer="/1/1/1" /> </head> Property changes on: trunk/src/doc/guide/swing/action/fromScratch/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/action/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/action/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/01/30 21:28:34 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: Swing Actions</title> </head> <body> Property changes on: trunk/src/doc/guide/swing/action/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/tod/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/tod/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/tod/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/15 00:47:15 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI: Using TipOfTheDayManager</title> <xi:include parse="xml" href="src/net/sf/japi/examples/editor/Editor.java.xhtml" xpointer="/1/1/1" /> </head> Property changes on: trunk/src/doc/guide/swing/tod/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/xml/start.xhtml =================================================================== --- trunk/src/doc/guide/xml/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/xml/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/12 01:48:14 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: XML</title> </head> <body> Property changes on: trunk/src/doc/guide/xml/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/releasePlan.xhtml =================================================================== --- trunk/src/doc/releasePlan.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/releasePlan.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:21:14 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Release Planning</title> </head> <body> Property changes on: trunk/src/doc/releasePlan.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/start.xhtml =================================================================== --- trunk/src/doc/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:20:33 $" /> + <meta name="Date" content="$Date$" /> <meta name="keywords" content="JAPI, Java, Swing, Java API, API, i18n, l10n, internationalization, localization, prefs, preferences" /> <meta name="description" content="JAPI is a Java API intended to make Swing programming more efficient, especially in the fields of UI creation and actions, internationalization, localization and perferences dialogs." /> <link rel="alternate" type="application/rss+xml" title="Project news releases" href="http://sourceforge.net/export/rss2_projnews.php?group_id=149894" /> Property changes on: trunk/src/doc/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/subversion.xhtml =================================================================== --- trunk/src/doc/subversion.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/subversion.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:21:14 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Subversion Developer Access</title> </head> <body> Property changes on: trunk/src/doc/subversion.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/wontFixes.xhtml =================================================================== --- trunk/src/doc/wontFixes.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/wontFixes.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/03 21:57:27 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Won't Fix List</title> </head> <body> Property changes on: trunk/src/doc/wontFixes.xhtml ___________________________________________________________________ Name: svn:keywords + Date This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-11 22:02:35
|
Revision: 43 Author: christianhujer Date: 2006-04-11 15:02:26 -0700 (Tue, 11 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=43&view=rev Log Message: ----------- Removed old meta removal. Modified Paths: -------------- trunk/src/doc/api/release.xslt trunk/src/doc/cleanupXhtml11.xslt Modified: trunk/src/doc/api/release.xslt =================================================================== --- trunk/src/doc/api/release.xslt 2006-04-11 21:44:49 UTC (rev 42) +++ trunk/src/doc/api/release.xslt 2006-04-11 22:02:26 UTC (rev 43) @@ -23,7 +23,6 @@ <xsl:template match="html:head/@profile"/> <xsl:template match="html:html/@version"/> <xsl:template match="html:meta[@scheme='CVS']"/> - <xsl:template match="html:meta[@scheme='ITCQIS']"/> <xsl:template match="html:td/@colspan[.='1']|html:td/@rowspan[.='1']|html:th/@colspan[.='1']|html:th/@rowspan[.='1']"/> <xsl:template match="html:a/@shape[.='rect']"/> <xsl:template match="html:input/@type[.='text']"/> Modified: trunk/src/doc/cleanupXhtml11.xslt =================================================================== --- trunk/src/doc/cleanupXhtml11.xslt 2006-04-11 21:44:49 UTC (rev 42) +++ trunk/src/doc/cleanupXhtml11.xslt 2006-04-11 22:02:26 UTC (rev 43) @@ -35,7 +35,6 @@ <xsl:template match="html:head/@profile"/> <xsl:template match="html:html/@version"/> <xsl:template match="html:meta[@scheme='CVS']"/> - <xsl:template match="html:meta[@scheme='ITCQIS']"/> <xsl:template match="html:td/@colspan[.='1']|html:td/@rowspan[.='1']|html:th/@colspan[.='1']|html:th/@rowspan[.='1']"/> <xsl:template match="html:a/@shape[.='rect']"/> <xsl:template match="html:input/@type[.='text']"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-16 01:47:17
|
Revision: 70 Author: christianhujer Date: 2006-04-15 18:47:11 -0700 (Sat, 15 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=70&view=rev Log Message: ----------- Minor layout improvement. Modified Paths: -------------- trunk/src/doc/sitestyle.css trunk/src/doc/transform.xslt Modified: trunk/src/doc/sitestyle.css =================================================================== --- trunk/src/doc/sitestyle.css 2006-04-16 00:45:30 UTC (rev 69) +++ trunk/src/doc/sitestyle.css 2006-04-16 01:47:11 UTC (rev 70) @@ -83,6 +83,12 @@ border: 1px solid #eee; } +img.now { + width:88px; + height:31px; + margin:1px; +} + fieldset.screenshot { padding: .5em; background: white; Modified: trunk/src/doc/transform.xslt =================================================================== --- trunk/src/doc/transform.xslt 2006-04-16 00:45:30 UTC (rev 69) +++ trunk/src/doc/transform.xslt 2006-04-16 01:47:11 UTC (rev 70) @@ -62,9 +62,9 @@ <xsl:apply-templates select="node()"/> </div> <address> - <a href="http://sourceforge.net/"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=149894&type=1" alt="SourceForge.net Logo" width="88" height="31" /></a> - <a href="http://sourceforge.net/donate/index.php?group_id=149894"><img src="http://sourceforge.net/images/project-support.jpg" width="88" height="32" alt="Support This Project" /></a> - <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" /></a> + <a href="http://sourceforge.net/"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=149894&type=1" alt="SourceForge.net Logo" width="88" height="31" class="now" /></a> + <a href="http://sourceforge.net/donate/index.php?group_id=149894"><img src="http://sourceforge.net/images/project-support.jpg" width="88" height="32" alt="Support This Project" class="now" /></a> + <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" class="now" /></a> Feedback: <a href="mailto:ch...@it...">webmaster</a> <xsl:if test="/html:html/html:head/html:meta[@name='Date']"> <br /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-06-01 00:15:27
|
Revision: 127 Author: christianhujer Date: 2006-05-31 17:15:16 -0700 (Wed, 31 May 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=127&view=rev Log Message: ----------- Removed old email address. Modified Paths: -------------- trunk/src/doc/start.xhtml trunk/src/doc/transform.xslt Modified: trunk/src/doc/start.xhtml =================================================================== --- trunk/src/doc/start.xhtml 2006-05-31 23:42:26 UTC (rev 126) +++ trunk/src/doc/start.xhtml 2006-06-01 00:15:16 UTC (rev 127) @@ -49,7 +49,7 @@ <h2>Contact the developers</h2> <ul> <li> - You may visit the <a href="http://sourceforge.net/projects/japi">JAPI Project Page at SourceForge</a> or send mail to <a href="mailto:ch...@ri...">ch...@ri...</a>. + You may visit the <a href="http://sourceforge.net/projects/japi">JAPI Project Page at SourceForge</a> or send mail to <a href="mailto:ch...@ri...">ch...@ri...</a>. </li> <li> You may as well join <a href="irc://irc.freenode.net:6667/%23japi">IRC Channel <code>#japi</code> at <code>irc.freenode.net</code></a> and look for Cher(istheus), z0ra or Zergus. Modified: trunk/src/doc/transform.xslt =================================================================== --- trunk/src/doc/transform.xslt 2006-05-31 23:42:26 UTC (rev 126) +++ trunk/src/doc/transform.xslt 2006-06-01 00:15:16 UTC (rev 127) @@ -66,7 +66,7 @@ <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" class="now" /></a> <a href="http://jigsaw.w3.org/css-validator/check/referer"><img src="http://jigsaw.w3.org/css-validator/images/vcss" width="88" height="31" alt="Valid CSS!" /></a> <!--<a href="http://www.jetbrains.com/idea/"><img src="http://www.jetbrains.com/idea/opensource/img/banners/idea88x31_blue.gif" alt="The best Java IDE" width="88" height="31" /></a>--> - Feedback: <a href="mailto:ch...@ri...">webmaster</a> + Feedback: <a href="mailto:ch...@ri...">webmaster</a> <xsl:if test="/html:html/html:head/html:meta[@name='Date']"> <br /> <xsl:value-of select="/html:html/html:head/html:meta[@name='Date']/@content" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-04 23:35:27
|
Revision: 11 Author: christianhujer Date: 2006-04-04 16:35:14 -0700 (Tue, 04 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=11&view=rev Log Message: ----------- Added tasks document. Modified Paths: -------------- trunk/src/doc/releasePlan.xhtml trunk/src/doc/start.xhtml Added Paths: ----------- trunk/src/doc/tasks.xhtml Modified: trunk/src/doc/releasePlan.xhtml =================================================================== --- trunk/src/doc/releasePlan.xhtml 2006-04-04 23:33:36 UTC (rev 10) +++ trunk/src/doc/releasePlan.xhtml 2006-04-04 23:35:14 UTC (rev 11) @@ -25,7 +25,7 @@ <dd> <ul> <li>Final implementation of proxy preferences.</li> - <li>Final implementation of the C Preprocessor. Note: This will eventually become a project of its own.</li> + <li>Final implementation of the C Preprocessor. Note: This will quite likely become a project of its own.</li> <li>Provide treetable usage example.</li> </ul> </dd> Modified: trunk/src/doc/start.xhtml =================================================================== --- trunk/src/doc/start.xhtml 2006-04-04 23:33:36 UTC (rev 10) +++ trunk/src/doc/start.xhtml 2006-04-04 23:35:14 UTC (rev 11) @@ -38,6 +38,7 @@ <li><a href="releasePlan">Release Plan</a></li> <li><a href="wontFixes">Known flaws that won't be fixed</a></li> <li><a href="subversion">Accessing JAPI's Subversion Repository</a></li> + <li><a href="tasks">Open Tasks</a> (for JAPI developers)</li> </ul> <h2>Contact the developers</h2> <ul> Added: trunk/src/doc/tasks.xhtml =================================================================== --- trunk/src/doc/tasks.xhtml (rev 0) +++ trunk/src/doc/tasks.xhtml 2006-04-04 23:35:14 UTC (rev 11) @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- $Id$ --> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> + <head> + <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> + <meta name="Date" content="$Date$" /> + <title>JAPI Pending Tasks</title> + </head> + <body> + <p> + This is a scratch board for pending tasks that need to be done with JAPI. + The tasks are not in any particular order, just random. + </p> + <dl> + <dt>Integration Subversion with Ant</dt> + <dd> + The build.xml for Ant still uses the old cvs tasks. + The subversion ant task provided by tigris should be used instead. + </dd> + <dt>Add Changelog Facility</dt> + <dd> + There should be an automatic changelog facility in build.xml that displays all changes made since the last release. + Because we use subversion now, this should be easy to do once subversion is integrated in Ant. + </dd> + <dt>Create miissing package descriptions</dt> + <dd> + Some packages lack package descriptions. + </dd> + <dt>Review package descriptions</dt> + <dd> + Some package descriptions might be inaccurate or not good enough. + </dd> + <dt>Improve java2html</dt> + <dd> + java2html needs some improvement to create XHTML 1.1 with properly identifiable lines. + E.g. <code><![CDATA[<span id="line10" class="even line">...</span>]]></code>. + The stylesheet should allow for alternating background of odd and even lines. + </dd> + <dt>Finnish JTreeTable</dt> + <dd> + The class JTreeTable needs to be finnished. + </dd> + <dt>Finnish preferences modules</dt> + <dd> + The preferences modules for keyboard, menu, toolbar, dialogs (bringing onetime dialogs back again) and proxy need to be finnished resp. created. + </dd> + <dt>Increase JAPI</dt> + <dd> + Cher has some old JAPI versions from the time of JAPI before SF, which might contain some useful classes that should go into JAPI. + </dd> + <dt>Add Cursor Handling to ActionFactory</dt> + <dd> + ActionFactory should be able to automatically set the cursors for components it creates. + </dd> + <dt>Improve ToolbarLayout</dt> + <dd> + ToolbarLayout needs an improvement to allow toolbars to be placed next to each other. + </dd> + <dt>Create Checkstyle Configuration</dt> + <dd> + JAPI needs a Checkstyle configuration. + An Ant Target running Checkstyle should also be added. + </dd> + <dt>Create font browser tool</dt> + <dd> + This goes in tools/font + </dd> + <dt>Create a jar browser tool</dt> + <dd> + This goes in tools/jar + </dd> + <dt>Rework guide on XInclude</dt> + <dd> + Some source code in the guide is not yet included using java2html and XInclude. + This should be changed to let all source code look consistently. + </dd> + <dt>Website Layout improvement</dt> + <dd> + JAPI needs a logo and a better website. + </dd> + <dt>IDE project files</dt> + <dd> + Think about a concept of how to put IDE project files in the JAPI repository in a way that when users change them, they'll be working on their copies without creating new versions when they do commits. + For a start, IntelliJ IDEA, NetBeans and Eclipse should be supported. + Perhaps applying the UCM stream concept of ClearCase might also be a possible solution to this. + Question: How to checkout a trunk directory from a branch instead. + </dd> + <dt>Unit Tests</dt> + <dd> + JAPI needs a unit test suite. + </dd> + <dt>Set svn:ignore properties properly</dt> + <dd> + Some directories like tools/fonts should have settings for svn:ignore. + All sub project directories with their own build.xml should, for instance, set svn:ignore to exclude their <code>classes</code> directory. + </dd> + </dl> + </body> +</html> Property changes on: trunk/src/doc/tasks.xhtml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + LF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-06 00:05:07
|
Revision: 18 Author: christianhujer Date: 2006-04-05 17:04:52 -0700 (Wed, 05 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=18&view=rev Log Message: ----------- Fixed property encoding handling for editor example. Added task for property encoding handling. Modified Paths: -------------- trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/action.properties trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/messages.properties trunk/src/doc/guide/swing/action/fromScratch/start.xhtml trunk/src/doc/tasks.xhtml Modified: trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/action.properties =================================================================== --- trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/action.properties 2006-04-05 23:51:41 UTC (rev 17) +++ trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/action.properties 2006-04-06 00:04:52 UTC (rev 18) @@ -1,3 +1,5 @@ +# Action properties for Editor, non-localizable information. +# This file MUST be ISO-8859-1 ActionFactory.additionalBundles=net.sf.japi.examples.editor.messages editor.menubar=file edit Modified: trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/messages.properties =================================================================== --- trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/messages.properties 2006-04-05 23:51:41 UTC (rev 17) +++ trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/messages.properties 2006-04-06 00:04:52 UTC (rev 18) @@ -1,3 +1,6 @@ +# Action properties for Editor, localizable information. +# This file MUST be ISO-8859-1 +# frame.title=Text Editor (JAPI usage example) file.text=File Modified: trunk/src/doc/guide/swing/action/fromScratch/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-05 23:51:41 UTC (rev 17) +++ trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-06 00:04:52 UTC (rev 18) @@ -217,8 +217,8 @@ <h3>Java Source: <code>net/sf/japi/examples/editor/Editor.java</code></h3> <pre class="listing"><xi:include href="src/net/sf/japi/examples/editor/Editor.java.xhtml" xpointer="/1/2/1/1" /></pre> <h3>Action Properties: <code>net/sf/japi/examples/editor/action.properties</code></h3> - <pre class="listing"><xi:include href="src/net/sf/japi/examples/editor/action.properties" parse="text" /></pre> - <h3>Message Properties: <code>net/sf/japi/examples/editor/message.properties</code></h3> - <pre class="listing"><xi:include href="src/net/sf/japi/examples/editor/message.properties" parse="text" /></pre> + <pre class="listing"><xi:include href="src/net/sf/japi/examples/editor/action.properties" parse="text" encoding="iso-8859-1" /></pre> + <h3>Message Properties: <code>net/sf/japi/examples/editor/messages.properties</code></h3> + <pre class="listing"><xi:include href="src/net/sf/japi/examples/editor/messages.properties" parse="text" encoding="iso-8859-1" /></pre> </body> </html> Modified: trunk/src/doc/tasks.xhtml =================================================================== --- trunk/src/doc/tasks.xhtml 2006-04-05 23:51:41 UTC (rev 17) +++ trunk/src/doc/tasks.xhtml 2006-04-06 00:04:52 UTC (rev 18) @@ -103,6 +103,15 @@ All possible NullPointerException warnings should be removed except in acceptable cases. This task also includes the definition of a list of acceptable cases of possible NullPointerExceptions. </dd> + <dt>Properties handling</dt> + <dd> + Make sure all property files are iso-8859-1 and not any other encoding. + Also make sure that in xi:include elements, property files are included as iso-8859-1. + </dd> + <dt>Add syntax highlighting for property files</dt> + <dd> + Add a syntax highlighting for property files. + </dd> </dl> </body> </html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-16 21:29:21
|
Revision: 84 Author: christianhujer Date: 2006-04-16 14:28:58 -0700 (Sun, 16 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=84&view=rev Log Message: ----------- Updated my email address. Modified Paths: -------------- trunk/src/doc/dtd/xhtml11_xinclude10.dtd trunk/src/doc/guide/io/src/CatJAPI.java trunk/src/doc/guide/io/src/CatPlain.java trunk/src/doc/guide/io/src/SortJAPI.java trunk/src/doc/guide/io/src/SortPlain.java trunk/src/doc/guide/io/src/UniqJAPI.java trunk/src/doc/guide/io/src/UniqPlain.java trunk/src/doc/guide/swing/action/fromScratch/start.xhtml trunk/src/doc/start.xhtml trunk/src/doc/transform.xslt trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java trunk/src/test/net/sf/japi/util/Arrays2Test.java Modified: trunk/src/doc/dtd/xhtml11_xinclude10.dtd =================================================================== --- trunk/src/doc/dtd/xhtml11_xinclude10.dtd 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/dtd/xhtml11_xinclude10.dtd 2006-04-16 21:28:58 UTC (rev 84) @@ -21,7 +21,7 @@ It is provided "as is" without expressed or implied warranty. - Author: Christian W. Hujer <Chr...@it...> + Author: Christian Hujer <ch...@ri...> Revision: $Id: xhtml11db.dtd,v 1.3 2004/06/02 18:10:56 chris Exp $ --> Modified: trunk/src/doc/guide/io/src/CatJAPI.java =================================================================== --- trunk/src/doc/guide/io/src/CatJAPI.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/guide/io/src/CatJAPI.java 2006-04-16 21:28:58 UTC (rev 84) @@ -4,7 +4,7 @@ import static net.sf.japi.io.IOHelper.copy; /** JAPI-based implementation of the UNIX comand <code>cat</code>. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class CatJAPI { Modified: trunk/src/doc/guide/io/src/CatPlain.java =================================================================== --- trunk/src/doc/guide/io/src/CatPlain.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/guide/io/src/CatPlain.java 2006-04-16 21:28:58 UTC (rev 84) @@ -7,7 +7,7 @@ import static java.lang.System.out; /** Plain implementation of the UNIX comand <code>cat</code>. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class CatPlain { Modified: trunk/src/doc/guide/io/src/SortJAPI.java =================================================================== --- trunk/src/doc/guide/io/src/SortJAPI.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/guide/io/src/SortJAPI.java 2006-04-16 21:28:58 UTC (rev 84) @@ -5,7 +5,7 @@ import net.sf.japi.io.ARGV; /** JAPI-based implementation of the UNIX command <code>sort</code>. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class SortJAPI { Modified: trunk/src/doc/guide/io/src/SortPlain.java =================================================================== --- trunk/src/doc/guide/io/src/SortPlain.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/guide/io/src/SortPlain.java 2006-04-16 21:28:58 UTC (rev 84) @@ -9,7 +9,7 @@ import net.sf.japi.io.ARGV; /** Plain implementation of the UNIX command <code>sort</code>. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class SortPlain { Modified: trunk/src/doc/guide/io/src/UniqJAPI.java =================================================================== --- trunk/src/doc/guide/io/src/UniqJAPI.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/guide/io/src/UniqJAPI.java 2006-04-16 21:28:58 UTC (rev 84) @@ -2,7 +2,7 @@ import net.sf.japi.io.ARGV; /** JAPI-based implementation of the UNIX comand <code>uniq</code>. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class UniqJAPI { Modified: trunk/src/doc/guide/io/src/UniqPlain.java =================================================================== --- trunk/src/doc/guide/io/src/UniqPlain.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/guide/io/src/UniqPlain.java 2006-04-16 21:28:58 UTC (rev 84) @@ -6,7 +6,7 @@ import static java.lang.System.out; /** JAPI-based implementation of the UNIX comand <code>uniq</code>. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class UniqPlain { Modified: trunk/src/doc/guide/swing/action/fromScratch/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-16 21:28:58 UTC (rev 84) @@ -62,7 +62,7 @@ /** A Text Editor application. * This is an example for developing an application with JAPI. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class Editor { @@ -141,7 +141,7 @@ /** A Text Editor application. * This is an example for developing an application with JAPI. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class Editor { Modified: trunk/src/doc/start.xhtml =================================================================== --- trunk/src/doc/start.xhtml 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/start.xhtml 2006-04-16 21:28:58 UTC (rev 84) @@ -49,7 +49,7 @@ <h2>Contact the developers</h2> <ul> <li> - You may visit the <a href="http://sourceforge.net/projects/japi">JAPI Project Page at SourceForge</a> or send mail to <a href="mailto:ch...@it...">ch...@it...</a>. + You may visit the <a href="http://sourceforge.net/projects/japi">JAPI Project Page at SourceForge</a> or send mail to <a href="mailto:ch...@ri...">ch...@ri...</a>. </li> <li> You may as well join <a href="irc://irc.freenode.net:6667/%23japi">IRC Channel <code>#japi</code> at <code>irc.freenode.net</code></a> and look for Cher(istheus), z0ra or Zergus. Modified: trunk/src/doc/transform.xslt =================================================================== --- trunk/src/doc/transform.xslt 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/doc/transform.xslt 2006-04-16 21:28:58 UTC (rev 84) @@ -65,7 +65,7 @@ <a href="http://sourceforge.net/"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=149894&type=1" alt="SourceForge.net Logo" width="88" height="31" class="now" /></a> <a href="http://sourceforge.net/donate/index.php?group_id=149894"><img src="http://sourceforge.net/images/project-support.jpg" width="88" height="32" alt="Support This Project" class="now" /></a> <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" class="now" /></a> - Feedback: <a href="mailto:ch...@it...">webmaster</a> + Feedback: <a href="mailto:ch...@ri...">webmaster</a> <xsl:if test="/html:html/html:head/html:meta[@name='Date']"> <br /> <xsl:value-of select="/html:html/html:head/html:meta[@name='Date']/@content" /> Modified: trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java =================================================================== --- trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java 2006-04-16 21:28:58 UTC (rev 84) @@ -25,7 +25,7 @@ import net.sf.japi.lang.SuperClassIterator; /** Test for {@link SuperClassIterator}. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class SuperClassIteratorTest extends TestCase { Modified: trunk/src/test/net/sf/japi/util/Arrays2Test.java =================================================================== --- trunk/src/test/net/sf/japi/util/Arrays2Test.java 2006-04-16 21:16:40 UTC (rev 83) +++ trunk/src/test/net/sf/japi/util/Arrays2Test.java 2006-04-16 21:28:58 UTC (rev 84) @@ -25,7 +25,7 @@ import net.sf.japi.util.Arrays2; /** Test for {@link Arrays2}. - * @author <a href="mailto:ch...@it...">Christian Hujer</a> + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class Arrays2Test extends TestCase { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-05-31 23:42:36
|
Revision: 126 Author: christianhujer Date: 2006-05-31 16:42:26 -0700 (Wed, 31 May 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=126&view=rev Log Message: ----------- Improved CSS validity. Modified Paths: -------------- trunk/src/doc/sitestyle.css trunk/src/doc/transform.xslt Modified: trunk/src/doc/sitestyle.css =================================================================== --- trunk/src/doc/sitestyle.css 2006-05-30 19:49:47 UTC (rev 125) +++ trunk/src/doc/sitestyle.css 2006-05-31 23:42:26 UTC (rev 126) @@ -1,17 +1,16 @@ -html { +html, body { background-color: white; + color:#11111A; } body { margin: auto auto; padding-left: 6%; padding-right: 6%; - background-color: white; - /*background-image: url(http://www.w3.org/Icons/logo-WMVS.png);*/ + /*background-image: url(http://www.w3.org/Icons/logo-WMVS.png); background-attachment: fixed; background-position: 0 0; - background-repeat: no-repeat; - color: #11111A; + background-repeat: no-repeat;*/ font-family: Helvetica, "Trebuchet MS", Arial, sans-serif; font-size: 1em; /* setting base font to user's prefered size */ line-height: 130%; @@ -19,6 +18,7 @@ div.header { background-color: #eee; + color:inherit; height:45px; text-align:center; } @@ -30,6 +30,7 @@ div.content { background-color: white; + color:inherit; border-bottom: 0; border-left: 1px solid #eee; border-right: 1px solid #eee; @@ -43,6 +44,7 @@ background-repeat: no-repeat; background-attachment: scroll; background-position: right; + color:inherit; height:45px; padding-top: 10px; padding-bottom: 0; @@ -68,11 +70,13 @@ margin-left: 222px; font-family: "Bitstream Vera Sans Mono", monospace; color: #888; + background-color:inherit; line-height: 120%; } p.copyright a { color: #88f; + background-color:inherit; text-decoration: none; } @@ -92,6 +96,7 @@ fieldset.screenshot { padding: .5em; background: white; + color:inherit; border: 1px dotted #aaaa77; margin-left: 20px; margin-right: 20px; @@ -99,8 +104,8 @@ } fieldset.screenshot legend { + background-color: #aaaa77; color: #fff; - background-color: #aaaa77; font-size: smaller; padding: .1ex .5ex; border-right: 1px solid gray; @@ -116,21 +121,21 @@ td.java, td.java-ln {vertical-align:top;} tt.java, tt.java-ln, pre.java, pre.java-ln {line-height:1em; margin-bottom:0em;} td.java-ln { text-align:right; } -tt.java-ln, pre.java-ln { color:#888888 } -/* Background */ span.java0 { color:#ffffff; } -/* Line numbers */ span.java1 { color:#808080; } -/* Multi-line comments */ span.java2 { color:#3f7f5f; } -/* Single-line comments */ span.java3 { color:#3f7f5f; } -/* Keywords */ span.java4 { color:#7f0055; font-weight:bold; } -/* Strings */ span.java5 { color:#2a00ff; } -/* Character constants */ span.java6 { color:#990000; } -/* Numeric constants */ span.java7 { color:#990000; } -/* Parenthesis */ span.java8 { color:#000000; } -/* Primitive Types */ span.java9 { color:#7f0055; font-weight:bold; } -/* Others */ span.java10 { color:#000000; } -/* Javadoc keywords */ span.java11 { color:#7f9fbf; } -/* Javadoc HTML tags */ span.java12 { color:#7f7f9f; } -/* Javadoc links */ span.java13 { color:#3f3fbf; } -/* Javadoc others */ span.java14 { color:#3f5fbf; } -/* Undefined */ span.java15 { color:#ff6100; } -/* Annotation */ span.java16 { color:#646464; } + tt.java-ln, pre.java-ln { background-color:inherit; color:#888888; } +/* Background */ span.java0 { background-color:inherit; color:#ffffff; } +/* Line numbers */ span.java1 { background-color:inherit; color:#808080; } +/* Multi-line comments */ span.java2 { background-color:inherit; color:#3f7f5f; } +/* Single-line comments */ span.java3 { background-color:inherit; color:#3f7f5f; } +/* Keywords */ span.java4 { background-color:inherit; color:#7f0055; font-weight:bold; } +/* Strings */ span.java5 { background-color:inherit; color:#2a00ff; } +/* Character constants */ span.java6 { background-color:inherit; color:#990000; } +/* Numeric constants */ span.java7 { background-color:inherit; color:#990000; } +/* Parenthesis */ span.java8 { background-color:inherit; color:#000000; } +/* Primitive Types */ span.java9 { background-color:inherit; color:#7f0055; font-weight:bold; } +/* Others */ span.java10 { background-color:inherit; color:#000000; } +/* Javadoc keywords */ span.java11 { background-color:inherit; color:#7f9fbf; } +/* Javadoc HTML tags */ span.java12 { background-color:inherit; color:#7f7f9f; } +/* Javadoc links */ span.java13 { background-color:inherit; color:#3f3fbf; } +/* Javadoc others */ span.java14 { background-color:inherit; color:#3f5fbf; } +/* Undefined */ span.java15 { background-color:inherit; color:#ff6100; } +/* Annotation */ span.java16 { background-color:inherit; color:#646464; } Modified: trunk/src/doc/transform.xslt =================================================================== --- trunk/src/doc/transform.xslt 2006-05-30 19:49:47 UTC (rev 125) +++ trunk/src/doc/transform.xslt 2006-05-31 23:42:26 UTC (rev 126) @@ -1,5 +1,4 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- $Id: transform.xslt,v 1.10 2006/02/15 00:32:35 christianhujer Exp $ --> <xsl:transform version="1.0" xmlns:html="http://www.w3.org/1999/xhtml" @@ -65,6 +64,8 @@ <a href="http://sourceforge.net/"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=149894&type=1" alt="SourceForge.net Logo" width="88" height="31" class="now" /></a> <a href="http://sourceforge.net/donate/index.php?group_id=149894"><img src="http://sourceforge.net/images/project-support.jpg" width="88" height="32" alt="Support This Project" class="now" /></a> <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" class="now" /></a> + <a href="http://jigsaw.w3.org/css-validator/check/referer"><img src="http://jigsaw.w3.org/css-validator/images/vcss" width="88" height="31" alt="Valid CSS!" /></a> + <!--<a href="http://www.jetbrains.com/idea/"><img src="http://www.jetbrains.com/idea/opensource/img/banners/idea88x31_blue.gif" alt="The best Java IDE" width="88" height="31" /></a>--> Feedback: <a href="mailto:ch...@ri...">webmaster</a> <xsl:if test="/html:html/html:head/html:meta[@name='Date']"> <br /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |