mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
change version in install.rdf to 1.5.0.* - bug in splitting lines couldn't handles = sign - new message for cert page
This commit is contained in:
parent
fb27621347
commit
aef01712c9
@ -1115,13 +1115,15 @@ function CCKReadConfigFile(srcdir)
|
||||
do {
|
||||
var more = lis.readLine(line);
|
||||
var str = line.value;
|
||||
var linearray = str.split("=");
|
||||
if (linearray[0].length) {
|
||||
document.getElementById(linearray[0]).value = linearray[1];
|
||||
if (linearray[0] == "ProxyType") {
|
||||
var equals = str.indexOf('=');
|
||||
if (equals != -1) {
|
||||
firstpart = str.substring(0,equals);
|
||||
secondpart = str.substring(equals+1);
|
||||
document.getElementById(firstpart).value = secondpart;
|
||||
if (firstpart == "ProxyType") {
|
||||
DoEnabling();
|
||||
}
|
||||
if (linearray[0] == "shareAllProxies") {
|
||||
if (firstpart == "shareAllProxies") {
|
||||
toggleProxySettings();
|
||||
}
|
||||
}
|
||||
|
@ -601,7 +601,11 @@
|
||||
<groupbox>
|
||||
<caption label="Certificates"/>
|
||||
<description>
|
||||
You may select up to five certificates to be preinstalled.
|
||||
You may select up to five certificates to be preinstalled.<html:br/><html:br/>
|
||||
<html:b>IMPORTANT: If you add certificates to Firefox, you CANNOT
|
||||
ship a browser outside of your company or institution and call it Firefox.
|
||||
This feature is intended primarily for corporate and institutional users
|
||||
that will be deploying Firefox inside their organization.</html:b>
|
||||
</description>
|
||||
<hbox>
|
||||
<textbox readonly="true" id="CertPath1" flex="1"/>
|
||||
|
@ -16,7 +16,7 @@ xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
||||
<Description>
|
||||
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
|
||||
<em:minVersion>1.0+</em:minVersion>
|
||||
<em:maxVersion>1.5</em:maxVersion>
|
||||
<em:maxVersion>1.5.0.*</em:maxVersion>
|
||||
</Description>
|
||||
</em:targetApplication>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user