Landing jar packaging from jar_restructuring_branch. r=hyatt,dprice,sfraser,dveditz,vishy,sgehani

This commit is contained in:
warren%netscape.com 2000-09-20 19:35:24 +00:00
Родитель 11fbc65df2
Коммит 181bb2dcb2
253 изменённых файлов: 3539 добавлений и 6577 удалений

Просмотреть файл

@ -36,7 +36,7 @@ $DEBUG = 0;
$CARBON = 0; # turn on to build with TARGET_CARBON
$PROFILE = 0;
$GC_LEAK_DETECTOR = 0; # turn on to use GC leak detection
$INCLUDE_CLASSIC_SKIN = 1;
$INCLUDE_CLASSIC_SKIN = 1;
$pull{all} = 0;
$pull{moz} = 0;
@ -60,12 +60,11 @@ $build{nglayout} = 0;
$build{editor} = 0;
$build{viewer} = 0;
$build{xpapp} = 0;
$build{extensions} = 0;
$build{extensions} = 1;
$build{plugins} = 0;
$build{mailnews} = 0;
$build{apprunner} = 0;
$build{resources} = 0;
$build{jars} = 0;
$build{resources} = 1;
$build{xptlink} = 0;
@ -76,8 +75,9 @@ $options{mng} = 1;
$options{ldap} = 0;
$options{xmlextras} = 0;
$options{jar_manifests} = 0; # use jar.mn files for resources, not MANIFESTs
$options{jars} = 0; # build jar files
$options{jar_manifests} = 1; # use jar.mn files for resources, not MANIFESTs
$options{jars} = 1; # build jar files
$options{chrome_files} = 0; # install files in chrome as well as making jar files.
# Don't change these (where should they go?)
$optiondefines{mathml}{MOZ_MATHML} = 1;
@ -182,7 +182,11 @@ ConfigureBuildSystem();
Checkout();
SetBuildNumber();
my(@gen_files) = (
":mozilla:xpfe:appshell:public:nsBuildID.h",
":mozilla:xpfe:browser:resources:locale:en-US:navigator.dtd"
);
SetBuildNumber(":mozilla:config:build_number", ":mozilla:config:aboutime.pl", \@gen_files);
chdir($MOZ_SRC);
BuildDist();

Просмотреть файл

@ -29,42 +29,6 @@ use NGLayoutBuildList;
use Cwd;
use Moz;
#-----------------------------------------------
# configuration variables that globally affect what is built
#-----------------------------------------------
$BUILD_ROOT = ":";
# $BUILD_ROOT = ":", the default, with $build{all}
# builds the whole tree. Leaving $BUILD_ROOT undefined
# will also have this effect.
#
# $BUILD_ROOT = ":mozilla:mailnews:" with $build{all}
# will "make everything in the mailnews directory".
#
# This is equivalent to the unix commands:
# cd mozilla/mailnews
# gmake
# or the windows commands:
# cd mozilla\mailnews
# nmake -f makefile.win
#
# In conjunction with build{all}, this will carry out
# all build phases (export, build, install...), but only
# using files inside $BUILD_ROOT. Replace $build{all}
# with specific component flags to build stuff from
# those components that happens to live inside
# $BUILD_ROOT.
#
# ":", and ":mozilla:" both have the same effect, because
# this works by checking that path strings begin with
# $BUILD_ROOT.
#
# $BUILD_ROOT affects only the build phase, not the pull
# phase. There is still no scriptable way to update-and-build
# a specific directory. In particular, $pull{all} will
# still pull the whole tree, irrespective of the
# setting of $BUILD_ROOT. To update and build a particular
# directory, use MacCVS Pro to update the directory,
# then turn off all $pull variables, and set $BUILD_ROOT.
$DEBUG = 1;
$CARBON = 0; # Turn on to build with TARGET_CARBON
$PROFILE = 0;
@ -93,7 +57,7 @@ $build{nglayout} = 0;
$build{editor} = 0;
$build{viewer} = 0;
$build{xpapp} = 0;
$build{extensions} = 0;
$build{extensions} = 1;
$build{plugins} = 0;
$build{mailnews} = 0;
$build{apprunner} = 0;
@ -108,8 +72,10 @@ $options{mng} = 1;
$options{ldap} = 0;
$options{xmlextras} = 0;
$options{jar_manifests} = 0; # use jar.mn files for resources, not MANIFESTs
$options{jars} = 0; # build jar files
$options{jar_manifests} = 1; # use jar.mn files for resources, not MANIFESTs
$options{jars} = 1; # build jar files
$options{chrome_files} = 0; # install files in chrome as well as making jar files.
# Don't change these (where should they go?)
$optiondefines{mathml}{MOZ_MATHML} = 1;

Просмотреть файл

@ -37,7 +37,7 @@ use Mac::Processes;
use File::Copy;
@ISA = qw(Exporter);
@EXPORT = qw(BuildProject BuildProjectClean OpenErrorLog MakeAlias StopForErrors DontStopForErrors InstallFromManifest InstallResources SetBuildNumber SetAgentString SetTimeBomb Delay ActivateApplication);
@EXPORT = qw(BuildProject BuildProjectClean GetFileModDate OpenErrorLog MakeAlias StopForErrors DontStopForErrors InstallFromManifest InstallResources SetBuildNumber SetAgentString SetTimeBomb Delay ActivateApplication);
@EXPORT_OK = qw(CloseErrorLog UseCodeWarriorLib QUIET);
use Cwd;
@ -92,12 +92,6 @@ sub activate_CodeWarrior()
#END_OF_APPLESCRIPT
}
BEGIN
{
# UseCodeWarriorLib(":CodeWarriorLib");
# activate_CodeWarrior();
CodeWarriorLib::activate();
}
$logging = 0;
$recent_errors_file = "";
@ -416,25 +410,28 @@ sub InstallResources($;$;$)
}
sub SetBuildNumber
{
sub SetBuildNumber($$$)
{
my($build_num_file, $build_gen_script, $files_to_touch) = @_;
open (OUTPUT, ">$build_num_file") || die "could not open buildnumber";
open (OUTPUT, ">:mozilla:config:build_number") || die "could not open buildnumber";
open (BDATE, "perl :mozilla:config:bdate.pl|");
open (BDATE, "perl :mozilla:config:bdate.pl|");
while (<BDATE>) {
print OUTPUT $_;
}
while (<BDATE>) {
print OUTPUT $_;
}
close (BDATE);
close (OUTPUT);
close (BDATE);
close (OUTPUT);
system ("perl :mozilla:config:aboutime.pl :mozilla:xpfe:appshell:public:nsBuildID.h :mozilla:config:build_number");
system ("perl :mozilla:config:aboutime.pl :mozilla:xpfe:browser:resources:locale:en-US:navigator.dtd :mozilla:config:build_number");
}
my($file);
foreach $file (@$files_to_touch)
{
print "Writing build number to $file\n";
system ("perl $build_gen_script $file $build_num_file");
}
}
sub SetAgentString
{
@ -493,6 +490,15 @@ sub Delay($)
}
sub GetFileModDate($)
{
my($filePath)=@_;
my($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks) = stat($filePath);
return $mtime;
}
sub ActivateApplication($)
{
my ($appSignature) = @_;

Просмотреть файл

@ -98,6 +98,51 @@ sub CreateJarFileFromDirectory($$$)
MacPerl::SetFileInfo("ZIP ", "ZIP ", $jarpath);
}
#-------------------------------------------------------------------------------
# printZipContents
#
#-------------------------------------------------------------------------------
sub printZipContents($)
{
my($zip) = @_;
my(@members) = $zip->memberNames();
print "Zip contains:\n";
my($member);
foreach $member (@members)
{
print " $member\n";
}
}
#-------------------------------------------------------------------------------
# safeSaveJarFile
#
# Archive::Zip has a problem where you cannot save a zip file on top of
# an existing zip file that it has open, because it holds references
# into that zip. So we have to save to a temp file, then do a swap.
#
# Note that the zip will become invalid after this operation.
# If you want to do further operations on it, you'll have to reread it.
#-------------------------------------------------------------------------------
sub safeSaveJarFile($$)
{
my($zip, $full_dest_path) = @_;
my($temp_file_name) = $full_dest_path."_temp";
($zip->writeToFileNamed($temp_file_name) == Archive::Zip::AZ_OK) || die "Error writing jar to temp file $temp_file_name\n";
unlink $full_dest_path;
(rename $temp_file_name, $full_dest_path) || die "Failed to rename $temp_file_name\n";
MacPerl::SetFileInfo("ZIP ", "ZIP ", $full_dest_path);
}
#-------------------------------------------------------------------------------
# addToJarFile
@ -114,9 +159,9 @@ sub CreateJarFileFromDirectory($$$)
#
#-------------------------------------------------------------------------------
sub addToJarFile($$$$$$)
sub addToJarFile($$$$$$$)
{
my($jar_id, $jar_man_dir, $file_src, $jar_path, $file_jar_path, $jars) = @_;
my($jar_id, $jar_man_dir, $file_src, $jar_path, $file_jar_path, $override, $jars) = @_;
# print "addToJarFile with:\n $jar_man_dir\n $file_src\n $jar_path\n $file_jar_path\n";
@ -147,7 +192,6 @@ sub addToJarFile($$$$$$)
unless ($zip) { die "Can't find Zip entry for $jar_id\n"; }
# print "Adding $file_src to jar file $jar_path at $file_jar_path\n";
my($member) = Archive::Zip::Member->newFromFile($src);
unless ($member) { die "Failed to create zip file member $src\n"; }
@ -155,14 +199,52 @@ sub addToJarFile($$$$$$)
my($compress) = 1;
if ($compress) {
$member->desiredCompressionMethod(Archive::Zip::COMPRESSION_DEFLATED);
$member->desiredCompressionMethod(Archive::Zip::COMPRESSION_DEFLATED);
$member->desiredCompressionLevel(Archive::Zip::COMPRESSION_LEVEL_DEFAULT); # defaults to 6
} else {
$member->desiredCompressionMethod(Archive::Zip::COMPRESSION_STORED);
}
$zip->addMember($member);
my($old_member) = $zip->memberNamed($file_jar_path);
if ($override)
{
if ($old_member)
{
# print "Overriding $file_jar_path in jar file $jar_id\n";
# need to compare mod dates or use the + here
$zip->removeMember($old_member);
}
$zip->addMember($member);
}
else
{
if ($old_member)
{
#compare dates here
my($member_moddate) = $old_member->lastModTime();
my($file_moddate) = GetFileModDate($src);
if ($file_moddate > $member_moddate)
{
print "Updating older file $file_jar_path in $jar_id\n";
$zip->removeMember($old_member);
$zip->addMember($member);
}
else
{
print "File $file_jar_path in $jar_id is more recent. Not updating.\n";
}
}
else
{
$zip->addMember($member);
}
}
}
else # copy file
if ($main::options{chrome_files}) # we install raw files too
{
my($rel_path) = $file_jar_path;
$rel_path =~ s|/|:|g; # slash to colons
@ -186,17 +268,31 @@ sub addToJarFile($$$$$$)
sub setupJarFile($$$)
{
my($jar_id, $jar_path, $jar_hash) = @_;
my($jar_id, $dest_path, $jar_hash) = @_;
# print "Creating jar file $jar_id at $jar_path\n";
my($jar_file) = $jar_id;
$jar_file =~ s|/|:|g; # slash to colons
my($full_jar_path) = Moz::full_path_to($dest_path.":".$jar_file);
if ($main::options{jars})
{
my($zip) = $jar_hash->{$jar_id};
if (!$zip) # if we haven't made it already, do so
{
my($zip) = Archive::Zip->new();
$jar_hash->{$jar_id} = $zip;
my($zip) = Archive::Zip->new();
$jar_hash->{$jar_id} = $zip;
# does the jar file exist already? If so, read it in
if (-e $full_jar_path)
{
print "Reading in jar file $jar_id\n";
if ($zip->read($full_jar_path) != Archive::Zip::AZ_OK) { die "Failed to re-read $full_jar_path\n"; }
# printZipContents($zip);
}
}
}
else
@ -204,8 +300,8 @@ sub setupJarFile($$$)
# installing files.
# nothing to do. MakeAlias creates dirs as needed.
# add this jar to the list
$jar_hash->{$jar_id} = 1;
# add this jar to the list
$jar_hash->{$jar_id} = 1;
}
}
@ -261,12 +357,13 @@ sub WriteOutJarFiles($$)
# ensure the target dirs exist
my($path) = $output_path;
$path =~ s/\.jar$//;
$path =~ s/[^:]+$//;
mkpath($path);
($zip->writeToFileNamed($output_path) == Archive::Zip::AZ_OK) || die "Error writing jar $rel_path\n";
MacPerl::SetFileInfo("ZIP ", "ZIP ", $output_path);
# unlink $output_path; # remove any existing jar
safeSaveJarFile($zip, $output_path);
# $zip is invalid after this operation, so nuke it here
$jars->{$key} = 0;
}
}
@ -276,9 +373,9 @@ sub WriteOutJarFiles($$)
#
# Enter a chrome package into the installed-chrome.txt file
#-------------------------------------------------------------------------------
sub registerChromePackage($$$$)
sub registerChromePackage($$$$$$)
{
my($jar_file, $file_path, $chrome_dir, $jar_hash) = @_;
my($jar_file, $file_path, $chrome_dir, $jar_hash, $chrome_type, $pkg_name) = @_;
my($manifest_subdir) = $jar_file;
$manifest_subdir =~ s/:/\//g;
@ -286,33 +383,38 @@ sub registerChromePackage($$$$)
my($chrome_entry);
if ($main::options{jars}) {
$chrome_entry = ",install,url,jar:resource:/Chrome/";
$manifest_subdir.= "!/";
$chrome_entry = "$chrome_type,install,url,jar:resource:/chrome/$manifest_subdir!/$chrome_type/$pkg_name";
} else {
$chrome_entry = ",install,url,resource:/Chrome/";
$manifest_subdir =~ s/\.jar$/\//;
$chrome_entry = "$chrome_type,install,url,resource:/chrome/$manifest_subdir/$chrome_type/$pkg_name";
}
# print "Entering $chrome_entry$manifest_subdir in installed-chrome.txt\n";
# print "Entering $chrome_entry in installed-chrome.txt\n";
# for now, regiser for content, locale and skin
# we'll get the type from the path soon
my($type) = "content";
# ensure chrome_dir exists
mkpath($chrome_dir);
my($inst_chrome) = ${chrome_dir}.":installed-chrome.txt";
if (open(CHROMEFILE, "<$inst_chrome")) {
while (<CHROMEFILE>) {
chomp;
if ($_ eq $chrome_entry) {
# $chrome_entry already appears in installed-chrome.txt file
# just update the mod date
my $now = time;
utime($now, $now, $inst_chrome) || die "couldn't touch $inst_chrome";
print "+++ updating chrome $inst_chrome\n+++\t\t$chrome_entry\n";
close(CHROMEFILE) || die "error: can't close $inst_chrome: $!";
return 0;
}
}
close(CHROMEFILE) || die "error: can't close $inst_chrome: $!";
}
open(CHROMEFILE, ">>${inst_chrome}") || die "Failed to open $inst_chrome\n";
print(CHROMEFILE "${type}${chrome_entry}${manifest_subdir}\n");
$type = "locale";
print(CHROMEFILE "${type}${chrome_entry}${manifest_subdir}\n");
$type = "skin";
print(CHROMEFILE "${type}${chrome_entry}${manifest_subdir}\n");
close(CHROMEFILE);
print(CHROMEFILE "${chrome_entry}\n");
close(CHROMEFILE) || die "Failed to close $inst_chrome\n";
print "+++ adding chrome $inst_chrome\n+++\t\t$chrome_entry\n";
}
#-------------------------------------------------------------------------------
@ -337,9 +439,9 @@ sub CreateJarFromManifest($$$)
# if the jars hash is empty, nuke installed-chrome.txt
if (! scalar(%$jars))
{
print "Nuking chrome\n";
my($installed_chrome) = $dest_path.":installed-chrome.txt";
# unlink $installed_chrome;
print "Nuking installed-chrome.txt\n";
my($installed_chrome) = $dest_path.":installed-chrome.txt";
# unlink $installed_chrome;
}
my $jar_man_dir = "";
@ -370,21 +472,22 @@ sub CreateJarFromManifest($$$)
next;
}
if ($line =~/^([\w\d.\-\\\/]+)\:\s*$/) # line start jar file entries
if ($line =~/^([\w\d.\-\_\\\/]+)\:\s*$/) # line start jar file entries
{
$jar_id = $1;
$jar_file = $jar_id;
$jar_file =~ s|/|:|g; # slash to colons
$full_jar_path = $dest_path.":".$jar_file;
setupJarFile($jar_id, $full_jar_path, $jars);
setupJarFile($jar_id, $dest_path, $jars);
}
elsif ($line =~ /^\s+([\w\d.\-\\\/]+)\s*(\([\w\d.\-\\\/]+\))?$\s*/) # jar file entry
elsif ($line =~ /^(\+?)\s+([\w\d.\-\_\\\/]+)\s*(\([\w\d.\-\_\\\/]+\))?$\s*/) # jar file entry
{
my($file_dest) = $1;
my($file_src) = $2;
my($override) = ($1 eq "+");
my($file_dest) = $2;
my($file_src) = $3;
if ($file_src) {
$file_src = substr($file_src, 1, -1); #strip the ()
} else {
@ -395,12 +498,14 @@ sub CreateJarFromManifest($$$)
if ($jar_file ne "") # if jar is open, add to jar
{
if ($file_dest eq "manifest.rdf") # will change to contents.rdf
if ($file_dest =~ /([\w\d.\-\_]+)\/([\w\d.\-\_\\\/]+)contents.rdf/)
{
registerChromePackage($jar_file, $file_dest, $dest_path, $jars);
my $chrome_type = $1;
my $pkg_name = $2;
registerChromePackage($jar_file, $file_dest, $dest_path, $jars, $chrome_type, $pkg_name);
}
addToJarFile($jar_id, $jar_man_dir, $file_src, $full_jar_path, $file_dest, $jars);
addToJarFile($jar_id, $jar_man_dir, $file_src, $full_jar_path, $file_dest, $override, $jars);
}
else
{
@ -409,7 +514,7 @@ sub CreateJarFromManifest($$$)
}
elsif ($line =~ /^\s*$/ ) # blank line
{
if ($jar_file ne "") #if a jar file is open, close it
if ($jar_file ne "") #if a jar file is open, close it
{
closeJarFile($full_jar_path, $jars);
@ -418,7 +523,7 @@ sub CreateJarFromManifest($$$)
}
}
}
close(FILE);
if ($jar_file ne "") #if a jar file is open, close it

Просмотреть файл

@ -431,7 +431,8 @@ sub Checkout()
my($nss_tab) = "NSS_30_BRANCH";
my($psm_tag) = "SECURITY_MAC_BRANCH";
my($secbase_tag) = "SECURITY_CLIENT_BRANCH";
my($ldapsdk_tag) = "LDAPCSDK_40_BRANCH";
my($ldapsdk_tag) = "LDAPCSDK_40_BRANCH";
my($jars_branch_tag) = "jar_restructuring_branch";
#//
#// Checkout commands
@ -441,10 +442,14 @@ sub Checkout()
$session->checkout("mozilla/nsprpub", $nsprpub_tag) || print "checkout of nsprpub failed\n";
$session->checkout("mozilla/security/nss", $nss_tab) || print "checkout of security/nss failed\n";
$session->checkout("mozilla/security/psm", $psm_tag) || print "checkout of security/psm failed\n";
$session->checkout("mozilla/security/base", $secbase_tag) || print "checkout of security/base failed\n";
$session->checkout("mozilla/security/base", $secbase_tag) || print "checkout of security/base failed\n";
$session->checkout("DirectorySDKSourceC", $ldapsdk_tag) || print "checkout of LDAP C SDK failed\n";
$session->checkout("SeaMonkeyAll") ||
print "MacCVS reported some errors checking out SeaMonkeyAll, but these are probably not serious.\n";
# we need this jar.mn file on the jar branch
$session->checkout("mozilla/security/base/res/jar.mn", $jars_branch_tag) || print "checkout of jar.mn failed\n";
# $session->checkout("SeaMonkeyAll", $jars_branch_tag) ||
# print "MacCVS reported some errors checking out SeaMonkeyAll, but these are probably not serious.\n";
}
elsif ($main::pull{runtime})
{
@ -1301,6 +1306,13 @@ sub ProcessJarManifests()
# a hash of jars passed as context to the following calls
my(%jars);
if ($main::build{extensions})
{
MozJar::CreateJarFromManifest(":mozilla:extensions:irc:jar.mn", $chrome_dir, \%jars);
# cview needs a jar.mn file
# transformiix needs a jar.mn file
}
MozJar::CreateJarFromManifest(":mozilla:caps:src:jar.mn", $chrome_dir, \%jars);
MozJar::CreateJarFromManifest(":mozilla:docshell:base:jar.mn", $chrome_dir, \%jars);
MozJar::CreateJarFromManifest(":mozilla:editor:jar.mn", $chrome_dir, \%jars);
@ -2552,59 +2564,71 @@ sub BuildExtensionsProjects()
my($chrome_subdir) = "Chrome:";
my($chrome_dir) = "$dist_dir"."$chrome_subdir";
my($packages_chrome_dir) = "$chrome_dir" . "packages:";
# Chatzilla
my($packages_chrome_dir) = "$chrome_dir" . "packages:";
my($chatzilla_packages_chrome_dir) = "$packages_chrome_dir"."chatzilla:";
my($chatzilla_chatzilla_packages_chrome_dir) = "$chatzilla_packages_chrome_dir"."chatzilla:";
my($chatzillaContent) = "$chatzilla_chatzilla_packages_chrome_dir"."content:";
my($chatzillaLocale) = "$chatzilla_chatzilla_packages_chrome_dir"."locale:";
my($chatzillaSkin) = "$chatzilla_chatzilla_packages_chrome_dir"."skin:";
my($chatzillaContentLibJS) = "$chatzillaContent"."lib:js:";
my($chatzillaContentLibXul) = "$chatzillaContent"."lib:xul:";
_InstallResources(":mozilla:extensions:irc:js:lib:MANIFEST", "$chatzillaContentLibJS");
_InstallResources(":mozilla:extensions:irc:js:lib:MANIFEST_COMPONENTS", "${dist_dir}Components");
_InstallResources(":mozilla:extensions:irc:xul:lib:MANIFEST", "$chatzillaContentLibXul");
_InstallResources(":mozilla:extensions:irc:xul:content:MANIFEST", "$chatzillaContent");
_InstallResources(":mozilla:extensions:irc:xul:skin:MANIFEST", "$chatzillaSkin");
my($chatzillaSkinImages) = "$chatzillaSkin"."images:";
_InstallResources(":mozilla:extensions:irc:xul:skin:images:MANIFEST", "$chatzillaSkinImages");
_InstallResources(":mozilla:extensions:irc:xul:locale:en-US:MANIFEST", "$chatzillaLocale", 0);
if (!$main::options{jar_manifests})
{
my($chatzilla_packages_chrome_dir) = "$packages_chrome_dir"."chatzilla:";
my($chatzilla_chatzilla_packages_chrome_dir) = "$chatzilla_packages_chrome_dir"."chatzilla:";
my($chatzillaContent) = "$chatzilla_chatzilla_packages_chrome_dir"."content:";
my($chatzillaLocale) = "$chatzilla_chatzilla_packages_chrome_dir"."locale:";
my($chatzillaSkin) = "$chatzilla_chatzilla_packages_chrome_dir"."skin:";
my($chatzillaContentLibJS) = "$chatzillaContent"."lib:js:";
my($chatzillaContentLibXul) = "$chatzillaContent"."lib:xul:";
_InstallResources(":mozilla:extensions:irc:js:lib:MANIFEST", "$chatzillaContentLibJS");
_InstallResources(":mozilla:extensions:irc:xul:lib:MANIFEST", "$chatzillaContentLibXul");
_InstallResources(":mozilla:extensions:irc:xul:content:MANIFEST", "$chatzillaContent");
_InstallResources(":mozilla:extensions:irc:xul:skin:MANIFEST", "$chatzillaSkin");
my($chatzillaSkinImages) = "$chatzillaSkin"."images:";
_InstallResources(":mozilla:extensions:irc:xul:skin:images:MANIFEST", "$chatzillaSkinImages");
_InstallResources(":mozilla:extensions:irc:xul:locale:en-US:MANIFEST", "$chatzillaLocale", 0);
}
# XML-RPC (whatever that is)
_InstallFromManifest(":mozilla:extensions:xml-rpc:src:MANIFEST_COMPONENTS", "${dist_dir}Components");
# Component viewer
my($cview_cview_packages_chrome_dir) = "$packages_chrome_dir"."cview:cview:";
my($cviewContent) = "$cview_cview_packages_chrome_dir"."content:";
my($cviewLocale) = "$cview_cview_packages_chrome_dir"."locale:";
my($cviewSkin) = "$cview_cview_packages_chrome_dir"."skin:";
_InstallResources(":mozilla:extensions:cview:resources:content:MANIFEST", "$cviewContent");
_InstallResources(":mozilla:extensions:cview:resources:skin:MANIFEST", "$cviewSkin");
_InstallResources(":mozilla:extensions:cview:resources:locale:en-US:MANIFEST", "$cviewLocale", 0);
if (!$main::options{jar_manifests})
{
my($cview_cview_packages_chrome_dir) = "$packages_chrome_dir"."cview:cview:";
my($cviewContent) = "$cview_cview_packages_chrome_dir"."content:";
my($cviewLocale) = "$cview_cview_packages_chrome_dir"."locale:";
my($cviewSkin) = "$cview_cview_packages_chrome_dir"."skin:";
_InstallResources(":mozilla:extensions:cview:resources:content:MANIFEST", "$cviewContent");
_InstallResources(":mozilla:extensions:cview:resources:skin:MANIFEST", "$cviewSkin");
_InstallResources(":mozilla:extensions:cview:resources:locale:en-US:MANIFEST", "$cviewLocale", 0);
# this needs a jar.mn file for jar_manifest builds
}
# Transformiix
if ($main::options{transformiix})
{
BuildOneProject(":mozilla:extensions:transformiix:macbuild:transformiix.mcp", "transformiix$D.shlb", 1, $main::ALIAS_SYM_FILES, 1);
my($transformiix_transformiix_packages_chrome_dir) = "$packages_chrome_dir"."transformiix:transformiix:";
my($transformiixContent) = "$transformiix_transformiix_packages_chrome_dir"."content:";
my($transformiixLocale) = "$transformiix_transformiix_packages_chrome_dir"."locale:";
my($transformiixSkin) = "$transformiix_transformiix_packages_chrome_dir"."skin:";
_InstallResources(":mozilla:extensions:transformiix:source:examples:mozilla:transformiix:content:MANIFEST", "$transformiixContent");
_InstallResources(":mozilla:extensions:transformiix:source:examples:mozilla:transformiix:skin:MANIFEST", "$transformiixSkin");
_InstallResources(":mozilla:extensions:transformiix:source:examples:mozilla:transformiix:locale:en-US:MANIFEST", "$transformiixLocale", 0);
if (!$main::options{jar_manifests})
{
my($transformiix_transformiix_packages_chrome_dir) = "$packages_chrome_dir"."transformiix:transformiix:";
my($transformiixContent) = "$transformiix_transformiix_packages_chrome_dir"."content:";
my($transformiixLocale) = "$transformiix_transformiix_packages_chrome_dir"."locale:";
my($transformiixSkin) = "$transformiix_transformiix_packages_chrome_dir"."skin:";
_InstallResources(":mozilla:extensions:transformiix:source:examples:mozilla:transformiix:content:MANIFEST", "$transformiixContent");
_InstallResources(":mozilla:extensions:transformiix:source:examples:mozilla:transformiix:skin:MANIFEST", "$transformiixSkin");
_InstallResources(":mozilla:extensions:transformiix:source:examples:mozilla:transformiix:locale:en-US:MANIFEST", "$transformiixLocale", 0);
# this needs a jar.mn file
}
}
# LDAP Client

Просмотреть файл

@ -1,2 +1,2 @@
locales/en-US.jar:
communicator/locale/security/security.properties
en-US.jar:
locale/en-US/communicator/security/security.properties

Просмотреть файл

@ -116,10 +116,8 @@ include <$(DEPTH)/config/rules.mak>
install:: $(DLL)
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).dll $(DIST)\bin\components
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).lib $(DIST)\lib
$(MAKE_INSTALL) security.properties $(DIST)\bin\chrome\locales\en-US\communicator\locale\security
clobber::
rm -f $(DIST)\lib\$(DLLNAME).lib
rm -f $(DIST)\bin\components\$(DLLNAME).dll
rm -f $(DIST)\bin\chrome\locales\en-US\communicator\locale\security\security.properties

