Move strres.js to xpfe/global/resources/content

This commit is contained in:
tao%netscape.com 1999-08-19 23:02:36 +00:00
parent 68818adc00
commit 8ab85296e3
3 changed files with 0 additions and 157 deletions

View File

@ -31,11 +31,8 @@ EXPORT_RESOURCE = \
$(srcdir)/strres-test.html \
$(srcdir)/strres-test.xul \
$(srcdir)/strres-test.dtd \
$(srcdir)/strres-test.js \
$(NULL)
EXPORT_GLOBAL_RESOURCE = $(srcdir)/strres.js
ifndef NECKO
NETLIB_LIBS = \
-lnetlib \
@ -74,5 +71,4 @@ INCLUDES += -I$(srcdir)/../src
install::
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/res
$(INSTALL) $(EXPORT_GLOBAL_RESOURCE) $(DIST)/bin/chrome/global/content/default

View File

@ -48,7 +48,6 @@ install:: $(PROGRAMS)
$(MAKE_INSTALL) strres-test.xul $(DIST)\bin\res
$(MAKE_INSTALL) strres-test.dtd $(DIST)\bin\res
$(MAKE_INSTALL) strres-test.js $(DIST)\bin\res
$(MAKE_INSTALL) strres.js $(DISTBROWSWER)
clobber::
rm -f $(DIST)\bin\StringBundleTest.exe

View File

@ -1,152 +0,0 @@
var strBundleService = null;
function srGetAppLocale()
{
var localeService = null;
var applicationLocale = null;
localeService = Components.classes["component://netscape/intl/nslocaleservice"].createInstance();
if (!localeService) {
dump("\n--** localeService createInstance 1 failed **--\n");
return null;
}
localeService = localeService.QueryInterface(Components.interfaces.nsILocaleService);
if (!localeService) {
dump("\n--** localeService createInstance 2 failed **--\n");
return null;
}
applicationLocale = localeService.GetApplicationLocale();
if (!applicationLocale) {
dump("\n--** localeService.GetApplicationLocale failed **--\n");
}
return applicationLocale;
}
function srGetStrBundleWithLocale(path, locale)
{
var strBundle = null;
strBundleService =
Components.classes["component://netscape/intl/stringbundle"].createInstance();
if (!strBundleService) {
dump("\n--** strBundleService createInstance 1 failed **--\n");
return null;
}
strBundleService =
strBundleService.QueryInterface(Components.interfaces.nsIStringBundleService);
if (!strBundleService) {
dump("\n--** strBundleService createInstance 2 failed **--\n");
return null;
}
strBundle = strBundleService.CreateBundle(path, locale);
if (!strBundle) {
dump("\n--** strBundle createInstance failed **--\n");
}
return strBundle;
}
function srGetStrBundle(path)
{
var appLocale = srGetAppLocale();
return srGetStrBundleWithLocale(path, appLocale);
}
function localeSwitching(winType, baseDirectory, providerName)
{
dump("\n ** Enter localeSwitching() ** \n");
dump("\n ** winType=" + winType + " ** \n");
dump("\n ** baseDirectory=" + baseDirectory + " ** \n");
dump("\n ** providerName=" + providerName + " ** \n");
//
var rdf;
if(document.rdf) {
rdf = document.rdf;
dump("\n ** rdf = document.rdf ** \n");
}
else if(Components) {
var isupports = Components.classes['component://netscape/rdf/rdf-service'].getService();
rdf = isupports.QueryInterface(Components.interfaces.nsIRDFService);
dump("\n ** rdf = Components... ** \n");
}
else {
dump("can't find nuthin: no document.rdf, no Components. \n");
}
//
var ds = rdf.GetDataSource("rdf:chrome");
// For M4 builds, use this line instead.
// var ds = rdf.GetDataSource("resource:/chrome/registry.rdf");
var srcURL = "chrome://";
srcURL += winType + "/locale/";
dump("\n** srcURL=" + srcURL + " **\n");
var sourceNode = rdf.GetResource(srcURL);
var baseArc = rdf.GetResource("http://chrome.mozilla.org/rdf#base");
var nameArc = rdf.GetResource("http://chrome.mozilla.org/rdf#name");
// Get the old targets
var oldBaseTarget = ds.GetTarget(sourceNode, baseArc, true);
dump("\n** oldBaseTarget=" + oldBaseTarget + "**\n");
var oldNameTarget = ds.GetTarget(sourceNode, nameArc, true);
dump("\n** oldNameTarget=" + oldNameTarget + "**\n");
// Get the new targets
// file:/u/tao/gila/mozilla-org/html/projects/intl/chrome/
// da-DK
var finalBase = baseDirectory;
if (baseDirectory != "") {
finalBase += winType + "/locale/" + providerName + "/";
}
dump("\n** finalBase=" + finalBase + "**\n");
var newBaseTarget = rdf.GetLiteral(finalBase);
var newNameTarget = rdf.GetLiteral(providerName);
// Unassert the old relationships
if (baseDirectory != "") {
ds.Unassert(sourceNode, baseArc, oldBaseTarget);
}
ds.Unassert(sourceNode, nameArc, oldNameTarget);
// Assert the new relationships (note that we want a reassert rather than
// an unassert followed by an assert, once reassert is implemented)
if (baseDirectory != "") {
ds.Assert(sourceNode, baseArc, newBaseTarget, true);
}
ds.Assert(sourceNode, nameArc, newNameTarget, true);
// Flush the modified data source to disk
// (Note: crashes in M4 builds, so don't use Flush() until fix checked in)
// ds.Flush();
// Open up a new window to see your new chrome, since changes aren't yet dynamically
// applied to the current window
// BrowserOpenWindow('chrome://addressbook/content');
dump("\n ** Leave localeSwitching() ** \n");
}
function localeTo(baseDirectory, localeName)
{
dump("\n ** Enter localeTo() ** \n");
localeSwitching("global", baseDirectory, localeName);
localeSwitching("navigator", baseDirectory, localeName);
localeSwitching("sidebar", baseDirectory, localeName);
localeSwitching("messenger", baseDirectory, localeName);
localeSwitching("messengercompose", baseDirectory, localeName);
localeSwitching("editor", baseDirectory, localeName);
localeSwitching("addressbook", baseDirectory, localeName);
localeSwitching("pref", baseDirectory, localeName);
localeSwitching("bookmarks", baseDirectory, localeName);
localeSwitching("history", baseDirectory, localeName);
localeSwitching("related", baseDirectory, localeName);
dump("\n ** Leave localeTo() ** \n");
}