# HG changeset patch # User luginbue # Date 1021940981 -7200 # Node ID 44f653ae5df5fcea228aa6ae754ce52dea2de288 # Parent 79f1deeb18c4d57767253070f1618946ce055968 opera support done, bugfixes diff -r 79f1deeb18c4 -r 44f653ae5df5 client/digitallibrary/dlImage.jsp --- a/client/digitallibrary/dlImage.jsp Tue May 21 02:29:41 2002 +0200 +++ b/client/digitallibrary/dlImage.jsp Tue May 21 02:29:41 2002 +0200 @@ -65,14 +65,16 @@ - - - - -
-
-
-

-
-

-
-
-
-

-

-

- - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + +
+
+
+

+
+

+
+
+
+

+

+

+ + + + + + + + + + + + + + + + + + + + + + + diff -r 79f1deeb18c4 -r 44f653ae5df5 client/digitallibrary/navigation_ie.js --- a/client/digitallibrary/navigation_ie.js Tue May 21 02:29:41 2002 +0200 +++ b/client/digitallibrary/navigation_ie.js Tue May 21 02:29:41 2002 +0200 @@ -67,8 +67,7 @@ function loadPicture(detailGrade, keepArea) { - var newURL = "dlImage.jsp?" - newURL += "fn=" + att[0] + "&pn=" + att[1] + "&ws=" + att[2] + "&mo=" + att[3]; + var newQuery = "fn=" + att[0] + "&pn=" + att[1] + "&ws=" + att[2] + "&mo=" + att[3]; if (detailGrade == 0) { att[4] = "0/0"; @@ -81,13 +80,13 @@ att[8] = 1; } - newURL += "&mk=" + att[4] + "&wx=" + att[5] + "&wy=" + att[6] + "&ww=" + att[7] + "&wh=" + att[8]; - newURL += "&dw=" + (document.body.clientWidth-30) + "&dh=" + (document.body.clientHeight-30); + newQuery += "&mk=" + att[4] + "&wx=" + att[5] + "&wy=" + att[6] + "&ww=" + att[7] + "&wh=" + att[8]; + newQuery += "&dw=" + (document.body.clientWidth-30) + "&dh=" + (document.body.clientHeight-30); // debug window - checking the parameters passed to the next image - //alert ("DEBUG MESSAGE (complete URL in loadPicture):\n\n" + newURL); + //alert ("DEBUG MESSAGE (query-string in loadPicture):\n\n" + newQuery); - location.href = newURL; + location.href = location.pathname + "?" + newQuery; } diff -r 79f1deeb18c4 -r 44f653ae5df5 client/digitallibrary/navigation_n4.js --- a/client/digitallibrary/navigation_n4.js Tue May 21 02:29:41 2002 +0200 +++ b/client/digitallibrary/navigation_n4.js Tue May 21 02:29:41 2002 +0200 @@ -67,8 +67,7 @@ function loadPicture(detailGrade, keepArea) { - var newURL = "dlImage.jsp?" - newURL += "fn=" + att[0] + "&pn=" + att[1] + "&ws=" + att[2] + "&mo=" + att[3]; + var newQuery = "fn=" + att[0] + "&pn=" + att[1] + "&ws=" + att[2] + "&mo=" + att[3]; if (detailGrade == 0) { att[4] = "0/0"; @@ -81,13 +80,13 @@ att[8] = 1; } - newURL += "&mk=" + att[4] + "&wx=" + att[5] + "&wy=" + att[6] + "&ww=" + att[7] + "&wh=" + att[8]; - newURL += "&dw=" + (innerWidth-30) + "&dh=" + (innerHeight-30); + newQuery += "&mk=" + att[4] + "&wx=" + att[5] + "&wy=" + att[6] + "&ww=" + att[7] + "&wh=" + att[8]; + newQuery += "&dw=" + (innerWidth-30) + "&dh=" + (innerHeight-30); // debug window - checking the parameters passed to the next image - //alert ("DEBUG MESSAGE (complete URL in loadPicture):\n\n" + newURL); + //alert ("DEBUG MESSAGE (query-string in loadPicture):\n\n" + newQuery); - location.href = newURL; + location.href = location.pathname + "?" + newQuery; } diff -r 79f1deeb18c4 -r 44f653ae5df5 client/digitallibrary/navigation_n6.js --- a/client/digitallibrary/navigation_n6.js Tue May 21 02:29:41 2002 +0200 +++ b/client/digitallibrary/navigation_n6.js Tue May 21 02:29:41 2002 +0200 @@ -67,8 +67,7 @@ function loadPicture(detailGrade, keepArea) { - var newURL = "dlImage.jsp?" - newURL += "fn=" + att[0] + "&pn=" + att[1] + "&ws=" + att[2] + "&mo=" + att[3]; + var newQuery = "fn=" + att[0] + "&pn=" + att[1] + "&ws=" + att[2] + "&mo=" + att[3]; if (detailGrade == 0) { att[4] = "0/0"; @@ -81,13 +80,13 @@ att[8] = 1; } - newURL += "&mk=" + att[4] + "&wx=" + att[5] + "&wy=" + att[6] + "&ww=" + att[7] + "&wh=" + att[8]; - newURL += "&dw=" + (innerWidth-30) + "&dh=" + (innerHeight-30); + newQuery += "&mk=" + att[4] + "&wx=" + att[5] + "&wy=" + att[6] + "&ww=" + att[7] + "&wh=" + att[8]; + newQuery += "&dw=" + (innerWidth-30) + "&dh=" + (innerHeight-30); // debug window - checking the parameters passed to the next image - //alert ("DEBUG MESSAGE (complete URL in loadPicture):\n\n" + newURL); + //alert ("DEBUG MESSAGE (query-string in loadPicture):\n\n" + newQuery); - location.href = newURL; + location.href = location.pathname + "?" + newQuery; }