Просмотреть файл

@ -1,24 +1,24 @@
#!/perl
# add-chrome <jar-file-name> <pkg-name> <chrome-type> <installed-chrome.txt-file>
my $installedChromeFile = $ARGV[0];
my $chromeType = $ARGV[1];
my $pkgName = $ARGV[2];
my $jarFileName = $ARGV[3];
my $disableJarPackaging = $ARGV[4];
#print "add-chrome $jarFileName $pkgName $chromeType $installedChromeFile\n";
#print "add-chrome $installedChromeFile $chromeType $pkgName $jarFileName $disableJarPackaging\n";
if ($jarFileName =~ /(.*)\.jar/) {
$jarFileName = $1;
}
my $line;
if ($disableJarPackaging) {
$line = "$chromeType,install,url,resource:/chrome/$jarFileName/";
$line = "$chromeType,install,url,resource:/chrome/$jarFileName/$chromeType/$pkgName/";
}
else {
$line = "$chromeType,install,url,jar:resource:/chrome/$jarFileName.jar!/";
$line = "$chromeType,install,url,jar:resource:/chrome/$jarFileName.jar!/$chromeType/$pkgName/";
}
#coming...
#my $line = "$chromeType,install,url,jar:resource:/chrome/$jarFileName!/$chromeType/$pkgName/";
if (open(FILE, "<$installedChromeFile")) {
while (<FILE>) {

Просмотреть файл

@ -51,6 +51,8 @@ BUILD_TOOLS = $(topsrcdir)/build/unix
CONFIG_TOOLS = $(DEPTH)/config
AUTOCONF_TOOLS = $(topsrcdir)/build/autoconf
PERL = perl
#
# Tweak the default OS_ARCH and OS_RELEASE macros as needed.
#

Просмотреть файл

@ -29,6 +29,12 @@ if (defined($opt_v)) {
$verbose = true;
}
if ($verbose eq true) {
print "make-jars "
. ($copyFiles ? "-c " : "")
. "-v -d $destPath\n";
}
sub Cleanup
{
while (true) {
@ -172,7 +178,14 @@ sub EnsureFileInDir
{
my ($destPath, $srcPath, $doCleanup, $override) = @_;
if (!-e $destPath || $override eq true) {
#print "EnsureFileInDir($destPath, $srcPath, $doCleanup, $override)\n";
my $destStat = stat($destPath);
my $destMtime = $destStat ? $destStat->mtime : 0;
my $srcStat = stat($srcPath);
my $srcMtime = $srcStat ? $srcStat->mtime : 0;
#print "destMtime = $destMtime, srcMtime = $srcMtime\n";
if (!-e $destPath || $destMtime < $srcMtime || $override eq true) {
#print "copying $destPath, from $srcPath\n";
my $dir = "";
my $file;
if ($destPath =~ /([\w\d.\-\\\/]+)[\\\/]([\w\d.\-]+)/) {
@ -200,14 +213,14 @@ sub EnsureFileInDir
return 0;
}
while (<>) {
while (<STDIN>) {
chomp;
start:
if (/^([\w\d.\-\\\/]+)\:\s*$/) {
my $jarfile = $1;
my $args = "";
my $overrides = "";
while (<>) {
while (<STDIN>) {
if (/^\s+([\w\d.\-\\\/]+)\s*(\([\w\d.\-\\\/]+\))?$\s*/) {
my $dest = $1;
my $srcPath = $2;

Просмотреть файл

@ -594,14 +594,13 @@ install:: chrome
!ifndef MOZ_OLD_JAR_PACKAGING
!if exist($(JAR_MANIFEST))
chrome::
chrome::
$(PERL) $(DEPTH)\config\make-jars.pl -c -d $(DIST)\bin\chrome < $(JAR_MANIFEST)
!endif
!if "$(CHROME_TYPE)" != "$(NULL)"
chrome::
-for %t in ($(CHROME_TYPE)) do @perl $(DEPTH)\config\add-chrome.pl $(DIST)\bin\chrome\installed-chrome.txt %t packageName $(CHROME_DIR:\=/) $(MOZ_DISABLE_JAR_PACKAGING)
!endif
REGCHROME = @perl $(DEPTH)\config\add-chrome.pl $(DIST)\bin\chrome\installed-chrome.txt
regchrome:

Просмотреть файл

@ -71,6 +71,10 @@ ifndef topsrcdir
topsrcdir = $(DEPTH)
endif
ifndef MOZILLA_DIR
MOZILLA_DIR = $(DEPTH)
endif
ifndef INCLUDED_CONFIG_MK
include $(topsrcdir)/config/config.mk
endif
@ -1126,102 +1130,17 @@ GARBAGE_DIRS += $(XPIDL_GEN_DIR)
endif
################################################################################
# Generate chrome building rules.
#
# You need to set these in your makefile.win to utilize this support:
# CHROME_DIR - specifies the chrome subdirectory where your chrome files
# go; e.g., CHROME_DIR=navigator or CHROME_DIR=global
#
# Note: All file listed in the next three macros MUST be prefaced with .\ (or ./)!
#
# CHROME_CONTENT - list of chrome content files; these can be prefaced with
# arbitrary paths; e.g., CHROME_CONTENT=./content/default/foobar.xul
# CHROME_SKIN - list of skin files
# CHROME_L10N - list of localization files, e.g., CHROME_L10N=./locale/en-US/foobar.dtd
#
# These macros are optional, if not specified, each defaults to ".".
# CHROME_CONTENT_DIR - specifies a subdirectory within CHROME_DIR where
# all CHROME_CONTENT files will be installed.
# CHROME_SKIN_DIR - Like above, but for skin files
# CHROME_L10N_DIR - Like above, but for localization files
# CHROME_TYPE - The type of chrome being generated (content, skin, locale).
# Top-level makefiles (the same one copying the rdf manifests
# and generating the jar file) should define this macro.
# This will notify the chrome registry of a new installation.
ifneq ($(MOZ_ENABLE_JAR_PACKAGING),)
# CHROME PACKAGING
JAR_MANIFEST := $(srcdir)/jar.mn
install::
@if test -f $(JAR_MANIFEST); then $(PERL) $(topsrcdir)/config/make-jars-unix.pl -d $(DIST)/bin/chrome -s $(srcdir) < $(JAR_MANIFEST); fi
JAR_MANIFEST := jar.mn
ifneq ($(CHROME_TYPE),)
install:: $(addprefix bogus/, $(CHROME_TYPE))
chrome::
@if test -f $(JAR_MANIFEST); then $(PERL) $(MOZILLA_DIR)/config/make-jars.pl -c -d $(DIST)/bin/chrome < $(JAR_MANIFEST); fi
$(addprefix bogus/, $(CHROME_TYPE)):
@echo $(patsubst bogus/%, %, $@),install,url,jar:resource:/chrome/$(CHROME_DIR).jar!/ >>$(DEPTH)/dist/bin/chrome/installed-chrome.txt
endif #CHROME_TYPE
install:: chrome
# keeping this in so that bad install rules will work.
ifneq ($(CHROME_DIR),)
CHROME_DIST := $(DIST)/bin/chrome/$(CHROME_DIR)
endif
REGCHROME = $(PERL) $(MOZILLA_DIR)/config/add-chrome.pl $(DIST)/bin/chrome/installed-chrome.txt
else # MOZ_DISBALE_JAR_PACKAGING
ifneq ($(CHROME_DIR),)
CHROME_DIST := $(DIST)/bin/chrome/$(CHROME_DIR)
# Content
ifneq ($(CHROME_CONTENT),)
ifeq ($(CHROME_CONTENT_DIR),) # Use CHROME_DIR unless specified otherwise.
CHROME_CONTENT_DIR := .
endif
install::
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_CONTENT)) $(CHROME_DIST)/$(CHROME_CONTENT_DIR)
endif
# content
# Skin
ifneq ($(CHROME_SKIN),)
ifeq ($(CHROME_SKIN_DIR),) # Use CHROME_DIR unless specified otherwise.
CHROME_SKIN_DIR := .
endif
install::
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_SKIN)) $(CHROME_DIST)/$(CHROME_SKIN_DIR)
endif
# skin
# Localization.
ifneq ($(CHROME_L10N),)
ifeq ($(CHROME_L10N_DIR),) # Use CHROME_DIR unless specified otherwise.
CHROME_L10N_DIR := .
endif
install::
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_L10N)) $(CHROME_DIST)/$(CHROME_L10N_DIR)
endif
# localization
# misc
ifneq ($(CHROME_MISC),)
ifeq ($(CHROME_MISC_DIR),) # Use CHROME_DIR unless specified otherwise.
CHROME_MISC_DIR := .
endif
install::
$(INSTALL) $(addprefix $(srcdir)/, $(CHROME_MISC)) $(CHROME_DIST)/$(CHROME_MISC_DIR)
endif
# misc
ifneq ($(CHROME_TYPE),)
install:: $(addprefix bogus/, $(CHROME_TYPE))
$(addprefix bogus/, $(CHROME_TYPE)):
@echo $(patsubst bogus/%, %, $@),install,url,resource:/chrome/$(CHROME_DIR)/ >>$(DEPTH)/dist/bin/chrome/installed-chrome.txt
endif
endif #chrome
endif # MOZ_DISABLE_JAR_PACKAGING
# chrome
##############################################################################
ifndef NO_MDUPDATE

Просмотреть файл

@ -81,9 +81,10 @@ sub ZipChrome()
}
# Call CreateArchive() on locales, packages, and skins
CreateArchive("loc", $inSourcePath . $gPathDelimiter . "locales", "$inTargetPath");
CreateArchive("pkg", $inSourcePath . $gPathDelimiter . "packages", "$inTargetPath");
CreateArchive("skn", $inSourcePath . $gPathDelimiter . "skins", "$inTargetPath");
# CreateArchive("loc", $inSourcePath . $gPathDelimiter . "locales", "$inTargetPath");
# CreateArchive("pkg", $inSourcePath . $gPathDelimiter . "packages", "$inTargetPath");
# CreateArchive("skn", $inSourcePath . $gPathDelimiter . "skins", "$inTargetPath");
CreateArchive("jar", $inSourcePath . $gPathDelimiter, "$inTargetPath");
return(0);
}
@ -161,11 +162,11 @@ sub CreateArchive()
if($inUpdate =~ /noupdate/i)
{
print "\n";
if(-e "..$gPathDelimiter$dirName.$inExtension")
if(-e "$dirName.$inExtension")
{
# Delete archive is one already exists in target location
print " Removing $dirName.$inExtension\n";
unlink "..$gPathDelimiter$dirName.$inExtension";
unlink "$dirName.$inExtension";
}
print " Creating $dirName.$inExtension\n";
@ -173,7 +174,7 @@ sub CreateArchive()
}
elsif($inUpdate =~ /update/i)
{
if(!(-e "..$gPathDelimiter$dirName.$inExtension"))
if(!(-e "$dirName.$inExtension"))
{
print "\n";
print " Creating $dirName.$inExtension\n";
@ -188,9 +189,9 @@ sub CreateArchive()
# Create the archive in $inDest
chdir("$dirName");
if(system("zip $mZipParam -r ..$gPathDelimiter..$gPathDelimiter$dirName.$inExtension *") != 0)
if(system("zip $mZipParam -r ..$gPathDelimiter$dirName.$inExtension *") != 0)
{
print "Error: zip $mZipParam -r ..$gPathDelimiter..$gPathDelimiter$dirName.$inExtension *\n";
print "Error: zip $mZipParam -r ..$gPathDelimiter$dirName.$inExtension *\n";
chdir("..");
return(1);
}

Просмотреть файл

@ -57,6 +57,3 @@ override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(srcdir)/appstrings.properties $(DIST)/bin/chrome/locales/en-US/global/locale

Просмотреть файл

@ -1,3 +1,3 @@
locales/en-US.jar:
global/locale/appstrings.properties
en-US.jar:
locale/en-US/global/appstrings.properties

Просмотреть файл

@ -55,4 +55,4 @@ nsDocShell.cpp : nsDocShell.h
install:: $(LIBRARY)
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
$(MAKE_INSTALL) appstrings.properties $(DIST)\bin\chrome\locales\en-US\global\locale

Просмотреть файл

@ -30,3 +30,6 @@ DIRS = public idl base ui txmgr txtsvc
include $(topsrcdir)/config/rules.mk
chrome::
@$(REGCHROME) content editor comm.jar; \
$(REGCHROME) locale en-US/editor en-US.jar

Просмотреть файл

@ -1,202 +1,204 @@
packages/core.jar:
editor/content/editor.xul (ui/composer/content/editor.xul)
editor/content/TextEditorAppShell.xul (ui/composer/content/TextEditorAppShell.xul)
editor/content/editor.js (ui/composer/content/editor.js)
editor/content/ComposerCommands.js (ui/composer/content/ComposerCommands.js)
editor/content/EditorCommandsDebug.js (ui/composer/content/EditorCommandsDebug.js)
editor/content/EditorContextMenu.js (ui/composer/content/EditorContextMenu.js)
editor/content/EditorContextMenuOverlay.xul (ui/composer/content/EditorContextMenuOverlay.xul)
editor/content/EditorInitPage.html (ui/composer/content/EditorInitPage.html)
editor/content/EditorInitPagePlain.html (ui/composer/content/EditorInitPagePlain.html)
editor/content/EditorContent.css (ui/composer/content/EditorContent.css)
editor/content/EditorAllTags.css (ui/composer/content/EditorAllTags.css)
editor/content/EditorOverride.css (ui/composer/content/EditorOverride.css)
editor/content/EditorParagraphMarks.css (ui/composer/content/EditorParagraphMarks.css)
editor/content/sidebar-editor.rdf (ui/composer/content/sidebar-editor.rdf)
editor/content/sidebar-editor.xul (ui/composer/content/sidebar-editor.xul)
editor/content/sb-bookmarks-panel.xul (ui/composer/content/sb-bookmarks-panel.xul)
editor/content/sb-bookmarks.js (ui/composer/content/sb-bookmarks.js)
editor/content/sb-file-contextMenu.js (ui/composer/content/sb-file-contextMenu.js)
editor/content/sb-file-panel.js (ui/composer/content/sb-file-panel.js)
editor/content/sb-file-panel.xul (ui/composer/content/sb-file-panel.xul)
editor/content/sb-FileWidgetFileHandler.js (ui/composer/content/sb-FileWidgetFileHandler.js)
editor/content/editorOverlay.xul (ui/composer/content/editorOverlay.xul)
editor/content/editorOverlay.js (ui/composer/content/editorOverlay.js)
editor/content/pref-editing.xul (ui/composer/content/pref-editing.xul)
editor/content/pref-composer.js (ui/composer/content/pref-composer.js)
editor/content/pref-composer.xul (ui/composer/content/pref-composer.xul)
editor/content/pref-publish.xul (ui/composer/content/pref-publish.xul)
editor/content/editorPrefsOverlay.xul (ui/composer/content/editorPrefsOverlay.xul)
editor/content/images/tag-anchor.gif (ui/composer/content/images/tag-anchor.gif)
editor/content/images/tag-abr.gif (ui/composer/content/images/tag-abr.gif)
editor/content/images/tag-acr.gif (ui/composer/content/images/tag-acr.gif)
editor/content/images/tag-adr.gif (ui/composer/content/images/tag-adr.gif)
editor/content/images/tag-ara.gif (ui/composer/content/images/tag-ara.gif)
editor/content/images/tag-bas.gif (ui/composer/content/images/tag-bas.gif)
editor/content/images/tag-blq.gif (ui/composer/content/images/tag-blq.gif)
editor/content/images/tag-bsf.gif (ui/composer/content/images/tag-bsf.gif)
editor/content/images/tag-btn.gif (ui/composer/content/images/tag-btn.gif)
editor/content/images/tag-cit.gif (ui/composer/content/images/tag-cit.gif)
editor/content/images/tag-clg.gif (ui/composer/content/images/tag-clg.gif)
editor/content/images/tag-cod.gif (ui/composer/content/images/tag-cod.gif)
editor/content/images/tag-cpt.gif (ui/composer/content/images/tag-cpt.gif)
editor/content/images/tag-ctr.gif (ui/composer/content/images/tag-ctr.gif)
editor/content/images/tag-fld.gif (ui/composer/content/images/tag-fld.gif)
editor/content/images/tag-fnt.gif (ui/composer/content/images/tag-fnt.gif)
editor/content/images/tag-for.gif (ui/composer/content/images/tag-for.gif)
editor/content/images/tag-frm.gif (ui/composer/content/images/tag-frm.gif)
editor/content/images/tag-fst.gif (ui/composer/content/images/tag-fst.gif)
editor/content/images/tag-ifr.gif (ui/composer/content/images/tag-ifr.gif)
editor/content/images/tag-inp.gif (ui/composer/content/images/tag-inp.gif)
editor/content/images/tag-lbl.gif (ui/composer/content/images/tag-lbl.gif)
editor/content/images/tag-lgn.gif (ui/composer/content/images/tag-lgn.gif)
editor/content/images/tag-lnk.gif (ui/composer/content/images/tag-lnk.gif)
editor/content/images/tag-lst.gif (ui/composer/content/images/tag-lst.gif)
editor/content/images/tag-men.gif (ui/composer/content/images/tag-men.gif)
editor/content/images/tag-nfr.gif (ui/composer/content/images/tag-nfr.gif)
editor/content/images/tag-nsc.gif (ui/composer/content/images/tag-nsc.gif)
editor/content/images/tag-opg.gif (ui/composer/content/images/tag-opg.gif)
editor/content/images/tag-opt.gif (ui/composer/content/images/tag-opt.gif)
editor/content/images/tag-prm.gif (ui/composer/content/images/tag-prm.gif)
editor/content/images/tag-scr.gif (ui/composer/content/images/tag-scr.gif)
editor/content/images/tag-slc.gif (ui/composer/content/images/tag-slc.gif)
editor/content/images/tag-sml.gif (ui/composer/content/images/tag-sml.gif)
editor/content/images/tag-smp.gif (ui/composer/content/images/tag-smp.gif)
editor/content/images/tag-spn.gif (ui/composer/content/images/tag-spn.gif)
editor/content/images/tag-stk.gif (ui/composer/content/images/tag-stk.gif)
editor/content/images/tag-stl.gif (ui/composer/content/images/tag-stl.gif)
editor/content/images/tag-stn.gif (ui/composer/content/images/tag-stn.gif)
editor/content/images/tag-tbd.gif (ui/composer/content/images/tag-tbd.gif)
editor/content/images/tag-tbl.gif (ui/composer/content/images/tag-tbl.gif)
editor/content/images/tag-tft.gif (ui/composer/content/images/tag-tft.gif)
editor/content/images/tag-thd.gif (ui/composer/content/images/tag-thd.gif)
editor/content/images/tag-hed.gif (ui/composer/content/images/tag-hed.gif)
editor/content/images/tag-isx.gif (ui/composer/content/images/tag-isx.gif)
editor/content/images/tag-met.gif (ui/composer/content/images/tag-met.gif)
editor/content/images/tag-ttl.gif (ui/composer/content/images/tag-ttl.gif)
editor/content/images/tag-pln.gif (ui/composer/content/images/tag-pln.gif)
editor/content/images/tag-xmp.gif (ui/composer/content/images/tag-xmp.gif)
editor/content/images/tag-txt.gif (ui/composer/content/images/tag-txt.gif)
editor/content/images/tag-a.gif (ui/composer/content/images/tag-a.gif)
editor/content/images/tag-app.gif (ui/composer/content/images/tag-app.gif)
editor/content/images/tag-b.gif (ui/composer/content/images/tag-b.gif)
editor/content/images/tag-bdo.gif (ui/composer/content/images/tag-bdo.gif)
editor/content/images/tag-big.gif (ui/composer/content/images/tag-big.gif)
editor/content/images/tag-body.gif (ui/composer/content/images/tag-body.gif)
editor/content/images/tag-br.gif (ui/composer/content/images/tag-br.gif)
editor/content/images/tag-col.gif (ui/composer/content/images/tag-col.gif)
editor/content/images/tag-dd.gif (ui/composer/content/images/tag-dd.gif)
editor/content/images/tag-del.gif (ui/composer/content/images/tag-del.gif)
editor/content/images/tag-dfn.gif (ui/composer/content/images/tag-dfn.gif)
editor/content/images/tag-dir.gif (ui/composer/content/images/tag-dir.gif)
editor/content/images/tag-div.gif (ui/composer/content/images/tag-div.gif)
editor/content/images/tag-dl.gif (ui/composer/content/images/tag-dl.gif)
editor/content/images/tag-dt.gif (ui/composer/content/images/tag-dt.gif)
editor/content/images/tag-em.gif (ui/composer/content/images/tag-em.gif)
editor/content/images/tag-h1.gif (ui/composer/content/images/tag-h1.gif)
editor/content/images/tag-h2.gif (ui/composer/content/images/tag-h2.gif)
editor/content/images/tag-h3.gif (ui/composer/content/images/tag-h3.gif)
editor/content/images/tag-h4.gif (ui/composer/content/images/tag-h4.gif)
editor/content/images/tag-h5.gif (ui/composer/content/images/tag-h5.gif)
editor/content/images/tag-h6.gif (ui/composer/content/images/tag-h6.gif)
editor/content/images/tag-hr.gif (ui/composer/content/images/tag-hr.gif)
editor/content/images/tag-html.gif (ui/composer/content/images/tag-html.gif)
editor/content/images/tag-i.gif (ui/composer/content/images/tag-i.gif)
editor/content/images/tag-img.gif (ui/composer/content/images/tag-img.gif)
editor/content/images/tag-ins.gif (ui/composer/content/images/tag-ins.gif)
editor/content/images/tag-kbd.gif (ui/composer/content/images/tag-kbd.gif)
editor/content/images/tag-li.gif (ui/composer/content/images/tag-li.gif)
editor/content/images/tag-map.gif (ui/composer/content/images/tag-map.gif)
editor/content/images/tag-obj.gif (ui/composer/content/images/tag-obj.gif)
editor/content/images/tag-ol.gif (ui/composer/content/images/tag-ol.gif)
editor/content/images/tag-p.gif (ui/composer/content/images/tag-p.gif)
editor/content/images/tag-pre.gif (ui/composer/content/images/tag-pre.gif)
editor/content/images/tag-q.gif (ui/composer/content/images/tag-q.gif)
editor/content/images/tag-s.gif (ui/composer/content/images/tag-s.gif)
editor/content/images/tag-sub.gif (ui/composer/content/images/tag-sub.gif)
editor/content/images/tag-sup.gif (ui/composer/content/images/tag-sup.gif)
editor/content/images/tag-td.gif (ui/composer/content/images/tag-td.gif)
editor/content/images/tag-th.gif (ui/composer/content/images/tag-th.gif)
editor/content/images/tag-tr.gif (ui/composer/content/images/tag-tr.gif)
editor/content/images/tag-tt.gif (ui/composer/content/images/tag-tt.gif)
editor/content/images/tag-u.gif (ui/composer/content/images/tag-u.gif)
editor/content/images/tag-ul.gif (ui/composer/content/images/tag-ul.gif)
editor/content/images/tag-var.gif (ui/composer/content/images/tag-var.gif)
editor/content/images/tag-userdefined.gif (ui/composer/content/images/tag-userdefined.gif)
editor/content/EdDialogCommon.js (ui/dialogs/content/EdDialogCommon.js)
editor/content/EdLinkProps.xul (ui/dialogs/content/EdLinkProps.xul)
editor/content/EdLinkProps.js (ui/dialogs/content/EdLinkProps.js)
editor/content/EdImageProps.xul (ui/dialogs/content/EdImageProps.xul)
editor/content/EdImageProps.js (ui/dialogs/content/EdImageProps.js)
editor/content/EdHLineProps.xul (ui/dialogs/content/EdHLineProps.xul)
editor/content/EdHLineProps.js (ui/dialogs/content/EdHLineProps.js)
editor/content/EdSpellCheck.xul (ui/dialogs/content/EdSpellCheck.xul)
editor/content/EdSpellCheck.js (ui/dialogs/content/EdSpellCheck.js)
editor/content/EdDictionary.xul (ui/dialogs/content/EdDictionary.xul)
editor/content/EdDictionary.js (ui/dialogs/content/EdDictionary.js)
editor/content/EdNamedAnchorProps.xul (ui/dialogs/content/EdNamedAnchorProps.xul)
editor/content/EdNamedAnchorProps.js (ui/dialogs/content/EdNamedAnchorProps.js)
editor/content/EdInsertTable.xul (ui/dialogs/content/EdInsertTable.xul)
editor/content/EdInsertTable.js (ui/dialogs/content/EdInsertTable.js)
editor/content/EdTableProps.xul (ui/dialogs/content/EdTableProps.xul)
editor/content/EdTableProps.js (ui/dialogs/content/EdTableProps.js)
editor/content/EdInsSrc.xul (ui/dialogs/content/EdInsSrc.xul)
editor/content/EdInsSrc.js (ui/dialogs/content/EdInsSrc.js)
editor/content/EdInsertChars.xul (ui/dialogs/content/EdInsertChars.xul)
editor/content/EdInsertChars.js (ui/dialogs/content/EdInsertChars.js)
editor/content/EdDialogOverlay.xul (ui/dialogs/content/EdDialogOverlay.xul)
editor/content/EdAdvancedEdit.xul (ui/dialogs/content/EdAdvancedEdit.xul)
editor/content/EdAdvancedEdit.js (ui/dialogs/content/EdAdvancedEdit.js)
editor/content/EdListProps.xul (ui/dialogs/content/EdListProps.xul)
editor/content/EdListProps.js (ui/dialogs/content/EdListProps.js)
editor/content/EdPageProps.xul (ui/dialogs/content/EdPageProps.xul)
editor/content/EdPageProps.js (ui/dialogs/content/EdPageProps.js)
editor/content/EdColorProps.xul (ui/dialogs/content/EdColorProps.xul)
editor/content/EdColorProps.js (ui/dialogs/content/EdColorProps.js)
editor/content/EdColorPicker.xul (ui/dialogs/content/EdColorPicker.xul)
editor/content/EdColorPicker.js (ui/dialogs/content/EdColorPicker.js)
editor/content/EdAECSSAttributes.js (ui/dialogs/content/EdAECSSAttributes.js)
editor/content/EdAEHTMLAttributes.js (ui/dialogs/content/EdAEHTMLAttributes.js)
editor/content/EdAEJSEAttributes.js (ui/dialogs/content/EdAEJSEAttributes.js)
editor/content/EdImageMap.js (ui/dialogs/content/EdImageMap.js)
editor/content/EdImageMap.xul (ui/dialogs/content/EdImageMap.xul)
editor/content/EdImageMapHotSpot.js (ui/dialogs/content/EdImageMapHotSpot.js)
editor/content/EdImageMapHotSpot.xul (ui/dialogs/content/EdImageMapHotSpot.xul)
editor/content/EdImageMapShapes.js (ui/dialogs/content/EdImageMapShapes.js)
editor/content/EdImageMapPage.html (ui/dialogs/content/EdImageMapPage.html)
editor/content/EditConflict.xul (ui/dialogs/content/EditConflict.xul)
editor/content/EditConflict.js (ui/dialogs/content/EditConflict.js)
editor/content/EditorSaveAsCharset.xul (ui/dialogs/content/EditorSaveAsCharset.xul)
editor/content/EditorSaveAsCharset.js (ui/dialogs/content/EditorSaveAsCharset.js)
comm.jar:
content/editor/contents.rdf (ui/composer/content/contents.rdf)
content/editor/editor.xul (ui/composer/content/editor.xul)
content/editor/TextEditorAppShell.xul (ui/composer/content/TextEditorAppShell.xul)
content/editor/editor.js (ui/composer/content/editor.js)
content/editor/ComposerCommands.js (ui/composer/content/ComposerCommands.js)
content/editor/EditorCommandsDebug.js (ui/composer/content/EditorCommandsDebug.js)
content/editor/EditorContextMenu.js (ui/composer/content/EditorContextMenu.js)
content/editor/EditorContextMenuOverlay.xul (ui/composer/content/EditorContextMenuOverlay.xul)
content/editor/EditorInitPage.html (ui/composer/content/EditorInitPage.html)
content/editor/EditorInitPagePlain.html (ui/composer/content/EditorInitPagePlain.html)
content/editor/EditorContent.css (ui/composer/content/EditorContent.css)
content/editor/EditorAllTags.css (ui/composer/content/EditorAllTags.css)
content/editor/EditorOverride.css (ui/composer/content/EditorOverride.css)
content/editor/EditorParagraphMarks.css (ui/composer/content/EditorParagraphMarks.css)
content/editor/sidebar-editor.rdf (ui/composer/content/sidebar-editor.rdf)
content/editor/sidebar-editor.xul (ui/composer/content/sidebar-editor.xul)
content/editor/sb-bookmarks-panel.xul (ui/composer/content/sb-bookmarks-panel.xul)
content/editor/sb-bookmarks.js (ui/composer/content/sb-bookmarks.js)
content/editor/sb-file-contextMenu.js (ui/composer/content/sb-file-contextMenu.js)
content/editor/sb-file-panel.js (ui/composer/content/sb-file-panel.js)
content/editor/sb-file-panel.xul (ui/composer/content/sb-file-panel.xul)
content/editor/sb-FileWidgetFileHandler.js (ui/composer/content/sb-FileWidgetFileHandler.js)
content/editor/editorOverlay.xul (ui/composer/content/editorOverlay.xul)
content/editor/editorOverlay.js (ui/composer/content/editorOverlay.js)
content/editor/pref-editing.xul (ui/composer/content/pref-editing.xul)
content/editor/pref-composer.js (ui/composer/content/pref-composer.js)
content/editor/pref-composer.xul (ui/composer/content/pref-composer.xul)
content/editor/pref-publish.xul (ui/composer/content/pref-publish.xul)
content/editor/editorPrefsOverlay.xul (ui/composer/content/editorPrefsOverlay.xul)
content/editor/images/tag-anchor.gif (ui/composer/content/images/tag-anchor.gif)
content/editor/images/tag-abr.gif (ui/composer/content/images/tag-abr.gif)
content/editor/images/tag-acr.gif (ui/composer/content/images/tag-acr.gif)
content/editor/images/tag-adr.gif (ui/composer/content/images/tag-adr.gif)
content/editor/images/tag-ara.gif (ui/composer/content/images/tag-ara.gif)
content/editor/images/tag-bas.gif (ui/composer/content/images/tag-bas.gif)
content/editor/images/tag-blq.gif (ui/composer/content/images/tag-blq.gif)
content/editor/images/tag-bsf.gif (ui/composer/content/images/tag-bsf.gif)
content/editor/images/tag-btn.gif (ui/composer/content/images/tag-btn.gif)
content/editor/images/tag-cit.gif (ui/composer/content/images/tag-cit.gif)
content/editor/images/tag-clg.gif (ui/composer/content/images/tag-clg.gif)
content/editor/images/tag-cod.gif (ui/composer/content/images/tag-cod.gif)
content/editor/images/tag-cpt.gif (ui/composer/content/images/tag-cpt.gif)
content/editor/images/tag-ctr.gif (ui/composer/content/images/tag-ctr.gif)
content/editor/images/tag-fld.gif (ui/composer/content/images/tag-fld.gif)
content/editor/images/tag-fnt.gif (ui/composer/content/images/tag-fnt.gif)
content/editor/images/tag-for.gif (ui/composer/content/images/tag-for.gif)
content/editor/images/tag-frm.gif (ui/composer/content/images/tag-frm.gif)
content/editor/images/tag-fst.gif (ui/composer/content/images/tag-fst.gif)
content/editor/images/tag-ifr.gif (ui/composer/content/images/tag-ifr.gif)
content/editor/images/tag-inp.gif (ui/composer/content/images/tag-inp.gif)
content/editor/images/tag-lbl.gif (ui/composer/content/images/tag-lbl.gif)
content/editor/images/tag-lgn.gif (ui/composer/content/images/tag-lgn.gif)
content/editor/images/tag-lnk.gif (ui/composer/content/images/tag-lnk.gif)
content/editor/images/tag-lst.gif (ui/composer/content/images/tag-lst.gif)
content/editor/images/tag-men.gif (ui/composer/content/images/tag-men.gif)
content/editor/images/tag-nfr.gif (ui/composer/content/images/tag-nfr.gif)
content/editor/images/tag-nsc.gif (ui/composer/content/images/tag-nsc.gif)
content/editor/images/tag-opg.gif (ui/composer/content/images/tag-opg.gif)
content/editor/images/tag-opt.gif (ui/composer/content/images/tag-opt.gif)
content/editor/images/tag-prm.gif (ui/composer/content/images/tag-prm.gif)
content/editor/images/tag-scr.gif (ui/composer/content/images/tag-scr.gif)
content/editor/images/tag-slc.gif (ui/composer/content/images/tag-slc.gif)
content/editor/images/tag-sml.gif (ui/composer/content/images/tag-sml.gif)
content/editor/images/tag-smp.gif (ui/composer/content/images/tag-smp.gif)
content/editor/images/tag-spn.gif (ui/composer/content/images/tag-spn.gif)
content/editor/images/tag-stk.gif (ui/composer/content/images/tag-stk.gif)
content/editor/images/tag-stl.gif (ui/composer/content/images/tag-stl.gif)
content/editor/images/tag-stn.gif (ui/composer/content/images/tag-stn.gif)
content/editor/images/tag-tbd.gif (ui/composer/content/images/tag-tbd.gif)
content/editor/images/tag-tbl.gif (ui/composer/content/images/tag-tbl.gif)
content/editor/images/tag-tft.gif (ui/composer/content/images/tag-tft.gif)
content/editor/images/tag-thd.gif (ui/composer/content/images/tag-thd.gif)
content/editor/images/tag-hed.gif (ui/composer/content/images/tag-hed.gif)
content/editor/images/tag-isx.gif (ui/composer/content/images/tag-isx.gif)
content/editor/images/tag-met.gif (ui/composer/content/images/tag-met.gif)
content/editor/images/tag-ttl.gif (ui/composer/content/images/tag-ttl.gif)
content/editor/images/tag-pln.gif (ui/composer/content/images/tag-pln.gif)
content/editor/images/tag-xmp.gif (ui/composer/content/images/tag-xmp.gif)
content/editor/images/tag-txt.gif (ui/composer/content/images/tag-txt.gif)
content/editor/images/tag-a.gif (ui/composer/content/images/tag-a.gif)
content/editor/images/tag-app.gif (ui/composer/content/images/tag-app.gif)
content/editor/images/tag-b.gif (ui/composer/content/images/tag-b.gif)
content/editor/images/tag-bdo.gif (ui/composer/content/images/tag-bdo.gif)
content/editor/images/tag-big.gif (ui/composer/content/images/tag-big.gif)
content/editor/images/tag-body.gif (ui/composer/content/images/tag-body.gif)
content/editor/images/tag-br.gif (ui/composer/content/images/tag-br.gif)
content/editor/images/tag-col.gif (ui/composer/content/images/tag-col.gif)
content/editor/images/tag-dd.gif (ui/composer/content/images/tag-dd.gif)
content/editor/images/tag-del.gif (ui/composer/content/images/tag-del.gif)
content/editor/images/tag-dfn.gif (ui/composer/content/images/tag-dfn.gif)
content/editor/images/tag-dir.gif (ui/composer/content/images/tag-dir.gif)
content/editor/images/tag-div.gif (ui/composer/content/images/tag-div.gif)
content/editor/images/tag-dl.gif (ui/composer/content/images/tag-dl.gif)
content/editor/images/tag-dt.gif (ui/composer/content/images/tag-dt.gif)
content/editor/images/tag-em.gif (ui/composer/content/images/tag-em.gif)
content/editor/images/tag-h1.gif (ui/composer/content/images/tag-h1.gif)
content/editor/images/tag-h2.gif (ui/composer/content/images/tag-h2.gif)
content/editor/images/tag-h3.gif (ui/composer/content/images/tag-h3.gif)
content/editor/images/tag-h4.gif (ui/composer/content/images/tag-h4.gif)
content/editor/images/tag-h5.gif (ui/composer/content/images/tag-h5.gif)
content/editor/images/tag-h6.gif (ui/composer/content/images/tag-h6.gif)
content/editor/images/tag-hr.gif (ui/composer/content/images/tag-hr.gif)
content/editor/images/tag-html.gif (ui/composer/content/images/tag-html.gif)
content/editor/images/tag-i.gif (ui/composer/content/images/tag-i.gif)
content/editor/images/tag-img.gif (ui/composer/content/images/tag-img.gif)
content/editor/images/tag-ins.gif (ui/composer/content/images/tag-ins.gif)
content/editor/images/tag-kbd.gif (ui/composer/content/images/tag-kbd.gif)
content/editor/images/tag-li.gif (ui/composer/content/images/tag-li.gif)
content/editor/images/tag-map.gif (ui/composer/content/images/tag-map.gif)
content/editor/images/tag-obj.gif (ui/composer/content/images/tag-obj.gif)
content/editor/images/tag-ol.gif (ui/composer/content/images/tag-ol.gif)
content/editor/images/tag-p.gif (ui/composer/content/images/tag-p.gif)
content/editor/images/tag-pre.gif (ui/composer/content/images/tag-pre.gif)
content/editor/images/tag-q.gif (ui/composer/content/images/tag-q.gif)
content/editor/images/tag-s.gif (ui/composer/content/images/tag-s.gif)
content/editor/images/tag-sub.gif (ui/composer/content/images/tag-sub.gif)
content/editor/images/tag-sup.gif (ui/composer/content/images/tag-sup.gif)
content/editor/images/tag-td.gif (ui/composer/content/images/tag-td.gif)
content/editor/images/tag-th.gif (ui/composer/content/images/tag-th.gif)
content/editor/images/tag-tr.gif (ui/composer/content/images/tag-tr.gif)
content/editor/images/tag-tt.gif (ui/composer/content/images/tag-tt.gif)
content/editor/images/tag-u.gif (ui/composer/content/images/tag-u.gif)
content/editor/images/tag-ul.gif (ui/composer/content/images/tag-ul.gif)
content/editor/images/tag-var.gif (ui/composer/content/images/tag-var.gif)
content/editor/images/tag-userdefined.gif (ui/composer/content/images/tag-userdefined.gif)
content/editor/EdDialogCommon.js (ui/dialogs/content/EdDialogCommon.js)
content/editor/EdLinkProps.xul (ui/dialogs/content/EdLinkProps.xul)
content/editor/EdLinkProps.js (ui/dialogs/content/EdLinkProps.js)
content/editor/EdImageProps.xul (ui/dialogs/content/EdImageProps.xul)
content/editor/EdImageProps.js (ui/dialogs/content/EdImageProps.js)
content/editor/EdHLineProps.xul (ui/dialogs/content/EdHLineProps.xul)
content/editor/EdHLineProps.js (ui/dialogs/content/EdHLineProps.js)
content/editor/EdSpellCheck.xul (ui/dialogs/content/EdSpellCheck.xul)
content/editor/EdSpellCheck.js (ui/dialogs/content/EdSpellCheck.js)
content/editor/EdDictionary.xul (ui/dialogs/content/EdDictionary.xul)
content/editor/EdDictionary.js (ui/dialogs/content/EdDictionary.js)
content/editor/EdNamedAnchorProps.xul (ui/dialogs/content/EdNamedAnchorProps.xul)
content/editor/EdNamedAnchorProps.js (ui/dialogs/content/EdNamedAnchorProps.js)
content/editor/EdInsertTable.xul (ui/dialogs/content/EdInsertTable.xul)
content/editor/EdInsertTable.js (ui/dialogs/content/EdInsertTable.js)
content/editor/EdTableProps.xul (ui/dialogs/content/EdTableProps.xul)
content/editor/EdTableProps.js (ui/dialogs/content/EdTableProps.js)
content/editor/EdInsSrc.xul (ui/dialogs/content/EdInsSrc.xul)
content/editor/EdInsSrc.js (ui/dialogs/content/EdInsSrc.js)
content/editor/EdInsertChars.xul (ui/dialogs/content/EdInsertChars.xul)
content/editor/EdInsertChars.js (ui/dialogs/content/EdInsertChars.js)
content/editor/EdDialogOverlay.xul (ui/dialogs/content/EdDialogOverlay.xul)
content/editor/EdAdvancedEdit.xul (ui/dialogs/content/EdAdvancedEdit.xul)
content/editor/EdAdvancedEdit.js (ui/dialogs/content/EdAdvancedEdit.js)
content/editor/EdListProps.xul (ui/dialogs/content/EdListProps.xul)
content/editor/EdListProps.js (ui/dialogs/content/EdListProps.js)
content/editor/EdPageProps.xul (ui/dialogs/content/EdPageProps.xul)
content/editor/EdPageProps.js (ui/dialogs/content/EdPageProps.js)
content/editor/EdColorProps.xul (ui/dialogs/content/EdColorProps.xul)
content/editor/EdColorProps.js (ui/dialogs/content/EdColorProps.js)
content/editor/EdColorPicker.xul (ui/dialogs/content/EdColorPicker.xul)
content/editor/EdColorPicker.js (ui/dialogs/content/EdColorPicker.js)
content/editor/EdAECSSAttributes.js (ui/dialogs/content/EdAECSSAttributes.js)
content/editor/EdAEHTMLAttributes.js (ui/dialogs/content/EdAEHTMLAttributes.js)
content/editor/EdAEJSEAttributes.js (ui/dialogs/content/EdAEJSEAttributes.js)
content/editor/EdImageMap.js (ui/dialogs/content/EdImageMap.js)
content/editor/EdImageMap.xul (ui/dialogs/content/EdImageMap.xul)
content/editor/EdImageMapHotSpot.js (ui/dialogs/content/EdImageMapHotSpot.js)
content/editor/EdImageMapHotSpot.xul (ui/dialogs/content/EdImageMapHotSpot.xul)
content/editor/EdImageMapShapes.js (ui/dialogs/content/EdImageMapShapes.js)
content/editor/EdImageMapPage.html (ui/dialogs/content/EdImageMapPage.html)
content/editor/EditConflict.xul (ui/dialogs/content/EditConflict.xul)
content/editor/EditConflict.js (ui/dialogs/content/EditConflict.js)
content/editor/EditorSaveAsCharset.xul (ui/dialogs/content/EditorSaveAsCharset.xul)
content/editor/EditorSaveAsCharset.js (ui/dialogs/content/EditorSaveAsCharset.js)
locales/en-US.jar:
editor/locale/editor.dtd (ui/composer/locale/en-US/editor.dtd)
editor/locale/editorPrefsOverlay.dtd (ui/composer/locale/en-US/editorPrefsOverlay.dtd)
editor/locale/pref-editing.dtd (ui/composer/locale/en-US/pref-editing.dtd)
editor/locale/pref-composer.dtd (ui/composer/locale/en-US/pref-composer.dtd)
editor/locale/pref-publish.dtd (ui/composer/locale/en-US/pref-publish.dtd)
editor/locale/sidebar-editor-rdf.dtd (ui/composer/locale/en-US/sidebar-editor-rdf.dtd)
editor/locale/sidebar-editor.dtd (ui/composer/locale/en-US/sidebar-editor.dtd)
editor/locale/editorOverlay.dtd (ui/composer/locale/en-US/editorOverlay.dtd)
editor/locale/editor.properties (ui/composer/locale/en-US/editor.properties)
editor/locale/EditorHLineProperties.dtd (ui/dialogs/locale/en-US/EditorHLineProperties.dtd)
editor/locale/EditorImageProperties.dtd (ui/dialogs/locale/en-US/EditorImageProperties.dtd)
editor/locale/EditorInsertSource.dtd (ui/dialogs/locale/en-US/EditorInsertSource.dtd)
editor/locale/EditorInsertChars.dtd (ui/dialogs/locale/en-US/EditorInsertChars.dtd)
editor/locale/EditorInsertTable.dtd (ui/dialogs/locale/en-US/EditorInsertTable.dtd)
editor/locale/EditorLinkProperties.dtd (ui/dialogs/locale/en-US/EditorLinkProperties.dtd)
editor/locale/EditorListProperties.dtd (ui/dialogs/locale/en-US/EditorListProperties.dtd)
editor/locale/EditorPageProperties.dtd (ui/dialogs/locale/en-US/EditorPageProperties.dtd)
editor/locale/EditorColorProperties.dtd (ui/dialogs/locale/en-US/EditorColorProperties.dtd)
editor/locale/EdColorPicker.dtd (ui/dialogs/locale/en-US/EdColorPicker.dtd)
editor/locale/EditorPersonalDictionary.dtd (ui/dialogs/locale/en-US/EditorPersonalDictionary.dtd)
editor/locale/EditorSpellCheck.dtd (ui/dialogs/locale/en-US/EditorSpellCheck.dtd)
editor/locale/EditorTableProperties.dtd (ui/dialogs/locale/en-US/EditorTableProperties.dtd)
editor/locale/EdNamedAnchorProperties.dtd (ui/dialogs/locale/en-US/EdNamedAnchorProperties.dtd)
editor/locale/EdDialogOverlay.dtd (ui/dialogs/locale/en-US/EdDialogOverlay.dtd)
editor/locale/EdAdvancedEdit.dtd (ui/dialogs/locale/en-US/EdAdvancedEdit.dtd)
editor/locale/EditorImageMap.dtd (ui/dialogs/locale/en-US/EditorImageMap.dtd)
editor/locale/EditorImageMapHotSpot.dtd (ui/dialogs/locale/en-US/EditorImageMapHotSpot.dtd)
editor/locale/EditConflict.dtd (ui/dialogs/locale/en-US/EditConflict.dtd)
editor/locale/EditorSaveAsCharset.dtd (ui/dialogs/locale/en-US/EditorSaveAsCharset.dtd)
en-US.jar:
locale/en-US/editor/contents.rdf (ui/composer/locale/en-US/contents.rdf)
locale/en-US/editor/editor.dtd (ui/composer/locale/en-US/editor.dtd)
locale/en-US/editor/editorPrefsOverlay.dtd (ui/composer/locale/en-US/editorPrefsOverlay.dtd)
locale/en-US/editor/pref-editing.dtd (ui/composer/locale/en-US/pref-editing.dtd)
locale/en-US/editor/pref-composer.dtd (ui/composer/locale/en-US/pref-composer.dtd)
locale/en-US/editor/pref-publish.dtd (ui/composer/locale/en-US/pref-publish.dtd)
locale/en-US/editor/sidebar-editor-rdf.dtd (ui/composer/locale/en-US/sidebar-editor-rdf.dtd)
locale/en-US/editor/sidebar-editor.dtd (ui/composer/locale/en-US/sidebar-editor.dtd)
locale/en-US/editor/editorOverlay.dtd (ui/composer/locale/en-US/editorOverlay.dtd)
locale/en-US/editor/editor.properties (ui/composer/locale/en-US/editor.properties)
locale/en-US/editor/EditorHLineProperties.dtd (ui/dialogs/locale/en-US/EditorHLineProperties.dtd)
locale/en-US/editor/EditorImageProperties.dtd (ui/dialogs/locale/en-US/EditorImageProperties.dtd)
locale/en-US/editor/EditorInsertSource.dtd (ui/dialogs/locale/en-US/EditorInsertSource.dtd)
locale/en-US/editor/EditorInsertChars.dtd (ui/dialogs/locale/en-US/EditorInsertChars.dtd)
locale/en-US/editor/EditorInsertTable.dtd (ui/dialogs/locale/en-US/EditorInsertTable.dtd)
locale/en-US/editor/EditorLinkProperties.dtd (ui/dialogs/locale/en-US/EditorLinkProperties.dtd)
locale/en-US/editor/EditorListProperties.dtd (ui/dialogs/locale/en-US/EditorListProperties.dtd)
locale/en-US/editor/EditorPageProperties.dtd (ui/dialogs/locale/en-US/EditorPageProperties.dtd)
locale/en-US/editor/EditorColorProperties.dtd (ui/dialogs/locale/en-US/EditorColorProperties.dtd)
locale/en-US/editor/EdColorPicker.dtd (ui/dialogs/locale/en-US/EdColorPicker.dtd)
locale/en-US/editor/EditorPersonalDictionary.dtd (ui/dialogs/locale/en-US/EditorPersonalDictionary.dtd)
locale/en-US/editor/EditorSpellCheck.dtd (ui/dialogs/locale/en-US/EditorSpellCheck.dtd)
locale/en-US/editor/EditorTableProperties.dtd (ui/dialogs/locale/en-US/EditorTableProperties.dtd)
locale/en-US/editor/EdNamedAnchorProperties.dtd (ui/dialogs/locale/en-US/EdNamedAnchorProperties.dtd)
locale/en-US/editor/EdDialogOverlay.dtd (ui/dialogs/locale/en-US/EdDialogOverlay.dtd)
locale/en-US/editor/EdAdvancedEdit.dtd (ui/dialogs/locale/en-US/EdAdvancedEdit.dtd)
locale/en-US/editor/EditorImageMap.dtd (ui/dialogs/locale/en-US/EditorImageMap.dtd)
locale/en-US/editor/EditorImageMapHotSpot.dtd (ui/dialogs/locale/en-US/EditorImageMapHotSpot.dtd)
locale/en-US/editor/EditConflict.dtd (ui/dialogs/locale/en-US/EditConflict.dtd)
locale/en-US/editor/EditorSaveAsCharset.dtd (ui/dialogs/locale/en-US/EditorSaveAsCharset.dtd)

Просмотреть файл

@ -29,3 +29,7 @@ DIRS= public idl base txmgr ui txtsvc
!endif
include <$(DEPTH)\config\rules.mak>
chrome::
$(REGCHROME) content editor comm.jar
$(REGCHROME) locale en-US/editor en-US.jar

Просмотреть файл

@ -39,3 +39,8 @@ CHROME_MISC = \
$(NULL)
include $(topsrcdir)/config/rules.mk
chrome::
@$(REGCHROME) content browser embed.jar; \
$(REGCHROME) skin modern/browser embed.jar; \
$(REGCHROME) locale en-US/browser embed.jar

Просмотреть файл

@ -1,11 +1,9 @@
packages/embedding.jar:
browser/content/mini-nav.js (content/mini-nav.js)
browser/content/mini-nav.xul (content/mini-nav.xul)
browser/skin/back.gif (skin/back.gif)
browser/skin/forward.gif (skin/forward.gif)
browser/skin/reload.gif (skin/reload.gif)
browser/skin/stop.gif (skin/stop.gif)
browser/skin/embedding.css (skin/embedding.css)
locales/en-US.jar:
browser/locale/embedding.dtd (locale/en-US/embedding.dtd)
embed.jar:
content/browser/mini-nav.js (content/mini-nav.js)
content/browser/mini-nav.xul (content/mini-nav.xul)
skin/modern/browser/back.gif (skin/back.gif)
skin/modern/browser/forward.gif (skin/forward.gif)
skin/modern/browser/reload.gif (skin/reload.gif)
skin/modern/browser/stop.gif (skin/stop.gif)
skin/modern/browser/embedding.css (skin/embedding.css)
locale/en-US/browser/embedding.dtd (locale/en-US/embedding.dtd)

Просмотреть файл

@ -1,2 +0,0 @@
locales/en-US.jar:
browser/locale/embedding.dtd

Просмотреть файл

@ -32,3 +32,8 @@ CHROME_MISC = \
$(NULL)
include <$(DEPTH)\config\rules.mak>
chrome::
$(REGCHROME) content browser embed.jar
$(REGCHROME) skin modern/browser embed.jar
$(REGCHROME) locale en-US/browser embed.jar

Просмотреть файл

@ -25,23 +25,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
CHROME_DIR = packages/embedding
CHROME_CONTENT_DIR = browser/content
CHROME_CONTENT = \
$(NULL)
SKINFILES = \
$(srcdir)/simple-shell.css \
$(srcdir)/embedding.css \
$(srcdir)/back.gif \
$(srcdir)/forward.gif \
$(srcdir)/reload.gif \
$(srcdir)/stop.gif
include $(topsrcdir)/config/rules.mk
INSTALLROOT = $(DIST)/bin/chrome/packages/embedding/browser
install::
$(INSTALL) $(SKINFILES) $(INSTALLROOT)/skin

Просмотреть файл

@ -30,7 +30,5 @@ include $(DEPTH)/config/autoconf.mk
DIRS = resources
INSTALLROOT = $(DIST)/bin/chrome/packages/cview/cview
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -30,15 +30,4 @@ include $(DEPTH)/config/autoconf.mk
DIRS = content locale skin
CHROME_DIR = packages/cview
CHROME_MISC_DIR = .
# this is the magic variable that causes the various parts of the
# chrome registration information to get created.
CHROME_TYPE = content locale skin
CHROME_MISC = \
manifest.rdf \
$(NULL)
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -36,97 +36,7 @@ include $(DEPTH)/config/autoconf.mk
DIRS = xul
JSLIBFILES = \
$(srcdir)/js/lib/utils.js \
$(srcdir)/js/lib/events.js \
$(srcdir)/js/lib/connection-xpcom.js \
$(srcdir)/js/lib/command-manager.js \
$(srcdir)/js/lib/irc.js \
$(srcdir)/js/lib/irc-debug.js \
$(NULL)
XULLIBFILES = \
$(srcdir)/xul/lib/listbox.js \
$(srcdir)/xul/lib/munger.js \
$(NULL)
CONTENTFILES = \
$(srcdir)/xul/content/chatzilla.xul \
$(srcdir)/xul/content/commands.js \
$(srcdir)/xul/content/handlers.js \
$(srcdir)/xul/content/readprefs.js \
$(srcdir)/xul/content/static.js \
$(srcdir)/xul/content/rdf.js \
$(NULL)
SKINFILES = \
$(srcdir)/xul/skin/chatzilla.css \
$(srcdir)/xul/skin/output-default.css \
$(srcdir)/xul/skin/output-loud.css \
$(srcdir)/xul/skin/output-marble.css \
$(NULL)
IMAGEFILES = \
$(srcdir)/xul/skin/images/xtal.jpg \
$(srcdir)/xul/skin/images/blue_rock.gif \
$(srcdir)/xul/skin/images/face-frown.gif \
$(srcdir)/xul/skin/images/face-tongue.gif \
$(srcdir)/xul/skin/images/face-angry.gif \
$(srcdir)/xul/skin/images/face-screw.gif \
$(srcdir)/xul/skin/images/face-wink.gif \
$(srcdir)/xul/skin/images/face-cry.gif \
$(srcdir)/xul/skin/images/face-smile.gif \
$(srcdir)/xul/skin/images/face-dunno.gif \
$(srcdir)/xul/skin/images/face-surprise.gif \
$(srcdir)/xul/skin/images/is-op.gif \
$(srcdir)/xul/skin/images/isnt-op.gif \
$(srcdir)/xul/skin/images/is-voice.gif \
$(srcdir)/xul/skin/images/isnt-voice.gif \
$(srcdir)/xul/skin/images/view-activity.gif \
$(srcdir)/xul/skin/images/view-attention.gif \
$(srcdir)/xul/skin/images/view-current.gif \
$(srcdir)/xul/skin/images/view-normal.gif \
$(NULL)
TESTFILES = \
$(srcdir)/xul/tests/test3.xul \
$(srcdir)/xul/tests/test3.css \
$(srcdir)/xul/tests/test3-output-default.css \
$(srcdir)/xul/tests/test3-output-marble.css \
$(srcdir)/xul/tests/test3-output-loud.css \
$(srcdir)/xul/tests/test3-static.js \
$(srcdir)/xul/tests/test3-handlers.js \
$(srcdir)/xul/tests/test3-commands.js \
$(srcdir)/xul/tests/test3-readprefs.js \
$(srcdir)/xul/tests/g_green.gif \
$(srcdir)/xul/tests/g_green_on.gif \
$(srcdir)/xul/tests/g_grey.gif \
$(srcdir)/xul/tests/g_grey_on.gif \
$(srcdir)/xul/tests/green-on.gif \
$(srcdir)/xul/tests/green-off.gif \
$(srcdir)/xul/tests/green-blink-1.gif \
$(srcdir)/xul/tests/yellow-on.gif \
$(srcdir)/xul/tests/xtal.jpg \
$(srcdir)/xul/tests/blue_rock.gif \
$(srcdir)/xul/tests/face-angry.gif \
$(srcdir)/xul/tests/face-cry.gif \
$(srcdir)/xul/tests/face-frown.gif \
$(srcdir)/xul/tests/face-smile.gif \
$(srcdir)/xul/tests/face-surprise.gif \
$(srcdir)/xul/tests/face-tongue.gif \
$(srcdir)/xul/tests/face-wink.gif \
$(srcdir)/xul/tests/face-screw.gif \
$(srcdir)/xul/tests/face-dunno.gif \
$(NULL)
include $(topsrcdir)/config/rules.mk
INSTALLROOT = $(DIST)/bin/chrome/packages/chatzilla/chatzilla
install::
$(INSTALL) $(JSLIBFILES) $(INSTALLROOT)/content/lib/js
$(INSTALL) $(XULLIBFILES) $(INSTALLROOT)/content/lib/xul
$(INSTALL) $(CONTENTFILES) $(INSTALLROOT)/content
$(INSTALL) $(SKINFILES) $(INSTALLROOT)/skin
$(INSTALL) $(IMAGEFILES) $(INSTALLROOT)/skin/images
$(INSTALL) $(srcdir)/js/lib/chatzilla-service.js $(DIST)/bin/components
$(INSTALL) ./js/lib/chatzilla-service.js $(DIST)/bin/components

Просмотреть файл

@ -1,49 +1,49 @@
packages/chatzilla.jar:
chatzilla/content/lib/js/utils.js (js/lib/utils.js)
chatzilla/content/lib/js/events.js (js/lib/events.js)
chatzilla/content/lib/js/connection-xpcom.js (js/lib/connection-xpcom.js)
chatzilla/content/lib/js/command-manager.js (js/lib/command-manager.js)
chatzilla/content/lib/js/irc.js (js/lib/irc.js)
chatzilla/content/lib/js/irc-debug.js (js/lib/irc-debug.js)
chatzilla/content/lib/xul/listbox.js (xul/lib/listbox.js)
chatzilla/content/lib/xul/munger.js (xul/lib/munger.js)
chatzilla/content/chatzilla.xul (xul/content/chatzilla.xul)
chatzilla/content/commands.js (xul/content/commands.js)
chatzilla/content/handlers.js (xul/content/handlers.js)
chatzilla/content/readprefs.js (xul/content/readprefs.js)
chatzilla/content/static.js (xul/content/static.js)
chatzilla/content/rdf.js (xul/content/rdf.js)
chatzilla/content/chatzillaOverlay.xul (xul/content/chatzillaOverlay.xul)
chatzilla/content/chatzillaOverlay.js (xul/content/chatzillaOverlay.js)
chatzilla/skin/chatzilla.css (xul/skin/chatzilla.css)
chatzilla/skin/output-default.css (xul/skin/output-default.css)
chatzilla/skin/output-loud.css (xul/skin/output-loud.css)
chatzilla/skin/output-marble.css (xul/skin/output-marble.css)
chatzilla/skin/images/xtal.jpg (xul/skin/images/xtal.jpg)
chatzilla/skin/images/blue_rock.gif (xul/skin/images/blue_rock.gif)
chatzilla/skin/images/face-frown.gif (xul/skin/images/face-frown.gif)
chatzilla/skin/images/face-tongue.gif (xul/skin/images/face-tongue.gif)
chatzilla/skin/images/face-angry.gif (xul/skin/images/face-angry.gif)
chatzilla/skin/images/face-screw.gif (xul/skin/images/face-screw.gif)
chatzilla/skin/images/face-wink.gif (xul/skin/images/face-wink.gif)
chatzilla/skin/images/face-cry.gif (xul/skin/images/face-cry.gif)
chatzilla/skin/images/face-smile.gif (xul/skin/images/face-smile.gif)
chatzilla/skin/images/face-dunno.gif (xul/skin/images/face-dunno.gif)
chatzilla/skin/images/face-surprise.gif (xul/skin/images/face-surprise.gif)
chatzilla/skin/images/is-op.gif (xul/skin/images/is-op.gif)
chatzilla/skin/images/isnt-op.gif (xul/skin/images/isnt-op.gif)
chatzilla/skin/images/is-voice.gif (xul/skin/images/is-voice.gif)
chatzilla/skin/images/isnt-voice.gif (xul/skin/images/isnt-voice.gif)
chatzilla/skin/images/view-activity.gif (xul/skin/images/view-activity.gif)
chatzilla/skin/images/view-attention.gif (xul/skin/images/view-attention.gif)
chatzilla/skin/images/view-current.gif (xul/skin/images/view-current.gif)
chatzilla/skin/images/view-normal.gif (xul/skin/images/view-normal.gif)
chatzilla/locale/chatzillaOverlay.dtd (xul/locale/en-US/chatzillaOverlay.dtd)
chatzilla/locale/pref-irc.dtd (xul/locale/en-US/pref-irc.dtd)
manifest.rdf (xul/manifest.rdf)
chatzilla.jar:
content/chatzilla/contents.rdf (xul/content/contents.rdf)
locale/en-US/chatzilla/contents.rdf (xul/locale/en-US/contents.rdf)
skin/modern/chatzilla/contents.rdf (xul/skin/contents.rdf)
content/chatzilla/lib/js/utils.js (js/lib/utils.js)
content/chatzilla/lib/js/events.js (js/lib/events.js)
content/chatzilla/lib/js/connection-xpcom.js (js/lib/connection-xpcom.js)
content/chatzilla/lib/js/command-manager.js (js/lib/command-manager.js)
content/chatzilla/lib/js/irc.js (js/lib/irc.js)
content/chatzilla/lib/js/irc-debug.js (js/lib/irc-debug.js)
content/chatzilla/lib/xul/listbox.js (xul/lib/listbox.js)
content/chatzilla/lib/xul/munger.js (xul/lib/munger.js)
content/chatzilla/chatzilla.xul (xul/content/chatzilla.xul)
content/chatzilla/commands.js (xul/content/commands.js)
content/chatzilla/handlers.js (xul/content/handlers.js)
content/chatzilla/readprefs.js (xul/content/readprefs.js)
content/chatzilla/static.js (xul/content/static.js)
content/chatzilla/rdf.js (xul/content/rdf.js)
content/chatzilla/chatzillaOverlay.xul (xul/content/chatzillaOverlay.xul)
content/chatzilla/chatzillaOverlay.js (xul/content/chatzillaOverlay.js)
skin/modern/chatzilla/chatzilla.css (xul/skin/chatzilla.css)
skin/modern/chatzilla/output-default.css (xul/skin/output-default.css)
skin/modern/chatzilla/output-loud.css (xul/skin/output-loud.css)
skin/modern/chatzilla/output-marble.css (xul/skin/output-marble.css)
skin/modern/chatzilla/images/xtal.jpg (xul/skin/images/xtal.jpg)
skin/modern/chatzilla/images/blue_rock.gif (xul/skin/images/blue_rock.gif)
skin/modern/chatzilla/images/face-frown.gif (xul/skin/images/face-frown.gif)
skin/modern/chatzilla/images/face-tongue.gif (xul/skin/images/face-tongue.gif)
skin/modern/chatzilla/images/face-angry.gif (xul/skin/images/face-angry.gif)
skin/modern/chatzilla/images/face-screw.gif (xul/skin/images/face-screw.gif)
skin/modern/chatzilla/images/face-wink.gif (xul/skin/images/face-wink.gif)
skin/modern/chatzilla/images/face-cry.gif (xul/skin/images/face-cry.gif)
skin/modern/chatzilla/images/face-smile.gif (xul/skin/images/face-smile.gif)
skin/modern/chatzilla/images/face-dunno.gif (xul/skin/images/face-dunno.gif)
skin/modern/chatzilla/images/face-surprise.gif (xul/skin/images/face-surprise.gif)
skin/modern/chatzilla/images/is-op.gif (xul/skin/images/is-op.gif)
skin/modern/chatzilla/images/isnt-op.gif (xul/skin/images/isnt-op.gif)
skin/modern/chatzilla/images/is-voice.gif (xul/skin/images/is-voice.gif)
skin/modern/chatzilla/images/isnt-voice.gif (xul/skin/images/isnt-voice.gif)
skin/modern/chatzilla/images/view-activity.gif (xul/skin/images/view-activity.gif)
skin/modern/chatzilla/images/view-attention.gif (xul/skin/images/view-attention.gif)
skin/modern/chatzilla/images/view-current.gif (xul/skin/images/view-current.gif)
skin/modern/chatzilla/images/view-normal.gif (xul/skin/images/view-normal.gif)
locale/en-US/chatzilla/chatzillaOverlay.dtd (xul/locale/en-US/chatzillaOverlay.dtd)
locale/en-US/chatzilla/pref-irc.dtd (xul/locale/en-US/pref-irc.dtd)
locales/en-US.jar:
communicator/locale/pref/pref-irc.dtd (xul/locale/en-US/pref-irc.dtd)
packages/core.jar:
communicator/content/pref/pref-irc.xul (xul/content/pref-irc.xul)
# XXX fix me...
comm.jar:
content/communicator/pref/pref-irc.xul (xul/content/pref-irc.xul)

Просмотреть файл

@ -38,3 +38,8 @@ CHROME_MISC = \
include $(topsrcdir)/config/rules.mk
chrome::
@$(REGCHROME) content chatzilla chatzilla.jar; \
$(REGCHROME) skin modern/chatzilla chatzilla.jar; \
$(REGCHROME) locale en-US/chatzilla chatzilla.jar; \
$(REGCHROME) content communicator comm.jar

Просмотреть файл

@ -25,20 +25,4 @@ srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
CHROME_DIR=packages/chatzilla
CHROME_CONTENT_DIR=chatzilla/content
CHROME_CONTENT = \
chatzillaOverlay.xul \
chatzillaOverlay.js \
$(NULL)
EXPORT_PREF_CONTENT = \
$(srcdir)/pref-irc.xul \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_PREF_CONTENT) $(DIST)/bin/chrome/packages/core/communicator/content/pref

Просмотреть файл

@ -25,19 +25,4 @@ srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
CHROME_DIR=packages/chatzilla
CHROME_L10N_DIR=chatzilla/locale
CHROME_L10N = \
chatzillaOverlay.dtd \
$(NULL)
EXPORT_PREF_CONTENT = \
$(srcdir)/pref-irc.dtd \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_PREF_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/pref

Просмотреть файл

@ -32,3 +32,9 @@ CHROME_MISC = \
$(NULL)
include <$(DEPTH)\config\rules.mak>
chrome::
$(REGCHROME) content chatzilla chatzilla.jar
$(REGCHROME) skin modern/chatzilla chatzilla.jar
$(REGCHROME) locale en-US/chatzilla chatzilla.jar
$(REGCHROME) content communicator comm.jar

Просмотреть файл

@ -40,8 +40,3 @@ override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/CookieViewer.xul $(srcdir)/CookieViewer.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
$(INSTALL) $(srcdir)/CookieViewer.properties $(srcdir)/CookieViewer.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -25,14 +25,5 @@ srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/CookieViewer.xul \
$(srcdir)/CookieViewer.js \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/packages/core/communicator/content/wallet

Просмотреть файл

@ -25,14 +25,6 @@ srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/CookieViewer.dtd \
$(srcdir)/CookieViewer.properties \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -40,12 +40,3 @@ override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/WalletEditor.xul $(srcdir)/WalletEditor.js $(srcdir)/privacy.xul $(DIST)/bin/chrome/packages/core/communicator/content/wallet
$(INSTALL) $(srcdir)/interview.html $(srcdir)/index.html $(srcdir)/privacy.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
$(INSTALL) $(srcdir)/sample1.html $(srcdir)/sample2.html $(srcdir)/sample3.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
$(INSTALL) $(srcdir)/sample4.html $(srcdir)/sample5.html $(srcdir)/sample6.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
$(INSTALL) $(srcdir)/sample7.html $(srcdir)/sample8.html $(srcdir)/sample9.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
$(INSTALL) $(srcdir)/sample10.html $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet
$(INSTALL) $(srcdir)/WalletEditor.properties $(srcdir)/WalletEditor.dtd $(srcdir)/privacy.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -25,14 +25,5 @@ srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/WalletEditor.xul \
$(srcdir)/WalletEditor.js \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/packages/core/communicator/content/wallet

Просмотреть файл

@ -25,14 +25,5 @@ srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/WalletEditor.dtd \
$(srcdir)/WalletEditor.properties \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -1,35 +1,35 @@
packages/core.jar:
communicator/content/wallet/CookieViewer.js (cookieviewer/CookieViewer.js)
communicator/content/wallet/CookieViewer.xul (cookieviewer/CookieViewer.xul)
communicator/content/wallet/WalletEditor.js (editor/WalletEditor.js)
communicator/content/wallet/WalletEditor.xul (editor/WalletEditor.xul)
communicator/content/wallet/privacy.xul (editor/privacy.xul)
communicator/content/wallet/SignonViewer.js (signonviewer/SignonViewer.js)
communicator/content/wallet/SignonViewer.xul (signonviewer/SignonViewer.xul)
communicator/content/wallet/WalletPreview.js (walletpreview/WalletPreview.js)
communicator/content/wallet/WalletPreview.xul (walletpreview/WalletPreview.xul)
comm.jar:
content/communicator/wallet/CookieViewer.js (cookieviewer/CookieViewer.js)
content/communicator/wallet/CookieViewer.xul (cookieviewer/CookieViewer.xul)
content/communicator/wallet/WalletEditor.js (editor/WalletEditor.js)
content/communicator/wallet/WalletEditor.xul (editor/WalletEditor.xul)
content/communicator/wallet/privacy.xul (editor/privacy.xul)
content/communicator/wallet/SignonViewer.js (signonviewer/SignonViewer.js)
content/communicator/wallet/SignonViewer.xul (signonviewer/SignonViewer.xul)
content/communicator/wallet/WalletPreview.js (walletpreview/WalletPreview.js)
content/communicator/wallet/WalletPreview.xul (walletpreview/WalletPreview.xul)
locales/en-US.jar:
communicator/locale/wallet/CookieViewer.properties (cookieviewer/CookieViewer.properties)
communicator/locale/wallet/CookieViewer.dtd (cookieviewer/CookieViewer.dtd)
communicator/locale/wallet/WalletEditor.properties (editor/WalletEditor.properties)
communicator/locale/wallet/WalletEditor.dtd (editor/WalletEditor.dtd)
communicator/locale/wallet/SignonViewer.properties (signonviewer/SignonViewer.properties)
communicator/locale/wallet/SignonViewer.dtd (signonviewer/SignonViewer.dtd)
communicator/locale/wallet/WalletPreview.properties (walletpreview/WalletPreview.properties)
communicator/locale/wallet/cookie.properties (src/cookie.properties)
communicator/locale/wallet/wallet.properties (src/wallet.properties)
communicator/locale/wallet/privacy.dtd (editor/privacy.dtd)
communicator/locale/wallet/privacy.html (editor/privacy.html)
communicator/locale/wallet/index.html (editor/index.html)
communicator/locale/wallet/sample1.html (editor/sample1.html)
communicator/locale/wallet/sample2.html (editor/sample2.html)
communicator/locale/wallet/sample3.html (editor/sample3.html)
communicator/locale/wallet/sample4.html (editor/sample4.html)
communicator/locale/wallet/sample5.html (editor/sample5.html)
communicator/locale/wallet/sample6.html (editor/sample6.html)
communicator/locale/wallet/sample7.html (editor/sample7.html)
communicator/locale/wallet/sample8.html (editor/sample8.html)
communicator/locale/wallet/sample9.html (editor/sample9.html)
communicator/locale/wallet/sample10.html (editor/sample10.html)
communicator/locale/wallet/interview.html (editor/interview.html)
en-US.jar:
locale/en-US/communicator/wallet/CookieViewer.properties (cookieviewer/CookieViewer.properties)
locale/en-US/communicator/wallet/CookieViewer.dtd (cookieviewer/CookieViewer.dtd)
locale/en-US/communicator/wallet/WalletEditor.properties (editor/WalletEditor.properties)
locale/en-US/communicator/wallet/WalletEditor.dtd (editor/WalletEditor.dtd)
locale/en-US/communicator/wallet/SignonViewer.properties (signonviewer/SignonViewer.properties)
locale/en-US/communicator/wallet/SignonViewer.dtd (signonviewer/SignonViewer.dtd)
locale/en-US/communicator/wallet/WalletPreview.properties (walletpreview/WalletPreview.properties)
locale/en-US/communicator/wallet/cookie.properties (src/cookie.properties)
locale/en-US/communicator/wallet/wallet.properties (src/wallet.properties)
locale/en-US/communicator/wallet/privacy.dtd (editor/privacy.dtd)
locale/en-US/communicator/wallet/privacy.html (editor/privacy.html)
locale/en-US/communicator/wallet/index.html (editor/index.html)
locale/en-US/communicator/wallet/sample1.html (editor/sample1.html)
locale/en-US/communicator/wallet/sample2.html (editor/sample2.html)
locale/en-US/communicator/wallet/sample3.html (editor/sample3.html)
locale/en-US/communicator/wallet/sample4.html (editor/sample4.html)
locale/en-US/communicator/wallet/sample5.html (editor/sample5.html)
locale/en-US/communicator/wallet/sample6.html (editor/sample6.html)
locale/en-US/communicator/wallet/sample7.html (editor/sample7.html)
locale/en-US/communicator/wallet/sample8.html (editor/sample8.html)
locale/en-US/communicator/wallet/sample9.html (editor/sample9.html)
locale/en-US/communicator/wallet/sample10.html (editor/sample10.html)
locale/en-US/communicator/wallet/interview.html (editor/interview.html)

Просмотреть файл

@ -41,7 +41,3 @@ override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/SignonViewer.xul $(srcdir)/SignonViewer.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
$(INSTALL) $(srcdir)/SignonViewer.properties $(srcdir)/SignonViewer.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/SignonViewer.xul $(srcdir)/SignonViewer.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet

Просмотреть файл

@ -28,7 +28,4 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) SignonViewer.properties SignonViewer.dtd $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -46,11 +46,6 @@ DEFAULTS_FILES = \
$(srcdir)/SchemaConcat.tbl \
$(NULL)
CHROME_FILES = \
$(srcdir)/cookie.properties \
$(srcdir)/wallet.properties \
$(NULL)
EXTRA_DSO_LDOPTS = \
-L$(DIST)/bin \
$(NSPR_LIBS) \
@ -61,5 +56,4 @@ include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(DEFAULTS_FILES) $(DIST)/bin/defaults/wallet
$(INSTALL) $(CHROME_FILES) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -79,8 +79,6 @@ clobber::
rm -f $(DIST)\bin\defaults\wallet\FieldSchema.tbl
rm -f $(DIST)\bin\defaults\wallet\URLFieldSchema.tbl
rm -f $(DIST)\bin\defaults\wallet\SchemaConcat.tbl
rm -f $(DIST)\bin\chrome\locales\en-US\communicator\locale\wallet\cookie.properties
rm -f $(DIST)\bin\chrome\locales\en-US\communicator\locale\wallet\wallet.properties
install:: $(DLL)
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).dll $(DIST)\bin\components
@ -88,5 +86,3 @@ install:: $(DLL)
$(MAKE_INSTALL) FieldSchema.tbl $(DIST)\bin\defaults\wallet
$(MAKE_INSTALL) URLFieldSchema.tbl $(DIST)\bin\defaults\wallet
$(MAKE_INSTALL) SchemaConcat.tbl $(DIST)\bin\defaults\wallet
$(MAKE_INSTALL) cookie.properties $(DIST)\bin\chrome\locales\en-US\communicator\locale\wallet
$(MAKE_INSTALL) wallet.properties $(DIST)\bin\chrome\locales\en-US\communicator\locale\wallet

Просмотреть файл

@ -26,13 +26,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/cookie.properties \
$(srcdir)/wallet.properties \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -41,7 +41,3 @@ override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/WalletPreview.xul $(srcdir)/WalletPreview.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet
$(INSTALL) $(srcdir)/WalletPreview.properties $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -27,7 +27,3 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/WalletPreview.xul $(srcdir)/WalletPreview.js $(DIST)/bin/chrome/packages/core/communicator/content/wallet

Просмотреть файл

@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/WalletPreview.properties $(DIST)/bin/chrome/locales/en-US/communicator/locale/wallet

Просмотреть файл

@ -1,4 +1,4 @@
packages/xmlterm.jar:
xmlterm.jar:
xmlterm/content/xmlterm.xul (ui/content/xmlterm.xul)
xmlterm/content/xmltermOverlay.xul (ui/content/xmltermOverlay.xul)
xmlterm/content/xmltermOverlay.js (ui/content/xmltermOverlay.js)
@ -7,11 +7,8 @@ packages/xmlterm.jar:
xmlterm/content/xmltermTips.html (ui/content/xmltermTips.html)
xmlterm/content/XMLTermChrome.js (ui/contentXMLTermChrome.js)
xmlterm/content/XMLTermCommands.js (ui/contentXMLTermCommands.js)
xmlterm/skin/xmlterm.css (ui/skin/xmlterm.css)
xmlterm/skin/xmltpage.css (ui/skin/xmltpage.css)
xmlterm/skin/wheel.gif (ui/skin/wheel.gif)
xmlterm/locale/xmltermOverlay.dtd (ui/locale/en-US/xmltermOverlay.dtd)
manifest.rdf (ui/manifest.rdf)

Просмотреть файл

@ -54,11 +54,7 @@ CPPSRCS = \
EXPORT_RESOURCE = \
$(srcdir)/charsetalias.properties \
$(srcdir)/charsetData.properties \
$(srcdir)/acceptlanguage.properties \
$(NULL)
EXPORT_LOCALE = \
$(srcdir)/charsetTitles.properties \
$(srcdir)/acceptlanguage.properties \
$(NULL)
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
@ -95,4 +91,3 @@ endif
install::
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/res
$(INSTALL) $(EXPORT_LOCALE) $(DIST)/bin/chrome/locales/en-US/global/locale

Просмотреть файл

@ -1,2 +1,2 @@
locales/en-US.jar:
global/locale/charsetTitles.properties
en-US.jar:
locale/en-US/global/charsetTitles.properties

Просмотреть файл

@ -95,7 +95,6 @@ install:: $(DLL)
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).lib $(DIST)\lib
$(MAKE_INSTALL) .\charsetalias.properties $(DIST)\bin\res
$(MAKE_INSTALL) .\wincharset.properties $(DIST)\bin\res
$(MAKE_INSTALL) charsetTitles.properties $(DIST)\bin\chrome\locales\en-US\global\locale
$(MAKE_INSTALL) charsetData.properties $(DIST)\bin\res
$(MAKE_INSTALL) .\acceptlanguage.properties $(DIST)\bin\res
@ -104,7 +103,6 @@ clobber::
rm -f $(DIST)\lib\$(DLLNAME).lib
rm -f $(DIST)\bin\res\charsetalias.properties
rm -f $(DIST)\bin\res\wincharset.properties
rm -f $(DIST)\bin\chrome\global\locale\charsetTitles.properties
rm -f $(DIST)\bin\res\charsetData.properties
rm -f $(DIST)\bin\res\acceptlanguage.properties

Просмотреть файл

@ -1,3 +1,3 @@
locales/en-US.jar:
communicator/locale/layout/HtmlForm.properties
en-US.jar:
locale/en-US/communicator/layout/HtmlForm.properties

Просмотреть файл

@ -30,3 +30,6 @@ DIRS = idl public base db news local mime compose imap addrbook import absync
include $(topsrcdir)/config/rules.mk
chrome::
@$(REGCHROME) content messenger messenger.jar; \
$(REGCHROME) locale en-US/messenger en-US.jar

Просмотреть файл

@ -26,12 +26,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/absync.properties \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/messenger/locale/addressbook

Просмотреть файл

@ -22,12 +22,3 @@
DEPTH=..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
DISTBROWSER=$(DIST)\bin\chrome\locales\en-US\messenger\locale\addressbook
install::
$(MAKE_INSTALL) absync.properties $(DISTBROWSER)
clobber::
rm -f $(DIST)\bin\chrome\locales\en-US\messenger\locale\addressbook\absync.properties

Просмотреть файл

@ -26,17 +26,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
SAMPLES_DIR = $(DIST)/bin/chrome/packages/messenger/messenger/content/addressbook
EXPORT_RESOURCE_SAMPLES = \
pref-addressing.xul \
pref-addressbookOverlay.xul \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Просмотреть файл

@ -22,10 +22,3 @@
DEPTH=..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) pref-addressing.xul $(DIST)\bin\chrome\packages\messenger\messenger\content\addressbook
$(MAKE_INSTALL) pref-addressbookOverlay.xul $(DIST)\bin\chrome\packages\messenger\messenger\content\addressbook
clobber::
rm -f $(DIST)\chrome\packages\messenger\messenger\content\addressbook\pref-addressing.xul

Просмотреть файл

@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(srcdir)/pref-addressing.dtd $(DIST)/bin/chrome/locales/en-US/messenger/locale/addressbook

Просмотреть файл

@ -22,12 +22,3 @@
DEPTH=..\..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
DISTBROWSER=$(DIST)\bin\chrome\locales\en-US\messenger\locale\addressbook
install::
$(MAKE_INSTALL) pref-addressing.dtd $(DISTBROWSER)
clobber::
rm -f $(DIST)\bin\chrome\locales\en-US\messenger\locale\addressbook\pref-addressing.dtd

Просмотреть файл

@ -26,35 +26,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
SAMPLES_DIR = $(DIST)/bin/chrome/packages/messenger/messenger/content/addressbook
EXPORT_RESOURCE_SAMPLES = \
abAddressBookNameDialog.js \
abAddressBookNameDialog.xul \
abCardOverlay.js \
abCardOverlay.xul \
abCardViewOverlay.js \
abCardViewOverlay.xul \
abCommon.js \
abDirTreeOverlay.xul \
abEditCardDialog.xul \
abNewCardDialog.xul \
abResultsTreeOverlay.xul \
abSelectAddressesDialog.js \
abSelectAddressesDialog.xul \
addressbook.js \
addressbook.xul \
abDragDrop.js \
abMailListDialog.js \
abMailListDialog.xul \
abListOverlay.xul \
abEditListDialog.xul \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Просмотреть файл

@ -26,21 +26,5 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/abAddressBookNameDialog.dtd \
$(srcdir)/abCardOverlay.dtd \
$(srcdir)/abCardViewOverlay.dtd \
$(srcdir)/abDirTreeOverlay.dtd \
$(srcdir)/abMainWindow.dtd \
$(srcdir)/abNewCardDialog.dtd \
$(srcdir)/abResultsTreeOverlay.dtd \
$(srcdir)/abSelectAddressesDialog.dtd \
$(srcdir)/abMailListDialog.dtd \
$(srcdir)/addressBook.properties \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/messenger/locale/addressbook

Просмотреть файл

@ -26,17 +26,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_DIR = $(DIST)/bin/chrome/locales/en-US/messenger/locale/isp
EXPORT_RESOURCE_FILES = \
aol.rdf \
example.rdf \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(EXPORT_DIR)/, $(EXPORT_RESOURCE_FILES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_FILES)) $(EXPORT_DIR)

Просмотреть файл

@ -26,12 +26,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/platformMailnewsOverlay.xul \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/packages/messenger/messenger/content

Просмотреть файл

@ -22,9 +22,3 @@
DEPTH=..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) platformMailnewsOverlay.xul $(DIST)\bin\chrome\packages\messenger\messenger\content
clobber::
rm -f $(DIST)\chrome\packages\messenger\messenger\content\platformMailnewsOverlay.xul

