commit/psgml: 5 new changesets

[email protected]
Newsgroups gmane.emacs.xemacs.patches
Message-ID <[email protected]>
5 new commits in psgml:

https://bitbucket.org/xemacs/psgml/commits/b490415a46be/
Changeset:   b490415a46be
User:        Norbert Koch
Date:        2014-06-29 20:58:39
Summary:     XEmacs Package Release 1.48
Affected #:  2 files

diff -r 6cb9f2b8abd9c2ea18420569237823b0ef347a0a -r b490415a46be3a5b73a6c63256fa9823ac0e5489 ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-29  Norbert Koch  <[email protected]>
+
+	* Makefile (VERSION): XEmacs package 1.48 released.
+
 2014-05-15  Norbert Koch  <[email protected]>
 
 	* Makefile (VERSION): XEmacs package 1.47 released.

diff -r 6cb9f2b8abd9c2ea18420569237823b0ef347a0a -r b490415a46be3a5b73a6c63256fa9823ac0e5489 Makefile
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@
 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 # Boston, MA 02110-1301 USA.
 
-VERSION = 1.47
+VERSION = 1.48
 AUTHOR_VERSION = 1.3.2
 MAINTAINER = XEmacs Development Team <[email protected]>
 PACKAGE = psgml


https://bitbucket.org/xemacs/psgml/commits/97cf5da0ce04/
Changeset:   97cf5da0ce04
User:        Norbert Koch
Date:        2014-06-29 20:58:39
Summary:     Added tag psgml-1_48 for changeset b490415a46be
Affected #:  1 file

diff -r b490415a46be3a5b73a6c63256fa9823ac0e5489 -r 97cf5da0ce042b4910ec27e4580fa3604c8b1ff7 .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -83,3 +83,4 @@
 588a1f1ff8d1d954c7bc5d88c6f31f0e1e723560 sumo-2003-10-03
 4ebcbc3a594df5fbd6f51d79a57dd7586b5791c4 psgml-1_46
 dfec0f79415f4bf04e2314da3ad660775a524677 psgml-1_47
+b490415a46be3a5b73a6c63256fa9823ac0e5489 psgml-1_48


https://bitbucket.org/xemacs/psgml/commits/36806f667ed9/
Changeset:   36806f667ed9
User:        Norbert Koch
Date:        2014-06-29 21:46:27
Summary:     Merge outstanding stuff into my workspace
Affected #:  2 files

diff -r 97cf5da0ce042b4910ec27e4580fa3604c8b1ff7 -r 36806f667ed96655b7443beb397d1e6dddb12960 ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,13 @@
 
 	* Makefile (VERSION): XEmacs package 1.48 released.
 
+2014-06-11  Jerry James  <[email protected]>
+
+	* psgml-html.el (sgml-html-menu): Modernize list of browsers.
+	Allow use of the default browser.
+	(sgml-html-netscape-file): Use firefox instead of netscape.
+	(sgml-html-kfm-file): Use konqueror instead of kfm.
+
 2014-05-15  Norbert Koch  <[email protected]>
 
 	* Makefile (VERSION): XEmacs package 1.47 released.

diff -r 97cf5da0ce042b4910ec27e4580fa3604c8b1ff7 -r 36806f667ed96655b7443beb397d1e6dddb12960 psgml-html.el
--- a/psgml-html.el
+++ b/psgml-html.el
@@ -931,25 +931,25 @@
 
 (defvar sgml-html-menu
   (cons "HTML"
-	(append '(["View in Netscape" sgml-html-netscape-file
-		   (buffer-file-name
-		    (current-buffer))]
+	(append '(["View in default browser" browse-url-of-buffer t]
+		  ["View in Firefox" sgml-html-netscape-file
+		   (buffer-file-name (current-buffer))]
+		  ["View in Konqueror" sgml-html-kfm-file
+		   (buffer-file-name (current-buffer))]
 		  ["View in W3" w3-preview-this-buffer t]
-		  ["View in kfm" sgml-html-kfm-file
-		   (buffer-file-name (current-buffer))]
 		  "---"
 		  ["HTML-Quote Region" html-quote-region t]
 		  "---")
 		(cdr sgml-main-menu))))
 
 (defun sgml-html-netscape-file ()
-  "Preview the file for the current buffer in Netscape."
+  "Preview the file for the current buffer in Firefox."
   (interactive)
-  (browse-url-netscape
+  (browse-url-firefox
    (concat "file:" (buffer-file-name (current-buffer)))))
 
 (defun sgml-html-kfm-file ()
-  "Preview the file for the current buffer in kfm."
+  "Preview the file for the current buffer in Konqueror."
   (interactive)
   (browse-url-kde
    (concat "file:" (buffer-file-name (current-buffer)))))


https://bitbucket.org/xemacs/psgml/commits/5521aa78c990/
Changeset:   5521aa78c990
User:        Norbert Koch
Date:        2014-06-29 21:46:49
Summary:     XEmacs Package Release 1.49
Affected #:  2 files

diff -r 36806f667ed96655b7443beb397d1e6dddb12960 -r 5521aa78c990354497fe4a640494928d8db28e51 ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-29  Norbert Koch  <[email protected]>
+
+	* Makefile (VERSION): XEmacs package 1.49 released.
+
 2014-06-29  Norbert Koch  <[email protected]>
 
 	* Makefile (VERSION): XEmacs package 1.48 released.

diff -r 36806f667ed96655b7443beb397d1e6dddb12960 -r 5521aa78c990354497fe4a640494928d8db28e51 Makefile
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@
 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 # Boston, MA 02110-1301 USA.
 
-VERSION = 1.48
+VERSION = 1.49
 AUTHOR_VERSION = 1.3.2
 MAINTAINER = XEmacs Development Team <[email protected]>
 PACKAGE = psgml


https://bitbucket.org/xemacs/psgml/commits/4082c3ff2ff1/
Changeset:   4082c3ff2ff1
User:        Norbert Koch
Date:        2014-06-29 21:46:49
Summary:     Added tag psgml-1_49 for changeset 5521aa78c990
Affected #:  1 file

diff -r 5521aa78c990354497fe4a640494928d8db28e51 -r 4082c3ff2ff190bb0b506fdf4fe48d1d697fde4e .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -84,3 +84,4 @@
 4ebcbc3a594df5fbd6f51d79a57dd7586b5791c4 psgml-1_46
 dfec0f79415f4bf04e2314da3ad660775a524677 psgml-1_47
 b490415a46be3a5b73a6c63256fa9823ac0e5489 psgml-1_48
+5521aa78c990354497fe4a640494928d8db28e51 psgml-1_49

Repository URL: https://bitbucket.org/xemacs/psgml/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.