--NOT PART OF DEFAULT BUILD--

XMLterm changes only.
Changes to get XMLterm working with the new jar packaging.
This commit is contained in:
svn%xmlterm.org 2000-09-24 14:33:30 +00:00
parent d402f11bee
commit 000ee2d417
9 changed files with 117 additions and 21 deletions

View File

@ -1,14 +1,16 @@
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)
xmlterm/content/xmlterm.html (ui/content/xmlterm.html)
xmlterm/content/xmltermAbout.html (ui/content/xmltermAbout.html)
xmlterm/content/xmltermTips.html (ui/content/xmltermTips.html)
xmlterm/content/XMLTermChrome.js (ui/content/XMLTermChrome.js)
xmlterm/content/XMLTermCommands.js (ui/content/XMLTermCommands.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)
content/xmlterm/contents.rdf (ui/content/contents.rdf)
content/xmlterm/xmlterm.xul (ui/content/xmlterm.xul)
content/xmlterm/xmlterm.html (ui/content/xmlterm.html)
content/xmlterm/xmltermAbout.html (ui/content/xmltermAbout.html)
content/xmlterm/xmltermTips.html (ui/content/xmltermTips.html)
content/xmlterm/XMLTermChrome.js (ui/content/XMLTermChrome.js)
content/xmlterm/XMLTermCommands.js (ui/content/XMLTermCommands.js)
content/xmlterm/xmltermOverlay.xul (ui/content/xmltermOverlay.xul)
content/xmlterm/xmltermOverlay.js (ui/content/xmltermOverlay.js)
locale/en-US/xmlterm/contents.rdf (ui/locale/en-US/contents.rdf)
locale/en-US/xmlterm/xmltermOverlay.dtd (ui/locale/en-US/xmltermOverlay.dtd)
skin/modern/xmlterm/contents.rdf (ui/skin/contents.rdf)
content/xmlterm/xmlterm.css (ui/skin/xmlterm.css)
content/xmlterm/xmltpage.css (ui/skin/xmltpage.css)
content/xmlterm/wheel.gif (ui/skin/wheel.gif)

View File

@ -55,6 +55,13 @@ include $(srcdir)/../config/xmlterm_config.mk
include $(topsrcdir)/config/rules.mk
chrome::
@$(REGCHROME) content xmlterm xmlterm.jar; \
$(REGCHROME) locale en-US/xmlterm xmlterm.jar; \
$(REGCHROME) skin modern/xmlterm xmlterm.jar;
## NOTE: Put all the skin stuff in the content directory for the moment
## (Otherwise every Mozilla skin will need to provide an xmlterm skin!)
install::
$(INSTALL) $(srcdir)/xmlterm-service.js $(DIST)/bin/components

View File

@ -10,7 +10,7 @@
# implied. See the MPL for the specific language governing
# rights and limitations under the MPL.
#
# The Original Code is lineterm.
# The Original Code is XMLterm.
#
# The Initial Developer of the Original Code is Ramalingam Saravanan.
# Portions created by Ramalingam Saravanan <svn@xmlterm.org> are

View File

@ -0,0 +1,26 @@
<?xml version="1.0"?>
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- list all the packages being supplied by this jar -->
<RDF:Seq about="urn:mozilla:package:root">
<RDF:li resource="urn:mozilla:package:xmlterm"/>
</RDF:Seq>
<!-- xmlterm package information -->
<RDF:Description about="urn:mozilla:package:xmlterm"
chrome:displayName="XMLterm"
chrome:author="xmlterm.org"
chrome:name="xmlterm">
</RDF:Description>
<!-- xmlterm overlay information -->
<RDF:Seq about="urn:mozilla:overlays">
<RDF:li resource="chrome://communicator/content/tasksOverlay.xul"/>
</RDF:Seq>
<RDF:Seq about="chrome://communicator/content/tasksOverlay.xul">
<RDF:li>chrome://xmlterm/content/xmltermOverlay.xul</RDF:li>
</RDF:Seq>
</RDF:RDF>

View File

@ -3,8 +3,12 @@
<head>
<title>xmlterm page</title>
<!--
NOTE: Put all the skin stuff in the content directory for the moment
(Otherwise every Mozilla skin will need to provide an xmlterm skin!)
-->
<link title="defaultstyle" rel="stylesheet" type="text/css"
href="chrome://xmlterm/skin/xmltpage.css">
href="chrome://xmlterm/content/xmltpage.css">
<script language="JavaScript" src="XMLTermCommands.js">
</script>

View File

@ -21,7 +21,11 @@
-->
<?xml-stylesheet href="chrome://xmlterm/skin/xmlterm.css" type="text/css"?>
<!--
NOTE: Put all the skin stuff in the content directory for the moment
(Otherwise every Mozilla skin will need to provide an xmlterm skin!)
-->
<?xml-stylesheet href="chrome://xmlterm/content/xmlterm.css" type="text/css"?>
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/utilityOverlay.xul"?>

View File

@ -0,0 +1,23 @@
<?xml version="1.0"?>
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- list all the packages being supplied by this jar -->
<RDF:Seq about="urn:mozilla:locale:root">
<RDF:li resource="urn:mozilla:locale:en-US"/>
</RDF:Seq>
<!-- locale information -->
<RDF:Description about="urn:mozilla:locale:en-US"
chrome:displayName="English(US)"
chrome:author="mozilla.org"
chrome:name="en-US"
chrome:previewURL="http://www.mozilla.org/locales/en-US.gif">
<chrome:packages>
<RDF:Seq about="urn:mozilla:locale:en-US:packages">
<RDF:li resource="urn:mozilla:locale:en-US:xmlterm"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
</RDF:RDF>

View File

@ -10,7 +10,7 @@
# implied. See the MPL for the specific language governing
# rights and limitations under the MPL.
#
# The Original Code is lineterm.
# The Original Code is XMLterm.
#
# The Initial Developer of the Original Code is Ramalingam Saravanan.
# Portions created by Ramalingam Saravanan <svn@xmlterm.org> are
@ -41,10 +41,13 @@ include $(DEPTH)/config/autoconf.mk
CHROME_DIR = packages/xmlterm
CHROME_TYPE = skin
## NOTE: Put all the skin stuff in the content directory for the moment
## (Otherwise every Mozilla skin will need to provide an xmlterm skin!)
CHROME_SKIN_DIR = xmlterm/skin
CHROME_SKIN = \
CHROME_TYPE = content
CHROME_CONTENT_DIR = xmlterm/content
CHROME_CONTENT = \
xmlterm.css \
xmltpage.css \
wheel.gif \

View File

@ -0,0 +1,27 @@
<?xml version="1.0"?>
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!--
NOTE: Put all the skin stuff in the content directory for the moment
(Otherwise every Mozilla skin will need to provide an xmlterm skin!)
-->
<!-- list all the packages being supplied by this jar -->
<RDF:Seq about="urn:mozilla:skin:root">
<RDF:li resource="urn:mozilla:skin:modern/1.0" />
</RDF:Seq>
<!-- xmlterm skin information: modern/1.0 -->
<RDF:Description about="urn:mozilla:skin:modern/1.0"
chrome:displayName="Modern"
chrome:author="mozilla.org"
chrome:name="modern/1.0">
<chrome:packages>
<RDF:Seq about="urn:mozilla:skin:modern/1.0:packages">
<RDF:li resource="urn:mozilla:skin:modern/1.0:xmlterm"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
</RDF:RDF>