Просмотреть файл

@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(srcdir)/imapMsgs.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale

Просмотреть файл

@ -23,10 +23,3 @@ DEPTH=..\..\..\..\..
MODULE=msgimap
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) imapMsgs.properties $(DIST)\bin\chrome\locales\en-US\messenger\locale
clobber::
rm -f $(DIST)bin\chrome\locales\en-US\messenger\locale\imapMsgs.properties

Просмотреть файл

@ -18,11 +18,3 @@
DEPTH=..\..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) eudoraImportMsgs.properties $(DIST)\bin\chrome\locales\en-US\messenger\locale
clobber::
rm -f $(DIST)bin\chrome\locales\en-US\messenger\locale\eudoraImportMsgs.properties

Просмотреть файл

@ -22,10 +22,3 @@
DEPTH=..\..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) oeImportMsgs.properties $(DIST)\bin\chrome\locales\en-US\messenger\locale
clobber::
rm -f $(DIST)bin\chrome\locales\en-US\messenger\locale\oeImportMsgs.properties

Просмотреть файл

@ -22,11 +22,3 @@
DEPTH=..\..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) outlookImportMsgs.properties $(DIST)\bin\chrome\locales\en-US\messenger\locale
clobber::
rm -f $(DIST)bin\chrome\locales\en-US\messenger\locale\outlookImportMsgs.properties

