From 139998e8a2fee95c40551575f96755bf7a11698f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 19 Nov 2007 02:51:17 +0000 Subject: [PATCH] cleanups --- gedit-2.13.1-filesel-persistent-size.patch | 176 - gedit-2.15.1-bgo-341055-workaround.patch | 77 - gedit-2.15.5-copy-xattrs.patch | 92 - gedit-2.16.0-a11y.patch | 53 - gedit-tags-size.patch | 7779 -------------------- gedit.spec | 7 +- 6 files changed, 5 insertions(+), 8179 deletions(-) delete mode 100644 gedit-2.13.1-filesel-persistent-size.patch delete mode 100644 gedit-2.15.1-bgo-341055-workaround.patch delete mode 100644 gedit-2.15.5-copy-xattrs.patch delete mode 100644 gedit-2.16.0-a11y.patch delete mode 100644 gedit-tags-size.patch diff --git a/gedit-2.13.1-filesel-persistent-size.patch b/gedit-2.13.1-filesel-persistent-size.patch deleted file mode 100644 index b2b5916..0000000 --- a/gedit-2.13.1-filesel-persistent-size.patch +++ /dev/null @@ -1,176 +0,0 @@ ---- gedit-2.13.1/data/gedit.schemas.in.filesel 2006-01-08 21:06:29.000000000 -0500 -+++ gedit-2.13.1/data/gedit.schemas.in 2006-01-08 21:19:10.000000000 -0500 -@@ -604,5 +604,29 @@ - is writable by default. - - -+ -+ -+ /schemas/apps/gedit-2/preferences/ui/open_save/selector_width -+ /apps/gedit-2/preferences/ui/open_save/selector_width -+ gedit -+ int -+ 400 -+ -+ Open/Save Dialog Width -+ Persistent Open/Save dialog width. -+ -+ -+ -+ -+ /schemas/apps/gedit-2/preferences/ui/open_save/selector_height -+ /apps/gedit-2/preferences/ui/open_save/selector_height -+ gedit -+ int -+ 400 -+ -+ Open/Save Dialog Height -+ Persistent Open/Save dialog height. -+ -+ - - ---- gedit-2.13.1/gedit/gedit-prefs-manager.h.filesel 2006-01-08 21:10:21.000000000 -0500 -+++ gedit-2.13.1/gedit/gedit-prefs-manager.h 2006-01-08 21:22:10.000000000 -0500 -@@ -101,6 +101,10 @@ - #define GPM_RECENTS_DIR GPM_PREFS_DIR "/ui/recents" - #define GPM_MAX_RECENTS GPM_RECENTS_DIR "/max_recents" - -+#define GPM_OPENSAVE_DIR GPM_PREFS_DIR "/ui/open_save" -+#define GPM_OPENSAVE_WIDTH GPM_OPENSAVE_DIR "/selector_width" -+#define GPM_OPENSAVE_HEIGHT GPM_OPENSAVE_DIR "/selector_height" -+ - /* Print */ - #define GPM_PRINT_PAGE_DIR GPM_PREFS_DIR "/print/page" - #define GPM_PRINT_SYNTAX GPM_PRINT_PAGE_DIR "/print_syntax_highlighting" -@@ -184,6 +188,9 @@ - - #define GPM_DEFAULT_MAX_RECENTS 5 - -+#define GPM_DEFAULT_OPENSAVE_WIDTH 400 -+#define GPM_DEFAULT_OPENSAVE_HEIGHT 400 -+ - #define GPM_DEFAULT_WINDOW_STATE 0 - #define GPM_DEFAULT_WINDOW_WIDTH 650 - #define GPM_DEFAULT_WINDOW_HEIGHT 500 -@@ -377,6 +384,15 @@ - */ - gint gedit_prefs_manager_get_max_recents (void); - -+/* Persistent size of open/save dialogs */ -+gint gedit_prefs_manager_get_opensave_dialog_width (void); -+void gedit_prefs_manager_set_opensave_dialog_width (gint width); -+gboolean gedit_prefs_manager_opensave_dialog_width_can_set (void); -+ -+gint gedit_prefs_manager_get_opensave_dialog_height (void); -+void gedit_prefs_manager_set_opensave_dialog_height (gint height); -+gboolean gedit_prefs_manager_opensave_dialog_height_can_set (void); -+ - /* Encodings */ - GSList *gedit_prefs_manager_get_auto_detected_encodings (void); - ---- gedit-2.13.1/gedit/gedit-commands-file.c.filesel 2006-01-08 21:22:53.000000000 -0500 -+++ gedit-2.13.1/gedit/gedit-commands-file.c 2006-01-08 21:29:17.000000000 -0500 -@@ -50,6 +50,7 @@ - #include "dialogs/gedit-close-confirmation-dialog.h" - #include "dialogs/gedit-open-location-dialog.h" - #include "gedit-file-chooser-dialog.h" -+#include "gedit-prefs-manager.h" - - - /* Defined constants */ -@@ -239,9 +240,15 @@ - { - GSList *uris; - const GeditEncoding *encoding; -+ gint selector_width; -+ gint selector_height; - - gedit_debug (DEBUG_COMMANDS); - -+ gtk_window_get_size (GTK_WINDOW (dialog), &selector_width, &selector_height); -+ gedit_prefs_manager_set_opensave_dialog_width (selector_width); -+ gedit_prefs_manager_set_opensave_dialog_height (selector_height); -+ - if (response_id != GTK_RESPONSE_OK) - { - gtk_widget_destroy (GTK_WIDGET (dialog)); -@@ -272,6 +279,8 @@ - gpointer data; - GeditDocument *doc; - gchar *default_path = NULL; -+ gint selector_width; -+ gint selector_height; - - gedit_debug (DEBUG_COMMANDS); - -@@ -336,6 +345,10 @@ - - g_free (default_path); - -+ selector_width = gedit_prefs_manager_get_opensave_dialog_width (); -+ selector_height = gedit_prefs_manager_get_opensave_dialog_height (); -+ gtk_window_resize (GTK_WINDOW (open_dialog), selector_width, selector_height); -+ - g_signal_connect (open_dialog, - "response", - G_CALLBACK (open_dialog_response_cb), -@@ -585,6 +598,8 @@ - GeditTab *tab; - gpointer data; - GSList *tabs_to_save_as; -+ gint selector_width; -+ gint selector_height; - - gedit_debug (DEBUG_COMMANDS); - -@@ -603,6 +618,10 @@ - - encoding = gedit_file_chooser_dialog_get_encoding (dialog); - -+ gtk_window_get_size (GTK_WINDOW (dialog), &selector_width, &selector_height); -+ gedit_prefs_manager_set_opensave_dialog_width (selector_width); -+ gedit_prefs_manager_set_opensave_dialog_height (selector_height); -+ - gtk_widget_destroy (GTK_WIDGET (dialog)); - - if (tab != NULL) -@@ -701,6 +720,8 @@ - gchar *uri; - gboolean uri_set = FALSE; - const GeditEncoding *encoding; -+ gint selector_width; -+ gint selector_height; - - g_return_if_fail (GEDIT_IS_TAB (tab)); - g_return_if_fail (GEDIT_IS_WINDOW (window)); -@@ -778,6 +799,10 @@ - G_CALLBACK (save_dialog_response_cb), - window); - -+ selector_width = gedit_prefs_manager_get_opensave_dialog_width(); -+ selector_height = gedit_prefs_manager_get_opensave_dialog_height(); -+ gtk_window_resize (GTK_WINDOW (save_dialog), selector_width, selector_height); -+ - gtk_widget_show (save_dialog); - } - ---- gedit-2.13.1/gedit/gedit-prefs-manager.c.filesel 2006-01-08 21:10:08.000000000 -0500 -+++ gedit-2.13.1/gedit/gedit-prefs-manager.c 2006-01-08 21:20:17.000000000 -0500 -@@ -721,6 +721,16 @@ - - } - -+/* Open/Save dialog width */ -+DEFINE_INT_PREF (opensave_dialog_width, -+ GPM_OPENSAVE_WIDTH, -+ GPM_DEFAULT_OPENSAVE_WIDTH) -+ -+/* Open/Save dialog height */ -+DEFINE_INT_PREF (opensave_dialog_height, -+ GPM_OPENSAVE_HEIGHT, -+ GPM_DEFAULT_OPENSAVE_HEIGHT) -+ - /* Statusbar visiblity */ - DEFINE_BOOL_PREF (statusbar_visible, - GPM_STATUSBAR_VISIBLE, diff --git a/gedit-2.15.1-bgo-341055-workaround.patch b/gedit-2.15.1-bgo-341055-workaround.patch deleted file mode 100644 index 7829fbd..0000000 --- a/gedit-2.15.1-bgo-341055-workaround.patch +++ /dev/null @@ -1,77 +0,0 @@ ---- gedit-2.15.1/gedit/gedit-commands-file.c.bgo-341055-workaround 2006-05-13 13:46:43.000000000 -0400 -+++ gedit-2.15.1/gedit/gedit-commands-file.c 2006-05-13 13:48:12.000000000 -0400 -@@ -336,12 +336,6 @@ - if (default_path == NULL) - default_path = g_strdup (_gedit_window_get_default_path (window)); - -- if (default_path != NULL) -- gtk_file_chooser_set_current_folder_uri (GTK_FILE_CHOOSER (open_dialog), -- default_path); -- -- g_free (default_path); -- - selector_width = gedit_prefs_manager_get_opensave_dialog_width (); - selector_height = gedit_prefs_manager_get_opensave_dialog_height (); - gtk_window_resize (GTK_WINDOW (open_dialog), selector_width, selector_height); -@@ -351,6 +345,11 @@ - window); - - gtk_widget_show (open_dialog); -+ -+ if (default_path != NULL) -+ gtk_file_chooser_set_current_folder_uri (GTK_FILE_CHOOSER (open_dialog), -+ default_path); -+ g_free (default_path); - } - - static void -@@ -767,24 +766,6 @@ - - g_free (uri); - -- if (!uri_set) -- { -- const gchar *default_path; -- gchar *docname; -- -- default_path = _gedit_window_get_default_path (window); -- docname = gedit_document_get_short_name_for_display (doc); -- -- if (default_path != NULL) -- gtk_file_chooser_set_current_folder_uri (GTK_FILE_CHOOSER (save_dialog), -- default_path); -- -- gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (save_dialog), -- docname); -- -- g_free (docname); -- } -- - /* Set suggested encoding */ - encoding = gedit_document_get_encoding (doc); - g_return_if_fail (encoding != NULL); -@@ -807,6 +788,24 @@ - gtk_window_resize (GTK_WINDOW (save_dialog), selector_width, selector_height); - - gtk_widget_show (save_dialog); -+ -+ if (!uri_set) -+ { -+ const gchar *default_path; -+ gchar *docname; -+ -+ default_path = _gedit_window_get_default_path (window); -+ docname = gedit_document_get_short_name_for_display (doc); -+ -+ if (default_path != NULL) -+ gtk_file_chooser_set_current_folder_uri (GTK_FILE_CHOOSER (save_dialog), -+ default_path); -+ -+ gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (save_dialog), -+ docname); -+ -+ g_free (docname); -+ } - } - - static void diff --git a/gedit-2.15.5-copy-xattrs.patch b/gedit-2.15.5-copy-xattrs.patch deleted file mode 100644 index 93f0cf3..0000000 --- a/gedit-2.15.5-copy-xattrs.patch +++ /dev/null @@ -1,92 +0,0 @@ -diff -rup gedit-2.15.5-orig/configure.ac gedit-2.15.5/configure.ac ---- gedit-2.15.5-orig/configure.ac 2006-08-10 12:25:58.000000000 -0400 -+++ gedit-2.15.5/configure.ac 2006-08-10 15:16:02.000000000 -0400 -@@ -87,6 +87,12 @@ AC_SUBST(PSPELL_LIBS) - - - dnl ================================================================ -+dnl libattr checks -+dnl ================================================================ -+ -+AC_CHECK_LIB(attr, attr_copy_fd) -+ -+dnl ================================================================ - dnl Start of pkg-config checks - dnl ================================================================ - -Only in gedit-2.15.5: configure.ac.xattrs -diff -rup gedit-2.15.5-orig/gedit/gedit-document-saver.c gedit-2.15.5/gedit/gedit-document-saver.c ---- gedit-2.15.5-orig/gedit/gedit-document-saver.c 2006-05-18 18:55:16.000000000 -0400 -+++ gedit-2.15.5/gedit/gedit-document-saver.c 2006-08-10 15:16:08.000000000 -0400 -@@ -42,6 +42,12 @@ - #include - #include - -+#ifdef HAVE_LIBATTR -+# include -+#else -+# define attr_copy_fd(x1, x2, x3, x4, x5, x6) (errno = ENOSYS, -1) -+#endif -+ - #include "gedit-document-saver.h" - #include "gedit-debug.h" - #include "gedit-convert.h" -@@ -457,6 +463,15 @@ get_slow_mime_type (const char *text_uri - - /* ----------- local files ----------- */ - -+#ifdef HAVE_LIBATTR -+static int all_xattrs(const char *xattr, struct error_context *err) -+{ /* Save everything: user/root xattrs, SELinux, ACLs. */ -+ (void)xattr; -+ (void)err; -+ return 1; -+} -+#endif -+ - static gboolean - save_existing_local_file (GeditDocumentSaver *saver) - { -@@ -597,6 +612,22 @@ save_existing_local_file (GeditDocumentS - goto fallback_strategy; - } - -+ /* copy the xattrs, like user.mime_type, over. Also ACLs and -+ SELinux context. */ -+ if ((attr_copy_fd (saver->priv->local_path, saver->priv->fd, -+ tmp_filename, tmpfd, -+ all_xattrs, NULL) == -1) && -+ (errno != EOPNOTSUPP) && (errno != ENOSYS)) -+ { -+ gedit_debug_message (DEBUG_SAVER, "could not set xattrs"); -+ -+ close (tmpfd); -+ unlink (tmp_filename); -+ g_free (tmp_filename); -+ -+ goto fallback_strategy; -+ } -+ - if (!write_document_contents (tmpfd, - GTK_TEXT_BUFFER (saver->priv->document), - saver->priv->encoding, -@@ -751,6 +782,18 @@ save_existing_local_file (GeditDocumentS - } - } - -+ /* copy the xattrs, like user.mime_type, over. Also ACLs and -+ SELinux context. */ -+ if ((attr_copy_fd (saver->priv->local_path, saver->priv->fd, -+ backup_filename, bfd, -+ all_xattrs, NULL) == -1) && -+ (errno != EOPNOTSUPP) && (errno != ENOSYS)) -+ { -+ gedit_debug_message (DEBUG_SAVER, "could not set xattrs"); -+ -+ goto out; /* is it better to save or not save? */ -+ } -+ - if (!copy_file_data (saver->priv->fd, bfd, NULL)) - { - gedit_debug_message (DEBUG_SAVER, "could not copy data into the backup"); -Only in gedit-2.15.5/gedit: gedit-document-saver.c.xattrs diff --git a/gedit-2.16.0-a11y.patch b/gedit-2.16.0-a11y.patch deleted file mode 100644 index 51c7d16..0000000 --- a/gedit-2.16.0-a11y.patch +++ /dev/null @@ -1,53 +0,0 @@ ---- gedit-2.16.0/gedit/gedit-commands-file.c.a11y 2006-11-29 15:34:43.000000000 -0500 -+++ gedit-2.16.0/gedit/gedit-commands-file.c 2006-11-29 15:39:53.000000000 -0500 -@@ -1151,6 +1151,7 @@ - gchar *primary_msg; - gchar *secondary_msg; - glong seconds; -+ AtkObject *atk_obj, *win_atk_obj; - - gedit_debug (DEBUG_COMMANDS); - -@@ -1258,6 +1259,15 @@ - gtk_dialog_set_default_response (GTK_DIALOG (dialog), - GTK_RESPONSE_CANCEL); - -+ atk_obj = gtk_widget_get_accessible (dialog); -+ win_atk_obj = gtk_widget_get_accessible (GTK_WIDGET (window)); -+ if (GTK_IS_ACCESSIBLE (atk_obj)) -+ { -+ atk_object_set_name (atk_obj, "Question"); -+ atk_object_set_role (atk_obj, ATK_ROLE_ALERT); -+ atk_object_add_relationship (atk_obj, ATK_RELATION_POPUP_FOR, win_atk_obj); -+ } -+ - return dialog; - } - ---- gedit-2.16.0/gedit/gedit-view.c.a11y 2006-11-29 15:06:30.000000000 -0500 -+++ gedit-2.16.0/gedit/gedit-view.c 2006-11-29 15:12:29.000000000 -0500 -@@ -1468,7 +1468,7 @@ - GtkWidget *vbox; - GtkWidget *toplevel; - GtkEntryCompletion *completion; -- -+ AtkObject *atk_obj, *win_atk_obj; - - toplevel = gtk_widget_get_toplevel (GTK_WIDGET (view)); - -@@ -1507,6 +1507,15 @@ - G_CALLBACK (search_window_scroll_event), - view); - -+ atk_obj = gtk_widget_get_accessible (view->priv->search_window); -+ win_atk_obj = gtk_widget_get_accessible (toplevel); -+ if (GTK_IS_ACCESSIBLE (atk_obj)) -+ { -+ atk_object_set_name (atk_obj, "Line number popup"); -+ atk_object_set_role (atk_obj, ATK_ROLE_ALERT); -+ atk_object_add_relationship (atk_obj, ATK_RELATION_POPUP_FOR, win_atk_obj); -+ } -+ - frame = gtk_frame_new (NULL); - gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_IN); - gtk_widget_show (frame); diff --git a/gedit-tags-size.patch b/gedit-tags-size.patch deleted file mode 100644 index 6b4ea29..0000000 --- a/gedit-tags-size.patch +++ /dev/null @@ -1,7779 +0,0 @@ -44f65201994ea0c6b2e31fc887bb9cfdeb2b5a0f -diff --git a/plugins/taglist/HTML.tags.xml.in b/plugins/taglist/HTML.tags.xml.in -index a1c0729..cca583c 100644 ---- a/plugins/taglist/HTML.tags.xml.in -+++ b/plugins/taglist/HTML.tags.xml.in -@@ -1,2677 +1,2672 @@ -- -- -- -- -- -- -- <abbr title=" -- "></abbr> -- -- -- -- abbr=" -- " -- -- -- -- accesskey=" -- " -- -- -- -- <acronym title=" -- "></acronym> -- -- -- -- align=" -- " -- -- -- -- char=" -- " -- -- -- -- alt=" -- " -- -- -- -- <a href=" -- "></a> -- -- -- -- <a id=" -- "></a> -- -+ -+ -+ -+ -+ -+ <abbr title=" -+ "></abbr> -+ -+ -+ -+ abbr=" -+ " -+ -+ -+ -+ accesskey=" -+ " -+ -+ -+ -+ <acronym title=" -+ "></acronym> -+ -+ -+ -+ align=" -+ " -+ -+ -+ -+ char=" -+ " -+ -+ -+ -+ alt=" -+ " -+ -+ -+ -+ <a href=" -+ "></a> -+ -+ -+ -+ <a id=" -+ "></a> -+ - - -- -- code=" -- " -- -- -- -- content=" -- " -- -- -- -- <address> -- </address> -- -- -- -- axis=" -- " -- -- -+ -+ code=" -+ " -+ -+ -+ -+ content=" -+ " -+ -+ -+ -+ <address> -+ </address> -+ -+ -+ -+ axis=" -+ " -+ -+ - -- -- bgcolor=" -- " -- -- -+ -+ bgcolor=" -+ " -+ -+ - -- -- background=" -- " -- -- -+ -+ background=" -+ " -+ -+ - -- -- <basefont> -- -- -- -- codebase=" -- " -- -- -- -- <b> -- </b> -- -- -+ -+ <basefont> -+ -+ -+ -+ codebase=" -+ " -+ -+ -+ -+ <b> -+ </b> -+ -+ - -- -- border=" -- " -- -- -- -- rowspan=" -- " -- -- -+ -+ border=" -+ " -+ -+ -+ -+ rowspan=" -+ " -+ -+ - -- -- <center> -- </center> -- -- -- -- charset=" -- " -- -- -- -- checked="checked" -- -- -- -- <cite> -- </cite> -- -- -- -- cite=" -- " -- -- -- -- classid=" -- " -- -- -- -- class=" -- " -- -- -- -- clear=" -- " -- -- -- -- codetype=" -- " -- -- -+ -+ <center> -+ </center> -+ -+ -+ -+ charset=" -+ " -+ -+ -+ -+ checked="checked" -+ -+ -+ -+ <cite> -+ </cite> -+ -+ -+ -+ cite=" -+ " -+ -+ -+ -+ classid=" -+ " -+ -+ -+ -+ class=" -+ " -+ -+ -+ -+ clear=" -+ " -+ -+ -+ -+ codetype=" -+ " -+ -+ - -- -- alink=" -- " -- -- -- -- colspan=" -- " -- -- -- -- cols=" -- " -- -- -- -- <!-- -- --> -- -- -- -- <code> -- </code> -- -- -- -- -- type=" -- " -- -- -- -- coords=" -- " -- -- -- -- datetime="YYYYMMDD" -- -- -+ -+ alink=" -+ " -+ -+ -+ -+ colspan=" -+ " -+ -+ -+ -+ cols=" -+ " -+ -+ -+ -+ <!-- -+ --> -+ -+ -+ -+ <code> -+ </code> -+ -+ -+ -+ -+ type=" -+ " -+ -+ -+ -+ coords=" -+ " -+ -+ -+ -+ datetime="YYYYMMDD" -+ -+ - -- -- declare="declare" -- -- -- -- -- defer="defer" -- -- -- -- <dd> -- </dd> -- -- -- -- <dl> -- </dl> -- -- -- -- <dt> -- </dt> -- -- -- -- <del> -- </del> -- -- -- -- dir=" -- " -- -- -+ -+ declare="declare" -+ -+ -+ -+ -+ defer="defer" -+ -+ -+ -+ <dd> -+ </dd> -+ -+ -+ -+ <dl> -+ </dl> -+ -+ -+ -+ <dt> -+ </dt> -+ -+ -+ -+ <del> -+ </del> -+ -+ -+ -+ dir=" -+ " -+ -+ - -- -- <dir> -- </dir> -- -- -- -- disabled="disabled" -- -- -- -- <div> -- </div> -- -- -- -- <div style=> -- </div> -- -- -- -- <base href=" -- " /> -- -- -- -- <body> -- </body> -- -- -- -- <head> -- </head> -- -- -- -- id=" -- " -- -- -- -- <title> -- </title> -- -- -- -- <!DOCTYPE> -- -- -- -- <em> -- </em> -- -- -- -- enctype=" -- " -- -- -+ -+ <dir> -+ </dir> -+ -+ -+ -+ disabled="disabled" -+ -+ -+ -+ <div> -+ </div> -+ -+ -+ -+ <div style=> -+ </div> -+ -+ -+ -+ <base href=" -+ " /> -+ -+ -+ -+ <body> -+ </body> -+ -+ -+ -+ <head> -+ </head> -+ -+ -+ -+ id=" -+ " -+ -+ -+ -+ <title> -+ </title> -+ -+ -+ -+ <!DOCTYPE> -+ -+ -+ -+ <em> -+ </em> -+ -+ -+ -+ enctype=" -+ " -+ -+ - -- -- face=" -- " -- -- -- -- for=" -- " -- -- -- -- <br /> -- -- -- -- action=" -- " -- -- -- -- <fieldset> -- </fieldset> -- -- -- -- <label> -- </label> -- -- -- -- <input type=" -- " /> -- -- -- -- <input /> -- -- -- -- <form method=" -- "></form> -- -- -- -- method=" -- " -- -- -- -- <form> -- </form> -- -- -- -- rel=" -- " -- -- -- -- frame=" -- " -- -- -- -- <frame src=" -- "></frame> -- -- -- -- target=" -- " -- -- -- -- <frame> -- </frame> -- -- -- -- frameborder=" -- " -- -- -- -- <frameset cols=" -- "></frameset> -- -- -- -- <frameset rows=" -- "></frameset> -- -- -- -- <frameset> -- </frameset> -- -- -- -- framespacing=" -- " -- -- -- -- <object> -- </object> -- -- -- -- <meta content=" -- "></meta> -- -- -- -- <span> -- </span> -- -- -- -- headers=" -- " -- -- -- -- <h1> -- </h1> -- -- -- -- <h2> -- </h2> -- -- -- -- <h3> -- </h3> -- -- -- -- <h4> -- </h4> -- -- -- -- <h5> -- </h5> -- -- -- -- <h6> -- </h6> -- -- -- -- height=" -- -- -- -- <hr /> -- -- -+ -+ face=" -+ " -+ -+ -+ -+ for=" -+ " -+ -+ -+ -+ <br /> -+ -+ -+ -+ action=" -+ " -+ -+ -+ -+ <fieldset> -+ </fieldset> -+ -+ -+ -+ <label> -+ </label> -+ -+ -+ -+ <input type=" -+ " /> -+ -+ -+ -+ <input /> -+ -+ -+ -+ <form method=" -+ "></form> -+ -+ -+ -+ method=" -+ " -+ -+ -+ -+ <form> -+ </form> -+ -+ -+ -+ rel=" -+ " -+ -+ -+ -+ frame=" -+ " -+ -+ -+ -+ <frame src=" -+ "></frame> -+ -+ -+ -+ target=" -+ " -+ -+ -+ -+ <frame> -+ </frame> -+ -+ -+ -+ frameborder=" -+ " -+ -+ -+ -+ <frameset cols=" -+ "></frameset> -+ -+ -+ -+ <frameset rows=" -+ "></frameset> -+ -+ -+ -+ <frameset> -+ </frameset> -+ -+ -+ -+ framespacing=" -+ " -+ -+ -+ -+ <object> -+ </object> -+ -+ -+ -+ <meta content=" -+ "></meta> -+ -+ -+ -+ <span> -+ </span> -+ -+ -+ -+ headers=" -+ " -+ -+ -+ -+ <h1> -+ </h1> -+ -+ -+ -+ <h2> -+ </h2> -+ -+ -+ -+ <h3> -+ </h3> -+ -+ -+ -+ <h4> -+ </h4> -+ -+ -+ -+ <h5> -+ </h5> -+ -+ -+ -+ <h6> -+ </h6> -+ -+ -+ -+ height=" -+ -+ -+ -+ <hr /> -+ -+ - -- -- hspace=" -- " -- -- -- -- href=" -- " -- -- -- -- <html> -- </html> -- -- -- -- http-equiv=" -- " -- -- -- -- <bdo> -- </bdo> -- -- -- -- <area alt=" -- "></area> -- -- -- -- <map name=" -- "></map> -- -- -- -- <map id=" -- "></map> -- -- -- -- <img id=" -- " src="" alt="" /> -- -- -- -- <iframe> -- </iframe> -- -- -- -- <ins> -- </ins> -- -- -- -- <dfn> -- </dfn> -- -- -- -- <i> -- </i> -- -- -+ -+ hspace=" -+ " -+ -+ -+ -+ href=" -+ " -+ -+ -+ -+ <html> -+ </html> -+ -+ -+ -+ http-equiv=" -+ " -+ -+ -+ -+ <bdo> -+ </bdo> -+ -+ -+ -+ <area alt=" -+ "></area> -+ -+ -+ -+ <map name=" -+ "></map> -+ -+ -+ -+ <map id=" -+ "></map> -+ -+ -+ -+ <img id=" -+ " src="" alt="" /> -+ -+ -+ -+ <iframe> -+ </iframe> -+ -+ -+ -+ <ins> -+ </ins> -+ -+ -+ -+ <dfn> -+ </dfn> -+ -+ -+ -+ <i> -+ </i> -+ -+ - -- -- <applet height=" -- " width=""></applet> -- -- -- -- label=" -- " -- -- -- -- hreflang=" -- " -- -- -- -- lang=" -- " -- -- -- -- <big> -- </big> -- -- -+ -+ <applet height=" -+ " width=""></applet> -+ -+ -+ -+ label=" -+ " -+ -+ -+ -+ hreflang=" -+ " -+ -+ -+ -+ lang=" -+ " -+ -+ -+ -+ <big> -+ </big> -+ -+ - -- -- link=" -- " -- -- -- -- <li> -- </li> -- -- -- -- accept=" -- " -- -- -- -- accept-charset=" -- " -- -- -- -- <font> -- </font> -- -- -- -- longdesc=" -- " -- -- -- -- <blockquote> -- </blockquote> -- -- -+ -+ link=" -+ " -+ -+ -+ -+ <li> -+ </li> -+ -+ -+ -+ accept=" -+ " -+ -+ -+ -+ accept-charset=" -+ " -+ -+ -+ -+ <font> -+ </font> -+ -+ -+ -+ longdesc=" -+ " -+ -+ -+ -+ <blockquote> -+ </blockquote> -+ -+ - -- -- marginheight=" -- " -- -- -+ -+ marginheight=" -+ " -+ -+ - -- -- marginwidth=" -- " -- -- -- -- maxlength=" -- " -- -- -- -- media=" -- " -- -- -- -- -- <link rel=" -- " type="" href="" /> -- -- -- -- -- <menu> -- </menu> -- -- -- -- <textarea cols=" -- " rows=""></textarea> -- -- -- -- multiple="multiple" -- -- -- -- name=" -- " -- -- -- -- <param name=" -- "></param> -- -- -- -- <noframes> -- </noframes> -- -- -- -- noresize="noresize" -- -- -- -- <noscript> -- </noscript> -- -- -+ -+ marginwidth=" -+ " -+ -+ -+ -+ maxlength=" -+ " -+ -+ -+ -+ media=" -+ " -+ -+ -+ -+ -+ <link rel=" -+ " type="" href="" /> -+ -+ - -- -- noshade="noshade" -- -- -- -- nohref=" -- " -- -- -+ -+ <menu> -+ </menu> -+ -+ -+ -+ <textarea cols=" -+ " rows=""></textarea> -+ -+ -+ -+ multiple="multiple" -+ -+ -+ -+ name=" -+ " -+ -+ -+ -+ <param name=" -+ "></param> -+ -+ -+ -+ <noframes> -+ </noframes> -+ -+ -+ -+ noresize="noresize" -+ -+ -+ -+ <noscript> -+ </noscript> -+ -+ - -- -- nowrap="nowrap" -- -- -+ -+ noshade="noshade" -+ -+ -+ -+ nohref=" -+ " -+ -+ - -- -- object=" -- " -- -- -- -- data=" -- " -- -- -- -- charoff=" -- " -- -- -- -- onblur=" -- " -- -- -- -- onchange=" -- " -- -- -- -- onclick=" -- " -- -- -- -- ondbclick=" -- " -- -- -- -- onfocus=" -- " -- -- -- -- onkeydown=" -- " -- -- -- -- onkeypress=" -- " -- -- -- -- onkeyup=" -- " -- -- -- -- onload=" -- " -- -- -- -- onmousedown=" -- " -- -- -- -- onmousemove=" -- " -- -- -- -- onmouseout=" -- " -- -- -- -- onmouseover=" -- " -- -- -- -- onmouseup=" -- " -- -- -- -- onreset=" -- " -- -- -- -- onselect=" -- " -- -- -- -- onsubmit=" -- " -- -- -- -- onunload=" -- " -- -- -- -- <optgroup label=" -- "></optgroup> -- -- -- -- <select> -- </select> -- -- -- -- <ol> -- </ol> -- -- -- -- <p class=" -- "></p> -- -- -- -- <p style=" -- "></p> -- -- -- -- <p> -- </p> -- -- -- -- <pre> -- </pre> -- -- -- -- profile=" -- " -- -- -- -- <button> -- </button> -- -- -- -- readonly="readonly" -- -- -+ -+ nowrap="nowrap" -+ -+ - -- -- compact="compact_rendering" -- -- -- -- rev=" -- " -- -- -- -- rows=" -- " -- -- -- -- rules=" -- " -- -- -- -- <samp> -- </samp> -- -- -- -- scope=" -- " -- -- -+ -+ object=" -+ " -+ -+ -+ -+ data=" -+ " -+ -+ -+ -+ charoff=" -+ " -+ -+ -+ -+ onblur=" -+ " -+ -+ -+ -+ onchange=" -+ " -+ -+ -+ -+ onclick=" -+ " -+ -+ -+ -+ ondbclick=" -+ " -+ -+ -+ -+ onfocus=" -+ " -+ -+ -+ -+ onkeydown=" -+ " -+ -+ -+ -+ onkeypress=" -+ " -+ -+ -+ -+ onkeyup=" -+ " -+ -+ -+ -+ onload=" -+ " -+ -+ -+ -+ onmousedown=" -+ " -+ -+ -+ -+ onmousemove=" -+ " -+ -+ -+ -+ onmouseout=" -+ " -+ -+ -+ -+ onmouseover=" -+ " -+ -+ -+ -+ onmouseup=" -+ " -+ -+ -+ -+ onreset=" -+ " -+ -+ -+ -+ onselect=" -+ " -+ -+ -+ -+ onsubmit=" -+ " -+ -+ -+ -+ onunload=" -+ " -+ -+ -+ -+ <optgroup label=" -+ "></optgroup> -+ -+ -+ -+ <select> -+ </select> -+ -+ -+ -+ <ol> -+ </ol> -+ -+ -+ -+ <p class=" -+ "></p> -+ -+ -+ -+ <p style=" -+ "></p> -+ -+ -+ -+ <p> -+ </p> -+ -+ -+ -+ <pre> -+ </pre> -+ -+ -+ -+ profile=" -+ " -+ -+ -+ -+ <button> -+ </button> -+ -+ -+ -+ readonly="readonly" -+ -+ - -- -- language=" -- " -- -- -- -- <script type=" -- "></script> -- -- -- -- scrolling=" -- " -- -- -- -- <option> -- </option> -- -- -- -- selected="selected" -- -- -- -- ismap=" -- " -- -- -- -- shape=" -- " -- -- -- -- <q> -- </q> -- -- -+ -+ compact="compact_rendering" -+ -+ -+ -+ rev=" -+ " -+ -+ -+ -+ rows=" -+ " -+ -+ -+ -+ rules=" -+ " -+ -+ -+ -+ <samp> -+ </samp> -+ -+ -+ -+ scope=" -+ " -+ -+ - -- -- size=" -- " -- -- -- -- <small> -- </small> -- -- -- -- src=" -- " -- -- -- -- archive=" -- " -- -- -- -- cellspacing=" -- " -- -- -- -- cellpadding=" -- " -- -- -- -- span=" -- " -- -- -- -- standby=" -- " -- -- -+ -+ language=" -+ " -+ -+ -+ -+ <script type=" -+ "></script> -+ -+ -+ -+ scrolling=" -+ " -+ -+ -+ -+ <option> -+ </option> -+ -+ -+ -+ selected="selected" -+ -+ -+ -+ ismap=" -+ " -+ -+ -+ -+ shape=" -+ " -+ -+ -+ -+ <q> -+ </q> -+ -+ - -- -- start=" -- " -- -- -+ -+ size=" -+ " -+ -+ -+ -+ <small> -+ </small> -+ -+ -+ -+ src=" -+ " -+ -+ -+ -+ archive=" -+ " -+ -+ -+ -+ cellspacing=" -+ " -+ -+ -+ -+ cellpadding=" -+ " -+ -+ -+ -+ span=" -+ " -+ -+ -+ -+ standby=" -+ " -+ -+ - -- -- <s> -- </s> -- -- -+ -+ start=" -+ " -+ -+ - -- -- <strike> -- </strike> -- -- -- -- <strong> -- </strong> -- -- -- -- <style type="text/css"> -- </style> -- -- -- -- style=" -- " -- -- -- -- <sub> -- </sub> -- -- -- -- <sup> -- </sup> -- -- -- -- <tbody> -- </tbody> -- -- -- -- <caption> -- </caption> -- -- -- -- <colgroup> -- </colgroup> -- -- -- -- <col> -- </col> -- -- -- -- <td> -- </td> -- -- -- -- <tfoot> -- </tfoot> -- -- -- -- <th> -- </th> -- -- -- -- <thead> -- </thead> -- -- -- -- <tr> -- </tr> -- -- -- -- summary=" -- " -- -- -- -- <table> -- </table> -- -- -- -- <a target="_blank"> -- </a> -- -- -- -- <a target="_parent"> -- </a> -- -- -- -- <a target="_self"> -- </a> -- -- -- -- <a target="_top"> -- </a> -- -- -- -- <tt> -- </tt> -- -- -+ -+ <s> -+ </s> -+ -+ - -- -- color=" -- " -- -- -+ -+ <strike> -+ </strike> -+ -+ -+ -+ <strong> -+ </strong> -+ -+ -+ -+ <style type="text/css"> -+ </style> -+ -+ -+ -+ style=" -+ " -+ -+ -+ -+ <sub> -+ </sub> -+ -+ -+ -+ <sup> -+ </sup> -+ -+ -+ -+ <tbody> -+ </tbody> -+ -+ -+ -+ <caption> -+ </caption> -+ -+ -+ -+ <colgroup> -+ </colgroup> -+ -+ -+ -+ <col> -+ </col> -+ -+ -+ -+ <td> -+ </td> -+ -+ -+ -+ <tfoot> -+ </tfoot> -+ -+ -+ -+ <th> -+ </th> -+ -+ -+ -+ <thead> -+ </thead> -+ -+ -+ -+ <tr> -+ </tr> -+ -+ -+ -+ summary=" -+ " -+ -+ -+ -+ <table> -+ </table> -+ -+ -+ -+ <a target="_blank"> -+ </a> -+ -+ -+ -+ <a target="_parent"> -+ </a> -+ -+ -+ -+ <a target="_self"> -+ </a> -+ -+ -+ -+ <a target="_top"> -+ </a> -+ -+ -+ -+ <tt> -+ </tt> -+ -+ - -- -- text=" -- " -- -- -- -- <kbd> -- </kbd> -- -- -- -- title=" -- " -- -- -- -- <u> -- </u> -- -- -- -- <ul> -- </ul> -- -- -- -- usemap=" -- " -- -- -- -- valuetype=" -- " -- -- -- -- value=" -- " -- -- -- -- <var> -- </var> -- -- -- -- valign=" -- " -- -- -+ -+ color=" -+ " -+ -+ - -- -- vspace=" -- " -- -- -+ -+ text=" -+ " -+ -+ -+ -+ <kbd> -+ </kbd> -+ -+ -+ -+ title=" -+ " -+ -+ -+ -+ <u> -+ </u> -+ -+ -+ -+ <ul> -+ </ul> -+ -+ -+ -+ usemap=" -+ " -+ -+ -+ -+ valuetype=" -+ " -+ -+ -+ -+ value=" -+ " -+ -+ -+ -+ <var> -+ </var> -+ -+ -+ -+ valign=" -+ " -+ -+ - -- -- vlink=" -- " -- -- -- -- width=" -- " -- -- -- -- -- -- -- -- <abbr> -- </abbr> -- -- -- -- abbr= -- -- -- -- <above> -- -- -- -- accesskey= -- -- -- -- <acronym> -- </acronym> -- -- -- -- align= -- -- -- -- char= -- -- -- -- alt= -- -- -- -- <a href=> -- </a> -- -- -- -- <a> -- </a> -- -- -- -- code= -- -- -- -- <array> -- -- -- -- content= -- -- -- -- <address> -- </address> -- -- -- -- axis= -- -- -- -- bgcolor= -- -- -- -- background= -- -- -- -- <basefont> -- -- -- -- codebase= -- -- -- -- <b> -- </b> -- -- -- -- bordercolor= -- -- -- -- border= -- -- -- -- rowspan= -- -- -- -- <center> -- </center> -- -- -- -- charset= -- -- -- -- checked -- -- -- -- <cite> -- </cite> -- -- -- -- cite= -- -- -- -- classid= -- -- -- -- class= -- -- -- -- clear= -- -- -- -- codetype= -- -- -- -- alink= -- -- -- -- colspan= -- -- -- -- cols= -- -- -- -- <!-- -- --> -- -- -- -- <comment> -- </comment> -- -- -- -- <code> -- </code> -- -- -- -- scheme= -- -- -- -- type= -- -- -- -- coords= -- -- -- -- datetime= -- -- -- -- declare -- -- -- -- -- defer -- -- -- -- <dd> -- </dd> -- -- -- -- <dl> -- </dl> -- -- -- -- <dt> -- </dt> -- -- -- -- <del> -- </del> -- -- -- -- direction= -- -- -- -- dir= -- -- -- -- <dir> -- </dir> -- -- -- -- disabled -- -- -- -- <div> -- </div> -- -- -- -- <div style=> -- </div> -- -- -- -- <base> -- -- -- -- <body> -- </body> -- -- -- -- <head> -- </head> -- -- -- -- id= -- -- -- -- <title> -- </title> -- -- -- -- <!DOCTYPE> -- -- -- -- version= -- -- -- -- <embed> -- </embed> -- -- -- -- <em> -- </em> -- -- -- -- enctype= -- -- -- -- <fig> -- </fig> -- -- -- -- face= -- -- -- -- for= -- -- -- -- <br /> -- -- -- -- action= -- -- -- -- <fieldset> -- </fieldset> -- -- -- -- <label> -- </label> -- -- -- -- <input type=> -- -- -- -- <input> -- -- -- -- <form method=> -- -- -- -- method= -- -- -- -- <form> -- </form> -- -- -- -- rel= -- -- -- -- frame= -- -- -- -- <frame src=> -- -- -- -- target= -- -- -- -- <frame> -- -- -- -- frameborder= -- -- -- -- <frameset cols=> -- </frameset> -- -- -- -- <frameset rows=> -- </frameset> -- -- -- -- <frameset> -- </frameset> -- -- -- -- framespacing= -- -- -- -- <object> -- -- -- -- <meta> -- -- -- -- <span> -- </span> -- -- -- -- headers= -- -- -- -- <h1> -- </h1> -- -- -- -- <h2> -- </h2> -- -- -- -- <h3> -- </h3> -- -- -- -- <h4> -- </h4> -- -- -- -- <h5> -- </h5> -- -- -- -- <h6> -- </h6> -- -- -- -- <h> -- </h> -- -- -- -- height= -- -- -- -- <hr /> -- -- -- -- hspace= -- -- -- -- href= -- -- -- -- <html> -- </html> -- -- -- -- http-equiv= -- -- -- -- <BDO> -- </BDO> -- -- -- -- <area> -- -- -- -- <map name=> -- </map> -- -- -- -- <map> -- </map> -- -- -- -- <img src=> -- -- -- -- <img> -- -- -- -- <iframe> -- </iframe> -- -- -- -- <ilayer> -- </ilayer> -- -- -- -- <ins> -- </ins> -- -- -- -- <dfn> -- </dfn> -- -- -- -- <i> -- </i> -- -- -- -- <applet> -- </applet> -- -- -- -- label= -- -- -- -- hreflang= -- -- -- -- lang= -- -- -- -- <big> -- </big> -- -- -- -- <layer> -- -- -- -- link= -- -- -- -- <li> -- </li> -- -- -- -- accept= -- -- -- -- accept-charset= -- -- -- -- <listing> -- </listing> -- -- -- -- <font> -- </font> -- -- -- -- longdesc= -- -- -- -- <blockquote> -- </blockquote> -- -- -- -- mailto= -- -- -- -- marginheight= -- -- -- -- marginwidth= -- -- -- -- <marquee> -- </marquee> -- -- -- -- maxlength= -- -- -- -- media= -- -- -- -- <link rel="> -- -- -- -- <menu> -- </menu> -- -- -- -- <multicol> -- </multicol> -- -- -- -- <textarea> -- </textarea> -- -- -- -- multiple -- -- -- -- name= -- -- -- -- <param> -- -- -- -- <nextid> -- -- -- -- <noembed> -- -- -- -- <noframes> -- </noframes> -- -- -- -- <nolayer> -- </nolayer> -- -- -- -- <nobr> -- </nobr> -- -- -- -- noresize -- -- -- -- <noscript> -- </noscript> -- -- -- -- noshade -- -- -- -- nohref -- -- -- -- nowrap -- -- -- -- <note> -- </note> -- -- -- -- object= -- -- -- -- data= -- -- -- -- charoff= -- -- -- -- onblur= -- -- -- -- onchange= -- -- -- -- onclick= -- -- -- -- ondbclick= -- -- -- -- onfocus= -- -- -- -- onkeydown= -- -- -- -- onkeypress= -- -- -- -- onkeyup= -- -- -- -- onload= -- -- -- -- onmousedown= -- -- -- -- onmousemove= -- -- -- -- onmouseout= -- -- -- -- onmouseover= -- -- -- -- onmouseup= -- -- -- -- onreset= -- -- -- -- onselect= -- -- -- -- onsubmit= -- -- -- -- onunload= -- -- -- -- <optgroup> -- </optgroup> -- -- -- -- <select> -- </select> -- -- -- -- <ol> -- </ol> -- -- -- -- <p class=> -- </p> -- -- -- -- <p style=> -- </p> -- -- -- -- <p> -- </p> -- -- -- -- <xmp> -- </xmp> -- -- -- -- <pre> -- </pre> -- -- -- -- profile= -- -- -- -- prompt= -- -- -- -- <button> -- </button> -- -- -- -- <quote> -- -- -- -- <range> -- -- -- -- readonly -- -- -- -- compact -- -- -- -- rev= -- -- -- -- <root> -- -- -- -- rows= -- -- -- -- rules= -- -- -- -- <samp> -- </samp> -- -- -- -- scope= -- -- -- -- language= -- -- -- -- <script> -- </script> -- -- -- -- scrolling= -- -- -- -- <option> -- -- -- -- selected -- -- -- -- ismap -- -- -- -- shape= -- -- -- -- <q> -- </q> -- -- -- -- <isindex> -- -- -- -- size= -- -- -- -- <small> -- </small> -- -- -- -- <wbr> -- -- -- -- <sound> -- -- -- -- src= -- -- -- -- archive= -- -- -- -- <spacer> -- -- -- -- cellspacing= -- -- -- -- cellpadding= -- -- -- -- span= -- -- -- -- <sqrt> -- -- -- -- standby= -- -- -- -- start -- -- -- -- <s> -- </s> -- -- -- -- <strike> -- </strike> -- -- -- -- <strong> -- </strong> -- -- -- -- <style> -- </style> -- -- -- -- style= -- -- -- -- <sub> -- </sub> -- -- -- -- <sup> -- </sup> -- -- -- -- tabindex= -- -- -- -- <tbody> -- </tbody> -- -- -- -- <caption> -- </caption> -- -- -- -- <colgroup> -- </colgroup> -- -- -- -- <col> -- </col> -- -- -- -- <td> -- </td> -- -- -- -- <tfoot> -- </tfoot> -- -- -- -- <th> -- </th> -- -- -- -- <thead> -- </thead> -- -- -- -- <tr> -- </tr> -- -- -- -- summary= -- -- -- -- <table> -- </table> -- -- -- -- <a target="_blank"> -- </a> -- -- -- -- <a target="_parent"> -- </a> -- -- -- -- <a target="_self"> -- </a> -- -- -- -- <a target="_top"> -- </a> -- -- -- -- <tt> -- </tt> -- -- -- -- color= -- -- -- -- text= -- -- -- -- <kbd> -- </kbd> -- -- -- -- <text> -- -- -- -- title= -- -- -- -- topmargin -- -- -- -- <u> -- </u> -- -- -- -- <ul> -- </ul> -- -- -- -- url= -- -- -- -- usemap= -- -- -- -- valuetype= -- -- -- -- value= -- -- -- -- <var> -- </var> -- -- -- -- valign= -- -- -- -- vspace= -- -- -- -- vlink= -- -- -- -- width= -- -- -- -- -- -- -- -- &nbsp; -- -- -- -- &shy; -- -- -- -- &quot; -- -- -- -- &amp; -- -- -- -- &iexcl; -- -- -- -- &brvbar; -- -- -- -- &uml; -- -- -- -- &macr; -- -- -- -- &acute; -- -- -- -- &cedil; -- -- -- -- &lt; -- -- -- -- &gt; -- -- -- -- &plusmn; -- -- -- -- &laquo; -- -- -- -- &raquo; -- -- -- -- &times; -- -- -- -- &divide; -- -- -- -- &cent; -- -- -- -- &pound; -- -- -- -- &euro; -- -- -- -- &curren; -- -- -- -- &yen; -- -- -- -- &sect; -- -- -- -- &copy; -- -- -- -- &not; -- -- -- -- &reg; -- -- -- -- &trade; -- -- -- -- &deg; -- -- -- -- &micro; -- -- -- -- &para; -- -- -- -- &middot; -- -- -- -- &frac14; -- -- -- -- &frac12; -- -- -- -- &frac34; -- -- -- -- &sup1; -- -- -- -- &sup2; -- -- -- -- &sup3; -- -- -- -- &aacute; -- -- -- -- &Aacute; -- -- -- -- &acirc; -- -- -- -- &Acirc; -- -- -- -- &agrave; -- -- -- -- &Agrave; -- -- -- -- &aring; -- -- -- -- &Aring; -- -- -- -- &atilde; -- -- -- -- &Atilde; -- -- -- -- &auml; -- -- -- -- &Auml; -- -- -- -- &ordf; -- -- -- -- &aelig; -- -- -- -- &AElig; -- -- -- -- &ccedil; -- -- -- -- &Ccedil; -- -- -- -- &ETH; -- -- -- -- &eth; -- -- -- -- &eacute; -- -- -- -- &Eacute; -- -- -- -- &ecirc; -- -- -- -- &Ecirc; -- -- -- -- &egrave; -- -- -- -- &Egrave; -- -- -- -- &euml; -- -- -- -- &Euml; -- -- -- -- &iacute; -- -- -- -- &Iacute; -- -- -- -- &icirc; -- -- -- -- &Icirc; -- -- -- -- &igrave; -- -- -- -- &Igrave; -- -- -- -- &iuml; -- -- -- -- &Iuml; -- -- -- -- &ntilde; -- -- -- -- &Ntilde; -- -- -- -- &oacute; -- -- -- -- &Oacute; -- -- -- -- &ocirc; -- -- -- -- &Ocirc; -- -- -- -- &ograve; -- -- -- -- &Ograve; -- -- -- -- &ordm; -- -- -- -- &oslash; -- -- -- -- &Oslash; -- -- -- -- &otilde; -- -- -- -- &Otilde; -- -- -- -- &ouml; -- -- -- -- &Ouml; -- -- -- -- &szlig; -- -- -- -- &thorn; -- -- -- -- &THORN; -- -- -- -- &uacute; -- -- -- -- &Uacute; -- -- -- -- &ucirc; -- -- -- -- &Ucirc; -- -- -- -- &ugrave; -- -- -- -- &Ugrave; -- -- -- -- &uuml; -- -- -- -- &Uuml; -- -- -- -- &yacute; -- -- -- -- &Yacute; -- -- -- -- &yuml; -- -- -- -- -- -- -- -+ -+ vspace=" -+ " -+ - -+ -+ -+ vlink=" -+ " -+ -+ -+ -+ width=" -+ " -+ -+ -+ -+ -+ -+ -+ -+ <abbr> -+ </abbr> -+ -+ -+ -+ abbr= -+ -+ -+ -+ <above> -+ -+ -+ -+ accesskey= -+ -+ -+ -+ <acronym> -+ </acronym> -+ -+ -+ -+ align= -+ -+ -+ -+ char= -+ -+ -+ -+ alt= -+ -+ -+ -+ <a href=> -+ </a> -+ -+ -+ -+ <a> -+ </a> -+ -+ -+ -+ code= -+ -+ -+ -+ <array> -+ -+ -+ -+ content= -+ -+ -+ -+ <address> -+ </address> -+ -+ -+ -+ axis= -+ -+ -+ -+ bgcolor= -+ -+ -+ -+ background= -+ -+ -+ -+ <basefont> -+ -+ -+ -+ codebase= -+ -+ -+ -+ <b> -+ </b> -+ -+ -+ -+ bordercolor= -+ -+ -+ -+ border= -+ -+ -+ -+ rowspan= -+ -+ -+ -+ <center> -+ </center> -+ -+ -+ -+ charset= -+ -+ -+ -+ checked -+ -+ -+ -+ <cite> -+ </cite> -+ -+ -+ -+ cite= -+ -+ -+ -+ classid= -+ -+ -+ -+ class= -+ -+ -+ -+ clear= -+ -+ -+ -+ codetype= -+ -+ -+ -+ alink= -+ -+ -+ -+ colspan= -+ -+ -+ -+ cols= -+ -+ -+ -+ <!-- -+ --> -+ -+ -+ -+ <comment> -+ </comment> -+ -+ -+ -+ <code> -+ </code> -+ -+ -+ -+ scheme= -+ -+ -+ -+ type= -+ -+ -+ -+ coords= -+ -+ -+ -+ datetime= -+ -+ -+ -+ declare -+ -+ -+ -+ -+ defer -+ -+ -+ -+ <dd> -+ </dd> -+ -+ -+ -+ <dl> -+ </dl> -+ -+ -+ -+ <dt> -+ </dt> -+ -+ -+ -+ <del> -+ </del> -+ -+ -+ -+ direction= -+ -+ -+ -+ dir= -+ -+ -+ -+ <dir> -+ </dir> -+ -+ -+ -+ disabled -+ -+ -+ -+ <div> -+ </div> -+ -+ -+ -+ <div style=> -+ </div> -+ -+ -+ -+ <base> -+ -+ -+ -+ <body> -+ </body> -+ -+ -+ -+ <head> -+ </head> -+ -+ -+ -+ id= -+ -+ -+ -+ <title> -+ </title> -+ -+ -+ -+ <!DOCTYPE> -+ -+ -+ -+ version= -+ -+ -+ -+ <embed> -+ </embed> -+ -+ -+ -+ <em> -+ </em> -+ -+ -+ -+ enctype= -+ -+ -+ -+ <fig> -+ </fig> -+ -+ -+ -+ face= -+ -+ -+ -+ for= -+ -+ -+ -+ <br /> -+ -+ -+ -+ action= -+ -+ -+ -+ <fieldset> -+ </fieldset> -+ -+ -+ -+ <label> -+ </label> -+ -+ -+ -+ <input type=> -+ -+ -+ -+ <input> -+ -+ -+ -+ <form method=> -+ -+ -+ -+ method= -+ -+ -+ -+ <form> -+ </form> -+ -+ -+ -+ rel= -+ -+ -+ -+ frame= -+ -+ -+ -+ <frame src=> -+ -+ -+ -+ target= -+ -+ -+ -+ <frame> -+ -+ -+ -+ frameborder= -+ -+ -+ -+ <frameset cols=> -+ </frameset> -+ -+ -+ -+ <frameset rows=> -+ </frameset> -+ -+ -+ -+ <frameset> -+ </frameset> -+ -+ -+ -+ framespacing= -+ -+ -+ -+ <object> -+ -+ -+ -+ <meta> -+ -+ -+ -+ <span> -+ </span> -+ -+ -+ -+ headers= -+ -+ -+ -+ <h1> -+ </h1> -+ -+ -+ -+ <h2> -+ </h2> -+ -+ -+ -+ <h3> -+ </h3> -+ -+ -+ -+ <h4> -+ </h4> -+ -+ -+ -+ <h5> -+ </h5> -+ -+ -+ -+ <h6> -+ </h6> -+ -+ -+ -+ <h> -+ </h> -+ -+ -+ -+ height= -+ -+ -+ -+ <hr /> -+ -+ -+ -+ hspace= -+ -+ -+ -+ href= -+ -+ -+ -+ <html> -+ </html> -+ -+ -+ -+ http-equiv= -+ -+ -+ -+ <BDO> -+ </BDO> -+ -+ -+ -+ <area> -+ -+ -+ -+ <map name=> -+ </map> -+ -+ -+ -+ <map> -+ </map> -+ -+ -+ -+ <img src=> -+ -+ -+ -+ <img> -+ -+ -+ -+ <iframe> -+ </iframe> -+ -+ -+ -+ <ilayer> -+ </ilayer> -+ -+ -+ -+ <ins> -+ </ins> -+ -+ -+ -+ <dfn> -+ </dfn> -+ -+ -+ -+ <i> -+ </i> -+ -+ -+ -+ <applet> -+ </applet> -+ -+ -+ -+ label= -+ -+ -+ -+ hreflang= -+ -+ -+ -+ lang= -+ -+ -+ -+ <big> -+ </big> -+ -+ -+ -+ <layer> -+ -+ -+ -+ link= -+ -+ -+ -+ <li> -+ </li> -+ -+ -+ -+ accept= -+ -+ -+ -+ accept-charset= -+ -+ -+ -+ <listing> -+ </listing> -+ -+ -+ -+ <font> -+ </font> -+ -+ -+ -+ longdesc= -+ -+ -+ -+ <blockquote> -+ </blockquote> -+ -+ -+ -+ mailto= -+ -+ -+ -+ marginheight= -+ -+ -+ -+ marginwidth= -+ -+ -+ -+ <marquee> -+ </marquee> -+ -+ -+ -+ maxlength= -+ -+ -+ -+ media= -+ -+ -+ -+ <link rel="> -+ -+ -+ -+ <menu> -+ </menu> -+ -+ -+ -+ <multicol> -+ </multicol> -+ -+ -+ -+ <textarea> -+ </textarea> -+ -+ -+ -+ multiple -+ -+ -+ -+ name= -+ -+ -+ -+ <param> -+ -+ -+ -+ <nextid> -+ -+ -+ -+ <noembed> -+ -+ -+ -+ <noframes> -+ </noframes> -+ -+ -+ -+ <nolayer> -+ </nolayer> -+ -+ -+ -+ <nobr> -+ </nobr> -+ -+ -+ -+ noresize -+ -+ -+ -+ <noscript> -+ </noscript> -+ -+ -+ -+ noshade -+ -+ -+ -+ nohref -+ -+ -+ -+ nowrap -+ -+ -+ -+ <note> -+ </note> -+ -+ -+ -+ object= -+ -+ -+ -+ data= -+ -+ -+ -+ charoff= -+ -+ -+ -+ onblur= -+ -+ -+ -+ onchange= -+ -+ -+ -+ onclick= -+ -+ -+ -+ ondbclick= -+ -+ -+ -+ onfocus= -+ -+ -+ -+ onkeydown= -+ -+ -+ -+ onkeypress= -+ -+ -+ -+ onkeyup= -+ -+ -+ -+ onload= -+ -+ -+ -+ onmousedown= -+ -+ -+ -+ onmousemove= -+ -+ -+ -+ onmouseout= -+ -+ -+ -+ onmouseover= -+ -+ -+ -+ onmouseup= -+ -+ -+ -+ onreset= -+ -+ -+ -+ onselect= -+ -+ -+ -+ onsubmit= -+ -+ -+ -+ onunload= -+ -+ -+ -+ <optgroup> -+ </optgroup> -+ -+ -+ -+ <select> -+ </select> -+ -+ -+ -+ <ol> -+ </ol> -+ -+ -+ -+ <p class=> -+ </p> -+ -+ -+ -+ <p style=> -+ </p> -+ -+ -+ -+ <p> -+ </p> -+ -+ -+ -+ <xmp> -+ </xmp> -+ -+ -+ -+ <pre> -+ </pre> -+ -+ -+ -+ profile= -+ -+ -+ -+ prompt= -+ -+ -+ -+ <button> -+ </button> -+ -+ -+ -+ <quote> -+ -+ -+ -+ <range> -+ -+ -+ -+ readonly -+ -+ -+ -+ compact -+ -+ -+ -+ rev= -+ -+ -+ -+ <root> -+ -+ -+ -+ rows= -+ -+ -+ -+ rules= -+ -+ -+ -+ <samp> -+ </samp> -+ -+ -+ -+ scope= -+ -+ -+ -+ language= -+ -+ -+ -+ <script> -+ </script> -+ -+ -+ -+ scrolling= -+ -+ -+ -+ <option> -+ -+ -+ -+ selected -+ -+ -+ -+ ismap -+ -+ -+ -+ shape= -+ -+ -+ -+ <q> -+ </q> -+ -+ -+ -+ <isindex> -+ -+ -+ -+ size= -+ -+ -+ -+ <small> -+ </small> -+ -+ -+ -+ <wbr> -+ -+ -+ -+ <sound> -+ -+ -+ -+ src= -+ -+ -+ -+ archive= -+ -+ -+ -+ <spacer> -+ -+ -+ -+ cellspacing= -+ -+ -+ -+ cellpadding= -+ -+ -+ -+ span= -+ -+ -+ -+ <sqrt> -+ -+ -+ -+ standby= -+ -+ -+ -+ start -+ -+ -+ -+ <s> -+ </s> -+ -+ -+ -+ <strike> -+ </strike> -+ -+ -+ -+ <strong> -+ </strong> -+ -+ -+ -+ <style> -+ </style> -+ -+ -+ -+ style= -+ -+ -+ -+ <sub> -+ </sub> -+ -+ -+ -+ <sup> -+ </sup> -+ -+ -+ -+ tabindex= -+ -+ -+ -+ <tbody> -+ </tbody> -+ -+ -+ -+ <caption> -+ </caption> -+ -+ -+ -+ <colgroup> -+ </colgroup> -+ -+ -+ -+ <col> -+ </col> -+ -+ -+ -+ <td> -+ </td> -+ -+ -+ -+ <tfoot> -+ </tfoot> -+ -+ -+ -+ <th> -+ </th> -+ -+ -+ -+ <thead> -+ </thead> -+ -+ -+ -+ <tr> -+ </tr> -+ -+ -+ -+ summary= -+ -+ -+ -+ <table> -+ </table> -+ -+ -+ -+ <a target="_blank"> -+ </a> -+ -+ -+ -+ <a target="_parent"> -+ </a> -+ -+ -+ -+ <a target="_self"> -+ </a> -+ -+ -+ -+ <a target="_top"> -+ </a> -+ -+ -+ -+ <tt> -+ </tt> -+ -+ -+ -+ color= -+ -+ -+ -+ text= -+ -+ -+ -+ <kbd> -+ </kbd> -+ -+ -+ -+ <text> -+ -+ -+ -+ title= -+ -+ -+ -+ topmargin -+ -+ -+ -+ <u> -+ </u> -+ -+ -+ -+ <ul> -+ </ul> -+ -+ -+ -+ url= -+ -+ -+ -+ usemap= -+ -+ -+ -+ valuetype= -+ -+ -+ -+ value= -+ -+ -+ -+ <var> -+ </var> -+ -+ -+ -+ valign= -+ -+ -+ -+ vspace= -+ -+ -+ -+ vlink= -+ -+ -+ -+ width= -+ -+ -+ -+ -+ -+ -+ -+ &nbsp; -+ -+ -+ -+ &shy; -+ -+ -+ -+ &quot; -+ -+ -+ -+ &amp; -+ -+ -+ -+ &iexcl; -+ -+ -+ -+ &brvbar; -+ -+ -+ -+ &uml; -+ -+ -+ -+ &macr; -+ -+ -+ -+ &acute; -+ -+ -+ -+ &cedil; -+ -+ -+ -+ &lt; -+ -+ -+ -+ &gt; -+ -+ -+ -+ &plusmn; -+ -+ -+ -+ &laquo; -+ -+ -+ -+ &raquo; -+ -+ -+ -+ &times; -+ -+ -+ -+ &divide; -+ -+ -+ -+ &cent; -+ -+ -+ -+ &pound; -+ -+ -+ -+ &euro; -+ -+ -+ -+ &curren; -+ -+ -+ -+ &yen; -+ -+ -+ -+ &sect; -+ -+ -+ -+ &copy; -+ -+ -+ -+ &not; -+ -+ -+ -+ &reg; -+ -+ -+ -+ &trade; -+ -+ -+ -+ &deg; -+ -+ -+ -+ &micro; -+ -+ -+ -+ &para; -+ -+ -+ -+ &middot; -+ -+ -+ -+ &frac14; -+ -+ -+ -+ &frac12; -+ -+ -+ -+ &frac34; -+ -+ -+ -+ &sup1; -+ -+ -+ -+ &sup2; -+ -+ -+ -+ &sup3; -+ -+ -+ -+ &aacute; -+ -+ -+ -+ &Aacute; -+ -+ -+ -+ &acirc; -+ -+ -+ -+ &Acirc; -+ -+ -+ -+ &agrave; -+ -+ -+ -+ &Agrave; -+ -+ -+ -+ &aring; -+ -+ -+ -+ &Aring; -+ -+ -+ -+ &atilde; -+ -+ -+ -+ &Atilde; -+ -+ -+ -+ &auml; -+ -+ -+ -+ &Auml; -+ -+ -+ -+ &ordf; -+ -+ -+ -+ &aelig; -+ -+ -+ -+ &AElig; -+ -+ -+ -+ &ccedil; -+ -+ -+ -+ &Ccedil; -+ -+ -+ -+ &ETH; -+ -+ -+ -+ &eth; -+ -+ -+ -+ &eacute; -+ -+ -+ -+ &Eacute; -+ -+ -+ -+ &ecirc; -+ -+ -+ -+ &Ecirc; -+ -+ -+ -+ &egrave; -+ -+ -+ -+ &Egrave; -+ -+ -+ -+ &euml; -+ -+ -+ -+ &Euml; -+ -+ -+ -+ &iacute; -+ -+ -+ -+ &Iacute; -+ -+ -+ -+ &icirc; -+ -+ -+ -+ &Icirc; -+ -+ -+ -+ &igrave; -+ -+ -+ -+ &Igrave; -+ -+ -+ -+ &iuml; -+ -+ -+ -+ &Iuml; -+ -+ -+ -+ &ntilde; -+ -+ -+ -+ &Ntilde; -+ -+ -+ -+ &oacute; -+ -+ -+ -+ &Oacute; -+ -+ -+ -+ &ocirc; -+ -+ -+ -+ &Ocirc; -+ -+ -+ -+ &ograve; -+ -+ -+ -+ &Ograve; -+ -+ -+ -+ &ordm; -+ -+ -+ -+ &oslash; -+ -+ -+ -+ &Oslash; -+ -+ -+ -+ &otilde; -+ -+ -+ -+ &Otilde; -+ -+ -+ -+ &ouml; -+ -+ -+ -+ &Ouml; -+ -+ -+ -+ &szlig; -+ -+ -+ -+ &thorn; -+ -+ -+ -+ &THORN; -+ -+ -+ -+ &uacute; -+ -+ -+ -+ &Uacute; -+ -+ -+ -+ &ucirc; -+ -+ -+ -+ &Ucirc; -+ -+ -+ -+ &ugrave; -+ -+ -+ -+ &Ugrave; -+ -+ -+ -+ &uuml; -+ -+ -+ -+ &Uuml; -+ -+ -+ -+ &yacute; -+ -+ -+ -+ &Yacute; -+ -+ -+ -+ &yuml; -+ -+ -+ -+ -diff --git a/plugins/taglist/Latex.tags.xml.in b/plugins/taglist/Latex.tags.xml.in -index 865f1ef..be6da6c 100644 ---- a/plugins/taglist/Latex.tags.xml.in -+++ b/plugins/taglist/Latex.tags.xml.in -@@ -1,347 +1,344 @@ -- -- -+ -+ -+ -+ -+ \cite{ -+ } -+ -+ -+ -+ \bibitem{ -+ }{} -+ -+ -+ -+ \shortcite{ -+ } -+ -+ -+ -+ \begin{thebibliography}{99} -+ \end{thebibliography} -+ -+ -+ -+ \left( -+ \right) -+ -+ -+ -+ \left[ -+ \right] -+ -+ -+ -+ \left\{ -+ \right\} -+ -+ -+ -+ \left\langle -+ \right\rangle -+ -+ -+ -+ \input{ -+ } -+ -+ -+ -+ \cos{ -+ } -+ -+ -+ -+ e^{ -+ } -+ -+ -+ -+ \exp{ -+ } -+ -+ -+ -+ \log{ -+ } -+ -+ -+ -+ \log_{10}{ -+ } -+ -+ -+ -+ \sin{ -+ } -+ -+ -+ -+ \alpha -+ -+ -+ -+ \beta -+ -+ -+ -+ \varepsilon -+ -+ -+ -+ \gamma -+ -+ -+ -+ \lambda -+ -+ -+ -+ \rho -+ -+ -+ -+ \tau -+ -+ -+ -+ \chapter{ -+ } -+ -+ -+ -+ \chapter*{ -+ } -+ -+ -+ -+ \section{ -+ } -+ -+ -+ -+ \section*{ -+ } -+ -+ -+ -+ \subsection{ -+ } -+ -+ -+ -+ \subsection*{ -+ } -+ -+ -+ -+ \subsubsection{ -+ } -+ -+ -+ -+ \subsubsection*{ -+ } -+ -+ -+ -+ \paragraph{ -+ } -+ -+ -+ -+ \appendix -+ - -- -- -- -- \cite{ -- } -- -- -- -- \bibitem{ -- }{} -- -- -- -- \shortcite{ -- } -- -- -- -- \begin{thebibliography}{99} -- \end{thebibliography} -- -- -- -- \left( -- \right) -- -- -- -- \left[ -- \right] -- -- -- -- \left\{ -- \right\} -- -- -- -- \left\langle -- \right\rangle -- -- -- -- \input{ -- } -- -- -- -- \cos{ -- } -- -- -- -- e^{ -- } -- -- -- -- \exp{ -- } -- -- -- -- \log{ -- } -- -- -- -- \log_{10}{ -- } -- -- -- -- \sin{ -- } -- -- -- -- \alpha -- -- -- -- \beta -- -- -- -- \varepsilon -- -- -- -- \gamma -- -- -- -- \lambda -- -- -- -- \rho -- -- -- -- \tau -- -- -- -- \chapter{ -- } -- -- -- -- \chapter*{ -- } -- -- -- -- \section{ -- } -- -- -- -- \section*{ -- } -- -- -- -- \subsection{ -- } -- -- -- -- \subsection*{ -- } -- -- -- -- \subsubsection{ -- } -- -- -- -- \subsubsection*{ -- } -- -- -- -- \paragraph{ -- } -- -- -- -- \appendix -- -- -- -- \begin{description} -- \end{description} -- -- -- -- \begin{enumerate} -- \end{enumerate} -- -- -- -- \begin{itemize} -- \end{itemize} -- -- -- -- \item[ -- ] -- -- -- -- \item -- -- -- -- $$ -- $$ -- -- -- -- $ -- $ -- -- -- -- \frac{ -- }{} -- -- -- -- \int\limits_{ -- }^{} -- -- -- -- \int_{ -- }^{} -- -- -- -- \sum\limits_{ -- }^{} -- -- -- -- \sum_{ -- }^{} -- -- -- -- \label{ -- } -- -- -- -- {\protect\ref{ -- }} -- -- -- -- \ll -- -- -- -- \le -- -- -- -- \ge -- -- -- -- \gg -- -- -- -- \mathrm{and} -- -- -- -- \mathrm{const} -- -- -- -- \frac{\partial{ -- }^2}{\partial t^2} -- -- -- -- \dagger -- -- -- -- \frac{{\mathrm{d}} -- }{{\mathrm{d}}t} -- -- -- -- \frac{\partial -- }{\partial t} -- -- -- -- \equiv -- -- -- -- -- -- -- -- -- --- -- -- -- -- \infty -- -- -- -- \quad\mathrm{,} -- -- -- -- \quad\mathrm{.} -- -- -- -- \quad -- -- -- -- \qquad -- -- -- -- \simeq -- -- -- -- \star -- -- -- -- \textbf{ -- } -- -- -- -- \texttt{ -- } -- -- -- -- \textit{ -- } -- -- -- -- \textsl{ -- } -- -- -- -- \emph{ -- } -- -- -- -- \mbox{ -- } -- -- -- -- \footnote{ -- } -- -- -- -- -- -+ -+ \begin{description} -+ \end{description} -+ -+ -+ -+ \begin{enumerate} -+ \end{enumerate} -+ -+ -+ -+ \begin{itemize} -+ \end{itemize} -+ -+ -+ -+ \item[ -+ ] -+ -+ -+ -+ \item -+ -+ -+ -+ $$ -+ $$ -+ -+ -+ -+ $ -+ $ -+ -+ -+ -+ \frac{ -+ }{} -+ -+ -+ -+ \int\limits_{ -+ }^{} -+ -+ -+ -+ \int_{ -+ }^{} -+ -+ -+ -+ \sum\limits_{ -+ }^{} -+ -+ -+ -+ \sum_{ -+ }^{} -+ -+ -+ -+ \label{ -+ } -+ -+ -+ -+ {\protect\ref{ -+ }} -+ -+ -+ -+ \ll -+ -+ -+ -+ \le -+ -+ -+ -+ \ge -+ -+ -+ -+ \gg -+ -+ -+ -+ \mathrm{and} -+ -+ -+ -+ \mathrm{const} -+ -+ -+ -+ \frac{\partial{ -+ }^2}{\partial t^2} -+ -+ -+ -+ \dagger -+ -+ -+ -+ \frac{{\mathrm{d}} -+ }{{\mathrm{d}}t} -+ -+ -+ -+ \frac{\partial -+ }{\partial t} -+ -+ -+ -+ \equiv -+ -+ -+ -+ -- -+ -+ -+ -+ --- -+ -+ -+ -+ \infty -+ -+ -+ -+ \quad\mathrm{,} -+ -+ -+ -+ \quad\mathrm{.} -+ -+ -+ -+ \quad -+ -+ -+ -+ \qquad -+ -+ -+ -+ \simeq -+ -+ -+ -+ \star -+ -+ -+ -+ \textbf{ -+ } -+ -+ -+ -+ \texttt{ -+ } -+ -+ -+ -+ \textit{ -+ } -+ -+ -+ -+ \textsl{ -+ } -+ -+ -+ -+ \emph{ -+ } -+ -+ -+ -+ \mbox{ -+ } -+ -+ -+ -+ \footnote{ -+ } -+ -+ -+ -+ -diff --git a/plugins/taglist/XSLT.tags.xml.in b/plugins/taglist/XSLT.tags.xml.in -index aab066f..f9591a2 100644 ---- a/plugins/taglist/XSLT.tags.xml.in -+++ b/plugins/taglist/XSLT.tags.xml.in -@@ -1,340 +1,337 @@ -- -- -+ - -- -- -- -- -- <xsl:apply-imports> -- </xsl:apply-imports> -- -- -- <xsl:apply-templates select=" -- "/> -- -- -- <xsl:attribute name=" -- "></xsl:attribute> -- -- -- <xsl:attribute-set name=" -- "></xsl:attribute-set> -- -- -- <xsl:call-template name=" -- "/> -- -- -- <xsl:choose> -- </xsl:choose> -- -- -- <xsl:comment> -- </xsl:comment> -- -- -- <xsl:copy/> -- -- -- <xsl:copy-of select=" -- "/> -- -- -- <xsl:decimal-format/> -- -- -- <xsl:element name=" -- "></xsl:element> -- -- -- <xsl:fallback> -- </xsl:fallback> -- -- -- <xsl:for-each select=" -- "> </xsl:for-each> -- -- -- <xsl:if test=" -- "> </xsl:if> -- -- -- <xsl:import href=" -- "/> -- -- -- <xsl:include href=" -- "/> -- -- -- <xsl:key name=" -- " match="" use=""/> -- -- -- <xsl:message> -- </xsl:message> -- -- -- <xsl:namespace-alias stylesheet-prefix=" -- " result-prefix=""/> -- -- -- <xsl:number/> -- -- -- <xsl:otherwise> -- </xsl:otherwise> -- -- -- <xsl:output encoding="utf-8" method=" -- "/> -- -- -- <xsl:param name=" -- "></xsl:param> -- -- -- <xsl:preserve-space elements=" -- "></xsl:preserve-space> -- -- -- <xsl:processing-instruction name=" -- "></xsl:processing-instruction> -- -- -- <xsl:sort/> -- -- -- <xsl:strip-space elements=" -- "></xsl:strip-space> -- -- -- <xsl:stylesheet version=" -- "/> </xsl:stylesheet> -- -- -- <xsl:template match=" -- "> </xsl:template> -- -- -- <xsl:text/> -- -- -- <xsl:value-of select=" -- "/> -- -- -- <xsl:variable select=" -- "/> -- -- -- <xsl:when test=" -- > </xsl:when> -- -- -- <xsl:with-param name=" -- "></xsl:with-param> -- -- -- -- -- -- boolean( -- ) -- -- -- ceiling( -- ) -- -- -- comment() -- -- -- concat( -- ,,) -- -- -- contains( -- ,) -- -- -- count( -- ) -- -- -- current() -- -- -- document( -- ,) -- -- -- element-available( -- ) -- -- -- false() -- -- -- floor( -- ) -- -- -- format-number( -- ,,) -- -- -- function-available( -- ) -- -- -- generate-id( -- ) -- -- -- id( -- ) -- -- -- key( -- ,) -- -- -- lang( -- ) -- -- -- last() -- -- -- local-name( -- ) -- -- -- name( -- ) -- -- -- namespace-uri( -- ) -- -- -- node() -- -- -- normalize-space( -- ) -- -- -- not( -- ) -- -- -- number( -- ) -- -- -- position() -- -- -- processing-instruction( -- ) -- -- -- round( -- ) -- -- -- starts-with( -- ,) -- -- -- string( -- ) -- -- -- string-length( -- ) -- -- -- substring( -- ,,) -- -- -- substring-after( -- ,) -- -- -- substring-before( -- ,) -- -- -- sum( -- ) -- -- -- system-property( -- ) -- -- -- text() -- -- -- translate( -- ,,) -- -- -- true() -- -- -- unparsed-entity-uri( -- ) -- -- -- -- -- -- ancestor:: -- -- -- ancestor-or-self:: -- -- -- @ -- -- -- child:: -- -- -- descendant:: -- -- -- // -- -- -- following:: -- -- -- following-sibling:: -- -- -- namespace:: -- -- -- .. -- -- -- preceding:: -- -- -- preceding-sibling:: -- -- -- . -- -- -- -- -+ -+ -+ -+ <xsl:apply-imports> -+ </xsl:apply-imports> -+ -+ -+ <xsl:apply-templates select=" -+ "/> -+ -+ -+ <xsl:attribute name=" -+ "></xsl:attribute> -+ -+ -+ <xsl:attribute-set name=" -+ "></xsl:attribute-set> -+ -+ -+ <xsl:call-template name=" -+ "/> -+ -+ -+ <xsl:choose> -+ </xsl:choose> -+ -+ -+ <xsl:comment> -+ </xsl:comment> -+ -+ -+ <xsl:copy/> -+ -+ -+ <xsl:copy-of select=" -+ "/> -+ -+ -+ <xsl:decimal-format/> -+ -+ -+ <xsl:element name=" -+ "></xsl:element> -+ -+ -+ <xsl:fallback> -+ </xsl:fallback> -+ -+ -+ <xsl:for-each select=" -+ "> </xsl:for-each> -+ -+ -+ <xsl:if test=" -+ "> </xsl:if> -+ -+ -+ <xsl:import href=" -+ "/> -+ -+ -+ <xsl:include href=" -+ "/> -+ -+ -+ <xsl:key name=" -+ " match="" use=""/> -+ -+ -+ <xsl:message> -+ </xsl:message> -+ -+ -+ <xsl:namespace-alias stylesheet-prefix=" -+ " result-prefix=""/> -+ -+ -+ <xsl:number/> -+ -+ -+ <xsl:otherwise> -+ </xsl:otherwise> -+ -+ -+ <xsl:output encoding="utf-8" method=" -+ "/> -+ -+ -+ <xsl:param name=" -+ "></xsl:param> -+ -+ -+ <xsl:preserve-space elements=" -+ "></xsl:preserve-space> -+ -+ -+ <xsl:processing-instruction name=" -+ "></xsl:processing-instruction> -+ -+ -+ <xsl:sort/> -+ -+ -+ <xsl:strip-space elements=" -+ "></xsl:strip-space> -+ -+ -+ <xsl:stylesheet version=" -+ "/> </xsl:stylesheet> -+ -+ -+ <xsl:template match=" -+ "> </xsl:template> -+ -+ -+ <xsl:text/> -+ -+ -+ <xsl:value-of select=" -+ "/> -+ -+ -+ <xsl:variable select=" -+ "/> -+ -+ -+ <xsl:when test=" -+ > </xsl:when> -+ -+ -+ <xsl:with-param name=" -+ "></xsl:with-param> -+ -+ -+ -+ -+ -+ boolean( -+ ) -+ -+ -+ ceiling( -+ ) -+ -+ -+ comment() -+ -+ -+ concat( -+ ,,) -+ -+ -+ contains( -+ ,) -+ -+ -+ count( -+ ) -+ -+ -+ current() -+ -+ -+ document( -+ ,) -+ -+ -+ element-available( -+ ) -+ -+ -+ false() -+ -+ -+ floor( -+ ) -+ -+ -+ format-number( -+ ,,) -+ -+ -+ function-available( -+ ) -+ -+ -+ generate-id( -+ ) -+ -+ -+ id( -+ ) -+ -+ -+ key( -+ ,) -+ -+ -+ lang( -+ ) -+ -+ -+ last() -+ -+ -+ local-name( -+ ) -+ -+ -+ name( -+ ) -+ -+ -+ namespace-uri( -+ ) -+ -+ -+ node() -+ -+ -+ normalize-space( -+ ) -+ -+ -+ not( -+ ) -+ -+ -+ number( -+ ) -+ -+ -+ position() -+ -+ -+ processing-instruction( -+ ) -+ -+ -+ round( -+ ) -+ -+ -+ starts-with( -+ ,) -+ -+ -+ string( -+ ) -+ -+ -+ string-length( -+ ) -+ -+ -+ substring( -+ ,,) -+ -+ -+ substring-after( -+ ,) -+ -+ -+ substring-before( -+ ,) -+ -+ -+ sum( -+ ) -+ -+ -+ system-property( -+ ) -+ -+ -+ text() -+ -+ -+ translate( -+ ,,) -+ -+ -+ true() -+ -+ -+ unparsed-entity-uri( -+ ) -+ -+ -+ -+ -+ -+ ancestor:: -+ -+ -+ ancestor-or-self:: -+ -+ -+ @ -+ -+ -+ child:: -+ -+ -+ descendant:: -+ -+ -+ // -+ -+ -+ following:: -+ -+ -+ following-sibling:: -+ -+ -+ namespace:: -+ -+ -+ .. -+ -+ -+ preceding:: -+ -+ -+ preceding-sibling:: -+ -+ -+ . -+ -+ -+ -diff --git a/plugins/taglist/XUL.tags.xml.in b/plugins/taglist/XUL.tags.xml.in -index 5d114a7..fc4c26a 100644 ---- a/plugins/taglist/XUL.tags.xml.in -+++ b/plugins/taglist/XUL.tags.xml.in -@@ -1,541 +1,536 @@ - -- -- -- -- -- <action> -- </action> -- -- -- -- <arrowscrollbox orient="vertical" flex="1"> -- </arrowscrollbox> -- -- -- -- <bbox> -- </bbox> -- -- -- -- <binding id=""> -- </binding> -- -- -- -- <bindings xmlns="http://www.mozilla.org/xbl"> -- </bindings> -- -- -- -- <box orient=""> -- </box> -- -- -- -- <broadcaster id="" label=""/> -- -- -- -- <broadcasterset> -- </broadcasterset> -- -- -- -- <button id="" label="" oncommand=""/> -- -- -- -- <browser src="" type="content" flex="1"/> -- -- -- -- <checkbox id="" checked="false" label=""/> -- -- -- -- <caption label=""/> -- -- -- -- <colorpicker> -- </colorpicker> -- -- -- -- <column flex="1"/> -- -- -- -- <columns> -- </columns> -- -- -- -- <commandset id="" commandupdater="true" events="focus" oncommandupdate=""/> -- </commandset> -- -- -- -- <command id="" oncommand=""/> -- -- -- -- <conditions> -- </conditions> -- -- -- -- <content uri=""/> -- -- -- -- <deck selectedIndex="1"> -- </deck> -- -- -- -- <description> -- </description> -- -- -- -- <dialog id="" title="" -- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" -- buttons="accept,cancel" -- ondialogaccept="" -- ondialogcancel=""> -- --</dialog> -- -- -- -- <dialogheader title="" description=""/> -- -- -- -- <editor src=""/> -- -- -- -- <grid> -- </grid> -- -- -- -- <grippy> -- </grippy> -- -- -- -- <groupbox flex="1"><caption label=""> -- </groupbox> -- -- -- -- <hbox flex="1"> -- </hbox> -- -- -- -- <iframe id="" src="" flex="1"/> -- -- -- -- <image id="" src=""/> -- -- -- -- <key id="" modifiers="control alt" key="" onkeypress=""/> -- -- -- -- <keyset> -- </keyset> -- -- -- -- <label value="" control=""/> -- -- -- -- <listbox rows=""> -- </listbox> -- -- -- -- <listcell label=""/> -- -- -- -- <listcol> -- </listcol> -- -- -- -- <listcols> -- </listcols> -- -- -- -- <listhead> -- </listhead> -- -- -- -- <listheader label="" flex="1"/> -- -- -- -- <listitem id="" value="" label=""/> -- -- -- -- <member container="" child=""/> -- -- -- -- <menu accesskey=""> -- </menu> -- -- -- -- <menubar> -- </menubar> -- -- -- -- <menuitem value="" label="" accesskey="" acceltext="" oncommand=""/> -- -- -- -- <menulist label=""> -- </menulist> -- -- -- -- <menupopup id=""> -- </menupopup> -- -- -- -- <menuseparator/> -- -- -- -- <observes element="" attribute="" onbroadcast=""/> -- -- -- -- <overlay id="" -- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> -- --</overlay> -- -- -- -- <page> -- </page> -- -- -- -- <popup id="" position="after_start"> -- </popup> -- -- -- -- <popupset> -- </popupset> -- -- -- -- <preference> -- </preference> -- -- -- -- <preferences> -- </preferences> -- -- -- -- <prefpane> -- </prefpane> -- -- -- -- <prefwindow> -- </prefwindow> -- -- -- -- <progressmeter id="" mode="determined" value="50%"/> -- -- -- -- <radio id="" value="" name="" label=""/> -- -- -- -- <radiogroup> -- </radiogroup> -- -- -- -- <resizer> -- </resizer> -- -- -- -- <richlistbox> -- </richlistbox> -- -- -- -- <richlistitem> -- </richlistitem> -- -- -- -- <row flex="1"> -- </row> -- -- -- -- <rows> -- </rows> -- -- -- -- <rule> -- </rule> -- -- -- -- <script src="" language="Javascript"> -- </script> -- -- -- -- <scrollbar id="" orient="vertical" curpos="20" maxpos="100" increment="1" pageincrement="10"/> -- -- -- -- <scrollbox> -- </scrollbox> -- -- -- -- <scrollcorner> -- </scrollcorner> -- -- -- -- <separator> -- </separator> -- -- -- -- <spacer flex="1"/> -- -- -- -- <splitter state="open" collapse="before" resizebefore="closest" resizeafter="grow"><grippy/> -- </splitter> -- -- -- -- <stack> -- </stack> -- -- -- -- <statusbar> -- </statusbar> -- -- -- -- <statusbarpanel id="" label=""> -- </statusbarpanel> -- -- -- -- <stringbundle id="" src=""/> -- -- -- -- <stringbundleset> -- </stringbundleset> -- -- -- -- <tab id="" label=""/> -- -- -- -- <tabbrowser> -- </tabbrowser> -- -- -- -- <tabbox id=""> -- </tabbox> -- -- -- -- <tabpanel id=""> -- </tabpanel> -- -- -- -- <tabpanels> -- </tabpanels> -- -- -- -- <tabs> -- </tabs> -- -- -- -- <template> -- </template> -- -- -- -- <textnode> -- </textnode> -- -- -- -- <textbox id="" value="" multiline="false"/> -- -- -- -- <titlebar> -- </titlebar> -- -- -- -- <toolbar id=""> -- </toolbar> -- -- -- -- <toolbarbutton id="" label=""/> -- -- -- -- <toolbargrippy> -- </toolbargrippy> -- -- -- -- <toolbaritem> -- </toolbaritem> -- -- -- -- <toolbarpalette> -- </toolbarpalette> -- -- -- -- <toolbarseparator> -- </toolbarseparator> -- -- -- -- <toolbarset> -- </toolbarset> -- -- -- -- <toolbarspacer> -- </toolbarspacer> -- -- -- -- <toolbarspring> -- </toolbarspring> -- -- -- -- <toolbox> -- </toolbox> -- -- -- -- <tooltip id="" orient="vertical"> -- </tooltip> -- -- -- -- <tree id="" flex="1"> -- </tree> -- -- -- -- <treecell label=""/> -- -- -- -- <treechildren> -- </treechildren> -- -- -- -- <treecol label="" flex="1" primary="true"/> -- -- -- -- <treecols> -- </treecols> -- -- -- -- <treeitem container="true" open="true"> -- </treeitem> -- -- -- -- <treerow> -- </treerow> -- -- -- -- <treeseparator> -- </treeseparator> -- -- -- -- <triple> -- </triple> -- -- -- -- <vbox flex="1"> -- </vbox> -- -- -- -- <window id="" title="" orient="horizontal" pageid="" next="" -- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> -- --</window> -- -- -- -- <wizard id="" title="" wizardnext="" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> -- --</wizard> -- -- -- -- <wizardpage description="" onwizardfinish="" pageadvanced=""> -- --</wizardpage> -- -- -- -- -+ -+ -+ -+ -+ <action> -+ </action> -+ -+ -+ -+ <arrowscrollbox orient="vertical" flex="1"> -+ </arrowscrollbox> -+ -+ -+ -+ <bbox> -+ </bbox> -+ -+ -+ -+ <binding id=""> -+ </binding> -+ -+ -+ -+ <bindings xmlns="http://www.mozilla.org/xbl"> -+ </bindings> -+ -+ -+ -+ <box orient=""> -+ </box> -+ -+ -+ -+ <broadcaster id="" label=""/> -+ -+ -+ -+ <broadcasterset> -+ </broadcasterset> -+ -+ -+ -+ <button id="" label="" oncommand=""/> -+ -+ -+ -+ <browser src="" type="content" flex="1"/> -+ -+ -+ -+ <checkbox id="" checked="false" label=""/> -+ -+ -+ -+ <caption label=""/> -+ -+ -+ -+ <colorpicker> -+ </colorpicker> -+ -+ -+ -+ <column flex="1"/> -+ -+ -+ -+ <columns> -+ </columns> -+ -+ -+ -+ <commandset id="" commandupdater="true" events="focus" oncommandupdate=""/> -+ </commandset> -+ -+ -+ -+ <command id="" oncommand=""/> -+ -+ -+ -+ <conditions> -+ </conditions> -+ -+ -+ -+ <content uri=""/> -+ -+ -+ -+ <deck selectedIndex="1"> -+ </deck> -+ -+ -+ -+ <description> -+ </description> -+ -+ -+ -+ <dialog id="" title="" -+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" -+ buttons="accept,cancel" -+ ondialogaccept="" -+ ondialogcancel=""> -+ </dialog> -+ -+ -+ -+ <dialogheader title="" description=""/> -+ -+ -+ -+ <editor src=""/> -+ -+ -+ -+ <grid> -+ </grid> -+ -+ -+ -+ <grippy> -+ </grippy> -+ -+ -+ -+ <groupbox flex="1"><caption label=""> -+ </groupbox> -+ -+ -+ -+ <hbox flex="1"> -+ </hbox> -+ -+ -+ -+ <iframe id="" src="" flex="1"/> -+ -+ -+ -+ <image id="" src=""/> -+ -+ -+ -+ <key id="" modifiers="control alt" key="" onkeypress=""/> -+ -+ -+ -+ <keyset> -+ </keyset> -+ -+ -+ -+ <label value="" control=""/> -+ -+ -+ -+ <listbox rows=""> -+ </listbox> -+ -+ -+ -+ <listcell label=""/> -+ -+ -+ -+ <listcol> -+ </listcol> -+ -+ -+ -+ <listcols> -+ </listcols> -+ -+ -+ -+ <listhead> -+ </listhead> -+ -+ -+ -+ <listheader label="" flex="1"/> -+ -+ -+ -+ <listitem id="" value="" label=""/> -+ -+ -+ -+ <member container="" child=""/> -+ -+ -+ -+ <menu accesskey=""> -+ </menu> -+ -+ -+ -+ <menubar> -+ </menubar> -+ -+ -+ -+ <menuitem value="" label="" accesskey="" acceltext="" oncommand=""/> -+ -+ -+ -+ <menulist label=""> -+ </menulist> -+ -+ -+ -+ <menupopup id=""> -+ </menupopup> -+ -+ -+ -+ <menuseparator/> -+ -+ -+ -+ <observes element="" attribute="" onbroadcast=""/> -+ -+ -+ -+ <overlay id="" -+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> -+ </overlay> -+ -+ -+ -+ <page> -+ </page> -+ -+ -+ -+ <popup id="" position="after_start"> -+ </popup> -+ -+ -+ -+ <popupset> -+ </popupset> -+ -+ -+ -+ <preference> -+ </preference> -+ -+ -+ -+ <preferences> -+ </preferences> -+ -+ -+ -+ <prefpane> -+ </prefpane> -+ -+ -+ -+ <prefwindow> -+ </prefwindow> -+ -+ -+ -+ <progressmeter id="" mode="determined" value="50%"/> -+ -+ -+ -+ <radio id="" value="" name="" label=""/> -+ -+ -+ -+ <radiogroup> -+ </radiogroup> -+ -+ -+ -+ <resizer> -+ </resizer> -+ -+ -+ -+ <richlistbox> -+ </richlistbox> -+ -+ -+ -+ <richlistitem> -+ </richlistitem> -+ -+ -+ -+ <row flex="1"> -+ </row> -+ -+ -+ -+ <rows> -+ </rows> -+ -+ -+ -+ <rule> -+ </rule> -+ -+ -+ -+ <script src="" language="Javascript"> -+ </script> -+ -+ -+ -+ <scrollbar id="" orient="vertical" curpos="20" maxpos="100" increment="1" pageincrement="10"/> -+ -+ -+ -+ <scrollbox> -+ </scrollbox> -+ -+ -+ -+ <scrollcorner> -+ </scrollcorner> -+ -+ -+ -+ <separator> -+ </separator> -+ -+ -+ -+ <spacer flex="1"/> -+ -+ -+ -+ <splitter state="open" collapse="before" resizebefore="closest" resizeafter="grow"><grippy/> -+ </splitter> -+ -+ -+ -+ <stack> -+ </stack> -+ -+ -+ -+ <statusbar> -+ </statusbar> -+ -+ -+ -+ <statusbarpanel id="" label=""> -+ </statusbarpanel> -+ -+ -+ -+ <stringbundle id="" src=""/> -+ -+ -+ -+ <stringbundleset> -+ </stringbundleset> -+ -+ -+ -+ <tab id="" label=""/> -+ -+ -+ -+ <tabbrowser> -+ </tabbrowser> -+ -+ -+ -+ <tabbox id=""> -+ </tabbox> -+ -+ -+ -+ <tabpanel id=""> -+ </tabpanel> -+ -+ -+ -+ <tabpanels> -+ </tabpanels> -+ -+ -+ -+ <tabs> -+ </tabs> -+ -+ -+ -+ <template> -+ </template> -+ -+ -+ -+ <textnode> -+ </textnode> -+ -+ -+ -+ <textbox id="" value="" multiline="false"/> -+ -+ -+ -+ <titlebar> -+ </titlebar> -+ -+ -+ -+ <toolbar id=""> -+ </toolbar> -+ -+ -+ -+ <toolbarbutton id="" label=""/> -+ -+ -+ -+ <toolbargrippy> -+ </toolbargrippy> -+ -+ -+ -+ <toolbaritem> -+ </toolbaritem> -+ -+ -+ -+ <toolbarpalette> -+ </toolbarpalette> -+ -+ -+ -+ <toolbarseparator> -+ </toolbarseparator> -+ -+ -+ -+ <toolbarset> -+ </toolbarset> -+ -+ -+ -+ <toolbarspacer> -+ </toolbarspacer> -+ -+ -+ -+ <toolbarspring> -+ </toolbarspring> -+ -+ -+ -+ <toolbox> -+ </toolbox> -+ -+ -+ -+ <tooltip id="" orient="vertical"> -+ </tooltip> -+ -+ -+ -+ <tree id="" flex="1"> -+ </tree> -+ -+ -+ -+ <treecell label=""/> -+ -+ -+ -+ <treechildren> -+ </treechildren> -+ -+ -+ -+ <treecol label="" flex="1" primary="true"/> -+ -+ -+ -+ <treecols> -+ </treecols> -+ -+ -+ -+ <treeitem container="true" open="true"> -+ </treeitem> -+ -+ -+ -+ <treerow> -+ </treerow> -+ -+ -+ -+ <treeseparator> -+ </treeseparator> -+ -+ -+ -+ <triple> -+ </triple> -+ -+ -+ -+ <vbox flex="1"> -+ </vbox> -+ -+ -+ -+ <window id="" title="" orient="horizontal" pageid="" next="" -+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> -+ </window> -+ -+ -+ -+ <wizard id="" title="" wizardnext="" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> -+ </wizard> -+ -+ -+ -+ <wizardpage description="" onwizardfinish="" pageadvanced=""> -+ </wizardpage> -+ -+ -+ -+ diff --git a/gedit.spec b/gedit.spec index 0796ff2..e1851f4 100644 --- a/gedit.spec +++ b/gedit.spec @@ -20,9 +20,9 @@ Summary: gEdit is a small but powerful text editor for GNOME Name: gedit Version: 2.20.2 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 -License: GPLv2+ and GFDL+ +License: GPLv2+ and GFDL Group: Applications/Editors Source0: http://download.gnome.org/sources/gedit/2.20/gedit-%{version}.tar.bz2 @@ -196,6 +196,9 @@ fi %changelog +* Sun Nov 18 2007 Matthias Clasen - 1:2.20.2-3 +- Fix the license field + * Tue Nov 13 2007 Florian La Roche - 1:2.20.2-2 - define pango_version