diff --git a/www/Makefile b/www/Makefile index 069466a6c..506e18ae1 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,2 +1,10 @@ check: - find -name '*.html' | while read f; do tidy -e < "$$f" | sed "s|^-e|$$f|"; done + @command -v tidy >/dev/null 2>&1 || { \ + echo "Error: tidy is required to check the website." >&2; \ + exit 1; \ + } + @status=0; \ + for f in $$(find . -name '*.html'); do \ + tidy -e "$$f" || status=$$?; \ + done; \ + exit $$status diff --git a/www/comparison.html b/www/comparison.html index 53e70bf8c..1d97dd2dd 100644 --- a/www/comparison.html +++ b/www/comparison.html @@ -516,8 +516,7 @@ target reconfiguration in a PnP-like manner) + - -

15. You can find a proposal how to implement zero-copy FILEIO in SCST on the - Contributing page.

+

15. The page-cache based zero-copy FILEIO implementation was removed.

16. Doesn't need any kernel patch, except in the case, when used with user space backend.

@@ -544,17 +543,5 @@ target reconfiguration in a PnP-like manner) + - Daniel Fernandes        

- - - - diff --git a/www/contributing.html b/www/contributing.html index 20b85c500..50026366b 100644 --- a/www/contributing.html +++ b/www/contributing.html @@ -189,17 +189,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/downloads.html b/www/downloads.html index 65ac05897..bf566a1fc 100644 --- a/www/downloads.html +++ b/www/downloads.html @@ -74,17 +74,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/handler_fileio_tgt.html b/www/handler_fileio_tgt.html index 115a9c19f..88d679d54 100644 --- a/www/handler_fileio_tgt.html +++ b/www/handler_fileio_tgt.html @@ -77,17 +77,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/images/Orange.css b/www/images/Orange.css index c7cd8500c..6afcbc90a 100644 --- a/www/images/Orange.css +++ b/www/images/Orange.css @@ -336,6 +336,12 @@ font.names { color: #EC981F ; } text-align: left; padding: 10px 10px 10px 10px; } +.company-name { + display: inline-block; + padding: 20px 0; + font-size: 1.2em; + font-weight: bold; +} /* Alignment classes */ @@ -354,4 +360,3 @@ font.names { color: #EC981F ; } .tab { padding: 0px 0px 0px 16px; } - diff --git a/www/images/tooltips.js b/www/images/tooltips.js deleted file mode 100644 index 307095d1c..000000000 --- a/www/images/tooltips.js +++ /dev/null @@ -1,52 +0,0 @@ -var d = document; -var offsetfromcursorY=15 // y offset of tooltip -var ie=d.all && !window.opera; -var ns6=d.getElementById && !d.all; -var tipobj,op; - -function tooltip(el,txt) { - tipobj=d.getElementById('mess'); - tipobj.innerHTML = txt; - op = 0.1; - tipobj.style.opacity = op; - tipobj.style.display="block"; - tipobj.style.visibility="visible"; - - el.onmousemove=positiontip; - appear(); -} - -function hide_info(el) { - d.getElementById('mess').style.visibility='hidden'; - d.getElementById('mess').style.display='none'; - el.onmousemove=''; -} - -function ietruebody(){ -return (d.compatMode && d.compatMode!="BackCompat")? d.documentElement : d.body -} - -function positiontip(e) { - var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft; - var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop; - var winwidth=ie? ietruebody().clientWidth : window.innerWidth-20 - var winheight=ie? ietruebody().clientHeight : window.innerHeight-20 - - var rightedge=ie? winwidth-event.clientX : winwidth-e.clientX; - var bottomedge=ie? winheight-event.clientY-offsetfromcursorY : winheight-e.clientY-offsetfromcursorY; - - if (rightedge < tipobj.offsetWidth) tipobj.style.left=curX-tipobj.offsetWidth+"px"; - else tipobj.style.left=curX+"px"; - - if (bottomedge < tipobj.offsetHeight) tipobj.style.top=curY-tipobj.offsetHeight-offsetfromcursorY+"px" - else tipobj.style.top=curY+offsetfromcursorY+"px"; -} - -function appear() { - if(op < 0.9) { - op += 0.07; - tipobj.style.opacity = op; - tipobj.style.filter = 'alpha(opacity='+op*100+')'; - t = setTimeout('appear()', 30); - } -} diff --git a/www/index.html b/www/index.html index f7eccaa3c..1fee2c9e4 100644 --- a/www/index.html +++ b/www/index.html @@ -191,17 +191,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/mc_s.html b/www/mc_s.html index 89b8fc586..709b7bdc4 100644 --- a/www/mc_s.html +++ b/www/mc_s.html @@ -250,17 +250,5 @@ and here. Design by: Daniel Fernandes        

- - - - diff --git a/www/scst_admin.html b/www/scst_admin.html index 8095263d0..a859650fc 100644 --- a/www/scst_admin.html +++ b/www/scst_admin.html @@ -76,17 +76,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/scstvslio.html b/www/scstvslio.html index e8d6e4173..3886088de 100644 --- a/www/scstvslio.html +++ b/www/scstvslio.html @@ -103,17 +103,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/scstvsstgt.html b/www/scstvsstgt.html index 1e078e496..9b7e3412e 100644 --- a/www/scstvsstgt.html +++ b/www/scstvsstgt.html @@ -84,17 +84,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/target_emulex.html b/www/target_emulex.html index d75b5e73f..337565e1a 100644 --- a/www/target_emulex.html +++ b/www/target_emulex.html @@ -81,17 +81,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/target_fcoe.html b/www/target_fcoe.html index 193c85313..546c1fc15 100644 --- a/www/target_fcoe.html +++ b/www/target_fcoe.html @@ -76,17 +76,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/target_iscsi.html b/www/target_iscsi.html index 3c8591587..9bf6f0c83 100644 --- a/www/target_iscsi.html +++ b/www/target_iscsi.html @@ -91,17 +91,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/target_local.html b/www/target_local.html index 7ba802a20..4602a91c4 100644 --- a/www/target_local.html +++ b/www/target_local.html @@ -84,17 +84,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/target_lsi.html b/www/target_lsi.html index 2574cca3e..892ec018d 100644 --- a/www/target_lsi.html +++ b/www/target_lsi.html @@ -59,17 +59,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/target_qla2x00t.html b/www/target_qla2x00t.html index b4f4d8b17..1e29b1fa9 100644 --- a/www/target_qla2x00t.html +++ b/www/target_qla2x00t.html @@ -87,17 +87,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/target_srp.html b/www/target_srp.html index 784404d9d..d5504add6 100644 --- a/www/target_srp.html +++ b/www/target_srp.html @@ -86,17 +86,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/targets.html b/www/targets.html index 4f219be27..6e88c3dcc 100644 --- a/www/targets.html +++ b/www/targets.html @@ -73,17 +73,5 @@ Design by: Daniel Fernandes        

- - - - diff --git a/www/users.html b/www/users.html index 4599a5266..e4bacf822 100644 --- a/www/users.html +++ b/www/users.html @@ -10,8 +10,6 @@ - -