rana_b 2003/10/22 09:42:53
Modified: build/site/projects/ftpserver/skin page.css breadcrumbs.js
Log:
new doc
Revision Changes Path
1.2 +12 -2
incubator-site/build/site/projects/ftpserver/skin/page.css
Index: page.css
===================================================================
RCS file:
/home/cvs/incubator-site/build/site/projects/ftpserver/skin/page.css,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- page.css 1 Apr 2003 13:48:08 -0000 1.1
+++ page.css 22 Oct 2003 16:42:53 -0000 1.2
@@ -5,6 +5,8 @@
a:active { color: #000066; }
a:hover { color: #000066; }
+img { border: 0; }
+
.menu { background-color: #4C6C8F; margin: 0px; padding: 3px 8px 5px 3px;
font-size : 90%; }
.menu a:link { color: #FFFFFF; text-decoration : none; }
.menu a:visited { color: #FFFFFF; text-decoration : none; }
@@ -14,6 +16,9 @@
.menu ul ul li .sel { list-style-image: url('images/current.gif');
font-weight : normal; }
.menu ul ul li { list-style-image: url('images/page.gif'); font-weight :
normal; }
+.menu .base-seleted {color: #000000; }
+.menu .base-not-selected { font-family: Verdana, Helvetica, sans-serif; }
+
.tab { font-size : 85%; border: 0 }
.tab a:link { text-decoration : none; }
.tab a:visited { text-decoration : none; color: #2A4A6D }
@@ -26,9 +31,14 @@
.content { padding: 5px 5px 5px 10px; font : small Verdana, Helvetica,
sans-serif; font-size : 90%; }
.content .ForrestTable { width: 100%; background-color: #7099C5; color:
#ffffff; font-size : 90%;}
+.content .ForrestTable th a:link { color: white; }
+.content .ForrestTable th a:visited { color: #cfdced; }
+.content .ForrestTable th a:active { color: #000066; }
+.content .ForrestTable th a:hover { color: #000066; }
.content .ForrestTable caption { text-align: left; color: black;
font-weight: bold; }
.content .ForrestTable th { text-align: center; }
.content .ForrestTable td { background-color: #f0f0ff; color: black; }
+.content .attribution { text-align: right; font-style: italic; font-size:
90% }
.frame { margin: 5px 20px 5px 20px; font-size: 90%; }
.frame .content { margin: 0px; }
@@ -43,13 +53,13 @@
.fixme .label { background-color: #C6C600; color: #ffffff; }
.code { border-color: #CFDCED; border-style: solid; border-width: 1px; }
-.codefrag { font-family: "Courier New", Courier, monospace; }
+.codefrag { font-family: "Courier New", Courier, monospace; }
.highlight { background-color: yellow; }
.minitoc {margin: 5px 5px 5px 40px;}
-.dtdElement { width: 100%; font-size: 90%; background-color : #ffffff; }
+.dtdElement { width: 100%; font-size: 90%; background-color : #ffffff; }
.dtdTag { color: #990000; text-transform : uppercase; font-style :
normal; font-size : 120%; font-weight : bold; }
1.2 +15 -5
incubator-site/build/site/projects/ftpserver/skin/breadcrumbs.js
Index: breadcrumbs.js
===================================================================
RCS file:
/home/cvs/incubator-site/build/site/projects/ftpserver/skin/breadcrumbs.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- breadcrumbs.js 1 Apr 2003 13:48:08 -0000 1.1
+++ breadcrumbs.js 22 Oct 2003 16:42:53 -0000 1.2
@@ -62,6 +62,16 @@
[EMAIL PROTECTED] 1.0
*/
+/**
+ * IE 5 on Mac doesn't know Array.push.
+ *
+ * Implement it - courtesy to fritz.
+ */
+var abc = new Array();
+if (!abc.push) {
+ Array.prototype.push = function(what){this[this.length]=what}
+}
+
/* ========================================================================
CONSTANTS
========================================================================
*/
@@ -132,9 +142,9 @@
* string.
*/
function sentenceCase( string )
-{
- var lower = string.toLowerCase();
- return lower.substr(0,1).toUpperCase() + lower.substr(1);
+{ return string;
+ //var lower = string.toLowerCase();
+ //return lower.substr(0,1).toUpperCase() + lower.substr(1);
}
/**
@@ -204,7 +214,7 @@
for( var i = 0; i < crumbs.length; i++ )
{
xhtml += '<a href="' + crumbs[i][1] + '" >';
- xhtml += sentenceCase( crumbs[i][0] ) + '</a>';
+ xhtml += unescape( crumbs[i][0] ) + '</a>';
if( i != (crumbs.length-1) )
{
xhtml += DISPLAY_SEPARATOR;
@@ -228,7 +238,7 @@
for( var i = 0; i < crumbs.length; i++ )
{
xhtml += '<a href="' + crumbs[i][1] + '" class="' +
CSS_CLASS_CRUMB + '">';
- xhtml += sentenceCase( crumbs[i][0] ) + '</a>';
+ xhtml += unescape( crumbs[i][0] ) + '</a>';
if( i != (crumbs.length-1) )
{
xhtml += '<span class="' + CSS_CLASS_SEPARATOR + '">' +
DISPLAY_SEPARATOR + '</span>';
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]