summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-12-04 15:05:21 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-12-04 15:05:21 +0000
commit2be8696289aeb089be991cd8837ff9629b982324 (patch)
tree732240f8d35c876fd3ac1a1e7461f0a4faa6860c
parent2aa2ef9f253fda51bb429e6b66b667e3e0c6c895 (diff)
downloadrockbox-2be8696289aeb089be991cd8837ff9629b982324.tar.gz
rockbox-2be8696289aeb089be991cd8837ff9629b982324.zip
2.1 release
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4108 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--www/Makefile1
-rw-r--r--www/daily.t5
-rwxr-xr-xwww/dailymod.pl52
-rwxr-xr-xwww/dailysrc.pl2
-rw-r--r--www/docs/index.t3
-rw-r--r--www/download/index.t45
-rw-r--r--www/download/old.t1
-rw-r--r--www/head.t6
-rw-r--r--www/history.t9
-rw-r--r--www/internals/index.t4
-rw-r--r--www/internals/recorder.t3
-rw-r--r--www/irc/index.t4
-rw-r--r--www/main.t30
-rw-r--r--www/mods/a2.jpgbin19581 -> 20480 bytes
-rw-r--r--www/mods/disassemble2.t2
-rw-r--r--www/mods/index.t1
-rw-r--r--www/style.css2
-rwxr-xr-xwww/txt2html.pl2
18 files changed, 73 insertions, 99 deletions
diff --git a/www/Makefile b/www/Makefile
index 8dbacb758b..ae966d93ec 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -28,6 +28,7 @@ all: $(OBJS)
28 @(cd lang; $(MAKE)) 28 @(cd lang; $(MAKE))
29 @(cd tshirt-contest; $(MAKE)) 29 @(cd tshirt-contest; $(MAKE))
30 @(cd screenshots; $(MAKE)) 30 @(cd screenshots; $(MAKE))
31 @(cd digest; $(MAKE))
31 32
32main.html: main.t activity.html 33main.html: main.t activity.html
33 34
diff --git a/www/daily.t b/www/daily.t
index fb8b4a6270..4f47c15d2c 100644
--- a/www/daily.t
+++ b/www/daily.t
@@ -8,13 +8,14 @@ The top line is the latest.
8 8
9<p> 9<p>
10<!--#exec cmd="./dailymod.pl" --> 10<!--#exec cmd="./dailymod.pl" -->
11#if 0
11<p> 12<p>
12<b>mod</b> - The file you should name "archos.mod" before copying it to the root of your archos.<br> 13<b>mod</b> - The file you should name "archos.mod" before copying it to the root of your archos.<br>
13<b>ajz</b> - The file you should name "ajbrec.ajz" before copying it to the root of your archos.<br> 14<b>ajz</b> - The file you should name "ajbrec.ajz" before copying it to the root of your archos.<br>
14<b>rocks</b> - All plugins for this particular release of Rockbox.<br> 15<b>rocks</b> - All plugins for this particular release of Rockbox.<br>
15<b>full</b> - Full zip archive, with rockbox, plugins, languages, docs, fonts, ucl etc.<br> 16<b>full</b> - Full zip archive, with rockbox, plugins, languages, docs, fonts, ucl etc.<br>
16<b>ucl</b> - File to use when <a href="/docs/flash.html">flashing Rockbox</a> 17<b>ucl</b> - File to use when <a href="/docs/flash.html">flashing Rockbox</a>
17 18#endif
18<h2>Source tarballs</h2> 19<h2>Source tarballs</h2>
19 20
20<!--#exec cmd="./dailysrc.pl" --> 21<!--#exec cmd="./dailysrc.pl" -->
@@ -65,6 +66,8 @@ The batch timestamp is GMT.
65<td> 66<td>
66<a href="auto/build-fmrecorder/ajbrec.ajz">FM Recorder</a> 67<a href="auto/build-fmrecorder/ajbrec.ajz">FM Recorder</a>
67(<a href="auto/build-fmrecorder/rocks.zip">rocks</a>)<br> 68(<a href="auto/build-fmrecorder/rocks.zip">rocks</a>)<br>
69<a href="auto/build-recorderv2/ajbrec.ajz">V2 Recorder</a>
70(<a href="auto/build-recorderv2/rocks.zip">rocks</a>)<br>
68<a href="auto/build-recorder8mb/ajbrec.ajz">8MB Recorder</a> 71<a href="auto/build-recorder8mb/ajbrec.ajz">8MB Recorder</a>
69(<a href="auto/build-recorder8mb/rocks.zip">rocks</a>)<br> 72(<a href="auto/build-recorder8mb/rocks.zip">rocks</a>)<br>
70</td> 73</td>
diff --git a/www/dailymod.pl b/www/dailymod.pl
index e7bbee977b..a02e6be1b8 100755
--- a/www/dailymod.pl
+++ b/www/dailymod.pl
@@ -2,7 +2,7 @@
2 2
3my $basedir = "/home/dast/rockbox-build/daily-build"; 3my $basedir = "/home/dast/rockbox-build/daily-build";
4 4
5my @list=("player", "recorder", "fmrecorder", "recorder8mb"); 5my @list=("player", "recorder", "fmrecorder", "recorderv2", "recorder8mb");
6 6
7for(@list) { 7for(@list) {
8 my $dir = $_; 8 my $dir = $_;
@@ -17,10 +17,14 @@ for(@list) {
17 } 17 }
18} 18}
19 19
20print "<table class=rockbox><tr><th>date</th>"; 20print "<table class=rockbox>\n";
21 21
22for(@list) { 22if (0) {
23 print "<th>$_</th>"; 23 print "<tr><th>date</th>";
24
25 for(@list) {
26 print "<th>$_</th>";
27 }
24} 28}
25 29
26for(reverse sort keys %date) { 30for(reverse sort keys %date) {
@@ -35,47 +39,9 @@ for(reverse sort keys %date) {
35 my $n=0; 39 my $n=0;
36 my $m = $_; 40 my $m = $_;
37 print "<td> "; 41 print "<td> ";
38 # old mod
39 if( -f "daily/$_/rockbox${d}.mod") {
40 print "<a href=\"daily/$_/rockbox${d}.mod\">mod</a>";
41 $n++;
42 }
43 # new mod
44 if( -f "daily/$_/rockbox-$m-${d}.mod") {
45 print "<a href=\"daily/$m/rockbox-$m-${d}.mod\">mod</a>";
46 $n++;
47 }
48 # old ajz
49 if( -f "daily/$_/rockbox${d}.ajz") {
50 printf "%s<a href=\"daily/$_/rockbox${d}.ajz\">ajz</a>",
51 $n?", ":"";
52 $n++;
53 }
54 # new ajz
55 if( -f "daily/$m/rockbox-$m-${d}.ajz") {
56 printf "%s<a href=\"daily/$m/rockbox-$m-${d}.ajz\">ajz</a>",
57 $n?", ":"";
58 $n++;
59 }
60 if( -f "daily/$_/rocks${d}.zip") {
61 printf "%s<a href=\"daily/$_/rocks${d}.zip\">rocks</a>",
62 $n?", ":"";
63 $n++;
64 }
65 # old-style full zip
66 if( -f "daily/$_/rockbox-${d}.zip") {
67 printf "%s<a href=\"daily/$_/rockbox-${d}.zip\">full</a>",
68 $n?", ":"";
69 $n++;
70 }
71 # new-style full zip: 42 # new-style full zip:
72 if( -f "daily/$m/rockbox-${m}-${d}.zip") { 43 if( -f "daily/$m/rockbox-${m}-${d}.zip") {
73 printf "%s<a href=\"daily/$_/rockbox-${m}-${d}.zip\">full</a>", 44 printf "%s<a href=\"daily/$_/rockbox-${m}-${d}.zip\">${m}</a>",
74 $n?", ":"";
75 $n++;
76 }
77 if( -f "daily/$_/rockbox${d}.ucl") {
78 printf "%s<a href=\"daily/$_/rockbox${d}.ucl\">ucl</a>",
79 $n?", ":""; 45 $n?", ":"";
80 $n++; 46 $n++;
81 } 47 }
diff --git a/www/dailysrc.pl b/www/dailysrc.pl
index 7ad91a0d2a..d4e53ea922 100755
--- a/www/dailysrc.pl
+++ b/www/dailysrc.pl
@@ -9,7 +9,7 @@ closedir DIR;
9 9
10print "<ul>\n"; 10print "<ul>\n";
11 11
12for ( @tarballs ) { 12for ( sort {$b <=> $a} @tarballs ) {
13 $size = (stat("$basedir/$_"))[7]; 13 $size = (stat("$basedir/$_"))[7];
14 $log = ""; 14 $log = "";
15 if (/-(\d+)/) { 15 if (/-(\d+)/) {
diff --git a/www/docs/index.t b/www/docs/index.t
index 20dec6c17d..577bacff2e 100644
--- a/www/docs/index.t
+++ b/www/docs/index.t
@@ -3,10 +3,11 @@
3 3
4<h2>For users</h2> 4<h2>For users</h2>
5<ul> 5<ul>
6<li> <a href="/manual/manual.pdf">User manual</a> (pdf, 330KB)
6<li> <a href="faq.html">Frequently Asked Questions</a> 7<li> <a href="faq.html">Frequently Asked Questions</a>
7<li> <a href="battery-faq.html">Frequently Asked Questions about Batteries and Charging</a> 8<li> <a href="battery-faq.html">Frequently Asked Questions about Batteries and Charging</a>
9<p>
8<li> <a href="nodo.html">Features We Will Not Implement</a> 10<li> <a href="nodo.html">Features We Will Not Implement</a>
9<li> <a href="/manual/manual.pdf">User manual</a>
10<li> <a href="features.html">Feature Comparison Chart</a> 11<li> <a href="features.html">Feature Comparison Chart</a>
11<li> <a href="custom_wps_format.html">How to make a custom WPS</a> 12<li> <a href="custom_wps_format.html">How to make a custom WPS</a>
12<li> <a href="custom_cfg_format.html">How to make a custom config file</a> 13<li> <a href="custom_cfg_format.html">How to make a custom config file</a>
diff --git a/www/download/index.t b/www/download/index.t
index 01da64bc70..6163c6123f 100644
--- a/www/download/index.t
+++ b/www/download/index.t
@@ -2,52 +2,57 @@
2#define DOWNLOAD_PAGE 2#define DOWNLOAD_PAGE
3#include "head.t" 3#include "head.t"
4 4
5<h2>Latest version: 2.0</h2> 5<p><b>Note:</b> The latest "packaged" release, 2.0, is getting a bit old. For the latest features, we recommend you check out the <a href=/daily.shtml>daily builds</a>. (Yes yes, we really should make a new proper release...)
6 6
7<p>Please read the <a href="rockbox-2.0-notes.txt">release notes</a>. (<a href="old.html">Older releases</a>) 7<h2>Latest version: 2.1 (2003-12-04)</h2>
8
9<p>Please read the <a href="rockbox-2.1-notes.txt">release notes</a>. (<a href="old.html">Older releases</a>)
8 10
9<p> 11<p>
10<table class=rockbox><tr> 12<table class=rockbox><tr>
11<th>player</th> 13<th>player</th>
12<th>recorder</th> 14<th>recorder</th>
13<th>fm recorder</th> 15<th>fm recorder</th>
14</tr><tr> 16<th>recorder v2</th>
17</tr><tr valign=top>
15<td> 18<td>
16This version is for Archos Jukebox 5000, 6000 and all Studio models. 19Archos Jukebox 5000, 6000 and Studio models
17<ul> 20
18<li><a href="rockbox-2.0-player.zip">rockbox-2.0-player.zip</a> 21<p><a href="rockbox-2.1-player.zip">rockbox-2.1-player.zip</a>
19<br>(137 KB) 22<br>(184 KB)
20</ul>
21 23
22</td><td> 24</td><td>
23This version is for all non-FM Archos Jukebox Recorder models. 25Archos Jukebox Recorder 6, 10, 15 and 20
24 26
25<ul> 27<p><a href="rockbox-2.1-recorder.zip">rockbox-2.1-recorder.zip</a>
26<li><a href="rockbox-2.0-recorder.zip">rockbox-2.0-recorder.zip</a> 28<br>(412 KB)
27<br>(231 KB)
28</ul>
29 29
30</td> 30</td>
31<td> 31<td>
32This version is for Archos Jukebox FM Recorder. 32Archos Jukebox FM Recorder
33 33
34<ul> 34<p><a href="rockbox-2.1-fmrecorder.zip">rockbox-2.1-fmrecorder.zip</a>
35<li><a href="rockbox-2.0-fmrecorder.zip">rockbox-2.0-fmrecorder.zip</a> 35<br>(416 KB)
36<br>(229 KB) 36
37</ul> 37</td>
38<td>
39Archos Jukebox Recorder V2
40
41<p><a href="rockbox-2.1-recorderv2.zip">rockbox-2.1-recorderv2.zip</a>
42<br>(416 KB)
38 43
39</td> 44</td>
40</tr></table> 45</tr></table>
41 46
42<h3>Source code</h3> 47<h3>Source code</h3>
43<ul> 48<ul>
44<li><a href="rockbox-2.0.tar.gz">rockbox-2.0.tar.gz</a> 49<li><a href="rockbox-2.1.tar.gz">rockbox-2.1.tar.gz</a>
45</ul> 50</ul>
46 51
47<h3>Auxiliary files</h3> 52<h3>Auxiliary files</h3>
48<ul> 53<ul>
49<li><a href="/lang/">Languages</a> 54<li><a href="/lang/">Languages</a>
50<li><a href="/fonts/">Fonts</a> (Recorder and FM Recorder only) 55<li><a href="/fonts/">Fonts</a> (Recorders only)
51</ul> 56</ul>
52 57
53<h2>Installation</h2> 58<h2>Installation</h2>
diff --git a/www/download/old.t b/www/download/old.t
index 033b2795cd..c8c0f02a96 100644
--- a/www/download/old.t
+++ b/www/download/old.t
@@ -2,6 +2,7 @@
2#define OLDRELEASES_PAGE 2#define OLDRELEASES_PAGE
3#include "head.t" 3#include "head.t"
4 4
5<p><a href="rockbox-2.0-notes.txt">2.0 release notes</a>.
5<p><a href="rockbox-1.4-notes.txt">1.4 release notes</a>. 6<p><a href="rockbox-1.4-notes.txt">1.4 release notes</a>.
6<p><a href="rockbox-1.3-notes.txt">1.3 release notes</a>. 7<p><a href="rockbox-1.3-notes.txt">1.3 release notes</a>.
7<p><a href="rockbox-1.2-notes.txt">1.2 release notes</a>. 8<p><a href="rockbox-1.2-notes.txt">1.2 release notes</a>.
diff --git a/www/head.t b/www/head.t
index fd63f12e90..48ed848641 100644
--- a/www/head.t
+++ b/www/head.t
@@ -40,6 +40,7 @@
40<a class="menulink" href="/requests.shtml">feature&nbsp;requests</a><br> 40<a class="menulink" href="/requests.shtml">feature&nbsp;requests</a><br>
41<a class="menulink" href="/bugs.shtml">bug reports</a><br> 41<a class="menulink" href="/bugs.shtml">bug reports</a><br>
42<a class="menulink" href="http://sourceforge.net/tracker/?group_id=44306&atid=439120">patches</a><br> 42<a class="menulink" href="http://sourceforge.net/tracker/?group_id=44306&atid=439120">patches</a><br>
43<a class="menulink" href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/rockbox/">CVS</a><br>
43<a class="menulink" href="http://bjorn.haxx.se/isd200/">linux driver</a> 44<a class="menulink" href="http://bjorn.haxx.se/isd200/">linux driver</a>
44 45
45<div align="right"> 46<div align="right">
@@ -48,13 +49,12 @@
48<input value="Search" type=submit> 49<input value="Search" type=submit>
49<input type=hidden name=as_sitesearch value="rockbox.haxx.se"> 50<input type=hidden name=as_sitesearch value="rockbox.haxx.se">
50</form> 51</form>
51<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/rockbox/"><img src="/viewcvs.png" width="128" height="48" border="0" alt="View CVS"></a>
52
53<br><a href="http://sourceforge.net/projects/rockbox/"><img src="http://sourceforge.net/sflogo.php?group_id=44306&amp;type=1" width="88" height="31" border="0" alt="SourceForge.net Logo"></a>
54 52
55<p class=menutext>Bandwidth and server<br>sponsored by:<br> 53<p class=menutext>Bandwidth and server<br>sponsored by:<br>
56<a href="http://www.contactor.se"><img border=0 src="/cont.png" width=101 height=36></a> 54<a href="http://www.contactor.se"><img border=0 src="/cont.png" width=101 height=36></a>
57 55
56<p><a href="http://sourceforge.net/projects/rockbox/"><img src="http://sourceforge.net/sflogo.php?group_id=44306&amp;type=1" width="88" height="31" border="0" alt="SourceForge.net Logo"></a>
57
58<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> 58<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
59<input type="hidden" name="cmd" value="_xclick"> 59<input type="hidden" name="cmd" value="_xclick">
60<input type="hidden" name="business" value="bjorn@haxx.se"> 60<input type="hidden" name="business" value="bjorn@haxx.se">
diff --git a/www/history.t b/www/history.t
index ca4a905355..439151d2d6 100644
--- a/www/history.t
+++ b/www/history.t
@@ -2,6 +2,15 @@
2#define HISTORY_PAGE 2#define HISTORY_PAGE
3#include "head.t" 3#include "head.t"
4 4
5<p><i>2003-05-09</i>: The 400-file dir browser limit is <a href="http://rockbox.haxx.se/mail/archive/rockbox-archive-2003-05/0334.shtml">gone</a>.
6
7<p><i>2003-05-03</i>: Finally, FM Radio support for FM Recorder models!
8
9<p><i>2003-04-23</i>: <a href="/digest/">The Rockbox Digest</a> - track
10Rockbox development.
11
12<p><i>2003-04-15</i>: Version 2.0 is <a href="/download/">released</a>
13
5<p><i>2003-02-14</i>: Matthew P. O'Reilly gave Linus an FM Recorder for his birthday! 14<p><i>2003-02-14</i>: Matthew P. O'Reilly gave Linus an FM Recorder for his birthday!
6Linus had it for 2 hours before he took it apart and started drawing schematics... 15Linus had it for 2 hours before he took it apart and started drawing schematics...
7 16
diff --git a/www/internals/index.t b/www/internals/index.t
index c65904d8d5..9bcc8c0523 100644
--- a/www/internals/index.t
+++ b/www/internals/index.t
@@ -32,4 +32,8 @@
32 Roland's "undressed" archos:<br> 32 Roland's "undressed" archos:<br>
33<a href="micromusic_archos_jb20rec.jpg"><img src="small-micromusic_archos_jb20rec.jpg" border="0"></a> 33<a href="micromusic_archos_jb20rec.jpg"><img src="small-micromusic_archos_jb20rec.jpg" border="0"></a>
34 34
35<p>
36 Sa'ad Saeed's tribute to Rockbox:<br>
37<a href="archos_radiosity20.jpg"><img src="archos_radiosity20.thumb.jpg" border="0"></a>
38
35#include "foot.t" 39#include "foot.t"
diff --git a/www/internals/recorder.t b/www/internals/recorder.t
index 9de1ecfe85..bcbf8019aa 100644
--- a/www/internals/recorder.t
+++ b/www/internals/recorder.t
@@ -24,5 +24,8 @@ Outside view of the MP3REAR board
24<p><a href="rec_rear_bottom.jpg"><img src="rec_rear_bottom_t.jpg"></a><br> 24<p><a href="rec_rear_bottom.jpg"><img src="rec_rear_bottom_t.jpg"></a><br>
25Inside view of the MP3REAR board 25Inside view of the MP3REAR board
26 26
27<p><a href="rec_lcd.jpg"><img src="rec_lcd_t.jpg"></a><br>
28The LCD
29
27 30
28#include "foot.t" 31#include "foot.t"
diff --git a/www/irc/index.t b/www/irc/index.t
index dc5b3f3c77..5111431bf3 100644
--- a/www/irc/index.t
+++ b/www/irc/index.t
@@ -1,8 +1,8 @@
1#define _PAGE_ IRC 1#define _PAGE_ IRC
2#include "head.t" 2#include "head.t"
3 3
4<p>We often hang out on #rockbox over at irc.freenode.net 4<p>We often hang out on <a href="irc://irc.freenode.net/rockbox">#rockbox</a>
5(freenode was once known as openprojects.net, see 5over at irc.freenode.net (freenode was once known as openprojects.net, see
6<a href="http://freenode.net/">their web site</a> for more information). 6<a href="http://freenode.net/">their web site</a> for more information).
7Since there is a great deal of technical discussion, we log these sessions 7Since there is a great deal of technical discussion, we log these sessions
8for later reference. 8for later reference.
diff --git a/www/main.t b/www/main.t
index b032213326..6b19a4e1f1 100644
--- a/www/main.t
+++ b/www/main.t
@@ -4,7 +4,7 @@
4#include "head.t" 4#include "head.t"
5 5
6<p class="ingress"> Rockbox is an Open Source replacement firmware for the 6<p class="ingress"> Rockbox is an Open Source replacement firmware for the
7Archos Jukebox 5000, 6000, Studio, Recorder and FM Recorder MP3 players. 7Archos Jukebox 5000, 6000, Studio, Recorder, FM Recorder and Recorder V2 MP3 players.
8 8
9<p> Rockbox is a complete rewrite and uses no fragments of the original 9<p> Rockbox is a complete rewrite and uses no fragments of the original
10firmware. It boasts <a href="/docs/features.html">numerous features</a> while 10firmware. It boasts <a href="/docs/features.html">numerous features</a> while
@@ -14,37 +14,15 @@ remaining <a href="http://rockbox.haxx.se/manual/manual.pdf">easy to use</a>.
14upgrade your ordinary Archos firmware. 14upgrade your ordinary Archos firmware.
15 15
16<h2>News</h2> 16<h2>News</h2>
17<p><i>2003-07-09</i>: Rockbox started from <a href="/docs/flash.html">flash ROM</a> works! 17<p><i>2003-12-04</i>: Version 2.1 is <a href="/download/">released</a>
18 18
19<p><i>2003-06-30</i>: The plugin loader is now <a href="http://rockbox.haxx.se/mail/archive/rockbox-archive-2003-06/0707.shtml">alive</a>! 19<p><i>2003-07-09</i>: Rockbox started from <a href="/docs/flash.html">flash ROM</a> works
20 20
21<p><i>2003-05-09</i>: The 400-file dir browser limit is <a href="http://rockbox.haxx.se/mail/archive/rockbox-archive-2003-05/0334.shtml">gone</a>. 21<p><i>2003-06-30</i>: The plugin loader is now <a href="http://rockbox.haxx.se/mail/archive/rockbox-archive-2003-06/0707.shtml">alive</a>
22
23<p><i>2003-05-03</i>: Finally, FM Radio support for FM Recorder models!
24
25<p><i>2003-04-23</i>: <a href="/digest/">The Rockbox Digest</a> - track
26Rockbox development.
27
28<p><i>2003-04-15</i>: Version 2.0 is <a href="/download/">released</a>
29 22
30<p><i><small>(Old news items have moved to a 23<p><i><small>(Old news items have moved to a
31<a href="history.html">separate page</a>.)</small></i> 24<a href="history.html">separate page</a>.)</small></i>
32 25
33<h2>Roadmap</h2>
34<p>This is a rough indication of which features we plan/expect/hope to be
35included in which versions. Naturally, this is all subject to change without
36notice.
37
38<dl>
39<dt><b>Version 2.1</b>
40<dd> Lots of features and fixes that were held off for 2.0
41<br> Plugin loader, opening the door for a bucketful of new applications
42
43<dt><b>Version 2.2</b>
44<dd> User interface overhaul
45
46</dl>
47
48<h2>Recent CVS activity</h2> 26<h2>Recent CVS activity</h2>
49<p> 27<p>
50<!--#include file="lastcvs.link" --> 28<!--#include file="lastcvs.link" -->
diff --git a/www/mods/a2.jpg b/www/mods/a2.jpg
index 147f93aa90..914f349ef0 100644
--- a/www/mods/a2.jpg
+++ b/www/mods/a2.jpg
Binary files differ
diff --git a/www/mods/disassemble2.t b/www/mods/disassemble2.t
index 7cdbc636fa..9522db81ee 100644
--- a/www/mods/disassemble2.t
+++ b/www/mods/disassemble2.t
@@ -6,6 +6,8 @@
6<p><img src="a2.jpg"> 6<p><img src="a2.jpg">
7<br> 7<br>
8Locate the three solder points where the top board is soldered to the frame. 8Locate the three solder points where the top board is soldered to the frame.
9
10<p>On some units the there are also two additional solder points (green circles) where the top board is soldered to the "MP3REAR" board.
9<hr> 11<hr>
10 12
11<p><img src="a3.jpg"> 13<p><img src="a3.jpg">
diff --git a/www/mods/index.t b/www/mods/index.t
index 75ed0e5c91..bcb3dab8c9 100644
--- a/www/mods/index.t
+++ b/www/mods/index.t
@@ -27,6 +27,7 @@
27<li>Uwe Freese modified his recorder to be able to 27<li>Uwe Freese modified his recorder to be able to
28<a href="http://www.uwe-freese.de/rockbox/rtc_alarm_en.html"> 28<a href="http://www.uwe-freese.de/rockbox/rtc_alarm_en.html">
29power-on from the RTC alarm</a>. 29power-on from the RTC alarm</a>.
30<li><a href="http://www.geocities.com/raichea/">Steve Russell's PIC-based remote control</a>
30</ul> 31</ul>
31 32
32<p><img src="esd.jpg"> 33<p><img src="esd.jpg">
diff --git a/www/style.css b/www/style.css
index f46da7a404..a2ac15c0c5 100644
--- a/www/style.css
+++ b/www/style.css
@@ -20,7 +20,7 @@ H2 {
20 font-size: 14pt; 20 font-size: 14pt;
21} 21}
22 22
23H3, div.h5 { 23H3, div.h5, .newsdate {
24 text-decoration: none; 24 text-decoration: none;
25 font-family: Verdana,Arial,Helvetica,sans-serif; 25 font-family: Verdana,Arial,Helvetica,sans-serif;
26 font-style: normal; 26 font-style: normal;
diff --git a/www/txt2html.pl b/www/txt2html.pl
index 6e39e8dcaf..5a532cdead 100755
--- a/www/txt2html.pl
+++ b/www/txt2html.pl
@@ -9,7 +9,7 @@ sub fixline {
9 $_ =~ s/\</&lt;/g; 9 $_ =~ s/\</&lt;/g;
10 $_ =~ s/\>/&gt;/g; 10 $_ =~ s/\>/&gt;/g;
11 11
12 $_ =~ s/(http:\/\/([a-zA-Z0-9_.\#\/-]*)[^\) .\n])/\<a href=\"$1\"\>$1\<\/a\>/g; 12 $_ =~ s/(http:\/\/([a-zA-Z0-9_.\#\/-\?\&]*)[^\) .\n])/\<a href=\"$1\"\>$1\<\/a\>/g;
13 13
14 $_ =~ s/(\\|\/)$/$1&nbsp;/g; # clobber backslash on end of line 14 $_ =~ s/(\\|\/)$/$1&nbsp;/g; # clobber backslash on end of line
15} 15}