diff --git a/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java b/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java index f4d3d51ad..bf32732d7 100644 --- a/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java +++ b/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java @@ -57,7 +57,7 @@ public class GraphHelper extends HelperBase { } if (hasTx && hasRx && !_showEvents) { - _out.write(""); - _out.write("Select Stats to Graph

"); + _out.write("


Configure Graph Display

"); + _out.write("

[Select Stats to Graph]

"); _out.write("

"); _out.write("Periods:
\n"); _out.write("Plot averages: "); @@ -113,8 +114,8 @@ public class GraphHelper extends HelperBase { _out.write("Image sizes: width: pixels, height:
\n"); - _out.write("Refresh delay:
\n"); - _out.write(""); + _out.write("Refresh delay:
\n"); + _out.write("
"); } catch (IOException ioe) { ioe.printStackTrace(); } diff --git a/apps/routerconsole/jsp/graphs.jsp b/apps/routerconsole/jsp/graphs.jsp index 80f0fec32..cccba5676 100644 --- a/apps/routerconsole/jsp/graphs.jsp +++ b/apps/routerconsole/jsp/graphs.jsp @@ -15,9 +15,7 @@ " /> -
- - + \ No newline at end of file diff --git a/history.txt b/history.txt index 59e76fec9..1e7a95432 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,8 @@ +2009-07-25 dr|z3d + * Enhance the layout of /graphs.jsp + * Fix some of the irks in I2PSnark UI. + * Ongoing tweaks and fiddles the the theme css. Not finished by any means! + 2009-07-24 zzz * Eepsite: Add Deutsch index page and css (thanks sperrbezirk!) * Router: Support i2p.dir.base and i2p.dir.config passed in via properties diff --git a/installer/resources/themes/console/dark/console.css b/installer/resources/themes/console/dark/console.css index af923c218..651f534de 100644 --- a/installer/resources/themes/console/dark/console.css +++ b/installer/resources/themes/console/dark/console.css @@ -213,6 +213,37 @@ div.messages li { border: 0px !important; } +div.graphspanel { + padding: 15px 15px 15px 15px; + margin: 10px 0px; + background: #005; + -moz-border-radius: 4px; + -khtml-border-radius: 4px; + border-radius: 4px; + border: 1px solid #99f; + background: #003 url(images/darkbluebg.png); + -moz-box-shadow: inset 0px 0px 1px 0px #eef; +} + +div.graphspanel img { + border: 1px solid #001; + padding: 3px; + margin: 5px; + text-align: center !important; + background: #002; + -moz-box-shadow: inset 0px 0px 1px 0px #eef; + opacity: 0.9; +} + +div.graphspanel img:hover { + border: 1px solid #001; + padding: 3px; + margin: 5px; + text-align: center !important; + background: #002; + -moz-box-shadow: inset 0px 0px 1px 1px #f60; + opacity: 1; +} table { border-collapse: collapse; width: 100%; diff --git a/installer/resources/themes/console/light/console.css b/installer/resources/themes/console/light/console.css index 8019384b7..82db53b56 100644 --- a/installer/resources/themes/console/light/console.css +++ b/installer/resources/themes/console/light/console.css @@ -229,6 +229,38 @@ div.configure { -moz-box-shadow: inset 0px 0px 1px 0px #002; } +div.graphspanel { + padding: 12px; + margin: 10px 0px 25px 0; + background: #ddf url('images/lightbluetile.png'); + -moz-border-radius: 4px; + -khtml-border-radius: 4px; + border-radius: 4px; + border: 1px solid #000022; + -moz-box-shadow: inset 0px 0px 1px 0px #002; +} + + +div.graphspanel img { + border: 1px solid #003; + padding: 2px; + margin: 6px; + text-align: center !important; + background: #001; + -moz-box-shadow: inset 0px 0px 1px 1px #99f; + opacity: 0.9; +} + +div.graphspanel img:hover { + border: 1px solid #003; + padding: 2px; + margin: 6px; + text-align: center !important; + background: #001; + -moz-box-shadow: inset 0px 0px 2px 1px #f60; + opacity: 1; +} + div.messages { padding: 10px; margin: 10px 0 20px 0; diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 1b7510860..f74ab11db 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 23; + public final static long BUILD = 25; /** for example "-test" */ public final static String EXTRA = "-rc"; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;