diff options
author | Brent Smith <gnome@nextreality.net> | 2006-02-19 14:25:31 +0000 |
---|---|---|
committer | Brent Smith <bmsmith@src.gnome.org> | 2006-02-19 14:25:31 +0000 |
commit | fc9fa3c11e46ce6763e8e585e073c7cf1b300b0f (patch) | |
tree | 596db915e55df520efa770a0b146d21446eb9ef1 /stylesheets | |
parent | 1870a38a3c47a93e69c56f205e15c08a6d0c5585 (diff) | |
download | yelp-fc9fa3c11e46ce6763e8e585e073c7cf1b300b0f.tar.gz |
Removed redundant search text entry; search-header.xsl no longer needed
2006-02-18 Brent Smith <gnome@nextreality.net>
* stylesheets/search-header.xsl:
* stylesheets/search2html.xsl:
Removed redundant search text entry; search-header.xsl no longer
needed and removed from CVS. Fixes #331604
Diffstat (limited to 'stylesheets')
-rw-r--r-- | stylesheets/search-header.xsl | 15 | ||||
-rw-r--r-- | stylesheets/search2html.xsl | 4 |
2 files changed, 0 insertions, 19 deletions
diff --git a/stylesheets/search-header.xsl b/stylesheets/search-header.xsl deleted file mode 100644 index d3630f5b..00000000 --- a/stylesheets/search-header.xsl +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version='1.0' encoding='UTF-8'?><!-- -*- indent-tabs-mode: nil -*- --> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:yelp="http://www.gnome.org/yelp/ns" - xmlns="http://www.w3.org/1999/xhtml" - version="1.0"> - - -<xsl:template name="search-header"> - <xsl:param name="search-term"/> - <div class="searchform"> - Search help: <input size="24" id="search-entry" type="text" name="term" onkeypress="if (event.keyCode == 13) submit_search()" value="{$search-term}"/> - <input class="button" type="button" onclick="submit_search()" value="Go"/> - </div> -</xsl:template> -</xsl:stylesheet> diff --git a/stylesheets/search2html.xsl b/stylesheets/search2html.xsl index 043f75e3..a653e110 100644 --- a/stylesheets/search2html.xsl +++ b/stylesheets/search2html.xsl @@ -5,7 +5,6 @@ extension-element-prefixes="yelp" version="1.0"> -<xsl:import href="search-header.xsl"/> <xsl:param name="help_icon"/> <xsl:param name="help_icon_size"/> @@ -107,9 +106,6 @@ </head> <body> <div class="content"> - <xsl:call-template name="search-header"> - <xsl:with-param name="search-term" select="@title"/> - </xsl:call-template> <dl> <xsl:for-each select="result[@uri != '']"> <!-- Don't sort. Program deals with that. --> |