aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2010-11-30 20:42:03 +0000
committerrvelices <rv-github@modusoptimus.com>2010-11-30 20:42:03 +0000
commit208a5acddcfebc131af01855edbf7f6cdc903bf7 (patch)
treed499ce28e88832a3e3f3285463f86427d60c9047
parentbad80308ea2a987f34b44dca1912010f78f3341a (diff)
bug 2043: some Javascript errors in default theme (also makes the rating.js script async)
git-svn-id: http://piwigo.org/svn/trunk@7957 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--themes/default/js/rating.js34
-rw-r--r--themes/default/js/scripts.js101
-rw-r--r--themes/default/template/picture.tpl12
3 files changed, 83 insertions, 64 deletions
diff --git a/themes/default/js/rating.js b/themes/default/js/rating.js
index f0f838c72..668aed930 100644
--- a/themes/default/js/rating.js
+++ b/themes/default/js/rating.js
@@ -2,7 +2,7 @@ var gRatingOptions, gRatingButtons, gUserRating;
function makeNiceRatingForm(options)
{
- gRatingOptions = options || {};
+ gRatingOptions = options;
var form = document.getElementById('rateForm');
if (!form) return; //? template changed
@@ -36,14 +36,11 @@ function makeNiceRatingForm(options)
rateButton.parentNode.removeChild(rateButton.previousSibling);
pwgAddEventListener(rateButton, "click", updateRating);
- pwgAddEventListener(rateButton, "mouseout", resetRatingStarDisplay);
- pwgAddEventListener(rateButton, "mouseover", updateRatingStarDisplayEvt);
+ pwgAddEventListener(rateButton, "mouseout", function() {updateRatingStarDisplay( gUserRating );});
+ pwgAddEventListener(rateButton, "mouseover", function(e) {
+ updateRatingStarDisplay( e.target ? e.target.initialRateValue : e.srcElement.initialRateValue);
+ });
}
- resetRatingStarDisplay();
-}
-
-function resetRatingStarDisplay()
-{
updateRatingStarDisplay( gUserRating );
}
@@ -53,12 +50,6 @@ function updateRatingStarDisplay(userRating)
gRatingButtons[i].className = (userRating!=="" && userRating>=gRatingButtons[i].initialRateValue ) ? "rateButtonStarFull" : "rateButtonStarEmpty";
}
-function updateRatingStarDisplayEvt(e)
-{
- updateRatingStarDisplay(
- e.target ? e.target.initialRateValue : e.srcElement.initialRateValue);
-}
-
function updateRating(e)
{
var rateButton = e.target || e.srcElement;
@@ -89,4 +80,17 @@ function updateRating(e)
}
);
return false;
-} \ No newline at end of file
+}
+
+(function() {
+if (typeof _pwgRatingAutoQueue!="undefined" && _pwgRatingAutoQueue.length)
+{
+ for (var i=0; i<_pwgRatingAutoQueue.length; i++)
+ makeNiceRatingForm(_pwgRatingAutoQueue[i]);
+}
+_pwgRatingAutoQueue = {
+ push: function(opts) {
+ makeNiceRatingForm(opts);
+ }
+}
+})(); \ No newline at end of file
diff --git a/themes/default/js/scripts.js b/themes/default/js/scripts.js
index 0447d4c93..bcc5c1e63 100644
--- a/themes/default/js/scripts.js
+++ b/themes/default/js/scripts.js
@@ -21,12 +21,13 @@ function popuphelp(url)
);
}
-Function.prototype.pwgBind = function() {
- var __method = this, object = arguments[0], args = Array.prototype.slice.call(arguments,1);
- return function() {
- return __method.apply(object, args.concat(arguments) );
- }
+function pwgBind(object, method) {
+ var args = Array.prototype.slice.call(arguments,2);
+ return function() {
+ return method.apply(object, args.concat(Array.prototype.slice.call(arguments,0)) );
+ }
}
+
function PwgWS(urlRoot)
{
this.urlRoot = urlRoot;
@@ -39,106 +40,116 @@ function PwgWS(urlRoot)
};
PwgWS.prototype = {
-
callService : function(method, parameters, options)
{
if (options)
{
- for (var property in options)
- this.options[property] = options[property];
+ for (var prop in options)
+ this.options[prop] = options[prop];
}
- try { this.transport = new XMLHttpRequest();}
+ try { this.xhr = new XMLHttpRequest();}
catch(e) {
- try { this.transport = new ActiveXObject('Msxml2.XMLHTTP'); }
+ try { this.xhr = new ActiveXObject('Msxml2.XMLHTTP'); }
catch(e) {
- try { this.transport = new ActiveXObject('Microsoft.XMLHTTP'); }
+ try { this.xhr = new ActiveXObject('Microsoft.XMLHTTP'); }
catch (e){
- dispatchError(0, "Cannot create request object");
+ this.error(0, "Cannot create request object");
+ return;
}
}
}
- this.transport.onreadystatechange = this.onStateChange.pwgBind(this);
+ this.xhr.onreadystatechange = pwgBind(this, this.onStateChange);
var url = this.urlRoot+"ws.php?format=json";
var body = "method="+method;
if (parameters)
{
- for (var property in parameters)
+ for (var prop in parameters)
{
- if ( typeof parameters[property] == 'object' && parameters[property])
+ if ( typeof parameters[prop] == 'object' && parameters[prop])
{
- for (var i=0; i<parameters[property].length; i++)
- body += "&"+property+"[]="+encodeURIComponent(parameters[property][i]);
+ for (var i=0; i<parameters[prop].length; i++)
+ body += "&"+prop+"[]="+encodeURIComponent(parameters[prop][i]);
}
else
- body += "&"+property+"="+encodeURIComponent(parameters[property]);
+ body += "&"+prop+"="+encodeURIComponent(parameters[prop]);
}
}
if (this.options.method == "POST" )
- {
- this.transport.open(this.options.method, url, this.options.async);
- this.transport.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
- this.transport.send(body);
- }
+ this.xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
else
{
url += "&"+body;
- this.transport.open(this.options.method, url, this.options.async);
- this.transport.send(null);
+ body = null;
+ }
+ this.xhr.open(this.options.method, url, this.options.async);
+ try {
+ this.xhr.send(body);
+ } catch(e) {
+ this.error(0, e.message);
}
},
onStateChange: function() {
- var readyState = this.transport.readyState;
+ var readyState = this.xhr.readyState;
if (readyState==4)
- this.respondToReadyState(readyState);
+ {
+ try {
+ this.respondToReadyState(readyState);
+ } finally {
+ this.cleanup();
+ }
+ }
},
- dispatchError: function( httpCode, text )
+ error: function( httpCode, text )
{
!this.options.onFailure || this.options.onFailure( httpCode, text);
+ this.cleanup();
},
respondToReadyState: function(readyState)
{
- var transport = this.transport;
- if (readyState==4 && transport.status == 200)
+ var xhr = this.xhr;
+ if (readyState==4 && xhr.status == 200)
{
var resp;
try {
- eval('resp = ' + transport.responseText);
+ resp = window.JSON && window.JSON.parse ? window.JSON.parse( xhr.responseText ) : (new Function("return " + xhr.responseText))();
}
catch (e) {
- this.dispatchError( 200, e.message + '\n' + transport.responseText.substr(0,512) );
+ this.error( 200, e.message + '\n' + xhr.responseText.substr(0,512) );
}
if (resp!=null)
{
if (resp.stat==null)
- this.dispatchError( 200, "Invalid response" );
+ this.error( 200, "Invalid response" );
else if (resp.stat=='ok')
- {
- if (this.options.onSuccess) this.options.onSuccess( resp.result );
- }
+ !this.options.onSuccess || this.options.onSuccess( resp.result );
else
- this.dispatchError( 200, resp.err + " " + resp.message);
+ this.error( 200, resp.err + " " + resp.message);
}
}
- if (readyState==4 && transport.status != 200)
- this.dispatchError( transport.status, transport.statusText );
+ if (readyState==4 && xhr.status != 200)
+ this.error( xhr.status, xhr.statusText );
},
+ cleanup: function()
+ {
+ if (this.xhr) this.xhr.onreadystatechange = null;
+ this.xhr = null;
+ this.options.onFailure = this.options.onSuccess = null;
+ },
- transport: null,
- urlRoot: null,
- options: {}
+ xhr: null
}
function pwgAddEventListener(elem, evt, fn)
{
- if (window.attachEvent)
- elem.attachEvent('on'+evt, fn);
- else
+ if (window.addEventListener)
elem.addEventListener(evt, fn, false);
+ else
+ elem.attachEvent('on'+evt, fn);
} \ No newline at end of file
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl
index 6ea497112..00e548609 100644
--- a/themes/default/template/picture.tpl
+++ b/themes/default/template/picture.tpl
@@ -208,11 +208,15 @@ y.callService(
<input type="submit" name="rate" value="{$mark}" class="rateButton" title="{$mark}">
{/if}
{/foreach}
- <script type="text/javascript" src="{$ROOT_URL}themes/default/js/rating.js"></script>
<script type="text/javascript">
- makeNiceRatingForm( {ldelim}rootUrl: '{$ROOT_URL|@escape:"javascript"}', image_id: {$current.id},
- updateRateText: "{'Update your rating'|@translate|@escape:'javascript'}", updateRateElement: document.getElementById("updateRate"),
- ratingSummaryText: "{'%.2f (rated %d times)'|@translate|@escape:'javascript'}", ratingSummaryElement: document.getElementById("ratingSummary") {rdelim} );
+ var _pwgRatingAutoQueue = _pwgRatingAutoQueue || [];
+ _pwgRatingAutoQueue.push( {ldelim}rootUrl: '{$ROOT_URL|@escape:"javascript"}', image_id: {$current.id},
+ updateRateText: "{'Update your rating'|@translate|@escape:'javascript'}", updateRateElement: document.getElementById("updateRate"),
+ ratingSummaryText: "{'%.2f (rated %d times)'|@translate|@escape:'javascript'}", ratingSummaryElement: document.getElementById("ratingSummary") {rdelim} );
+ (function () {ldelim}
+ var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '{$ROOT_URL}themes/default/js/rating.js';
+ var s0 = document.getElementsByTagName('script')[0]; s0.parentNode.insertBefore(s, s0);
+ })();
</script>
</div>
</form>