Benutzer:J*/Javascript-Spielwüste.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
J* (Diskussion | Beiträge) |
J* (Diskussion | Beiträge) |
||
Zeile 4: | Zeile 4: | ||
addOnloadHook( function () { | addOnloadHook( function () { | ||
− | h = document.getElementById('ca-history') | + | h = document.getElementById('ca-history'); |
− | rate = document.createElement('li') | + | rate = document.createElement('li'); |
− | ratelink = document.createElement('a') | + | ratelink = document.createElement('a'); |
− | ratelink.appendChild(document.createTextNode('Bewerten')) | + | ratelink.appendChild(document.createTextNode('Bewerten')); |
− | rate.appendChild(ratelink) | + | rate.appendChild(ratelink); |
− | rate.onclick = openratewindow | + | rate.onclick = openratewindow; |
− | rate.className = "pseudolink" | + | rate.className = "pseudolink"; |
h.parentNode.insertBefore(rate,h) | h.parentNode.insertBefore(rate,h) | ||
Zeile 17: | Zeile 17: | ||
x = new Ajax.Request( "http://kamelopedia.mormo.org/index.php", | x = new Ajax.Request( "http://kamelopedia.mormo.org/index.php", | ||
{ | { | ||
− | parameters: "title=Kamel:J*/Rate2&action=raw" | + | parameters: "title=Kamel:J*/Rate2&action=raw", |
onSuccess: function (trans) { createratewindow(trans); } | onSuccess: function (trans) { createratewindow(trans); } | ||
} | } | ||
Zeile 36: | Zeile 36: | ||
x.id = "kp_rating"; | x.id = "kp_rating"; | ||
x.display = "none"; | x.display = "none"; | ||
− | document.getElementById("content").appendChild(x) | + | document.getElementById("content").appendChild(x); |
x = new Ajax.Request( "http://kamelopedia.mormo.org/api.php", { | x = new Ajax.Request( "http://kamelopedia.mormo.org/api.php", { |
Version vom 4. März 2010, 22:27 Uhr
addJS("MediaWiki:Prototype.js")
var edittoken;
addOnloadHook( function () {
h = document.getElementById('ca-history');
rate = document.createElement('li');
ratelink = document.createElement('a');
ratelink.appendChild(document.createTextNode('Bewerten'));
rate.appendChild(ratelink);
rate.onclick = openratewindow;
rate.className = "pseudolink";
h.parentNode.insertBefore(rate,h)
x = new Ajax.Request( "http://kamelopedia.mormo.org/index.php",
{
parameters: "title=Kamel:J*/Rate2&action=raw",
onSuccess: function (trans) { createratewindow(trans); }
}
);
});
function createratewindow (ret)
{
x = document.createElement("div");
x.style.position = "fixed";
x.style.left = "200px";
x.style.top = "100px";
x.style.width = "300px";
x.innerHTML = ret.responseText.replace("{@{page}@}",wgPageName);
x.style.backgroundColor = "white";
x.style.border = "2px blue solid";
x.id = "kp_rating";
x.display = "none";
document.getElementById("content").appendChild(x);
x = new Ajax.Request( "http://kamelopedia.mormo.org/api.php", {
method: "get",
parameters: "action=query&prop=info&intoken=edit&titles=Hauptseite&format=json",
onSuccess: function (trans) { x = trans.responseJSON.query.pages[7].edittoken; $("ed_token").value = x;}
}
function openratewindow ()
{
}