diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 6 | ||||
-rw-r--r-- | data/conspiracy.xhtml | 49 | ||||
-rw-r--r-- | data/epiphany.xhtml | 65 |
3 files changed, 117 insertions, 3 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index f53708b5d..d1df72dd6 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -8,8 +8,8 @@ server_in_files = GNOME_Epiphany_Automation.server.in GNOME_Epiphany_NautilusVie server_DATA = GNOME_Epiphany_Automation.server GNOME_Epiphany_NautilusView.server serverdir = $(libdir)/bonobo/servers -DESKTOP_IN_FILES=epiphany.desktop.in -DESKTOP_FILES=$(DESKTOP_IN_FILES:.desktop.in=.desktop) +DESKTOP_IN_FILES= epiphany.desktop.in +DESKTOP_FILES= $(DESKTOP_IN_FILES:.desktop.in=.desktop) Applicationsdir = $(datadir)/applications Applications_DATA = $(DESKTOP_FILES) @@ -19,7 +19,7 @@ schema_in_files = epiphany.schemas.in schema_DATA = epiphany.schemas aboutdir = $(pkgdatadir) -about_DATA = epiphany.html +about_DATA = epiphany.xhtml conspiracy.xhtml install-data-local: if test -z "$(DESTDIR)" ; then \ diff --git a/data/conspiracy.xhtml b/data/conspiracy.xhtml new file mode 100644 index 000000000..103083836 --- /dev/null +++ b/data/conspiracy.xhtml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> + +<!-- + World domination: Swede Overlords + XHTML: Xan López <xan@masilla.org>, based on about:mozilla + Swedish title translation: #swedesex on GimpNet + --> + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>Alla hyllar våra svenska härskare</title> +<style type="text/css"> +html { + background: white; + color: black; + font-weight: bolder; + font-size: xx-large; +} + +#conspirancy { + margin-top: 15%; + font-size: 1.1em; + text-align: center; +} + +#laughter { + color: white; + text-align: center; +} + +span { + font-size: 1.3em; +} +</style> +</head> +<body> + +<div id="conspirancy"> +THERE IS NO SWEDE CONSPIRACY +</div> + +<div id="laughter"> +*MWAHAHAHAHAHA* +</div> + +</body> +</html> diff --git a/data/epiphany.xhtml b/data/epiphany.xhtml new file mode 100644 index 000000000..bdba4933a --- /dev/null +++ b/data/epiphany.xhtml @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> + +<!-- + The contents of this file are subject to the Netscape Public License + Version 1.0 (the "NPL"); you may not use this file except in + compliance with the NPL. You may obtain a copy of the NPL at + http://www.mozilla.org/NPL/ + + Software distributed under the NPL is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL + for the specific language governing rights and limitations under the + NPL. + + The Initial Developer of this code under the NPL is Netscape + Communications Corporation. Portions created by Netscape are + Copyright (C) 1998 Netscape Communications Corporation. All Rights + Reserved. + + Contributor(s): + Henrik Gemal <mozilla@gemal.dk> + Alexey Chernyak <alexeyc@bigfoot.com> (XHTML 1.1 conversion) + --> + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>Epiphany</title> +<style type="text/css"> +html { + background: #3399FF; + color: white; + font-style: italic; +} + +#ephytext { + margin-top: 15%; + font-size: 1.1em; + text-align: center; +} + +#from { + margin-top: 1em; + font-size: 1.5em; + text-align: right; +} + +span { + font-size: 1.3em; +} +</style> +</head> +<body> + +<div id="ephytext"> +Perfection is achieved, not when there is nothing more to add, +but when there is nothing left to take away. +</div> + +<div id="from"> +Antoine de Saint-Exupery +</div> + +</body> +</html> |