Просмотреть файл

@ -1,243 +1,244 @@
packages/messenger.jar:
manifest.rdf (base/resources/content/manifest.rdf)
messenger/content/addressbook/pref-addressing.xul (addrbook/prefs/resources/content/pref-addressing.xul)
messenger/content/addressbook/pref-addressbookOverlay.xul (addrbook/prefs/resources/content/pref-addressbookOverlay.xul)
messenger/content/addressbook/abAddressBookNameDialog.js (addrbook/resources/content/abAddressBookNameDialog.js)
messenger/content/addressbook/abAddressBookNameDialog.xul (addrbook/resources/content/abAddressBookNameDialog.xul)
messenger/content/addressbook/abCardOverlay.js (addrbook/resources/content/abCardOverlay.js)
messenger/content/addressbook/abCardOverlay.xul (addrbook/resources/content/abCardOverlay.xul)
messenger/content/addressbook/abCardViewOverlay.js (addrbook/resources/content/abCardViewOverlay.js)
messenger/content/addressbook/abCardViewOverlay.xul (addrbook/resources/content/abCardViewOverlay.xul)
messenger/content/addressbook/abCommon.js (addrbook/resources/content/abCommon.js)
messenger/content/addressbook/abDirTreeOverlay.xul (addrbook/resources/content/abDirTreeOverlay.xul)
messenger/content/addressbook/abEditCardDialog.xul (addrbook/resources/content/abEditCardDialog.xul)
messenger/content/addressbook/abNewCardDialog.xul (addrbook/resources/content/abNewCardDialog.xul)
messenger/content/addressbook/abResultsTreeOverlay.xul (addrbook/resources/content/abResultsTreeOverlay.xul)
messenger/content/addressbook/abSelectAddressesDialog.js (addrbook/resources/content/abSelectAddressesDialog.js)
messenger/content/addressbook/abSelectAddressesDialog.xul (addrbook/resources/content/abSelectAddressesDialog.xul)
messenger/content/addressbook/addressbook.js (addrbook/resources/content/addressbook.js)
messenger/content/addressbook/addressbook.xul (addrbook/resources/content/addressbook.xul)
messenger/content/addressbook/abDragDrop.js (addrbook/resources/content/abDragDrop.js)
messenger/content/addressbook/abMailListDialog.xul (addrbook/resources/content/abMailListDialog.xul)
messenger/content/addressbook/abMailListDialog.js (addrbook/resources/content/abMailListDialog.js)
messenger/content/addressbook/abListOverlay.xul (addrbook/resources/content/abListOverlay.xul)
messenger/content/addressbook/abEditListDialog.xul (addrbook/resources/content/abEditListDialog.xul)
messenger/content/AccountManager.xul (base/prefs/resources/content/AccountManager.xul)
messenger/content/AccountManager.js (base/prefs/resources/content/AccountManager.js)
messenger/content/am-main.xul (base/prefs/resources/content/am-main.xul)
messenger/content/am-main.js (base/prefs/resources/content/am-main.js)
messenger/content/am-identity-advanced.xul (base/prefs/resources/content/am-identity-advanced.xul)
messenger/content/am-identity-advanced.js (base/prefs/resources/content/am-identity-advanced.js)
messenger/content/am-server.xul (base/prefs/resources/content/am-server.xul)
messenger/content/am-serverwithnoidentities.xul (base/prefs/resources/content/am-serverwithnoidentities.xul)
messenger/content/am-serverwithnoidentities.js (base/prefs/resources/content/am-serverwithnoidentities.js)
messenger/content/am-server.js (base/prefs/resources/content/am-server.js)
messenger/content/am-server-top.xul (base/prefs/resources/content/am-server-top.xul)
messenger/content/am-copies.xul (base/prefs/resources/content/am-copies.xul)
messenger/content/am-copies.js (base/prefs/resources/content/am-copies.js)
messenger/content/am-advanced.xul (base/prefs/resources/content/am-advanced.xul)
messenger/content/am-imap-advanced.xul (base/prefs/resources/content/am-imap-advanced.xul)
messenger/content/am-imap-advanced.js (base/prefs/resources/content/am-imap-advanced.js)
messenger/content/am-smtp.xul (base/prefs/resources/content/am-smtp.xul)
messenger/content/am-smtp.js (base/prefs/resources/content/am-smtp.js)
messenger/content/am-advanced_overlay.xul (base/prefs/resources/content/pref-advanced_overlay.xul)
messenger/content/am-appearance_overlay.xul (base/prefs/resources/content/pref-appearance_overlay.xul)
messenger/content/am-tree_overlay.xul (base/prefs/resources/content/pref-tree_overlay.xul)
messenger/content/pref-mailnews.xul (base/prefs/resources/content/pref-mailnews.xul)
messenger/content/pref-mailnews.js (base/prefs/resources/content/pref-mailnews.js)
messenger/content/pref-viewing_messages.xul (base/prefs/resources/content/pref-viewing_messages.xul)
messenger/content/pref-receipts.xul (base/prefs/resources/content/pref-receipts.xul)
messenger/content/custreceipt.xul (base/prefs/resources/content/custreceipt.xul)
messenger/content/AccountWizard.xul (base/prefs/resources/content/AccountWizard.xul)
messenger/content/AccountWizard.js (base/prefs/resources/content/AccountWizard.js)
messenger/content/aw-wizardAdapter.js (base/prefs/resources/content/aw-wizardAdapter.js)
messenger/content/aw-accounttype.xul (base/prefs/resources/content/aw-accounttype.xul)
messenger/content/aw-accounttype.js (base/prefs/resources/content/aw-accounttype.js)
messenger/content/aw-identity.xul (base/prefs/resources/content/aw-identity.xul)
messenger/content/aw-identity.js (base/prefs/resources/content/aw-identity.js)
messenger/content/aw-server.xul (base/prefs/resources/content/aw-server.xul)
messenger/content/aw-newsserver.xul (base/prefs/resources/content/aw-newsserver.xul)
messenger/content/aw-server.js (base/prefs/resources/content/aw-server.js)
messenger/content/aw-login.xul (base/prefs/resources/content/aw-login.xul)
messenger/content/aw-login.js (base/prefs/resources/content/aw-login.js)
messenger/content/aw-accname.xul (base/prefs/resources/content/aw-accname.xul)
messenger/content/aw-accname.js (base/prefs/resources/content/aw-accname.js)
messenger/content/aw-done.xul (base/prefs/resources/content/aw-done.xul)
messenger/content/aw-done.js (base/prefs/resources/content/aw-done.js)
messenger/content/accountUtils.js (base/prefs/resources/content/accountUtils.js)
messenger/content/ispUtils.js (base/prefs/resources/content/ispUtils.js)
messenger/content/SmtpServerList.xul (base/prefs/resources/content/SmtpServerList.xul)
messenger/content/SmtpServerList.js (base/prefs/resources/content/SmtpServerList.js)
messenger/content/SmtpServerEdit.xul (base/prefs/resources/content/SmtpServerEdit.xul)
messenger/content/SmtpServerEdit.js (base/prefs/resources/content/SmtpServerEdit.js)
messenger/content/smtpEditOverlay.xul (base/prefs/resources/content/smtpEditOverlay.xul)
messenger/content/smtpEditOverlay.js (base/prefs/resources/content/smtpEditOverlay.js)
messenger/content/mailPrefsOverlay.xul (base/prefs/resources/content/mailPrefsOverlay.xul)
messenger/content/messenger.xul (base/resources/content/messenger.xul)
messenger/content/mail3PaneWindowVertLayout.xul (base/resources/content/mail3PaneWindowVertLayout.xul)
messenger/content/mailWindowOverlay.xul (base/resources/content/mailWindowOverlay.xul)
messenger/content/mailWindowOverlay.js (base/resources/content/mailWindowOverlay.js)
messenger/content/mailWindow.js (base/resources/content/mailWindow.js)
messenger/content/messageWindow.xul (base/resources/content/messageWindow.xul)
messenger/content/messageWindow.js (base/resources/content/messageWindow.js)
messenger/content/folderPane.xul (base/resources/content/folderPane.xul)
messenger/content/threadPane.xul (base/resources/content/threadPane.xul)
messenger/content/threadPane.js (base/resources/content/threadPane.js)
messenger/content/msgHdrViewOverlay.xul (base/resources/content/msgHdrViewOverlay.xul)
messenger/content/msgHdrViewOverlay.js (base/resources/content/msgHdrViewOverlay.js)
messenger/content/msgHdrViewAddresses.js (base/resources/content/msgHdrViewAddresses.js)
messenger/content/widgetglue.js (base/resources/content/widgetglue.js)
messenger/content/commandglue.js (base/resources/content/commandglue.js)
messenger/content/mailCommands.js (base/resources/content/mailCommands.js)
messenger/content/shareglue.js (base/resources/content/shareglue.js)
messenger/content/subscribe.xul (base/resources/content/subscribe.xul)
messenger/content/subscribe.js (base/resources/content/subscribe.js)
messenger/content/sidebar-messenger.rdf (base/resources/content/sidebar-messenger.rdf)
messenger/content/newFolderNameDialog.xul (base/resources/content/newFolderNameDialog.xul)
messenger/content/newFolderNameDialog.js (base/resources/content/newFolderNameDialog.js)
messenger/content/msgViewNavigation.js (base/resources/content/msgViewNavigation.js)
messenger/content/msgMail3PaneWindow.js (base/resources/content/msgMail3PaneWindow.js)
messenger/content/mail3PaneWindowCommands.js (base/resources/content/mail3PaneWindowCommands.js)
messenger/content/msgFolderPickerOverlay.js (base/resources/content/msgFolderPickerOverlay.js)
messenger/content/msgFolderPickerOverlay.xul (base/resources/content/msgFolderPickerOverlay.xul)
messenger/content/renameFolderNameDialog.xul (base/resources/content/renameFolderNameDialog.xul)
messenger/content/messengerdnd.js (base/resources/content/messengerdnd.js)
messenger/content/mailContextMenus.js (base/resources/content/mailContextMenus.js)
messenger/content/msgPrintEngine.js (base/resources/content/msgPrintEngine.js)
messenger/content/msgPrintEngine.xul (base/resources/content/msgPrintEngine.xul)
messenger/content/openSaveAttachment.xul (base/resources/content/openSaveAttachment.xul)
messenger/content/openSaveAttachment.js (base/resources/content/openSaveAttachment.js)
messenger/content/mailTasksOverlay.xul (base/resources/content/mailTasksOverlay.xul)
messenger/content/mailNavigatorOverlay.xul (base/resources/content/mailNavigatorOverlay.xul)
messenger/content/mailEditorOverlay.xul (base/resources/content/mailEditorOverlay.xul)
messenger/content/mailABOverlay.xul (base/resources/content/mailABOverlay.xul)
messenger/content/mailMessengerOverlay.xul (base/resources/content/mailMessengerOverlay.xul)
messenger/content/mailMessengerComposeOverlay.xul (base/resources/content/mailMessengerComposeOverlay.xul)
messenger/content/mailOverlay.xul (base/resources/content/mailOverlay.xul)
messenger/content/mailWidgets.xml (base/resources/content/mailWidgets.xml)
messenger/content/platformMailnewsOverlay.xul (base/resources/content/win/platformMailnewsOverlay.xul)
messenger/content/SearchDialog.xul (base/search/resources/content/SearchDialog.xul)
messenger/content/SearchOptions.xul (base/search/resources/content/SearchOptions.xul)
messenger/content/SearchDialog.js (base/search/resources/content/SearchDialog.js)
messenger/content/searchTermOverlay.js (base/search/resources/content/searchTermOverlay.js)
messenger/content/searchTermOverlay.xul (base/search/resources/content/searchTermOverlay.xul)
messenger/content/FilterListDialog.xul (base/search/resources/content/FilterListDialog.xul)
messenger/content/FilterListDialog.js (base/search/resources/content/FilterListDialog.js)
messenger/content/FilterEditor.xul (base/search/resources/content/FilterEditor.xul)
messenger/content/FilterEditor.js (base/search/resources/content/FilterEditor.js)
messenger/content/messengercompose/pref-composing_messages.xul (compose/prefs/resources/content/pref-composing_messages.xul)
messenger/content/messengercompose/pref-formatting.xul (compose/prefs/resources/content/pref-formatting.xul)
messenger/content/messengercompose/messengercompose.xul (compose/resources/content/messengercompose.xul)
messenger/content/messengercompose/MsgComposeCommands.js (compose/resources/content/MsgComposeCommands.js)
messenger/content/messengercompose/addressingWidgetOverlay.js (compose/resources/content/addressingWidgetOverlay.js)
messenger/content/messengercompose/addressingWidgetOverlay.xul (compose/resources/content/addressingWidgetOverlay.xul)
messenger/content/messengercompose/askSendFormat.js (compose/resources/content/askSendFormat.js)
messenger/content/messengercompose/askSendFormat.xul (compose/resources/content/askSendFormat.xul)
messenger/content/messengercompose/mailComposeBindings.xml (compose/resources/content/mailComposeBindings.xml)
messenger/content/importDialog.js (import/resources/content/importDialog.js)
messenger/content/importDialog.xul (import/resources/content/importDialog.xul)
messenger/content/importProgress.xul (import/resources/content/importProgress.xul)
messenger/content/importProgress.js (import/resources/content/importProgress.js)
messenger/content/fieldMapExport.xul (import/resources/content/fieldMapExport.xul)
messenger/content/fieldMapExport.js (import/resources/content/fieldMapExport.js)
messenger/content/fieldMapImport.xul (import/resources/content/fieldMapImport.xul)
messenger/content/fieldMapImport.js (import/resources/content/fieldMapImport.js)
messenger/content/abookstat.js (mime/abstatus/resources/content/abookstat.js)
messenger/content/attach.js (mime/emitters/resources/content/attach.js)
messenger/content/mime.js (mime/resources/content/mime.js)
messenger/content/downloadheaders.js (news/resources/content/downloadheaders.js)
messenger/content/downloadheaders.xul (news/resources/content/downloadheaders.xul)
messenger/content/imapTest.js (base/resources/content/imapTest.js)
messenger/content/imapTest.xul (base/resources/content/imapTest.xul)
messenger/content/popTest.js (base/resources/content/popTest.js)
messenger/content/popTest.xul (base/resources/content/popTest.xul)
messenger/content/pref-advanced_overlay.xul (base/prefs/resources/content/pref-advanced_overlay.xul)
messenger/content/pref-appearance_overlay.xul (base/prefs/resources/content/pref-appearance_overlay.xul)
messenger.jar:
content/messenger/contents.rdf (base/resources/content/contents.rdf)
content/messenger/addressbook/pref-addressing.xul (addrbook/prefs/resources/content/pref-addressing.xul)
content/messenger/addressbook/pref-addressbookOverlay.xul (addrbook/prefs/resources/content/pref-addressbookOverlay.xul)
content/messenger/addressbook/abAddressBookNameDialog.js (addrbook/resources/content/abAddressBookNameDialog.js)
content/messenger/addressbook/abAddressBookNameDialog.xul (addrbook/resources/content/abAddressBookNameDialog.xul)
content/messenger/addressbook/abCardOverlay.js (addrbook/resources/content/abCardOverlay.js)
content/messenger/addressbook/abCardOverlay.xul (addrbook/resources/content/abCardOverlay.xul)
content/messenger/addressbook/abCardViewOverlay.js (addrbook/resources/content/abCardViewOverlay.js)
content/messenger/addressbook/abCardViewOverlay.xul (addrbook/resources/content/abCardViewOverlay.xul)
content/messenger/addressbook/abCommon.js (addrbook/resources/content/abCommon.js)
content/messenger/addressbook/abDirTreeOverlay.xul (addrbook/resources/content/abDirTreeOverlay.xul)
content/messenger/addressbook/abEditCardDialog.xul (addrbook/resources/content/abEditCardDialog.xul)
content/messenger/addressbook/abNewCardDialog.xul (addrbook/resources/content/abNewCardDialog.xul)
content/messenger/addressbook/abResultsTreeOverlay.xul (addrbook/resources/content/abResultsTreeOverlay.xul)
content/messenger/addressbook/abSelectAddressesDialog.js (addrbook/resources/content/abSelectAddressesDialog.js)
content/messenger/addressbook/abSelectAddressesDialog.xul (addrbook/resources/content/abSelectAddressesDialog.xul)
content/messenger/addressbook/addressbook.js (addrbook/resources/content/addressbook.js)
content/messenger/addressbook/addressbook.xul (addrbook/resources/content/addressbook.xul)
content/messenger/addressbook/abDragDrop.js (addrbook/resources/content/abDragDrop.js)
content/messenger/addressbook/abMailListDialog.xul (addrbook/resources/content/abMailListDialog.xul)
content/messenger/addressbook/abMailListDialog.js (addrbook/resources/content/abMailListDialog.js)
content/messenger/addressbook/abListOverlay.xul (addrbook/resources/content/abListOverlay.xul)
content/messenger/addressbook/abEditListDialog.xul (addrbook/resources/content/abEditListDialog.xul)
content/messenger/AccountManager.xul (base/prefs/resources/content/AccountManager.xul)
content/messenger/AccountManager.js (base/prefs/resources/content/AccountManager.js)
content/messenger/am-main.xul (base/prefs/resources/content/am-main.xul)
content/messenger/am-main.js (base/prefs/resources/content/am-main.js)
content/messenger/am-identity-advanced.xul (base/prefs/resources/content/am-identity-advanced.xul)
content/messenger/am-identity-advanced.js (base/prefs/resources/content/am-identity-advanced.js)
content/messenger/am-server.xul (base/prefs/resources/content/am-server.xul)
content/messenger/am-serverwithnoidentities.xul (base/prefs/resources/content/am-serverwithnoidentities.xul)
content/messenger/am-serverwithnoidentities.js (base/prefs/resources/content/am-serverwithnoidentities.js)
content/messenger/am-server.js (base/prefs/resources/content/am-server.js)
content/messenger/am-server-top.xul (base/prefs/resources/content/am-server-top.xul)
content/messenger/am-copies.xul (base/prefs/resources/content/am-copies.xul)
content/messenger/am-copies.js (base/prefs/resources/content/am-copies.js)
content/messenger/am-advanced.xul (base/prefs/resources/content/am-advanced.xul)
content/messenger/am-imap-advanced.xul (base/prefs/resources/content/am-imap-advanced.xul)
content/messenger/am-imap-advanced.js (base/prefs/resources/content/am-imap-advanced.js)
content/messenger/am-smtp.xul (base/prefs/resources/content/am-smtp.xul)
content/messenger/am-smtp.js (base/prefs/resources/content/am-smtp.js)
content/messenger/am-advanced_overlay.xul (base/prefs/resources/content/pref-advanced_overlay.xul)
content/messenger/am-appearance_overlay.xul (base/prefs/resources/content/pref-appearance_overlay.xul)
content/messenger/am-tree_overlay.xul (base/prefs/resources/content/pref-tree_overlay.xul)
content/messenger/pref-mailnews.xul (base/prefs/resources/content/pref-mailnews.xul)
content/messenger/pref-mailnews.js (base/prefs/resources/content/pref-mailnews.js)
content/messenger/pref-viewing_messages.xul (base/prefs/resources/content/pref-viewing_messages.xul)
content/messenger/pref-receipts.xul (base/prefs/resources/content/pref-receipts.xul)
content/messenger/custreceipt.xul (base/prefs/resources/content/custreceipt.xul)
content/messenger/AccountWizard.xul (base/prefs/resources/content/AccountWizard.xul)
content/messenger/AccountWizard.js (base/prefs/resources/content/AccountWizard.js)
content/messenger/aw-wizardAdapter.js (base/prefs/resources/content/aw-wizardAdapter.js)
content/messenger/aw-accounttype.xul (base/prefs/resources/content/aw-accounttype.xul)
content/messenger/aw-accounttype.js (base/prefs/resources/content/aw-accounttype.js)
content/messenger/aw-identity.xul (base/prefs/resources/content/aw-identity.xul)
content/messenger/aw-identity.js (base/prefs/resources/content/aw-identity.js)
content/messenger/aw-server.xul (base/prefs/resources/content/aw-server.xul)
content/messenger/aw-newsserver.xul (base/prefs/resources/content/aw-newsserver.xul)
content/messenger/aw-server.js (base/prefs/resources/content/aw-server.js)
content/messenger/aw-login.xul (base/prefs/resources/content/aw-login.xul)
content/messenger/aw-login.js (base/prefs/resources/content/aw-login.js)
content/messenger/aw-accname.xul (base/prefs/resources/content/aw-accname.xul)
content/messenger/aw-accname.js (base/prefs/resources/content/aw-accname.js)
content/messenger/aw-done.xul (base/prefs/resources/content/aw-done.xul)
content/messenger/aw-done.js (base/prefs/resources/content/aw-done.js)
content/messenger/accountUtils.js (base/prefs/resources/content/accountUtils.js)
content/messenger/ispUtils.js (base/prefs/resources/content/ispUtils.js)
content/messenger/SmtpServerList.xul (base/prefs/resources/content/SmtpServerList.xul)
content/messenger/SmtpServerList.js (base/prefs/resources/content/SmtpServerList.js)
content/messenger/SmtpServerEdit.xul (base/prefs/resources/content/SmtpServerEdit.xul)
content/messenger/SmtpServerEdit.js (base/prefs/resources/content/SmtpServerEdit.js)
content/messenger/smtpEditOverlay.xul (base/prefs/resources/content/smtpEditOverlay.xul)
content/messenger/smtpEditOverlay.js (base/prefs/resources/content/smtpEditOverlay.js)
content/messenger/mailPrefsOverlay.xul (base/prefs/resources/content/mailPrefsOverlay.xul)
content/messenger/messenger.xul (base/resources/content/messenger.xul)
content/messenger/mail3PaneWindowVertLayout.xul (base/resources/content/mail3PaneWindowVertLayout.xul)
content/messenger/mailWindowOverlay.xul (base/resources/content/mailWindowOverlay.xul)
content/messenger/mailWindowOverlay.js (base/resources/content/mailWindowOverlay.js)
content/messenger/mailWindow.js (base/resources/content/mailWindow.js)
content/messenger/messageWindow.xul (base/resources/content/messageWindow.xul)
content/messenger/messageWindow.js (base/resources/content/messageWindow.js)
content/messenger/folderPane.xul (base/resources/content/folderPane.xul)
content/messenger/threadPane.xul (base/resources/content/threadPane.xul)
content/messenger/threadPane.js (base/resources/content/threadPane.js)
content/messenger/msgHdrViewOverlay.xul (base/resources/content/msgHdrViewOverlay.xul)
content/messenger/msgHdrViewOverlay.js (base/resources/content/msgHdrViewOverlay.js)
content/messenger/msgHdrViewAddresses.js (base/resources/content/msgHdrViewAddresses.js)
content/messenger/widgetglue.js (base/resources/content/widgetglue.js)
content/messenger/commandglue.js (base/resources/content/commandglue.js)
content/messenger/mailCommands.js (base/resources/content/mailCommands.js)
content/messenger/shareglue.js (base/resources/content/shareglue.js)
content/messenger/subscribe.xul (base/resources/content/subscribe.xul)
content/messenger/subscribe.js (base/resources/content/subscribe.js)
content/messenger/sidebar-messenger.rdf (base/resources/content/sidebar-messenger.rdf)
content/messenger/newFolderNameDialog.xul (base/resources/content/newFolderNameDialog.xul)
content/messenger/newFolderNameDialog.js (base/resources/content/newFolderNameDialog.js)
content/messenger/msgViewNavigation.js (base/resources/content/msgViewNavigation.js)
content/messenger/msgMail3PaneWindow.js (base/resources/content/msgMail3PaneWindow.js)
content/messenger/mail3PaneWindowCommands.js (base/resources/content/mail3PaneWindowCommands.js)
content/messenger/msgFolderPickerOverlay.js (base/resources/content/msgFolderPickerOverlay.js)
content/messenger/msgFolderPickerOverlay.xul (base/resources/content/msgFolderPickerOverlay.xul)
content/messenger/renameFolderNameDialog.xul (base/resources/content/renameFolderNameDialog.xul)
content/messenger/messengerdnd.js (base/resources/content/messengerdnd.js)
content/messenger/mailContextMenus.js (base/resources/content/mailContextMenus.js)
content/messenger/msgPrintEngine.js (base/resources/content/msgPrintEngine.js)
content/messenger/msgPrintEngine.xul (base/resources/content/msgPrintEngine.xul)
content/messenger/openSaveAttachment.xul (base/resources/content/openSaveAttachment.xul)
content/messenger/openSaveAttachment.js (base/resources/content/openSaveAttachment.js)
content/messenger/mailTasksOverlay.xul (base/resources/content/mailTasksOverlay.xul)
content/messenger/mailNavigatorOverlay.xul (base/resources/content/mailNavigatorOverlay.xul)
content/messenger/mailEditorOverlay.xul (base/resources/content/mailEditorOverlay.xul)
content/messenger/mailABOverlay.xul (base/resources/content/mailABOverlay.xul)
content/messenger/mailMessengerOverlay.xul (base/resources/content/mailMessengerOverlay.xul)
content/messenger/mailMessengerComposeOverlay.xul (base/resources/content/mailMessengerComposeOverlay.xul)
content/messenger/mailOverlay.xul (base/resources/content/mailOverlay.xul)
content/messenger/mailWidgets.xml (base/resources/content/mailWidgets.xml)
content/messenger/platformMailnewsOverlay.xul (base/resources/content/win/platformMailnewsOverlay.xul)
content/messenger/SearchDialog.xul (base/search/resources/content/SearchDialog.xul)
content/messenger/SearchOptions.xul (base/search/resources/content/SearchOptions.xul)
content/messenger/SearchDialog.js (base/search/resources/content/SearchDialog.js)
content/messenger/searchTermOverlay.js (base/search/resources/content/searchTermOverlay.js)
content/messenger/searchTermOverlay.xul (base/search/resources/content/searchTermOverlay.xul)
content/messenger/FilterListDialog.xul (base/search/resources/content/FilterListDialog.xul)
content/messenger/FilterListDialog.js (base/search/resources/content/FilterListDialog.js)
content/messenger/FilterEditor.xul (base/search/resources/content/FilterEditor.xul)
content/messenger/FilterEditor.js (base/search/resources/content/FilterEditor.js)
content/messenger/messengercompose/pref-composing_messages.xul (compose/prefs/resources/content/pref-composing_messages.xul)
content/messenger/messengercompose/pref-formatting.xul (compose/prefs/resources/content/pref-formatting.xul)
content/messenger/messengercompose/messengercompose.xul (compose/resources/content/messengercompose.xul)
content/messenger/messengercompose/MsgComposeCommands.js (compose/resources/content/MsgComposeCommands.js)
content/messenger/messengercompose/addressingWidgetOverlay.js (compose/resources/content/addressingWidgetOverlay.js)
content/messenger/messengercompose/addressingWidgetOverlay.xul (compose/resources/content/addressingWidgetOverlay.xul)
content/messenger/messengercompose/askSendFormat.js (compose/resources/content/askSendFormat.js)
content/messenger/messengercompose/askSendFormat.xul (compose/resources/content/askSendFormat.xul)
content/messenger/messengercompose/mailComposeBindings.xml (compose/resources/content/mailComposeBindings.xml)
content/messenger/importDialog.js (import/resources/content/importDialog.js)
content/messenger/importDialog.xul (import/resources/content/importDialog.xul)
content/messenger/importProgress.xul (import/resources/content/importProgress.xul)
content/messenger/importProgress.js (import/resources/content/importProgress.js)
content/messenger/fieldMapExport.xul (import/resources/content/fieldMapExport.xul)
content/messenger/fieldMapExport.js (import/resources/content/fieldMapExport.js)
content/messenger/fieldMapImport.xul (import/resources/content/fieldMapImport.xul)
content/messenger/fieldMapImport.js (import/resources/content/fieldMapImport.js)
content/messenger/abookstat.js (mime/abstatus/resources/content/abookstat.js)
content/messenger/attach.js (mime/emitters/resources/content/attach.js)
content/messenger/mime.js (mime/resources/content/mime.js)
content/messenger/downloadheaders.js (news/resources/content/downloadheaders.js)
content/messenger/downloadheaders.xul (news/resources/content/downloadheaders.xul)
content/messenger/imapTest.js (base/resources/content/imapTest.js)
content/messenger/imapTest.xul (base/resources/content/imapTest.xul)
content/messenger/popTest.js (base/resources/content/popTest.js)
content/messenger/popTest.xul (base/resources/content/popTest.xul)
content/messenger/pref-advanced_overlay.xul (base/prefs/resources/content/pref-advanced_overlay.xul)
content/messenger/pref-appearance_overlay.xul (base/prefs/resources/content/pref-appearance_overlay.xul)
locales/en-US.jar:
messenger/locale/addressbook/abAddressBookNameDialog.dtd (addrbook/resources/locale/en-US/abAddressBookNameDialog.dtd)
messenger/locale/addressbook/abCardOverlay.dtd (addrbook/resources/locale/en-US/abCardOverlay.dtd)
messenger/locale/addressbook/abCardViewOverlay.dtd (addrbook/resources/locale/en-US/abCardViewOverlay.dtd)
messenger/locale/addressbook/abDirTreeOverlay.dtd (addrbook/resources/locale/en-US/abDirTreeOverlay.dtd)
messenger/locale/addressbook/abMainWindow.dtd (addrbook/resources/locale/en-US/abMainWindow.dtd)
messenger/locale/addressbook/abNewCardDialog.dtd (addrbook/resources/locale/en-US/abNewCardDialog.dtd)
messenger/locale/addressbook/abResultsTreeOverlay.dtd (addrbook/resources/locale/en-US/abResultsTreeOverlay.dtd)
messenger/locale/addressbook/abSelectAddressesDialog.dtd (addrbook/resources/locale/en-US/abSelectAddressesDialog.dtd)
messenger/locale/addressbook/abMailListDialog.dtd (addrbook/resources/locale/en-US/abMailListDialog.dtd)
messenger/locale/addressbook/addressBook.properties (addrbook/resources/locale/en-US/addressBook.properties)
messenger/locale/messenger.dtd (base/resources/locale/en-US/messenger.dtd)
messenger/locale/messenger.properties (base/resources/locale/en-US/messenger.properties)
messenger/locale/threadpane.dtd (base/resources/locale/en-US/threadpane.dtd)
messenger/locale/folderpane.dtd (base/resources/locale/en-US/folderpane.dtd)
messenger/locale/newFolderNameDialog.dtd (base/resources/locale/en-US/newFolderNameDialog.dtd)
messenger/locale/subscribe.dtd (base/resources/locale/en-US/subscribe.dtd)
messenger/locale/subscribe.properties (base/resources/locale/en-US/subscribe.properties)
messenger/locale/sidebar-messenger.dtd (base/resources/locale/en-US/sidebar-messenger.dtd)
messenger/locale/sidebar-messenger-rdf.dtd (base/resources/locale/en-US/sidebar-messenger-rdf.dtd)
messenger/locale/msgFolderPickerOverlay.dtd (base/resources/locale/en-US/msgFolderPickerOverlay.dtd)
messenger/locale/msgHdrViewOverlay.dtd (base/resources/locale/en-US/msgHdrViewOverlay.dtd)
messenger/locale/mailTasksOverlay.dtd (base/resources/locale/en-US/mailTasksOverlay.dtd)
messenger/locale/mailNavigatorOverlay.dtd (base/resources/locale/en-US/mailNavigatorOverlay.dtd)
messenger/locale/mailEditorOverlay.dtd (base/resources/locale/en-US/mailEditorOverlay.dtd)
messenger/locale/mailOverlay.dtd (base/resources/locale/en-US/mailOverlay.dtd)
messenger/locale/SearchDialog.dtd (base/search/resources/locale/en-US/SearchDialog.dtd)
messenger/locale/SearchOptions.dtd (base/search/resources/locale/en-US/SearchOptions.dtd)
messenger/locale/FilterListDialog.dtd (base/search/resources/locale/en-US/FilterListDialog.dtd)
messenger/locale/FilterEditor.dtd (base/search/resources/locale/en-US/FilterEditor.dtd)
messenger/locale/search-attributes.properties (base/search/resources/locale/en-US/search-attributes.properties)
messenger/locale/search-operators.properties (base/search/resources/locale/en-US/search-operators.properties)
messenger/locale/search.properties (base/search/resources/locale/en-US/search.properties)
messenger/locale/filter.properties (base/search/resources/locale/en-US/filter.properties)
messenger/locale/searchTermOverlay.dtd (base/search/resources/locale/en-US/searchTermOverlay.dtd)
messenger/locale/messengercompose/pref-composing_messages.dtd (compose/prefs/resources/locale/en-US/pref-composing_messages.dtd)
messenger/locale/messengercompose/pref-formatting.dtd (compose/prefs/resources/locale/en-US/pref-formatting.dtd)
messenger/locale/messengercompose/messengercompose.dtd (compose/resources/locale/en-US/messengercompose.dtd)
messenger/locale/messengercompose/addressingWidgetOverlay.dtd (compose/resources/locale/en-US/addressingWidgetOverlay.dtd)
messenger/locale/messengercompose/askSendFormat.dtd (compose/resources/locale/en-US/askSendFormat.dtd)
messenger/locale/messengercompose/composeMsgs.properties (compose/resources/locale/en-US/composeMsgs.properties)
messenger/locale/imapMsgs.properties (imap/resources/locale/en-US/imapMsgs.properties)
messenger/locale/eudoraImportMsgs.properties (import/eudora/resources/locale/en-US/eudoraImportMsgs.properties)
messenger/locale/oeImportMsgs.properties (import/oexpress/resources/locale/en-us/oeImportMsgs.properties)
messenger/locale/outlookImportMsgs.properties (import/outlook/resources/locale/en-us/outlookImportMsgs.properties)
messenger/locale/importMsgs.properties (import/resources/locale/en-us/importMsgs.properties)
messenger/locale/fieldMapExport.dtd (import/resources/locale/en-us/fieldMapExport.dtd)
messenger/locale/fieldMapImport.dtd (import/resources/locale/en-us/fieldMapImport.dtd)
messenger/locale/importDialog.dtd (import/resources/locale/en-us/importDialog.dtd)
messenger/locale/textImportMsgs.properties (import/text/resources/locale/en-US/textImportMsgs.properties)
messenger/locale/localMsgs.properties (local/resources/locale/en-US/localMsgs.properties)
messenger/locale/downloadheaders.dtd (news/resources/locale/en-US/downloadheaders.dtd)
messenger/locale/news.properties (news/resources/locale/en-US/news.properties)
messenger/locale/custreceipt.dtd (base/prefs/resources/locale/en-US/custreceipt.dtd)
messenger/locale/pref-diskspace.dtd (base/prefs/resources/locale/en-US/pref-diskspace.dtd)
messenger/locale/pref-mailnews.dtd (base/prefs/resources/locale/en-US/pref-mailnews.dtd)
messenger/locale/pref-receipts.dtd (base/prefs/resources/locale/en-US/pref-receipts.dtd)
messenger/locale/pref-viewing_messages.dtd (base/prefs/resources/locale/en-US/pref-viewing_messages.dtd)
messenger/locale/aw-accname.dtd (base/prefs/resources/locale/en-US/aw-accname.dtd)
messenger/locale/aw-accounttype.dtd (base/prefs/resources/locale/en-US/aw-accounttype.dtd)
messenger/locale/aw-done.dtd (base/prefs/resources/locale/en-US/aw-done.dtd)
messenger/locale/aw-email.dtd (base/prefs/resources/locale/en-US/aw-email.dtd)
messenger/locale/aw-identity.dtd (base/prefs/resources/locale/en-US/aw-identity.dtd)
messenger/locale/aw-login.dtd (base/prefs/resources/locale/en-US/aw-login.dtd)
messenger/locale/aw-mailtype.dtd (base/prefs/resources/locale/en-US/aw-mailtype.dtd)
messenger/locale/aw-server.dtd (base/prefs/resources/locale/en-US/aw-server.dtd)
messenger/locale/AccountManager.dtd (base/prefs/resources/locale/en-US/AccountManager.dtd)
messenger/locale/AccountWizard.dtd (base/prefs/resources/locale/en-US/AccountWizard.dtd)
messenger/locale/am-advanced.dtd (base/prefs/resources/locale/en-US/am-advanced.dtd)
messenger/locale/am-imap-advanced.dtd (base/prefs/resources/locale/en-US/am-imap-advanced.dtd)
messenger/locale/am-copies.dtd (base/prefs/resources/locale/en-US/am-copies.dtd)
messenger/locale/am-main.dtd (base/prefs/resources/locale/en-US/am-main.dtd)
messenger/locale/am-identity-advanced.dtd (base/prefs/resources/locale/en-US/am-identity-advanced.dtd)
messenger/locale/am-server-top.dtd (base/prefs/resources/locale/en-US/am-server-top.dtd)
messenger/locale/prefs.properties (base/prefs/resources/locale/en-US/prefs.properties)
messenger/locale/am-serverwithnoidentities.dtd (base/prefs/resources/locale/en-US/am-serverwithnoidentities.dtd)
messenger/locale/SmtpServerList.dtd (base/prefs/resources/locale/en-US/SmtpServerList.dtd)
messenger/locale/smtpEditOverlay.dtd (base/prefs/resources/locale/en-US/smtpEditOverlay.dtd)
messenger/locale/mailPrefsOverlay.dtd (base/prefs/resources/locale/en-US/mailPrefsOverlay.dtd)
messenger/locale/addressbook/absync.properties (absync/resources/locale/en-US/absync.properties)
messenger/locale/addressbook/pref-addressing.dtd (addrbook/prefs/resources/locale/en-US/pref-addressing.dtd)
messenger/locale/mime.properties (mime/resources/mime.properties)
messenger/locale/mimeheader.properties (mime/resources/mimeheader.properties)
messenger/locale/vcard.properties (mime/cthandlers/resources/vcard.properties)
en-US.jar:
locale/en-US/messenger/contents.rdf (base/resources/locale/en-US/contents.rdf)
locale/en-US/messenger/addressbook/abAddressBookNameDialog.dtd (addrbook/resources/locale/en-US/abAddressBookNameDialog.dtd)
locale/en-US/messenger/addressbook/abCardOverlay.dtd (addrbook/resources/locale/en-US/abCardOverlay.dtd)
locale/en-US/messenger/addressbook/abCardViewOverlay.dtd (addrbook/resources/locale/en-US/abCardViewOverlay.dtd)
locale/en-US/messenger/addressbook/abDirTreeOverlay.dtd (addrbook/resources/locale/en-US/abDirTreeOverlay.dtd)
locale/en-US/messenger/addressbook/abMainWindow.dtd (addrbook/resources/locale/en-US/abMainWindow.dtd)
locale/en-US/messenger/addressbook/abNewCardDialog.dtd (addrbook/resources/locale/en-US/abNewCardDialog.dtd)
locale/en-US/messenger/addressbook/abResultsTreeOverlay.dtd (addrbook/resources/locale/en-US/abResultsTreeOverlay.dtd)
locale/en-US/messenger/addressbook/abSelectAddressesDialog.dtd (addrbook/resources/locale/en-US/abSelectAddressesDialog.dtd)
locale/en-US/messenger/addressbook/abMailListDialog.dtd (addrbook/resources/locale/en-US/abMailListDialog.dtd)
locale/en-US/messenger/addressbook/addressBook.properties (addrbook/resources/locale/en-US/addressBook.properties)
locale/en-US/messenger/messenger.dtd (base/resources/locale/en-US/messenger.dtd)
locale/en-US/messenger/messenger.properties (base/resources/locale/en-US/messenger.properties)
locale/en-US/messenger/threadpane.dtd (base/resources/locale/en-US/threadpane.dtd)
locale/en-US/messenger/folderpane.dtd (base/resources/locale/en-US/folderpane.dtd)
locale/en-US/messenger/newFolderNameDialog.dtd (base/resources/locale/en-US/newFolderNameDialog.dtd)
locale/en-US/messenger/subscribe.dtd (base/resources/locale/en-US/subscribe.dtd)
locale/en-US/messenger/subscribe.properties (base/resources/locale/en-US/subscribe.properties)
locale/en-US/messenger/sidebar-messenger.dtd (base/resources/locale/en-US/sidebar-messenger.dtd)
locale/en-US/messenger/sidebar-messenger-rdf.dtd (base/resources/locale/en-US/sidebar-messenger-rdf.dtd)
locale/en-US/messenger/msgFolderPickerOverlay.dtd (base/resources/locale/en-US/msgFolderPickerOverlay.dtd)
locale/en-US/messenger/msgHdrViewOverlay.dtd (base/resources/locale/en-US/msgHdrViewOverlay.dtd)
locale/en-US/messenger/mailTasksOverlay.dtd (base/resources/locale/en-US/mailTasksOverlay.dtd)
locale/en-US/messenger/mailNavigatorOverlay.dtd (base/resources/locale/en-US/mailNavigatorOverlay.dtd)
locale/en-US/messenger/mailEditorOverlay.dtd (base/resources/locale/en-US/mailEditorOverlay.dtd)
locale/en-US/messenger/mailOverlay.dtd (base/resources/locale/en-US/mailOverlay.dtd)
locale/en-US/messenger/SearchDialog.dtd (base/search/resources/locale/en-US/SearchDialog.dtd)
locale/en-US/messenger/SearchOptions.dtd (base/search/resources/locale/en-US/SearchOptions.dtd)
locale/en-US/messenger/FilterListDialog.dtd (base/search/resources/locale/en-US/FilterListDialog.dtd)
locale/en-US/messenger/FilterEditor.dtd (base/search/resources/locale/en-US/FilterEditor.dtd)
locale/en-US/messenger/search-attributes.properties (base/search/resources/locale/en-US/search-attributes.properties)
locale/en-US/messenger/search-operators.properties (base/search/resources/locale/en-US/search-operators.properties)
locale/en-US/messenger/search.properties (base/search/resources/locale/en-US/search.properties)
locale/en-US/messenger/filter.properties (base/search/resources/locale/en-US/filter.properties)
locale/en-US/messenger/searchTermOverlay.dtd (base/search/resources/locale/en-US/searchTermOverlay.dtd)
locale/en-US/messenger/messengercompose/pref-composing_messages.dtd (compose/prefs/resources/locale/en-US/pref-composing_messages.dtd)
locale/en-US/messenger/messengercompose/pref-formatting.dtd (compose/prefs/resources/locale/en-US/pref-formatting.dtd)
locale/en-US/messenger/messengercompose/messengercompose.dtd (compose/resources/locale/en-US/messengercompose.dtd)
locale/en-US/messenger/messengercompose/addressingWidgetOverlay.dtd (compose/resources/locale/en-US/addressingWidgetOverlay.dtd)
locale/en-US/messenger/messengercompose/askSendFormat.dtd (compose/resources/locale/en-US/askSendFormat.dtd)
locale/en-US/messenger/messengercompose/composeMsgs.properties (compose/resources/locale/en-US/composeMsgs.properties)
locale/en-US/messenger/imapMsgs.properties (imap/resources/locale/en-US/imapMsgs.properties)
locale/en-US/messenger/eudoraImportMsgs.properties (import/eudora/resources/locale/en-US/eudoraImportMsgs.properties)
locale/en-US/messenger/oeImportMsgs.properties (import/oexpress/resources/locale/en-us/oeImportMsgs.properties)
locale/en-US/messenger/outlookImportMsgs.properties (import/outlook/resources/locale/en-us/outlookImportMsgs.properties)
locale/en-US/messenger/importMsgs.properties (import/resources/locale/en-us/importMsgs.properties)
locale/en-US/messenger/fieldMapExport.dtd (import/resources/locale/en-us/fieldMapExport.dtd)
locale/en-US/messenger/fieldMapImport.dtd (import/resources/locale/en-us/fieldMapImport.dtd)
locale/en-US/messenger/importDialog.dtd (import/resources/locale/en-us/importDialog.dtd)
locale/en-US/messenger/textImportMsgs.properties (import/text/resources/locale/en-US/textImportMsgs.properties)
locale/en-US/messenger/localMsgs.properties (local/resources/locale/en-US/localMsgs.properties)
locale/en-US/messenger/downloadheaders.dtd (news/resources/locale/en-US/downloadheaders.dtd)
locale/en-US/messenger/news.properties (news/resources/locale/en-US/news.properties)
locale/en-US/messenger/custreceipt.dtd (base/prefs/resources/locale/en-US/custreceipt.dtd)
locale/en-US/messenger/pref-diskspace.dtd (base/prefs/resources/locale/en-US/pref-diskspace.dtd)
locale/en-US/messenger/pref-mailnews.dtd (base/prefs/resources/locale/en-US/pref-mailnews.dtd)
locale/en-US/messenger/pref-receipts.dtd (base/prefs/resources/locale/en-US/pref-receipts.dtd)
locale/en-US/messenger/pref-viewing_messages.dtd (base/prefs/resources/locale/en-US/pref-viewing_messages.dtd)
locale/en-US/messenger/aw-accname.dtd (base/prefs/resources/locale/en-US/aw-accname.dtd)
locale/en-US/messenger/aw-accounttype.dtd (base/prefs/resources/locale/en-US/aw-accounttype.dtd)
locale/en-US/messenger/aw-done.dtd (base/prefs/resources/locale/en-US/aw-done.dtd)
locale/en-US/messenger/aw-email.dtd (base/prefs/resources/locale/en-US/aw-email.dtd)
locale/en-US/messenger/aw-identity.dtd (base/prefs/resources/locale/en-US/aw-identity.dtd)
locale/en-US/messenger/aw-login.dtd (base/prefs/resources/locale/en-US/aw-login.dtd)
locale/en-US/messenger/aw-mailtype.dtd (base/prefs/resources/locale/en-US/aw-mailtype.dtd)
locale/en-US/messenger/aw-server.dtd (base/prefs/resources/locale/en-US/aw-server.dtd)
locale/en-US/messenger/AccountManager.dtd (base/prefs/resources/locale/en-US/AccountManager.dtd)
locale/en-US/messenger/AccountWizard.dtd (base/prefs/resources/locale/en-US/AccountWizard.dtd)
locale/en-US/messenger/am-advanced.dtd (base/prefs/resources/locale/en-US/am-advanced.dtd)
locale/en-US/messenger/am-imap-advanced.dtd (base/prefs/resources/locale/en-US/am-imap-advanced.dtd)
locale/en-US/messenger/am-copies.dtd (base/prefs/resources/locale/en-US/am-copies.dtd)
locale/en-US/messenger/am-main.dtd (base/prefs/resources/locale/en-US/am-main.dtd)
locale/en-US/messenger/am-identity-advanced.dtd (base/prefs/resources/locale/en-US/am-identity-advanced.dtd)
locale/en-US/messenger/am-server-top.dtd (base/prefs/resources/locale/en-US/am-server-top.dtd)
locale/en-US/messenger/prefs.properties (base/prefs/resources/locale/en-US/prefs.properties)
locale/en-US/messenger/am-serverwithnoidentities.dtd (base/prefs/resources/locale/en-US/am-serverwithnoidentities.dtd)
locale/en-US/messenger/SmtpServerList.dtd (base/prefs/resources/locale/en-US/SmtpServerList.dtd)
locale/en-US/messenger/smtpEditOverlay.dtd (base/prefs/resources/locale/en-US/smtpEditOverlay.dtd)
locale/en-US/messenger/mailPrefsOverlay.dtd (base/prefs/resources/locale/en-US/mailPrefsOverlay.dtd)
locale/en-US/messenger/addressbook/absync.properties (absync/resources/locale/en-US/absync.properties)
locale/en-US/messenger/addressbook/pref-addressing.dtd (addrbook/prefs/resources/locale/en-US/pref-addressing.dtd)
locale/en-US/messenger/mime.properties (mime/resources/mime.properties)
locale/en-US/messenger/mimeheader.properties (mime/resources/mimeheader.properties)
locale/en-US/messenger/vcard.properties (mime/cthandlers/resources/vcard.properties)
skins/modern.jar:
messenger/skin/abookstat.gif (mime/abstatus/resources/skin/abookstat.gif)
modern.jar:
skin/modern/messenger/abookstat.gif (mime/abstatus/resources/skin/abookstat.gif)

