This commit is contained in:
Lorin Werthen 2017-05-04 01:40:53 +02:00
parent 41f692b845
commit 137bec8d16
No known key found for this signature in database
GPG key ID: F11FFC921E0E08E0
5 changed files with 192 additions and 104 deletions

View file

@ -1,10 +1,9 @@
$ -> $('#tipue_search_input_field').on 'focusin', ->
$('#tipue_search_input_field').focusin ->
$('#tipue_search_input').addClass("focused") $('#tipue_search_input').addClass("focused")
$('#tipue_search_input_field').focusout -> $('#tipue_search_input_field').on 'focusout', ->
$('#tipue_search_input').removeClass("focused") $('#tipue_search_input').removeClass("focused")
$('.nav-toggle').click -> $('.nav-toggle').on 'click', ->
$('.nav-menu').toggleClass('is-active') $('.nav-menu').toggleClass('is-active')
$('.nav-toggle').toggleClass('is-active') $('.nav-toggle').toggleClass('is-active')

View file

@ -1,7 +1,7 @@
/* /*
Tipue Search 5.0 Tipue Search 6.0
Copyright (c) 2015 Tipue Copyright (c) 2017 Tipue
Tipue Search is released under the MIT License Tipue Search is released under the MIT License
http://www.tipue.com/search http://www.tipue.com/search
*/ */
@ -13,19 +13,25 @@ http://www.tipue.com/search
var set = $.extend( { var set = $.extend( {
'show' : 7, 'contentLocation' : 'tipuesearch/tipuesearch_content.json',
'newWindow' : false, 'contextBuffer' : 60,
'showURL' : true, 'contextLength' : 60,
'showTitleCount' : true, 'contextStart' : 90,
'minimumLength' : 3, 'debug' : false,
'descriptiveWords' : 25, 'descriptiveWords' : 25,
'highlightTerms' : true, 'highlightTerms' : true,
'highlightEveryTerm' : false,
'mode' : 'static',
'liveDescription' : '*',
'liveContent' : '*', 'liveContent' : '*',
'contentLocation' : 'tipuesearch/tipuesearch_content.json', 'liveDescription' : '*',
'debug' : false, 'minimumLength' : 3,
'mode' : 'static',
'newWindow' : false,
'show' : 9,
'showContext' : true,
'showRelated' : false,
'showTime' : false,
'showTitleCount' : true,
'showURL' : true,
'wholeWords' : true,
'tipue_search_content' : '#tipue_search_content' 'tipue_search_content' : '#tipue_search_content'
}, options); }, options);
@ -40,12 +46,13 @@ http://www.tipue.com/search
}); });
var tipuesearch_t_c = 0; var tipuesearch_t_c = 0;
$(set.tipue_search_content).hide().html('<div class="tipue_search_spinner"><div class="tipue_search_rect1"></div><div class="tipue_search_rect2"></div><div class="rect3"></div></div>').show();
if (set.mode == 'live') if (set.mode == 'live')
{ {
for (var i = 0; i < tipuesearch_pages.length; i++) for (var i = 0; i < tipuesearch_pages.length; i++)
{ {
$.get(tipuesearch_pages[i]) $.get(tipuesearch_pages[i]).done(function(html)
.done(function(html)
{ {
var cont = $(set.liveContent, html).text(); var cont = $(set.liveContent, html).text();
cont = cont.replace(/\s+/g, ' '); cont = cont.replace(/\s+/g, ' ');
@ -76,8 +83,7 @@ http://www.tipue.com/search
if (set.mode == 'json') if (set.mode == 'json')
{ {
$.getJSON(set.contentLocation) $.getJSON(set.contentLocation).done(function(json)
.done(function(json)
{ {
tipuesearch_in = $.extend({}, json); tipuesearch_in = $.extend({}, json);
}); });
@ -96,8 +102,20 @@ http://www.tipue.com/search
function getURLP(name) function getURLP(name)
{ {
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search)||[,""])[1].replace(/\+/g, '%20')) || null; var _locSearch = location.search;
var _splitted = (new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(_locSearch)||[,""]);
var searchString = _splitted[1].replace(/\+/g, '%20');
try
{
searchString = decodeURIComponent(searchString);
} }
catch(e)
{
searchString = unescape(searchString);
}
return searchString || null;
}
if (getURLP('q')) if (getURLP('q'))
{ {
$('#tipue_search_input').val(getURLP('q')); $('#tipue_search_input').val(getURLP('q'));
@ -115,10 +133,6 @@ http://www.tipue.com/search
function getTipueSearch(start, replace) function getTipueSearch(start, replace)
{ {
$(set.tipue_search_content).hide();
$(set.tipue_search_content).html('<div class="tipue_search_spinner"><div class="tipue_search_rect1"></div><div class="tipue_search_rect2"></div><div class="rect3"></div></div>');
$(set.tipue_search_content).show();
var out = ''; var out = '';
var results = ''; var results = '';
var show_replace = false; var show_replace = false;
@ -127,7 +141,8 @@ http://www.tipue.com/search
var c = 0; var c = 0;
found = []; found = [];
var d = $('#tipue_search_input').val().toLowerCase(); var d_o = $('#tipue_search_input').val();
var d = d_o.toLowerCase();
d = $.trim(d); d = $.trim(d);
if ((d.match("^\"") && d.match("\"$")) || (d.match("^'") && d.match("'$"))) if ((d.match("^\"") && d.match("\"$")) || (d.match("^'") && d.match("'$")))
@ -135,9 +150,10 @@ http://www.tipue.com/search
standard = false; standard = false;
} }
var d_w = d.split(' ');
if (standard) if (standard)
{ {
var d_w = d.split(' ');
d = ''; d = '';
for (var i = 0; i < d_w.length; i++) for (var i = 0; i < d_w.length; i++)
{ {
@ -202,8 +218,15 @@ http://www.tipue.com/search
var score = 0; var score = 0;
var s_t = tipuesearch_in.pages[i].text; var s_t = tipuesearch_in.pages[i].text;
for (var f = 0; f < d_w.length; f++) for (var f = 0; f < d_w.length; f++)
{
if (set.wholeWords)
{
var pat = new RegExp('\\b' + d_w[f] + '\\b', 'gi');
}
else
{ {
var pat = new RegExp(d_w[f], 'gi'); var pat = new RegExp(d_w[f], 'gi');
}
if (tipuesearch_in.pages[i].title.search(pat) != -1) if (tipuesearch_in.pages[i].title.search(pat) != -1)
{ {
var m_c = tipuesearch_in.pages[i].title.match(pat).length; var m_c = tipuesearch_in.pages[i].title.match(pat).length;
@ -215,19 +238,6 @@ http://www.tipue.com/search
score += (20 * m_c); score += (20 * m_c);
} }
if (set.highlightTerms)
{
if (set.highlightEveryTerm)
{
var patr = new RegExp('(' + d_w[f] + ')', 'gi');
}
else
{
var patr = new RegExp('(' + d_w[f] + ')', 'i');
}
s_t = s_t.replace(patr, "<span class=\"h01\">$1</span>");
}
if (tipuesearch_in.pages[i].tags.search(pat) != -1) if (tipuesearch_in.pages[i].tags.search(pat) != -1)
{ {
var m_c = tipuesearch_in.pages[i].tags.match(pat).length; var m_c = tipuesearch_in.pages[i].tags.match(pat).length;
@ -291,19 +301,6 @@ http://www.tipue.com/search
score += (20 * m_c); score += (20 * m_c);
} }
if (set.highlightTerms)
{
if (set.highlightEveryTerm)
{
var patr = new RegExp('(' + d + ')', 'gi');
}
else
{
var patr = new RegExp('(' + d + ')', 'i');
}
s_t = s_t.replace(patr, "<span class=\"h01\">$1</span>");
}
if (tipuesearch_in.pages[i].tags.search(pat) != -1) if (tipuesearch_in.pages[i].tags.search(pat) != -1)
{ {
var m_c = tipuesearch_in.pages[i].tags.match(pat).length; var m_c = tipuesearch_in.pages[i].tags.match(pat).length;
@ -349,19 +346,27 @@ http://www.tipue.com/search
tipuesearch_t_c++; tipuesearch_t_c++;
} }
if (show_replace == 1) if (show_replace)
{ {
out += '<div id="tipue_search_warning">' + tipuesearch_string_2 + ' ' + d + '. ' + tipuesearch_string_3 + ' <a id="tipue_search_replaced">' + d_r + '</a></div>'; out += '<div id="tipue_search_warning">' + tipuesearch_string_2 + ' ' + d + '. ' + tipuesearch_string_3 + ' <a id="tipue_search_replaced">' + d_r + '</a></div>';
} }
if (c == 1) if (c == 1)
{ {
out += '<div id="tipue_search_results_count">' + tipuesearch_string_4 + '</div>'; out += '<div id="tipue_search_results_count">' + tipuesearch_string_4;
} }
else else
{ {
c_c = c.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); c_c = c.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
out += '<div id="tipue_search_results_count">' + c_c + ' ' + tipuesearch_string_5 + '</div>'; out += '<div id="tipue_search_results_count">' + c_c + ' ' + tipuesearch_string_5;
} }
if (set.showTime)
{
var endTimer = new Date().getTime();
var time = (endTimer - startTimer) / 1000;
out += ' (' + time.toFixed(2) + ' ' + tipuesearch_string_14 + ')';
set.showTime = false;
}
out += '</div>';
found.sort(function(a, b) { return b.score - a.score } ); found.sort(function(a, b) { return b.score - a.score } );
@ -380,7 +385,7 @@ http://www.tipue.com/search
if (set.showURL) if (set.showURL)
{ {
var s_u = found[i].url.toLowerCase(); var s_u = found[i].url.toLowerCase();
if(s_u.indexOf('http://') == 0) if (s_u.indexOf('http://') == 0)
{ {
s_u = s_u.slice(7); s_u = s_u.slice(7);
} }
@ -390,6 +395,43 @@ http://www.tipue.com/search
if (found[i].desc) if (found[i].desc)
{ {
var t = found[i].desc; var t = found[i].desc;
if (set.showContext)
{
d_w = d.split(' ');
var s_1 = found[i].desc.toLowerCase().indexOf(d_w[0]);
if (s_1 > set.contextStart)
{
var t_1 = t.substr(s_1 - set.contextBuffer);
var s_2 = t_1.indexOf(' ');
t_1 = t.substr(s_1 - set.contextBuffer + s_2);
t_1 = $.trim(t_1);
if (t_1.length > set.contextLength)
{
t = '... ' + t_1;
}
}
}
if (standard)
{
d_w = d.split(' ');
for (var f = 0; f < d_w.length; f++)
{
if (set.highlightTerms)
{
var patr = new RegExp('(' + d_w[f] + ')', 'gi');
t = t.replace(patr, "<span class=\"h0011\">$1</span>");
}
}
}
else if (set.highlightTerms)
{
var patr = new RegExp('(' + d + ')', 'gi');
t = t.replace(patr, "<span class=\"h0011\">$1</span>");
}
var t_d = ''; var t_d = '';
var t_w = t.split(' '); var t_w = t.split(' ');
if (t_w.length < set.descriptiveWords) if (t_w.length < set.descriptiveWords)
@ -408,21 +450,60 @@ http://www.tipue.com/search
{ {
t_d += ' ...'; t_d += ' ...';
} }
t_d = t_d.replace(/h0011/g, 'tipue_search_content_bold');
out += '<div class="tipue_search_content_text">' + t_d + '</div>'; out += '<div class="tipue_search_content_text">' + t_d + '</div>';
} }
} }
l_o++; l_o++;
} }
if (set.showRelated && standard)
{
f = 0;
for (var i = 0; i < tipuesearch_related.searches.length; i++)
{
if (d == tipuesearch_related.searches[i].search)
{
if (show_replace)
{
d_o = d;
}
if (!f)
{
out += '<div class="tipue_search_related_title">' + tipuesearch_string_15 + ' <span class="tipue_search_related_bold">' + d_o + '</span></div><div class="tipue_search_related_cols">';
}
out += '<div class="tipue_search_related_text"><a class="tipue_search_related" id="' + tipuesearch_related.searches[i].related + '">';
if (tipuesearch_related.searches[i].before)
{
out += '<span class="tipue_search_related_before">' + tipuesearch_related.searches[i].before + '</span> ';
}
out += tipuesearch_related.searches[i].related;
if (tipuesearch_related.searches[i].after)
{
out += ' <span class="tipue_search_related_after">' + tipuesearch_related.searches[i].after + '</span>';
}
out += '</a></div>';
f++;
}
}
if (f)
{
out += '</div>';
}
}
if (c > set.show) if (c > set.show)
{ {
var pages = Math.ceil(c / set.show); var pages = Math.ceil(c / set.show);
var page = (start / set.show); var page = (start / set.show);
out += '<div id="tipue_search_foot"><ul id="tipue_search_foot_boxes">'; out += '<nav><div id="tipue_search_foot"><ul id="tipue_search_foot_boxes">';
if (start > 0) if (start > 0)
{ {
out += '<li><a class="tipue_search_foot_box" id="' + (start - set.show) + '_' + replace + '">' + tipuesearch_string_6 + '</a></li>'; out += '<li role="navigation"><a class="tipue_search_foot_box" accesskey="b" id="' + (start - set.show) + '_' + replace + '">' + tipuesearch_string_6 + '</a></li>';
} }
if (page <= 2) if (page <= 2)
@ -436,11 +517,11 @@ http://www.tipue.com/search
{ {
if (f == page) if (f == page)
{ {
out += '<li class="current">' + (f + 1) + '</li>'; out += '<li class="current" role="navigation">' + (f + 1) + '</li>';
} }
else else
{ {
out += '<li><a class="tipue_search_foot_box" id="' + (f * set.show) + '_' + replace + '">' + (f + 1) + '</a></li>'; out += '<li role="navigation"><a class="tipue_search_foot_box" id="' + (f * set.show) + '_' + replace + '">' + (f + 1) + '</a></li>';
} }
} }
} }
@ -455,21 +536,21 @@ http://www.tipue.com/search
{ {
if (f == page) if (f == page)
{ {
out += '<li class="current">' + (f + 1) + '</li>'; out += '<li class="current" role="navigation">' + (f + 1) + '</li>';
} }
else else
{ {
out += '<li><a class="tipue_search_foot_box" id="' + (f * set.show) + '_' + replace + '">' + (f + 1) + '</a></li>'; out += '<li role="navigation"><a class="tipue_search_foot_box" id="' + (f * set.show) + '_' + replace + '">' + (f + 1) + '</a></li>';
} }
} }
} }
if (page + 1 != pages) if (page + 1 != pages)
{ {
out += '<li><a class="tipue_search_foot_box" id="' + (start + set.show) + '_' + replace + '">' + tipuesearch_string_7 + '</a></li>'; out += '<li role="navigation"><a class="tipue_search_foot_box" accesskey="m" id="' + (start + set.show) + '_' + replace + '">' + tipuesearch_string_7 + '</a></li>';
} }
out += '</ul></div>'; out += '</ul></div></nav>';
} }
} }
else else
@ -497,15 +578,19 @@ http://www.tipue.com/search
} }
} }
$(set.tipue_search_content).hide(); $(set.tipue_search_content).hide().html(out).slideDown(200);
$(set.tipue_search_content).html(out);
$(set.tipue_search_content).slideDown(200);
$('#tipue_search_replaced').click(function() $('#tipue_search_replaced').click(function()
{ {
getTipueSearch(0, false); getTipueSearch(0, false);
}); });
$('.tipue_search_related').click(function()
{
$('#tipue_search_input').val($(this).attr('id'));
getTipueSearch(0, true);
});
$('.tipue_search_foot_box').click(function() $('.tipue_search_foot_box').click(function()
{ {
var id_v = $(this).attr('id'); var id_v = $(this).attr('id');

View file

@ -154,7 +154,8 @@ footer.footer {
.alignright { .alignright {
float: right; float: right;
margin: 15px; padding: 15px;
background-color: $body-background;
} }
// Bold definition types in <dl></dl> // Bold definition types in <dl></dl>

View file

@ -8,7 +8,7 @@ location: Zeus kelder
<a href="https://zeus.ugent.be/wp-content/uploads/2015/02/poster-shaped.png"><img src="https://zeus.ugent.be/wp-content/uploads/2015/02/poster-shaped-300x212.png" alt="poster-shaped" width="300" height="212" class="alignright size-medium wp-image-2213" /></a> <a href="https://zeus.ugent.be/wp-content/uploads/2015/02/poster-shaped.png"><img src="https://zeus.ugent.be/wp-content/uploads/2015/02/poster-shaped-300x212.png" alt="poster-shaped" width="300" height="212" class="alignright size-medium wp-image-2213" /></a>
"I'm an egotistical bastard, and I name all my projects after myself. First 'Linux', now 'git'." > "I'm an egotistical bastard, and I name all my projects after myself. First 'Linux', now 'git'."
&nbsp;&nbsp;&nbsp;&nbsp;-- Linus Torvalds &nbsp;&nbsp;&nbsp;&nbsp;-- Linus Torvalds
Net zoals dat achter elk groot man een sterke vrouw staat, staat achter elk groot softwareproject een sterk versiecontrolesysteem. Dat geldt uiteraard ook voor de Linuxkernel, maar zo vanzelfsprekend was dat niet. Het bleek namelijk al snel dat er geen enkel zulk systeem bestond dat aan de noden van het grootste opensourceproject van de wereld kon voldoen: snelheid, een bijna onfeilbare data-integriteit, en een grote nadruk op parellel ontwikkelen waren broodnodig. Daarop sloegen Torvalds en kornuiten - ware hackers zijnde - zelf aan het werk, onder het motto in geval van twijfel, kijk wat CVS doet, en doe het tegengestelde. Net zoals dat achter elk groot man een sterke vrouw staat, staat achter elk groot softwareproject een sterk versiecontrolesysteem. Dat geldt uiteraard ook voor de Linuxkernel, maar zo vanzelfsprekend was dat niet. Het bleek namelijk al snel dat er geen enkel zulk systeem bestond dat aan de noden van het grootste opensourceproject van de wereld kon voldoen: snelheid, een bijna onfeilbare data-integriteit, en een grote nadruk op parellel ontwikkelen waren broodnodig. Daarop sloegen Torvalds en kornuiten - ware hackers zijnde - zelf aan het werk, onder het motto in geval van twijfel, kijk wat CVS doet, en doe het tegengestelde.

View file

@ -16,6 +16,8 @@ title: Search
<div id="event_results"></div> <div id="event_results"></div>
</div> </div>
</div> </div>
<% content_for :scripts do %>
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('#tipue_search_input_field').tipuesearch({ $('#tipue_search_input_field').tipuesearch({
@ -32,3 +34,4 @@ $(document).ready(function() {
}); });
}); });
</script> </script>
<% end %>