- probably slightly better default ranking

- added experimental right column to new search page (no function, only container)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4487 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
orbiter 2008-02-16 12:13:38 +00:00
parent 47b98bde86
commit 4079c38ce0
3 changed files with 57 additions and 6 deletions

View File

@ -139,6 +139,58 @@ var progressbar = new Progressbar(#[results]#, document.getElementById("results"
#(resultTable)#::</table>#(/resultTable)# #(resultTable)#::</table>#(/resultTable)#
</div> </div>
<div id="sidebar">
<div id="navigate" class="boxed">
<h2 class="title">Navigate</h2>
<div class="content">
<form id="form1" method="post" action="#">
<fieldset>
<input id="inputsubmit1" type="submit" name="inputsubmit1" value="Sign In" />
</fieldset>
</form>
</div>
</div>
<!--
<div id="updates" class="boxed">
<h2 class="title">News</h2>
<div class="content">
<ul>
<li>
<h3>March 5, 2007</h3>
<p><a href="#">In posuere eleifend odio quisque semper augue mattis wisi maecenas&#8230;</a></p>
</li>
<li>
<h3>March 3, 2007</h3>
<p><a href="#">Quisque dictum integer nisl risus, sagittis convallis, rutrum id, congue, and nibh&#8230;</a></p>
</li>
<li>
<h3>February 28, 2007</h3>
<p><a href="#">Donec leo, vivamus fermentum nibh in augue praesent a lacus at urna congue rutrum&#8230;</a></p>
</li>
<li>
<h3>February 25, 2007</h3>
<p><a href="#">Nam pede erat, porta eu, lobortis eget, tempus et, tellus. Etiam nequea&#8230;</a></p>
</li>
</ul>
</div>
</div>
-->
<div id="partners" class="boxed">
<h2 class="title">Recent Searches</h2>
<div class="content">
<ul>
<li><a href="#">Donec Dictum Metus</a></li>
<li><a href="#">Etiam Rhoncus Volutpat</a></li>
<li><a href="#">Integer Gravida Nibh</a></li>
<li><a href="#">Maecenas Luctus Lectus</a></li>
<li><a href="#">Mauris Vulputate Dolor</a></li>
<li><a href="#">Nulla Luctus Eleifend</a></li>
<li><a href="#">Posuere Augue Sit Nisl</a></li>
</ul>
</div>
</div>
</div>
</div> </div>
<div id="footer"> <div id="footer">

View File

@ -116,7 +116,6 @@ var progressbar = new Progressbar(#[results]#, document.getElementById("results"
#{/results}# #{/results}#
#(resultTable)#::</table>#(/resultTable)# #(resultTable)#::</table>#(/resultTable)#
<!-- linklist end --> <!-- linklist end -->
<!--<div class="sidebar"><h3 class="head">Drill-Down</h3></div>-->
<!-- attach the bottomline --> <!-- attach the bottomline -->
<!--#include virtual="yacysearchitem.html?bottomline=true&eventID=#[eventID]#" --> <!--#include virtual="yacysearchitem.html?bottomline=true&eventID=#[eventID]#" -->
</body> </body>

View File

@ -105,7 +105,7 @@ public class plasmaSearchRankingProfile {
coeff_phrasesintext = 3; coeff_phrasesintext = 3;
coeff_llocal = 2; coeff_llocal = 2;
coeff_lother = 3; coeff_lother = 3;
coeff_urllength = 12; coeff_urllength = 13;
coeff_urlcomps = 12; coeff_urlcomps = 12;
coeff_hitcount = 9; coeff_hitcount = 9;
coeff_posintext = 10; coeff_posintext = 10;
@ -113,11 +113,11 @@ public class plasmaSearchRankingProfile {
coeff_posinphrase = 1; coeff_posinphrase = 1;
coeff_authority = 11; coeff_authority = 11;
coeff_worddistance = 12; coeff_worddistance = 12;
coeff_appurl = 13; coeff_appurl = 14;
coeff_app_dc_title = 13; coeff_app_dc_title = 14;
coeff_app_dc_creator = 12; coeff_app_dc_creator = 12;
coeff_app_dc_subject = 9; coeff_app_dc_subject = 13;
coeff_app_dc_description = 8; coeff_app_dc_description = 13;
coeff_appemph = 10; coeff_appemph = 10;
coeff_catindexof = (mediatype == plasmaSearchQuery.CONTENTDOM_TEXT) ? 0 : 15; coeff_catindexof = (mediatype == plasmaSearchQuery.CONTENTDOM_TEXT) ? 0 : 15;
coeff_cathasimage = (mediatype == plasmaSearchQuery.CONTENTDOM_IMAGE) ? 15 : 0; coeff_cathasimage = (mediatype == plasmaSearchQuery.CONTENTDOM_IMAGE) ? 15 : 0;