зеркало из https://github.com/mozilla/gecko-dev.git
--NOT PART OF DEFAULT BUILD--
XMLterm changes only. Re-structured chrome directories.
This commit is contained in:
Родитель
503b621fba
Коммит
5da38886c4
|
@ -39,7 +39,9 @@ VPATH = @srcdir@
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
CHROME_DIR = packages/xmlterm
|
DIRS = content skin
|
||||||
|
|
||||||
|
CHROME_DIR = packages/xmlterm
|
||||||
|
|
||||||
CHROME_TYPE = content skin
|
CHROME_TYPE = content skin
|
||||||
CHROME_MISC_DIR = .
|
CHROME_MISC_DIR = .
|
||||||
|
@ -47,31 +49,6 @@ CHROME_MISC = \
|
||||||
manifest.rdf \
|
manifest.rdf \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CHROME_CONTENT_DIR = xmlterm/content
|
|
||||||
CHROME_CONTENT = \
|
|
||||||
xmlterm.html \
|
|
||||||
xmlterm.xul \
|
|
||||||
xmlterm2.xul \
|
|
||||||
xmltermOverlay.xul \
|
|
||||||
xmltermOverlay.js \
|
|
||||||
XMLTermChrome.js \
|
|
||||||
XMLTermCommands.js \
|
|
||||||
xmltermTips.html \
|
|
||||||
xmltermAbout.html \
|
|
||||||
xmltblank.html \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
CHROME_SKIN_DIR = xmlterm/skin
|
|
||||||
CHROME_SKIN = \
|
|
||||||
xmlterm.css \
|
|
||||||
xmltpage.css \
|
|
||||||
wheel.gif \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
CHROME_L10N_DIR = xmlterm/locale
|
|
||||||
CHROME_L10N = \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
include $(srcdir)/../config/xmlterm_config.mk
|
include $(srcdir)/../config/xmlterm_config.mk
|
||||||
|
|
|
@ -1,21 +1 @@
|
||||||
ui --- User interface stuff for XMLterm
|
ui --- User interface stuff for XMLterm
|
||||||
|
|
||||||
CONTENT
|
|
||||||
|
|
||||||
xmlterm.html XMLterm startup file containing HTML and Javascript
|
|
||||||
Uses mozIXMLTermShell to create XMLterm
|
|
||||||
Uses xmltpage.css for stylesheets
|
|
||||||
|
|
||||||
xmlterm.xul XUL wrapper for xmlterm.html
|
|
||||||
|
|
||||||
xmlterm2.xul XUL wrapper for xmlterm.html, with additional browser frame
|
|
||||||
|
|
||||||
XMLTermCommands.js Javascript commands used by XUL wrappers
|
|
||||||
|
|
||||||
SKIN
|
|
||||||
|
|
||||||
xmlterm.css Stylesheet for XUL file xmlterm.xul
|
|
||||||
|
|
||||||
xmltpage.css Stylesheet for XMLterm startup file xmlterm.html
|
|
||||||
|
|
||||||
wheel.gif Wheel icon used for prompt
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
xmlterm.html
|
|
||||||
xmlterm.xul
|
xmlterm.xul
|
||||||
xmlterm2.xul
|
xmlterm2.xul
|
||||||
|
XMLTermOverlay.xul
|
||||||
XMLTermChrome.js
|
XMLTermChrome.js
|
||||||
XMLTermCommands.js
|
XMLTermCommands.js
|
||||||
|
XMLTermOverlay.js
|
||||||
|
xmlterm.html
|
||||||
xmltermTips.html
|
xmltermTips.html
|
||||||
xmltermAbout.html
|
xmltermAbout.html
|
||||||
xmltblank.html
|
xmltblank.html
|
|
@ -0,0 +1,64 @@
|
||||||
|
#!gmake
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the Mozilla Public
|
||||||
|
# License Version 1.1 (the "MPL"); you may not use this file
|
||||||
|
# except in compliance with the MPL. You may obtain a copy of
|
||||||
|
# the MPL at http://www.mozilla.org/MPL/
|
||||||
|
#
|
||||||
|
# Software distributed under the MPL is distributed on an "AS
|
||||||
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||||
|
# implied. See the MPL for the specific language governing
|
||||||
|
# rights and limitations under the MPL.
|
||||||
|
#
|
||||||
|
# The Original Code is lineterm.
|
||||||
|
#
|
||||||
|
# The Initial Developer of the Original Code is Ramalingam Saravanan.
|
||||||
|
# Portions created by Ramalingam Saravanan <svn@xmlterm.org> are
|
||||||
|
# Copyright (C) 1999 Ramalingam Saravanan. All Rights Reserved.
|
||||||
|
#
|
||||||
|
# Contributor(s):
|
||||||
|
#
|
||||||
|
# Alternatively, the contents of this file may be used under the
|
||||||
|
# terms of the GNU General Public License (the "GPL"), in which case
|
||||||
|
# the provisions of the GPL are applicable instead of
|
||||||
|
# those above. If you wish to allow use of your version of this
|
||||||
|
# file only under the terms of the GPL and not to allow
|
||||||
|
# others to use your version of this file under the MPL, indicate
|
||||||
|
# your decision by deleting the provisions above and replace them
|
||||||
|
# with the notice and other provisions required by the GPL.
|
||||||
|
# If you do not delete the provisions above, a recipient
|
||||||
|
# may use your version of this file under either the MPL or the
|
||||||
|
# GPL.
|
||||||
|
#
|
||||||
|
|
||||||
|
# makefile for xmlterm/ui/content directory
|
||||||
|
|
||||||
|
DEPTH = ../../../..
|
||||||
|
topsrcdir = @top_srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
|
CHROME_DIR = packages/xmlterm
|
||||||
|
|
||||||
|
CHROME_TYPE = content
|
||||||
|
|
||||||
|
CHROME_CONTENT_DIR = xmlterm/content
|
||||||
|
CHROME_CONTENT = \
|
||||||
|
xmlterm.html \
|
||||||
|
xmlterm.xul \
|
||||||
|
xmlterm2.xul \
|
||||||
|
xmltermOverlay.xul \
|
||||||
|
xmltermOverlay.js \
|
||||||
|
XMLTermChrome.js \
|
||||||
|
XMLTermCommands.js \
|
||||||
|
xmltermTips.html \
|
||||||
|
xmltermAbout.html \
|
||||||
|
xmltblank.html \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
|
include $(srcdir)/../../config/xmlterm_config.mk
|
||||||
|
|
||||||
|
include $(topsrcdir)/config/rules.mk
|
|
@ -0,0 +1,21 @@
|
||||||
|
ui/content --- XUL, Javascript, and HTML for user interface
|
||||||
|
|
||||||
|
xmlterm.xul XUL wrapper for xmlterm.html
|
||||||
|
|
||||||
|
xmlterm2.xul XUL wrapper for xmlterm.html, with additional browser frame
|
||||||
|
|
||||||
|
XMLTermOverlay.xul XUL for XMLterm menu overlay
|
||||||
|
|
||||||
|
XMLTermChrome.js Javascript commands used by XUL wrappers
|
||||||
|
|
||||||
|
XMLTermCommands.js Javascript commands used by XMLterm
|
||||||
|
|
||||||
|
XMLTermOverlay.js Javascript commands used by XMLterm menu overlay
|
||||||
|
|
||||||
|
xmlterm.html XMLterm startup file containing HTML and Javascript
|
||||||
|
Uses mozIXMLTermShell to create XMLterm
|
||||||
|
Uses xmltpage.css for stylesheets
|
||||||
|
|
||||||
|
xmltermAbout.html Info about XMLterm
|
||||||
|
|
||||||
|
xmltermTips.html Tips on XMLterm usage
|
|
@ -0,0 +1,58 @@
|
||||||
|
#!gmake
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the Mozilla Public
|
||||||
|
# License Version 1.1 (the "MPL"); you may not use this file
|
||||||
|
# except in compliance with the MPL. You may obtain a copy of
|
||||||
|
# the MPL at http://www.mozilla.org/MPL/
|
||||||
|
#
|
||||||
|
# Software distributed under the MPL is distributed on an "AS
|
||||||
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||||
|
# implied. See the MPL for the specific language governing
|
||||||
|
# rights and limitations under the MPL.
|
||||||
|
#
|
||||||
|
# The Original Code is lineterm.
|
||||||
|
#
|
||||||
|
# The Initial Developer of the Original Code is Ramalingam Saravanan.
|
||||||
|
# Portions created by Ramalingam Saravanan <svn@xmlterm.org> are
|
||||||
|
# Copyright (C) 1999 Ramalingam Saravanan. All Rights Reserved.
|
||||||
|
#
|
||||||
|
# Contributor(s):
|
||||||
|
#
|
||||||
|
# Alternatively, the contents of this file may be used under the
|
||||||
|
# terms of the GNU General Public License (the "GPL"), in which case
|
||||||
|
# the provisions of the GPL are applicable instead of
|
||||||
|
# those above. If you wish to allow use of your version of this
|
||||||
|
# file only under the terms of the GPL and not to allow
|
||||||
|
# others to use your version of this file under the MPL, indicate
|
||||||
|
# your decision by deleting the provisions above and replace them
|
||||||
|
# with the notice and other provisions required by the GPL.
|
||||||
|
# If you do not delete the provisions above, a recipient
|
||||||
|
# may use your version of this file under either the MPL or the
|
||||||
|
# GPL.
|
||||||
|
#
|
||||||
|
|
||||||
|
# makefile for xmlterm/ui/skin directory
|
||||||
|
|
||||||
|
DEPTH = ../../../..
|
||||||
|
topsrcdir = @top_srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
|
CHROME_DIR = packages/xmlterm
|
||||||
|
|
||||||
|
CHROME_TYPE = skin
|
||||||
|
|
||||||
|
CHROME_SKIN_DIR = xmlterm/skin
|
||||||
|
CHROME_SKIN = \
|
||||||
|
xmlterm.css \
|
||||||
|
xmltpage.css \
|
||||||
|
wheel.gif \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
|
include $(srcdir)/../../config/xmlterm_config.mk
|
||||||
|
|
||||||
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
ui/skin --- CSS stylesheets and images for user interface
|
||||||
|
|
||||||
|
xmlterm.css Stylesheet for XUL file xmlterm.xul
|
||||||
|
|
||||||
|
xmltpage.css Stylesheet for XMLterm startup file xmlterm.html
|
||||||
|
|
||||||
|
wheel.gif Wheel icon used for prompt
|
До Ширина: | Высота: | Размер: 185 B После Ширина: | Высота: | Размер: 185 B |
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* The contents of this file are subject to the Mozilla Public
|
||||||
|
* License Version 1.1 (the "License"); you may not use this file
|
||||||
|
* except in compliance with the License. You may obtain a copy of
|
||||||
|
* the License at http://www.mozilla.org/MPL/
|
||||||
|
*
|
||||||
|
* Software distributed under the License is distributed on an "AS
|
||||||
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||||
|
* implied. See the License for the specific language governing
|
||||||
|
* rights and limitations under the License.
|
||||||
|
*
|
||||||
|
* The Original Code is mozilla.org code.
|
||||||
|
*
|
||||||
|
* The Initial Developer of the Original Code is Netscape
|
||||||
|
* Communications Corporation. Portions created by Netscape are
|
||||||
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
||||||
|
* Rights Reserved.
|
||||||
|
*
|
||||||
|
* Contributor(s):
|
||||||
|
* Seth Spitzer <sspitzer@netscape.com>
|
||||||
|
* Robert Ginda <rginda@netscape.com>
|
||||||
|
* R. Saravanan <svn@xmlterm.org>
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This file contains the following xmlterm related components:
|
* This file contains the following xmlterm related components:
|
||||||
* 1. Command line handler service, for responding to the -terminal command line
|
* 1. Command line handler service, for responding to the -terminal command line
|
||||||
|
|
Загрузка…
Ссылка в новой задаче