[Pkg-mozext-commits] [itsalltext] 23/459: Copyright notice is all in place. The about box works now.
David Prévot
taffit at moszumanska.debian.org
Tue Feb 24 23:26:02 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository itsalltext.
commit ea0058bee7ad12a0125d2bd58e46a3ee5b59b398
Author: Christian Höltje <docwhat at gerf.org>
Date: Sat Dec 16 11:17:36 2006 -0500
Copyright notice is all in place.
The about box works now.
---
Makefile | 19 ++++++++++++++
chrome/content/about.xul | 59 +++++++++++++++++++++-----------------------
chrome/content/itsalltext.js | 19 +++++++++++---
chrome/content/options.js | 19 ++++++++++++++
4 files changed, 82 insertions(+), 34 deletions(-)
diff --git a/Makefile b/Makefile
index 6cfdca6..ddc3d88 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,22 @@
+#
+# It's All Text - Easy external editing of web forms.
+# Copyright (C) 2006 Christian Höltje
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License or
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+
# NOTE: do not create files or directories in here that have
# spaces or other special characters in their names!
SOURCES=$(shell find . \
diff --git a/chrome/content/about.xul b/chrome/content/about.xul
index bde1296..c608e6e 100644
--- a/chrome/content/about.xul
+++ b/chrome/content/about.xul
@@ -1,36 +1,33 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+<window id="itsalltext_about" title="About It's All Text"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+ <vbox style="max-width: 40em">
+ <description style="white-space: pre; margin: 1em;">
+It's All Text - Easy external editing of web forms.
+Copyright (C) 2006 Christian Höltje
-<dialog
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- title="About It's All Text"
- id="itsAllTextAboutWindow"
- windowtype="abp:about"
- onload="fillInVersion()"
- buttons="accept">
-
-<groupbox id="mainGroup">
- <description id="description">
- It's All About Text
- Copyright (C) 2006 Christian Holtje
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License or
+any later version.
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- </description>
-
- <description id="authorTitle" value="Author"/>
- <description id="author" value="Christian Holtje"/>
-</groupbox>
-</dialog>
+You should have received a copy of the GNU General Public License along
+with this program; if not, write to the Free Software Foundation, Inc.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</description>
+ <hbox align="right">
+ <button oncommand="window.close();" tabindex="1">
+ <description>Close</description>
+ </button>
+ </hbox>
+ </vbox>
+</window>
+<!-- Local Variables: -->
+<!-- mode: xml -->
+<!-- End: -->
diff --git a/chrome/content/itsalltext.js b/chrome/content/itsalltext.js
index fb0c8aa..3a049e3 100644
--- a/chrome/content/itsalltext.js
+++ b/chrome/content/itsalltext.js
@@ -1,7 +1,20 @@
/*
- * Places I learned how to do some of this stuff and used as references:
- * - Mozex
- * - Stylish
+ * It's All Text - Easy external editing of web forms.
+ * Copyright (C) 2006 Christian Höltje
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/**
diff --git a/chrome/content/options.js b/chrome/content/options.js
index c5b302a..e7e06a6 100644
--- a/chrome/content/options.js
+++ b/chrome/content/options.js
@@ -1,3 +1,22 @@
+/*
+ * It's All Text - Easy external editing of web forms.
+ * Copyright (C) 2006 Christian Höltje
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
/* stuff */
var itsalltextOptionsLoad = function() {
alert('narf');
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/itsalltext.git
More information about the Pkg-mozext-commits
mailing list