Monday, December 10, 2007 17:08:08
Statistics
Total changed lines : 23 (<1%); Same : 3401
Target Only : 6
Source Only : 9
Changed : 8
C:\Downloads\50_default_stylesheet\default_frontend_stylesheet.en.xsltC:\Downloads\50_default_stylesheet\50iframe-example-frontend\iframe-example-frontend_stylesheet.en.xslt
1818 Logo setup (can be customized)
1919     - whether to show logo: 0 for FALSE, 1 (or non-zero) for TRUE
2020     - logo url
2121     - logo size: '' for default image size
2222     ********************************************************************** -->
23<xsl:variable name="show_logo">1</xsl:variable>23<xsl:variable name="show_logo">0</xsl:variable>
2424<xsl:variable name="logo_url">images/Title_Left.gif</xsl:variable>
2525<xsl:variable name="logo_width">200</xsl:variable>
2626<xsl:variable name="logo_height">78</xsl:variable>
2727 
2828<!-- **********************************************************************

5757<xsl:variable name="show_alerts_link">0</xsl:variable>
5858<xsl:variable name="alerts_anchor_text">Alerts</xsl:variable>
5959 
6060<!-- *** search boxes *** -->
6161<xsl:variable name="show_top_search_box">1</xsl:variable>
62<xsl:variable name="show_bottom_search_box">1</xsl:variable>62<xsl:variable name="show_bottom_search_box">0</xsl:variable>
6363<xsl:variable name="search_box_size">32</xsl:variable>
6464 
6565<!-- *** choose search button type: 'text' or 'image' *** -->
6666<xsl:variable name="choose_search_button">text</xsl:variable>
6767<xsl:variable name="search_button_text">Google Search</xsl:variable>

8383<xsl:variable name="my_nav_align">right</xsl:variable>
8484<xsl:variable name="my_nav_size">-1</xsl:variable>
8585<xsl:variable name="my_nav_color">#6f6f6f</xsl:variable>
8686 
8787<!-- *** sort by date/relevance *** -->
88<xsl:variable name="show_sort_by">1</xsl:variable>88<xsl:variable name="show_sort_by">0</xsl:variable>
8989 
9090<!-- *** spelling suggestions *** -->
9191<xsl:variable name="show_spelling">1</xsl:variable>
9292<xsl:variable name="spelling_text">Did you mean:</xsl:variable>
9393<xsl:variable name="spelling_text_color">#cc0000</xsl:variable>

138138<xsl:variable name="res_url_size">-1</xsl:variable>
139139<xsl:variable name="truncate_result_urls">1</xsl:variable>
140140<xsl:variable name="truncate_result_url_length">100</xsl:variable>
141141 
142142<!-- *** misc elements *** -->
143<xsl:variable name="show_meta_tags">0</xsl:variable>143<xsl:variable name="show_meta_tags">1</xsl:variable>
144144<xsl:variable name="show_res_size">1</xsl:variable>
145145<xsl:variable name="show_res_date">1</xsl:variable>
146146<xsl:variable name="show_res_cache">1</xsl:variable>
147147 
148148<!-- *** used in result cache link, similar pages link, and description *** -->

708708        <input type="hidden" name="ie" value="{@value}" />
709709      </xsl:if>
710710    <xsl:text>
711711    </xsl:text>
712712  </xsl:for-each>
 713 
 714<!--Add these fields to every query string submitted from this front end-->
 715   <input type="hidden" name="getfields" value="rank.price.fly-type" />
 716   <input type="hidden" name="num" value="3" />
 717 
713718  <xsl:if test="$search_collections_xslt = '' and PARAM[@name='site']">
714719    <input type="hidden" name="site" value="{PARAM[@name='site']/@value}"/>
715720  </xsl:if>
716721</xsl:template>
717722 

19321937                  </td>
19331938        </tr>
19341939        <xsl:if test="$show_secure_radio != '0'">
19351940        <tr>
19361941          <td colspan="2">
1937          <font size="-1">Search:1942          <font size="-1">
19381943            <xsl:choose>
19391944              <xsl:when test="$access='p'">
1940                <label><input type="radio" name="access" value="p" checked="checked" />public content</label>1945        <input type="checkbox" name="access" value="a" />
19411946              </xsl:when>
19421947              <xsl:otherwise>
1943                <label><input type="radio" name="access" value="p"/>public content</label>1948        <input type="checkbox" name="access" value="a"
 1949        checked="checked" />
19441950              </xsl:otherwise>
19451951            </xsl:choose>
1946            <xsl:choose>1952          Include secure content
1947              <xsl:when test="$access='a'"> 
1948                <label><input type="radio" name="access" value="a" checked="checked" />public and secure content</label> 
1949              </xsl:when> 
1950              <xsl:otherwise> 
1951                <label><input type="radio" name="access" value="a"/>public and secure content</label> 
1952              </xsl:otherwise> 
1953            </xsl:choose> 
19541953          </font>
19551954          </td>
19561955        </tr>
19571956        </xsl:if>
19581957      </table>

29922991     ********************************************************************** -->
29932992<xsl:template name="analytics">
29942993  <xsl:if test="string-length($analytics_account) != '0'">
29952994    <script src="{$analytics_script_url}" type="text/javascript"></script>
29962995    <script type="text/javascript">
2997      <xsl:comment> 
29982996      _uacct = "<xsl:value-of select='$analytics_account'/>";
29992997      urchinTracker();
3000      //</xsl:comment> 
30012998    </script>
30022999  </xsl:if>
30033000</xsl:template>
30043001 
30053002<!-- **********************************************************************