Просмотреть файл

@ -28,6 +28,4 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(srcdir)/localMsgs.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale

Просмотреть файл

@ -23,10 +23,3 @@ DEPTH=..\..\..\..\..
MODULE=msglocal
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) localMsgs.properties $(DIST)\bin\chrome\locales\en-US\messenger\locale
clobber::
rm -f $(DIST)bin\chrome\locales\en-US\messenger\locale\localMsgs.properties

Просмотреть файл

@ -24,3 +24,7 @@ DEPTH=..
DIRS=public base db local news imap mime compose addrbook import absync
include <$(DEPTH)\config\rules.mak>
chrome::
$(REGCHROME) content messenger messenger.jar
$(REGCHROME) locale en-US/messenger en-US.jar

Просмотреть файл

@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(srcdir)/abookstat.gif $(DIST)/bin/chrome/skins/modern/messenger/skin

Просмотреть файл

@ -28,6 +28,3 @@ include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(srcdir)/vcard.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale

Просмотреть файл

@ -22,9 +22,3 @@ DEPTH=..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) vcard.properties $(DIST)\bin\chrome\locales\en-US\messenger\locale
clobber::
rm -f $(DIST)\bin\chrome\locales\en-US\messenger\locale\vcard.properties

Просмотреть файл

@ -29,8 +29,3 @@ include $(DEPTH)/config/autoconf.mk
DIRS = content
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(srcdir)/mime.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale
$(INSTALL) $(srcdir)/mimeheader.properties $(DIST)/bin/chrome/locales/en-US/messenger/locale

