summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlulabad <lulabad@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-02-09 15:24:07 +0000
committerlulabad <lulabad@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-02-09 15:24:07 +0000
commit3ef91a3bc92693d547656801bdae4e8950dafab5 (patch)
tree2106fbc6bc5c16ee96b5440f363d8b13974c2408
parent3636526bd6a625d3c9b4c9f58bffa49c01b8f0d4 (diff)
fixed more XHTML strict errors
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4467 6c8d7289-2bf4-0310-a012-ef5d649a1542
-rw-r--r--htroot/ConfigLanguage_p.java4
-rw-r--r--htroot/ConfigNetwork_p.html2
-rw-r--r--htroot/PerformanceMemory_p.html4
-rw-r--r--htroot/PerformanceQueues_p.html6
4 files changed, 8 insertions, 8 deletions
diff --git a/htroot/ConfigLanguage_p.java b/htroot/ConfigLanguage_p.java
index d140221bd..d20698a5d 100644
--- a/htroot/ConfigLanguage_p.java
+++ b/htroot/ConfigLanguage_p.java
@@ -132,7 +132,7 @@ public class ConfigLanguage_p {
//virtual entry
prop.put("langlist_0_file", "default");
prop.put("langlist_0_name", ((langNames.get("default") == null) ? "default" : (String) langNames.get("default")));
- prop.put("langlist_0_selected", "selected");
+ prop.put("langlist_0_selected", "selected=\"selected\"");
for(i=0;i<= langFiles.length-1 ;i++){
if(langFiles[i].endsWith(".lng")){
@@ -142,7 +142,7 @@ public class ConfigLanguage_p {
prop.put("langlist_"+(i+1)+"_file", langFiles[i]);
prop.put("langlist_"+(i+1)+"_name", ((langName == null) ? langKey : langName));
if(env.getConfig("locale.language", "default").equals(langKey)) {
- prop.put("langlist_"+(i+1)+"_selected", "selected");
+ prop.put("langlist_"+(i+1)+"_selected", "selected=\"selected\"");
prop.put("langlist_0_selected", " "); // reset Default
} else {
prop.put("langlist_"+(i+1)+"_selected", " ");
diff --git a/htroot/ConfigNetwork_p.html b/htroot/ConfigNetwork_p.html
index 5ebce9bdd..3ea36c62f 100644
--- a/htroot/ConfigNetwork_p.html
+++ b/htroot/ConfigNetwork_p.html
@@ -74,7 +74,7 @@
<input type="radio" value="off" id="indexDistributeWhileCrawlingOff"
name="indexDistributeWhileCrawling"
#(indexDistributeWhileCrawling.off)#::checked="checked" #(/indexDistributeWhileCrawling.off)#/>
- <label for="indexDistributeWhileCrawlingOff">disabled during crawling</label>.<br>
+ <label for="indexDistributeWhileCrawlingOff">disabled during crawling</label>.<br />
<input type="radio" value="on" id="indexDistributeWhileIndexingOn"
name="indexDistributeWhileIndexing"
#(indexDistributeWhileIndexing.on)#::checked="checked" #(/indexDistributeWhileIndexing.on)#/>
diff --git a/htroot/PerformanceMemory_p.html b/htroot/PerformanceMemory_p.html
index 7b18c2901..e1642dacc 100644
--- a/htroot/PerformanceMemory_p.html
+++ b/htroot/PerformanceMemory_p.html
@@ -78,8 +78,8 @@
</dl>
</fieldset>
</form>
- <p><img src="PerformanceGraph.png" name="graph" /></p>
- <p><form name="optionreloadGraph"><input type="checkbox" name="option" /> auto-reload graph</form></p>
+ <p><img src="PerformanceGraph.png" name="graph" alt="PerformanceGraph"/></p>
+ <p><form name="optionreloadGraph" action="" method="get"><input type="checkbox" name="option" /> auto-reload graph</form></p>
<p><strong>EcoTable RAM Index:</strong></p>
<table border="0" cellpadding="2" cellspacing="1">
<tr class="TableHeader" valign="bottom">
diff --git a/htroot/PerformanceQueues_p.html b/htroot/PerformanceQueues_p.html
index 588fb2007..6a7941460 100644
--- a/htroot/PerformanceQueues_p.html
+++ b/htroot/PerformanceQueues_p.html
@@ -84,9 +84,9 @@
</td>
</tr>
<tr valign="top" class="TableCellDark">
- <td>Words in RAM cache:<br>(Size in KBytes)</td>
- <td>#[wordCacheWSize]#<br>(#[wordCacheWSizeKBytes]# KB)</td>
- <td>#[wordCacheKSize]#<br>(#[wordCacheKSizeKBytes]# KB)</td>
+ <td>Words in RAM cache:<br />(Size in KBytes)</td>
+ <td>#[wordCacheWSize]#<br />(#[wordCacheWSizeKBytes]# KB)</td>
+ <td>#[wordCacheKSize]#<br />(#[wordCacheKSizeKBytes]# KB)</td>
<td>
This is the current size of the word caches.
The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.