From 7577503dbb16a250b41034377a4fb88935763ee9 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Wed, 22 Jul 2009 16:49:37 +0000 Subject: [PATCH] Suppression fichiers inutiles --- www/style.css | 21 ----- www/switchcontent.js | 203 ------------------------------------------- 2 files changed, 224 deletions(-) delete mode 100644 www/style.css delete mode 100644 www/switchcontent.js diff --git a/www/style.css b/www/style.css deleted file mode 100644 index 907617d1c..000000000 --- a/www/style.css +++ /dev/null @@ -1,21 +0,0 @@ -html,body { -background-color : gray; -} - -img { -border : none; -} - -table { -border : none; -} - -a:link {color: black; text-decoration:none;} -a:visited {color: black; text-decoration:none;} -a:hover {color:#9c093a; text-decoration:underline;} - -p,ul,li,td { -font-size : 12px; -font-family : Arial, Helvetica, sans-serif; -color : black; -} diff --git a/www/switchcontent.js b/www/switchcontent.js deleted file mode 100644 index d81c0daeb..000000000 --- a/www/switchcontent.js +++ /dev/null @@ -1,203 +0,0 @@ -// ------------------------------------------------------------------- -// Switch Content Script- By Dynamic Drive, available at: http://www.dynamicdrive.com -// Last updated: Jan 5th, 2007 -// ------------------------------------------------------------------- - -function switchcontent(className){ -this.className=className -this.collapsePrev=false //Default: Collapse previous content each time -this.enablePersist=false //Default: Disable session only persistence -//Limit type of element to scan for on page for switch contents if 2nd function parameter is defined, for efficiency sake (ie: "div") -this.filter_content_tag=(arguments.length==2)? arguments[1].toLowerCase() : "" -} - -switchcontent.prototype.setStatus=function(openHTML, closeHTML){ //PUBLIC: Set open/ closing HTML indicator. Optional -this.statusOpen=openHTML -this.statusClosed=closeHTML -} - -switchcontent.prototype.setColor=function(openColor, closeColor){ //PUBLIC: Set open/ closing color of switch header. Optional -this.colorOpen=openColor -this.colorClosed=closeColor -} - -switchcontent.prototype.setPersist=function(bool){ //PUBLIC: Enable/ disable persistence. Default is true. -this.enablePersist=bool -} - -switchcontent.prototype.collapsePrevious=function(bool){ //PUBLIC: Enable/ disable collapse previous content. Default is false. -this.collapsePrev=bool -} - - -switchcontent.prototype.sweepToggle=function(setting){ //PUBLIC: Expand/ contract all contents method. (Values: "contract"|"expand") -if (typeof this.headers!="undefined" && this.headers.length>0){ //if there are switch contents defined on the page -for (var i=0; i