Просмотреть файл

@ -1119,7 +1119,7 @@ nsZipReaderCache::nsZipReaderCache()
NS_IMETHODIMP
nsZipReaderCache::Init(PRUint32 cacheSize)
{
#ifdef DEBUG_warren
#ifdef xDEBUG_warren
mCacheSize = 1;//cacheSize; // XXX hack
#else
mCacheSize = cacheSize;

Просмотреть файл

@ -30,3 +30,6 @@ DIRS = content locale
include $(topsrcdir)/config/rules.mk
chrome::
@$(REGCHROME) locale en-US/necko en-US.jar

Просмотреть файл

@ -26,16 +26,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
CHROME_DIR = $(DIST)/bin/chrome/packages/core/necko/content
EXPORT_RESOURCES = \
redirect_loop.xul \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(CHROME_DIR)/, $(EXPORT_RESOURCES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCES)) $(CHROME_DIR)

Просмотреть файл

@ -1,6 +1,6 @@
packages/core.jar:
necko/content/redirect_loop.xul (content/redirect_loop.xul)
comm.jar:
content/necko/redirect_loop.xul (content/redirect_loop.xul)
locales/en-US.jar:
necko/locale/necko.properties (locale/en-US/necko.properties)
necko/locale/redirect_loop.dtd (locale/en-US/redirect_loop.dtd)
en-US.jar:
locale/en-US/necko/necko.properties (locale/en-US/necko.properties)
locale/en-US/necko/redirect_loop.dtd (locale/en-US/redirect_loop.dtd)

