diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-12-18 03:37:31 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-12-18 03:37:31 +0800 |
commit | 8ec58524a6bb7e1ad4c9062af4903b0e033da6b0 (patch) | |
tree | f58a8a46612bd4a14f171e1d1ffdbfb2a4ae8756 | |
parent | 2102c67776ad0abad2ebba2746ea997599ea0478 (diff) | |
download | gsoc2013-epiphany-8ec58524a6bb7e1ad4c9062af4903b0e033da6b0.tar gsoc2013-epiphany-8ec58524a6bb7e1ad4c9062af4903b0e033da6b0.tar.gz gsoc2013-epiphany-8ec58524a6bb7e1ad4c9062af4903b0e033da6b0.tar.bz2 gsoc2013-epiphany-8ec58524a6bb7e1ad4c9062af4903b0e033da6b0.tar.lz gsoc2013-epiphany-8ec58524a6bb7e1ad4c9062af4903b0e033da6b0.tar.xz gsoc2013-epiphany-8ec58524a6bb7e1ad4c9062af4903b0e033da6b0.tar.zst gsoc2013-epiphany-8ec58524a6bb7e1ad4c9062af4903b0e033da6b0.zip |
Fix bookmarks export to HTML. Bug #345925, patch by Stefan Stuhr.
2006-12-17 Christian Persch <chpe@cvs.gnome.org>
* data/epiphany-bookmarks-html.xsl:
Fix bookmarks export to HTML. Bug #345925, patch by Stefan Stuhr.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | data/epiphany-bookmarks-html.xsl | 26 | ||||
-rw-r--r-- | doc/reference/tmpl/ephy-embed.sgml | 12 |
3 files changed, 28 insertions, 16 deletions
@@ -1,5 +1,11 @@ 2006-12-17 Christian Persch <chpe@cvs.gnome.org> + * data/epiphany-bookmarks-html.xsl: + + Fix bookmarks export to HTML. Bug #345925, patch by Stefan Stuhr. + +2006-12-17 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: Bump version to 2.17.4. diff --git a/data/epiphany-bookmarks-html.xsl b/data/epiphany-bookmarks-html.xsl index 2bd752de7..1b9014501 100644 --- a/data/epiphany-bookmarks-html.xsl +++ b/data/epiphany-bookmarks-html.xsl @@ -42,23 +42,19 @@ $Id$ <dl> <!-- Items with Topics assigned will be processed first --> - <xsl:for-each select="purl:item[count(. | key('topics', dc:subject)[1]) = 1]"> - <xsl:sort select="dc:subject" /> + <xsl:for-each select="purl:item/dc:subject[count(.. | key('topics', .)[1]) = 1]"> + <xsl:sort select="." /> - <!-- Test if a topic is assigned --> - <xsl:if test="dc:subject"> - - <dt><h3><xsl:value-of select="dc:subject" /></h3><dl> - <xsl:for-each select="key('topics', dc:subject)"> - <xsl:sort select="purl:title" /> - <dt><a href="{./purl:link}"><xsl:value-of select="./purl:title" /></a></dt> - </xsl:for-each> + <dt><h3><xsl:value-of select="." /></h3><dl> + <xsl:for-each select="key('topics', .)"> + <xsl:sort select="purl:title" /> + <dt><a href="{./purl:link}"><xsl:value-of select="./purl:title" /></a></dt> + </xsl:for-each> - <!-- Force a linebreak; otherwise thinks will break for Topics with only 1 item --> - <xsl:text> - </xsl:text> - </dl></dt> - </xsl:if> + <!-- Force a linebreak; otherwise thinks will break for Topics with only 1 item --> + <xsl:text> + </xsl:text> + </dl></dt> </xsl:for-each> <!-- Now Bookmarks without topics will be added at the bottom of the output file --> diff --git a/doc/reference/tmpl/ephy-embed.sgml b/doc/reference/tmpl/ephy-embed.sgml index 5c6a8c225..c10f33f57 100644 --- a/doc/reference/tmpl/ephy-embed.sgml +++ b/doc/reference/tmpl/ephy-embed.sgml @@ -267,7 +267,6 @@ be done by casting). @: @: @: -@: @: @Param2: @Param3: @@ -282,6 +281,16 @@ be done by casting). @event: @Returns: +<!-- ##### SIGNAL EphyEmbed::ge-search-link ##### --> +<para> + +</para> + +@ephyembed: the object which received the signal. +@arg1: +@arg2: +@arg3: + <!-- ##### SIGNAL EphyEmbed::ge-security-change ##### --> <para> @@ -307,6 +316,7 @@ be done by casting). @context_menu: @favicon: @feed_link: +@search_link: @location: @net_state: @dom_mouse_click: |