PK
h8 chrome/PK
h8dPh h chrome/controledescripts.jarPK
[8 content/PK
SO80O;d
d
content/classes.jsfunction Arvore (itens) {
this.itens = itens;
}
function Politica (nome, sites, permissoes) {
this.nome = nome;
this.sites = sites ? sites : null;
this.permissoes = permissoes ? permissoes : new Array();
}
Arvore.prototype = {
QueryInterface: function (aIID) {
if (aIID.equals(Components.interfaces.nsITreeView) ||
aIID.equals(Components.interfaces.nsISupports))
return this;
throw Components.results.NS_NOINTERFACE;
},
getCellText: function (linha, coluna) {
var texto = null;
if (coluna.id == "avancado-propriedade")
texto = this.itens[linha].propriedade;
else
switch (this.itens[linha].status) {
case "noAccess": texto = CdS.stringset.getString("controledescripts.block");break;
case "allAccess": texto = CdS.stringset.getString("controledescripts.allow");break;
case "sameOrigin": texto = CdS.stringset.getString("controledescripts.sameOrigin");break;
}
return texto;
},
get rowCount() {return this.itens.length;},
cycleHeader: function(coluna) {},
getCellProperties: function(linha, coluna, props) {},
getColumnProperties: function(colid, coluna, props) {},
getImageSrc: function(linha, coluna) {return null;},
getLevel: function(linha) {return 0;},
getRowProperties: function(linha, props) {},
isContainer: function(linha) {return false;},
isSeparator: function(linha) {return false;},
isSorted: function() {return false;},
setTree: function(treebox) {this.treebox = treebox;}
}
Politica.prototype = {
adicionarPermissao: function (permissao) {
if (permissao) {
var posicao = this.buscarPermissao(permissao.propriedade);
if (posicao >= 0)
this.editarPermissao(posicao, permissao);
else {
this.permissoes.push(permissao);
this.ordenarPermissoes();
}
return true;
}
return false;
},
buscarPermissao: function (propriedade) {
for (i in this.permissoes)
if (this.permissoes[i].propriedade == propriedade)
return parseInt(i);
return -1;
},
editarPermissao: function (indice, permissao) {
if (permissao && indice >= 0 && indice <= this.permissoes.length) {
this.permissoes[indice] = permissao;
this.ordenarPermissoes();
return true;
}
return false;
},
ordenarPermissoes: function () {
var ordenador = function (a, b) {
if (a.propriedade > b.propriedade)
return 1;
else if (a.propriedade < b.propriedade)
return -1;
else
return 0;
}
this.permissoes.sort(ordenador);
},
removerPermissao: function (indice) {
this.permissoes.splice(indice, 1);
return true;
},
renomear: function (nomeNovo) {
if (nomeNovo) {
this.nome = nomeNovo;
return true;
}
return false;
}
}
PK
*8_Y content/contents.rdf
chrome://controledescripts/content/overlay/sm-navigator.xul
chrome://controledescripts/content/overlay/sm-scripts.xul
chrome://controledescripts/content/overlay/geral.xul
PK
[8 content/dialogs/PK
,7\N N content/dialogs/evento.xul
%controledescriptsDTD;
]>
PK
C8- - content/dialogs/permissao.jsvar controledescripts = {
iniciar: function () {
this.iniciarItens();
this.edicao = window.arguments[0].edicao;
this.nomePol = window.arguments[0].nomePol;
if (this.edicao) {
document.title = this.stringset.getString("controledescripts.editPermission");
this.propriedade.value = this.edicao.propriedade;
switch (this.edicao.status) {
case "sameOrigin": this.status.selectedIndex = 2; break;
case "allAccess": this.status.selectedIndex = 1; break;
default: this.status.selectedIndex = 0;
}
this.verificarAcesso(true);
}
else
document.title = this.stringset.getString("controledescripts.addPermission");
},
iniciarItens: function () {
this.acesso = document.getElementById("permissao-acesso");
this.propriedade = document.getElementById("permissao-propriedade");
this.status = document.getElementById("permissao-status");
this.stringset = document.getElementById("permissao-strings");
},
salvar: function () {
if (this.propriedade.value) {
if (this.edicao)
opener.CdS.editarPermissao(this.nomePol, {propriedade: this.propriedade.value, status: this.status.value});
else
opener.CdS.adicionarPermissao(this.nomePol, {propriedade: this.propriedade.value, status: this.status.value});
return true;
}
else {
alert(this.stringset.getString("controledescripts.emptyProperty"));
this.propriedade.focus();
return false;
}
},
selecionarAcesso: function () {
var novo = this.acesso.value;
var anterior = this.verificarAcesso(false);
if (novo != anterior)
switch (anterior) {
case ".get":
this.propriedade.value = this.propriedade.value.replace(/\.get$/, "");
this.propriedade.value += novo;
break;
case ".set":
this.propriedade.value = this.propriedade.value.replace(/\.set$/, "");
this.propriedade.value += novo;
break;
default:
this.propriedade.value += novo;
}
},
verificarAcesso: function (alterar) {
var sufixo = this.propriedade.value.substring(this.propriedade.value.length - 4, this.propriedade.value.length);
if (alterar)
switch (sufixo) {
case ".get": this.acesso.selectedIndex = 1; break;
case ".set": this.acesso.selectedIndex = 2; break;
default: this.acesso.selectedIndex = 0;
}
if (sufixo == ".get" || sufixo == ".set")
return sufixo;
return "";
}
}
PK
uu7Y7"( ( content/dialogs/permissao.xul
%controledescriptsDTD;
]>
PK
v7Ρx[ [ content/dialogs/politica.jsvar controledescripts = {
iniciar: function () {
this.iniciarItens();
this.renomear = window.arguments[0].renomear;
this.lista = window.arguments[0].lista;
this.nomeValido = true;
if (this.renomear) {
document.title = this.stringset.getString("controledescripts.renamePolicy");
this.rotulo.appendChild(document.createTextNode(this.stringset.getString("controledescripts.renameLabel")));
this.nome.value = decodeURIComponent(this.renomear);
}
else {
document.title = this.stringset.getString("controledescripts.newPolicy");
this.rotulo.appendChild(document.createTextNode(this.stringset.getString("controledescripts.newLabel")));
}
sizeToContent();
},
iniciarItens: function () {
this.alerta = document.getElementById("politica-alerta");
this.nome = document.getElementById("politica-nome");
this.rotulo = document.getElementById("politica-rotulo");
this.stringset = document.getElementById("politica-strings");
},
salvar: function () {
var nomeAlterado = this.renomear != encodeURIComponent(this.nome.value);
var nomeExiste = CdSUtil.obterPosicaoPol(encodeURIComponent(this.nome.value), this.lista) >= 0;
var valido = this.nome.value && this.nomeValido &&
this.nome.value.toLowerCase() != "default" &&
(!nomeExiste || !nomeAlterado);
if (valido) {
if (this.renomear) {
if (nomeAlterado)
opener.CdS.renomearPolitica(encodeURIComponent(this.nome.value));
}
else
opener.CdS.criarPolitica(encodeURIComponent(this.nome.value));
}
else if (!this.nome.value)
alert(this.stringset.getString("controledescripts.emptyName"));
else if (!this.nomeValido)
alert(this.stringset.getString("controledescripts.invalidName"));
else if (nomeExiste)
alert(this.stringset.getString("controledescripts.nameOnList"));
else
alert(this.stringset.getString("controledescripts.defaultName"));
this.nome.focus();
return valido;
},
verificarValidade: function () {
this.nomeValido =
this.alerta.hidden =
this.nome.value?/^[a-zA-Z]/.test(this.nome.value) && !/\.+/.test(this.nome.value):true;
sizeToContent();
}
}
PK
x}73ወ content/dialogs/politica.xul
%controledescriptsDTD;
]>
PK
}688 content/dialogs/sites.jsvar controledescripts = {
iniciar: function () {
this.iniciarItens();
this.nomeP = window.arguments[0].nomePol;
this.siteP = window.arguments[0].siteP;
this.sites = new Array();
if (window.arguments[0].sites)
this.sites = window.arguments[0].sites.split(" ");
document.title = this.stringset.getFormattedString("controledescripts.sitesTitle", [decodeURIComponent(this.nomeP)]);
if (this.siteP)
this.endereco.value = this.siteP;
this.carregarSites();
this.atualizarBotoes();
this.endereco.focus();
},
adicionarSite: function (protPadrao) {
var url = this.endereco.value.replace(/^\s+|\s+$/g,"");
if (!protPadrao)
protPadrao = "http://";
if (!/^\w+:$/.test(url)) {
if (/^\w+:\/+$/.test(url))
url = url.replace(/\/+/, "");
else {
if (!/^\w+:/.test(url))
url = protPadrao+url;
try {
var sES = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.interfaces.nsIIOService);
var uri = sES.newURI(url, null, null);
switch (uri.userPass || uri.scheme) {
case "file": url = "file:"; break;
default: url = uri.prePath;
}
}
catch (erro) {
var mensagem = null, titulo = null;
var sPrompt = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);
if (CdSUtil.fx()) {
var stringset = document.getElementById("sites-strings-fx");
mensagem = stringset.getString("invalidURI");
titulo = stringset.getString("invalidURITitle");
}
else if (CdSUtil.sm()) {
var stringset = document.getElementById("sites-strings-sm");
mensagem = stringset.getFormattedString("alertInvalid", [url]);
titulo = stringset.getString("alertInvalidTitle");
}
sPrompt.alert(window, titulo, mensagem);
this.endereco.focus();
return;
}
}
}
if (url && CdSUtil.obterPosicao(url, this.sites) < 0) {
this.sites.push(url);
this.sites = this.sites.sort();
this.carregarSites();
}
this.endereco.value = "";
this.atualizarBotoes();
this.endereco.focus();
},
atualizarBotoes: function () {
if (this.endereco.value)
this.botaoAdicionar.disabled = false;
else
this.botaoAdicionar.disabled = true;
if (this.lista.selectedItem)
this.botaoExcluir.disabled = false;
else
this.botaoExcluir.disabled = true;
this.botaoExcluirtd.disabled = CdSUtil.listaEstaVazia(this.sites);
},
carregarSites: function () {
for (var i = this.lista.childNodes.length; i > 2; i--)
this.lista.removeChild(this.lista.lastChild);
for (i in this.sites)
this.lista.appendItem(this.sites[i]);
this.atualizarBotoes();
},
detectarTeclado: function (evento) {
if (evento.target.id == "sites-endereco" && (evento.keyCode == 13 || evento.keyCode == 10))
this.adicionarSite();
else if (evento.target.id == "sites-lista" && evento.keyCode == 46)
this.excluirSite();
},
excluirSite: function () {
if (this.lista.selectedItem) {
this.sites.splice(this.lista.selectedIndex, 1);
this.carregarSites();
}
},
excluirTd: function () {
this.sites = new Array();
this.carregarSites();
},
iniciarItens: function () {
this.endereco = document.getElementById("sites-endereco");
this.lista = document.getElementById("sites-lista");
this.botaoAdicionar = document.getElementById("sites-adicionar");
this.botaoExcluir = document.getElementById("sites-excluir");
this.botaoExcluirtd = document.getElementById("sites-excluirtd");
this.stringset = document.getElementById("sites-strings");
},
salvar: function () {
if (this.siteP) {
try {
opener.CdSEditarSites(this.nomeP, true, this.sites.join(" "));
return true;
}
catch (erro) {
dump("** CdS error: couldn't find opener window script\n\n");
}
return false;
}
else {
try {
opener.CdS.editarSites(this.nomeP, true, this.sites.join(" "));
return true;
}
catch (erro) {
dump("** CdS error: couldn't find opener window script\n\n");
}
return false;
}
}
}
PK
s7n' ' content/dialogs/sites.xul
%controledescriptsDTD;
]>
&sites.descricao;
PK
[8 content/icons/PK
66 content/icons/icone_16.pngPNG
IHDR a gAMA 7 tEXtSoftware Adobe ImageReadyqe<