Просмотреть файл

@ -26,13 +26,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/necko.properties \
$(srcdir)/redirect_loop.dtd \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/locales/en-US/necko/locale

Просмотреть файл

@ -25,10 +25,3 @@ include <$(DEPTH)\config\rules.mak>
LOCALEDIR=$(DIST)\bin\chrome\locales\en-US\necko\locale
install::
$(MAKE_INSTALL) necko.properties $(LOCALEDIR)
$(MAKE_INSTALL) redirect_loop.dtd $(LOCALEDIR)
clobber::
rm -f $(DIST)\bin\chrome\locales\en-US\necko\locale\*.*

Просмотреть файл

@ -22,3 +22,6 @@
DEPTH=..\..
include <$(DEPTH)\config\rules.mak>
chrome::
$(REGCHROME) locale en-US/necko en-US.jar

Просмотреть файл

@ -27,14 +27,5 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
FILES = \
profileMigrationProgress.js \
profileMigrationProgress.xul \
no_space.xul \
no_space.js \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/packages/core/communicator/content/profile

Просмотреть файл

@ -1,9 +1,9 @@
packages/core.jar:
communicator/content/profile/no_space.js (content/no_space.js)
communicator/content/profile/no_space.xul (content/no_space.xul)
communicator/content/profile/profileMigrationProgress.js (content/profileMigrationProgress.js)
communicator/content/profile/profileMigrationProgress.xul (content/profileMigrationProgress.xul)
comm.jar:
content/communicator/profile/no_space.js (content/no_space.js)
content/communicator/profile/no_space.xul (content/no_space.xul)
content/communicator/profile/profileMigrationProgress.js (content/profileMigrationProgress.js)
content/communicator/profile/profileMigrationProgress.xul (content/profileMigrationProgress.xul)
locales/en-US.jar:
communicator/locale/profile/no_space.dtd (locale/en-US/no_space.dtd)
communicator/locale/profile/profileMigrationProgress.dtd (locale/en-US/profileMigrationProgress.dtd)
en-US.jar:
locale/en-US/communicator/profile/no_space.dtd (locale/en-US/no_space.dtd)
locale/en-US/communicator/profile/profileMigrationProgress.dtd (locale/en-US/profileMigrationProgress.dtd)

Просмотреть файл

@ -27,12 +27,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
FILES = \
profileMigrationProgress.dtd \
no_space.dtd \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/locales/en-US/communicator/locale/profile

Просмотреть файл

@ -27,27 +27,5 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
FILES = \
createProfileWizard.js \
createProfileWizard.xul \
profileManager.js \
deleteProfile.js \
deleteProfile.xul \
migrateAllProfile.xul \
newProfile1_1.xul \
newProfile1_2.xul \
newProfile1_1.js \
newProfile1_2.js \
profileSelection.xul \
profileSelection.js \
confirmMigration.xul \
confirmMigration.js \
selectLang.xul \
selectLang.js \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/packages/core/communicator/content/profile

Просмотреть файл

@ -1,31 +1,31 @@
packages/core.jar:
communicator/content/profile/confirmMigration.js (content/confirmMigration.js)
communicator/content/profile/confirmMigration.xul (content/confirmMigration.xul)
communicator/content/profile/createProfileWizard.js (content/createProfileWizard.js)
communicator/content/profile/createProfileWizard.xul (content/createProfileWizard.xul)
communicator/content/profile/deleteProfile.js (content/deleteProfile.js)
communicator/content/profile/deleteProfile.xul (content/deleteProfile.xul)
communicator/content/profile/migrateAllProfile.xul (content/migrateAllProfile.xul)
communicator/content/profile/newProfile1_1.js (content/newProfile1_1.js)
communicator/content/profile/newProfile1_1.xul (content/newProfile1_1.xul)
communicator/content/profile/newProfile1_2.js (content/newProfile1_2.js)
communicator/content/profile/newProfile1_2.xul (content/newProfile1_2.xul)
communicator/content/profile/profileManager.js (content/profileManager.js)
communicator/content/profile/profileSelection.js (content/profileSelection.js)
communicator/content/profile/profileSelection.xul (content/profileSelection.xul)
communicator/content/profile/selectLang.js (content/selectLang.js)
communicator/content/profile/selectLang.xul (content/selectLang.xul)
comm.jar:
content/communicator/profile/confirmMigration.js (content/confirmMigration.js)
content/communicator/profile/confirmMigration.xul (content/confirmMigration.xul)
content/communicator/profile/createProfileWizard.js (content/createProfileWizard.js)
content/communicator/profile/createProfileWizard.xul (content/createProfileWizard.xul)
content/communicator/profile/deleteProfile.js (content/deleteProfile.js)
content/communicator/profile/deleteProfile.xul (content/deleteProfile.xul)
content/communicator/profile/migrateAllProfile.xul (content/migrateAllProfile.xul)
content/communicator/profile/newProfile1_1.js (content/newProfile1_1.js)
content/communicator/profile/newProfile1_1.xul (content/newProfile1_1.xul)
content/communicator/profile/newProfile1_2.js (content/newProfile1_2.js)
content/communicator/profile/newProfile1_2.xul (content/newProfile1_2.xul)
content/communicator/profile/profileManager.js (content/profileManager.js)
content/communicator/profile/profileSelection.js (content/profileSelection.js)
content/communicator/profile/profileSelection.xul (content/profileSelection.xul)
content/communicator/profile/selectLang.js (content/selectLang.js)
content/communicator/profile/selectLang.xul (content/selectLang.xul)
locales/en-US.jar:
communicator/locale/profile/confirmMigration.dtd (locale/en-US/confirmMigration.dtd)
communicator/locale/profile/createProfileWizard.dtd (locale/en-US/createProfileWizard.dtd)
communicator/locale/profile/createProfileWizard.properties (locale/en-US/createProfileWizard.properties)
communicator/locale/profile/migration.properties (locale/en-US/migration.properties)
communicator/locale/profile/newProfile1_1.dtd (locale/en-US/newProfile1_1.dtd)
communicator/locale/profile/newProfile1_2.dtd (locale/en-US/newProfile1_2.dtd)
communicator/locale/profile/newProfile1_2.properties (locale/en-US/newProfile1_2.properties)
communicator/locale/profile/profileManager.properties (locale/en-US/profileManager.properties)
communicator/locale/profile/profileManagerDelete.dtd (locale/en-US/profileManagerDelete.dtd)
communicator/locale/profile/profileManagerMigrateAll.dtd (locale/en-US/profileManagerMigrateAll.dtd)
communicator/locale/profile/profileSelection.dtd (locale/en-US/profileSelection.dtd)
communicator/locale/profile/selectLang.dtd (locale/en-US/selectLang.dtd)
en-US.jar:
locale/en-US/communicator/profile/confirmMigration.dtd (locale/en-US/confirmMigration.dtd)
locale/en-US/communicator/profile/createProfileWizard.dtd (locale/en-US/createProfileWizard.dtd)
locale/en-US/communicator/profile/createProfileWizard.properties (locale/en-US/createProfileWizard.properties)
locale/en-US/communicator/profile/migration.properties (locale/en-US/migration.properties)
locale/en-US/communicator/profile/newProfile1_1.dtd (locale/en-US/newProfile1_1.dtd)
locale/en-US/communicator/profile/newProfile1_2.dtd (locale/en-US/newProfile1_2.dtd)
locale/en-US/communicator/profile/newProfile1_2.properties (locale/en-US/newProfile1_2.properties)
locale/en-US/communicator/profile/profileManager.properties (locale/en-US/profileManager.properties)
locale/en-US/communicator/profile/profileManagerDelete.dtd (locale/en-US/profileManagerDelete.dtd)
locale/en-US/communicator/profile/profileManagerMigrateAll.dtd (locale/en-US/profileManagerMigrateAll.dtd)
locale/en-US/communicator/profile/profileSelection.dtd (locale/en-US/profileSelection.dtd)
locale/en-US/communicator/profile/selectLang.dtd (locale/en-US/selectLang.dtd)

Просмотреть файл

@ -26,24 +26,5 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
FILES = \
createProfileWizard.dtd \
newProfile1_1.dtd \
newProfile1_2.dtd \
profileManager.properties \
profileManagerDelete.dtd \
profileManagerMigrateAll.dtd \
createProfileWizard.properties \
newProfile1_2.properties \
migration.properties \
profileSelection.dtd \
confirmMigration.dtd \
selectLang.dtd \
$(NULL)
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/chrome/locales/en-US/communicator/locale/profile

Просмотреть файл

@ -1,6 +1,6 @@
packages/core.jar:
communicator/content/domviewer/DOMDataSourceViewer.css
communicator/content/domviewer/DOMDataSourceViewer.js
communicator/content/domviewer/DOMDataSourceViewer.xul
communicator/content/domviewer/DOMTree.xul
communicator/content/domviewer/domviewer.html
comm.jar:
content/communicator/domviewer/DOMDataSourceViewer.css
content/communicator/domviewer/DOMDataSourceViewer.js
content/communicator/domviewer/DOMDataSourceViewer.xul
content/communicator/domviewer/DOMTree.xul
content/communicator/domviewer/domviewer.html

Просмотреть файл

@ -28,16 +28,13 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
CHROME_DIR = skins/$(THEME)
CHROME_MISC_DIR = .
CHROME_TYPE = skin
CHROME_MISC = \
manifest.rdf \
preview.png \
$(NULL)
DIRS = communicator global navigator editor messenger
include $(topsrcdir)/config/rules.mk
chrome::
@$(REGCHROME) skin blue/communicator blue.jar; \
$(REGCHROME) skin blue/editor blue.jar; \
$(REGCHROME) skin blue/global blue.jar; \
$(REGCHROME) skin blue/messenger blue.jar; \
$(REGCHROME) skin blue/navigator blue.jar

Просмотреть файл

@ -28,38 +28,8 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
EXPORT_RESOURCE = \
$(srcdir)/brand.css \
$(srcdir)/securityOverlay.css \
$(srcdir)/box.css \
$(srcdir)/button.css \
$(srcdir)/communicator.css \
$(srcdir)/formatting.css \
$(srcdir)/menubuttonBindings.xml \
$(srcdir)/menubutton.css \
$(srcdir)/splitter.css \
$(srcdir)/toolbar.css \
$(srcdir)/navbar-endbox.gif \
$(srcdir)/tb-menubutton-dm.gif \
$(srcdir)/tb-menubutton-dm-disabled.gif \
$(srcdir)/online.gif \
$(srcdir)/offline.gif \
$(srcdir)/document.gif \
$(srcdir)/document-error.gif \
$(srcdir)/lock.gif \
$(srcdir)/unlock.gif \
$(srcdir)/broken.gif \
$(srcdir)/tasksOverlay.css \
$(srcdir)/dialogOverlay.css \
$(srcdir)/prefpanels.css \
$(srcdir)/content-large.gif \
$(srcdir)/content-small.gif \
$(NULL)
DIRS = search xpinstall sidebar bookmarks directory profile regviewer related
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(EXPORT_RESOURCE) $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin

Просмотреть файл

@ -28,29 +28,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/bookmarks
EXPORT_RESOURCE_SAMPLES = \
bookmark-folder-closed.gif \
bookmark-folder-closed-sel.gif \
bookmark-folder-open.gif \
bookmark-folder-open-sel.gif \
home.gif \
home-sel.gif \
bookmark-item.gif \
bookmarks.css \
iefavorite.gif \
personal-folder-closed.gif \
personal-folder-closed-sel.gif \
personal-folder-open.gif \
personal-folder-open-sel.gif \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Просмотреть файл

@ -27,23 +27,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/directory
EXPORT_RESOURCE_SAMPLES = \
directory.css \
file-folder-closed-sel.gif \
file-folder-closed.gif \
file-folder-open-sel.gif \
file-folder-open.gif \
file-icon-sel.gif \
file-icon.gif \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Просмотреть файл

@ -27,21 +27,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/profile
EXPORT_RESOURCE_SAMPLES = \
newProfile1_2.css \
profileicon-large.gif \
profile.css \
migrate.gif \
profileManager.css \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Просмотреть файл

@ -27,17 +27,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/regviewer
EXPORT_RESOURCE_SAMPLES = \
regviewer.css \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Просмотреть файл

@ -27,18 +27,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/related
EXPORT_RESOURCE_SAMPLES = \
related.css \
sitemap.gif \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Просмотреть файл

@ -27,24 +27,4 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
SAMPLES_DIR = $(DIST)/bin/chrome/skins/$(THEME)/communicator/skin/search
EXPORT_RESOURCE_SAMPLES = \
icons.css \
result.gif \
category.gif \
internet.css \
search-editor.css \
findresults.css \
internetresults.css \
search.css \
$(NULL)
include $(topsrcdir)/config/rules.mk
GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше