mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-12-22 08:22:40 +00:00
Added search with Tipue Search
This commit is contained in:
parent
248fe15c2a
commit
8f3afdc695
127
scss/tipuesearch.scss
Executable file
127
scss/tipuesearch.scss
Executable file
@ -0,0 +1,127 @@
|
|||||||
|
/*!
|
||||||
|
* Tipue Search 4.0
|
||||||
|
* Copyright (c) 2014 Tipue
|
||||||
|
* Tipue Search is released under the MIT License
|
||||||
|
* http://www.tipue.com/search
|
||||||
|
*
|
||||||
|
* This is a modified version of the Tipue Search plugin style sheet,
|
||||||
|
* edited for the pelican mg theme.
|
||||||
|
* If you are looking for the original Tipue Search plugin style sheet
|
||||||
|
* check the project home at http://www.tipue.com/search.
|
||||||
|
*/
|
||||||
|
|
||||||
|
$baseText: #444;
|
||||||
|
|
||||||
|
@mixin animation($values) {
|
||||||
|
-webkit-animation: $values;
|
||||||
|
-moz-animation: $values;
|
||||||
|
-o-animation: $values;
|
||||||
|
animation: $values;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_content {
|
||||||
|
max-width: 650px;
|
||||||
|
padding-top: 15px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_loading:before {
|
||||||
|
padding-top: 60px;
|
||||||
|
font-family: FontAwesome;
|
||||||
|
content: "\f013";
|
||||||
|
background: #fff no-repeat left;
|
||||||
|
@include animation(fa-spin 2s infinite linear);
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_warning_head {
|
||||||
|
font: 300 15px/1.6 'Open Sans', sans-serif;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_warning {
|
||||||
|
font: 300 13px/1.6 'Open Sans', sans-serif;
|
||||||
|
color: #333;
|
||||||
|
margin: 7px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_warning a {
|
||||||
|
color: #36c;
|
||||||
|
font-weight: 300;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_warning a:hover {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tipue_search_content_title {
|
||||||
|
font-size: 2em;
|
||||||
|
line-height: 42px;
|
||||||
|
font-weight: 400;
|
||||||
|
text-transform: none;
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tipue_search_content_title a {
|
||||||
|
color: $baseText;
|
||||||
|
text-decoration: none;
|
||||||
|
&:hover {
|
||||||
|
color: $baseText;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tipue_search_content_url {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tipue_search_content_text {
|
||||||
|
margin-top: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h01 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_foot {
|
||||||
|
margin: 51px 0 21px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
font: 12px/1 'Open Sans', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li a {
|
||||||
|
padding: 9px 15px 10px 15px;
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border: 1px solid #dcdcdc;
|
||||||
|
border-radius: 1px;
|
||||||
|
color: #333;
|
||||||
|
margin-right: 7px;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li.current {
|
||||||
|
padding: 9px 15px 10px 15px;
|
||||||
|
background: #fff;
|
||||||
|
border: 1px solid #dcdcdc;
|
||||||
|
border-radius: 1px;
|
||||||
|
color: #333;
|
||||||
|
margin-right: 7px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li a:hover {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
background-color: #f3f3f3;
|
||||||
|
}
|
103
static/css/tipuesearch.css
Normal file
103
static/css/tipuesearch.css
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
/*!
|
||||||
|
* Tipue Search 4.0
|
||||||
|
* Copyright (c) 2014 Tipue
|
||||||
|
* Tipue Search is released under the MIT License
|
||||||
|
* http://www.tipue.com/search
|
||||||
|
*
|
||||||
|
* This is a modified version of the Tipue Search plugin style sheet,
|
||||||
|
* edited for the pelican mg theme.
|
||||||
|
* If you are looking for the original Tipue Search plugin style sheet
|
||||||
|
* check the project home at http://www.tipue.com/search.
|
||||||
|
*/
|
||||||
|
#tipue_search_content {
|
||||||
|
max-width: 650px;
|
||||||
|
padding-top: 15px;
|
||||||
|
margin: 0; }
|
||||||
|
|
||||||
|
#tipue_search_loading:before {
|
||||||
|
padding-top: 60px;
|
||||||
|
font-family: FontAwesome;
|
||||||
|
content: "\f013";
|
||||||
|
background: #fff no-repeat left;
|
||||||
|
-webkit-animation: fa-spin 2s infinite linear;
|
||||||
|
-moz-animation: fa-spin 2s infinite linear;
|
||||||
|
-o-animation: fa-spin 2s infinite linear;
|
||||||
|
animation: fa-spin 2s infinite linear; }
|
||||||
|
|
||||||
|
#tipue_search_warning_head {
|
||||||
|
font: 300 15px/1.6 'Open Sans', sans-serif;
|
||||||
|
color: #555; }
|
||||||
|
|
||||||
|
#tipue_search_warning {
|
||||||
|
font: 300 13px/1.6 'Open Sans', sans-serif;
|
||||||
|
color: #333;
|
||||||
|
margin: 7px 0; }
|
||||||
|
|
||||||
|
#tipue_search_warning a {
|
||||||
|
color: #36c;
|
||||||
|
font-weight: 300;
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
|
#tipue_search_warning a:hover {
|
||||||
|
color: #333; }
|
||||||
|
|
||||||
|
.tipue_search_content_title {
|
||||||
|
font-size: 2em;
|
||||||
|
line-height: 42px;
|
||||||
|
font-weight: 400;
|
||||||
|
text-transform: none;
|
||||||
|
margin-top: 0.5em; }
|
||||||
|
|
||||||
|
.tipue_search_content_title a {
|
||||||
|
color: #444;
|
||||||
|
text-decoration: none; }
|
||||||
|
.tipue_search_content_title a:hover {
|
||||||
|
color: #444;
|
||||||
|
text-decoration: underline; }
|
||||||
|
|
||||||
|
.tipue_search_content_url {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.tipue_search_content_text {
|
||||||
|
margin-top: 3px; }
|
||||||
|
|
||||||
|
.h01 {
|
||||||
|
font-weight: bold; }
|
||||||
|
|
||||||
|
#tipue_search_foot {
|
||||||
|
margin: 51px 0 21px 0; }
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
font: 12px/1 'Open Sans', sans-serif; }
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: inline; }
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li a {
|
||||||
|
padding: 9px 15px 10px 15px;
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border: 1px solid #dcdcdc;
|
||||||
|
border-radius: 1px;
|
||||||
|
color: #333;
|
||||||
|
margin-right: 7px;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center; }
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li.current {
|
||||||
|
padding: 9px 15px 10px 15px;
|
||||||
|
background: #fff;
|
||||||
|
border: 1px solid #dcdcdc;
|
||||||
|
border-radius: 1px;
|
||||||
|
color: #333;
|
||||||
|
margin-right: 7px;
|
||||||
|
text-align: center; }
|
||||||
|
|
||||||
|
#tipue_search_foot_boxes li a:hover {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
background-color: #f3f3f3; }
|
||||||
|
|
@ -3,4 +3,13 @@
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('.mg-container-social').height($('article').height());
|
$('.mg-container-social').height($('article').height());
|
||||||
$('#mg-panel-social').stick_in_parent({offset_top: 35});
|
$('#mg-panel-social').stick_in_parent({offset_top: 35});
|
||||||
|
|
||||||
|
$('#tipue_search_input').tipuesearch({
|
||||||
|
'show': 10,
|
||||||
|
'mode': 'json',
|
||||||
|
'showURL': false,
|
||||||
|
'descriptiveWords': 75,
|
||||||
|
'highlightEveryTerm': true,
|
||||||
|
'contentLocation': '/tipue_search.json'
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
444
static/js/tipuesearch.js
Normal file
444
static/js/tipuesearch.js
Normal file
@ -0,0 +1,444 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
Tipue Search 4.0
|
||||||
|
Copyright (c) 2014 Tipue
|
||||||
|
Tipue Search is released under the MIT License
|
||||||
|
http://www.tipue.com/search
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
(function($) {
|
||||||
|
|
||||||
|
$.fn.tipuesearch = function(options) {
|
||||||
|
|
||||||
|
var set = $.extend( {
|
||||||
|
|
||||||
|
'show' : 7,
|
||||||
|
'newWindow' : false,
|
||||||
|
'showURL' : true,
|
||||||
|
'minimumLength' : 3,
|
||||||
|
'descriptiveWords' : 25,
|
||||||
|
'highlightTerms' : true,
|
||||||
|
'highlightEveryTerm' : false,
|
||||||
|
'mode' : 'static',
|
||||||
|
'liveDescription' : '*',
|
||||||
|
'liveContent' : '*',
|
||||||
|
'contentLocation' : 'tipuesearch/tipuesearch_content.json'
|
||||||
|
|
||||||
|
}, options);
|
||||||
|
|
||||||
|
return this.each(function() {
|
||||||
|
|
||||||
|
var tipuesearch_in = {
|
||||||
|
pages: []
|
||||||
|
};
|
||||||
|
$.ajaxSetup({
|
||||||
|
async: false
|
||||||
|
});
|
||||||
|
|
||||||
|
if (set.mode == 'live')
|
||||||
|
{
|
||||||
|
for (var i = 0; i < tipuesearch_pages.length; i++)
|
||||||
|
{
|
||||||
|
$.get(tipuesearch_pages[i], '',
|
||||||
|
function (html)
|
||||||
|
{
|
||||||
|
var cont = $(set.liveContent, html).text();
|
||||||
|
cont = cont.replace(/\s+/g, ' ');
|
||||||
|
var desc = $(set.liveDescription, html).text();
|
||||||
|
desc = desc.replace(/\s+/g, ' ');
|
||||||
|
|
||||||
|
var t_1 = html.toLowerCase().indexOf('<title>');
|
||||||
|
var t_2 = html.toLowerCase().indexOf('</title>', t_1 + 7);
|
||||||
|
if (t_1 != -1 && t_2 != -1)
|
||||||
|
{
|
||||||
|
var tit = html.slice(t_1 + 7, t_2);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var tit = 'No title';
|
||||||
|
}
|
||||||
|
|
||||||
|
tipuesearch_in.pages.push({
|
||||||
|
"title": tit,
|
||||||
|
"text": desc,
|
||||||
|
"tags": cont,
|
||||||
|
"loc": tipuesearch_pages[i]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (set.mode == 'json')
|
||||||
|
{
|
||||||
|
$.getJSON(set.contentLocation,
|
||||||
|
function(json)
|
||||||
|
{
|
||||||
|
tipuesearch_in = $.extend({}, json);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (set.mode == 'static')
|
||||||
|
{
|
||||||
|
tipuesearch_in = $.extend({}, tipuesearch);
|
||||||
|
}
|
||||||
|
|
||||||
|
var tipue_search_w = '';
|
||||||
|
if (set.newWindow)
|
||||||
|
{
|
||||||
|
tipue_search_w = ' target="_blank"';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getURLP(name)
|
||||||
|
{
|
||||||
|
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search)||[,""])[1].replace(/\+/g, '%20')) || null;
|
||||||
|
}
|
||||||
|
if (getURLP('q'))
|
||||||
|
{
|
||||||
|
$('#tipue_search_input').val(getURLP('q'));
|
||||||
|
getTipueSearch(0, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
$(this).keyup(function(event)
|
||||||
|
{
|
||||||
|
if(event.keyCode == '13')
|
||||||
|
{
|
||||||
|
getTipueSearch(0, true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function getTipueSearch(start, replace)
|
||||||
|
{
|
||||||
|
$('#tipue_search_content').hide();
|
||||||
|
var out = '';
|
||||||
|
var results = '';
|
||||||
|
var show_replace = false;
|
||||||
|
var show_stop = false;
|
||||||
|
var standard = true;
|
||||||
|
var c = 0;
|
||||||
|
found = new Array();
|
||||||
|
|
||||||
|
var d = $('#tipue_search_input').val().toLowerCase();
|
||||||
|
d = $.trim(d);
|
||||||
|
|
||||||
|
if ((d.match("^\"") && d.match("\"$")) || (d.match("^'") && d.match("'$")))
|
||||||
|
{
|
||||||
|
standard = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (standard)
|
||||||
|
{
|
||||||
|
var d_w = d.split(' ');
|
||||||
|
d = '';
|
||||||
|
for (var i = 0; i < d_w.length; i++)
|
||||||
|
{
|
||||||
|
var a_w = true;
|
||||||
|
for (var f = 0; f < tipuesearch_stop_words.length; f++)
|
||||||
|
{
|
||||||
|
if (d_w[i] == tipuesearch_stop_words[f])
|
||||||
|
{
|
||||||
|
a_w = false;
|
||||||
|
show_stop = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (a_w)
|
||||||
|
{
|
||||||
|
d = d + ' ' + d_w[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
d = $.trim(d);
|
||||||
|
d_w = d.split(' ');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
d = d.substring(1, d.length - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (d.length >= set.minimumLength)
|
||||||
|
{
|
||||||
|
if (standard)
|
||||||
|
{
|
||||||
|
if (replace)
|
||||||
|
{
|
||||||
|
var d_r = d;
|
||||||
|
for (var i = 0; i < d_w.length; i++)
|
||||||
|
{
|
||||||
|
for (var f = 0; f < tipuesearch_replace.words.length; f++)
|
||||||
|
{
|
||||||
|
if (d_w[i] == tipuesearch_replace.words[f].word)
|
||||||
|
{
|
||||||
|
d = d.replace(d_w[i], tipuesearch_replace.words[f].replace_with);
|
||||||
|
show_replace = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
d_w = d.split(' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
var d_t = d;
|
||||||
|
for (var i = 0; i < d_w.length; i++)
|
||||||
|
{
|
||||||
|
for (var f = 0; f < tipuesearch_stem.words.length; f++)
|
||||||
|
{
|
||||||
|
if (d_w[i] == tipuesearch_stem.words[f].word)
|
||||||
|
{
|
||||||
|
d_t = d_t + ' ' + tipuesearch_stem.words[f].stem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
d_w = d_t.split(' ');
|
||||||
|
|
||||||
|
for (var i = 0; i < tipuesearch_in.pages.length; i++)
|
||||||
|
{
|
||||||
|
var score = 1000000000;
|
||||||
|
var s_t = tipuesearch_in.pages[i].text;
|
||||||
|
for (var f = 0; f < d_w.length; f++)
|
||||||
|
{
|
||||||
|
var pat = new RegExp(d_w[f], 'i');
|
||||||
|
if (tipuesearch_in.pages[i].title.search(pat) != -1)
|
||||||
|
{
|
||||||
|
score -= (200000 - i);
|
||||||
|
}
|
||||||
|
if (tipuesearch_in.pages[i].text.search(pat) != -1)
|
||||||
|
{
|
||||||
|
score -= (150000 - i);
|
||||||
|
}
|
||||||
|
|
||||||
|
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)
|
||||||
|
{
|
||||||
|
score -= (100000 - i);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (d_w[f].match("^-"))
|
||||||
|
{
|
||||||
|
pat = new RegExp(d_w[f].substring(1), 'i');
|
||||||
|
if (tipuesearch_in.pages[i].title.search(pat) != -1 || tipuesearch_in.pages[i].text.search(pat) != -1 || tipuesearch_in.pages[i].tags.search(pat) != -1)
|
||||||
|
{
|
||||||
|
score = 1000000000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (score < 1000000000)
|
||||||
|
{
|
||||||
|
found[c++] = score + '^' + tipuesearch_in.pages[i].title + '^' + s_t + '^' + tipuesearch_in.pages[i].loc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (var i = 0; i < tipuesearch_in.pages.length; i++)
|
||||||
|
{
|
||||||
|
var score = 1000000000;
|
||||||
|
var s_t = tipuesearch_in.pages[i].text;
|
||||||
|
var pat = new RegExp(d, 'i');
|
||||||
|
if (tipuesearch_in.pages[i].title.search(pat) != -1)
|
||||||
|
{
|
||||||
|
score -= (200000 - i);
|
||||||
|
}
|
||||||
|
if (tipuesearch_in.pages[i].text.search(pat) != -1)
|
||||||
|
{
|
||||||
|
score -= (150000 - i);
|
||||||
|
}
|
||||||
|
|
||||||
|
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)
|
||||||
|
{
|
||||||
|
score -= (100000 - i);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (score < 1000000000)
|
||||||
|
{
|
||||||
|
found[c++] = score + '^' + tipuesearch_in.pages[i].title + '^' + s_t + '^' + tipuesearch_in.pages[i].loc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (c != 0)
|
||||||
|
{
|
||||||
|
if (show_replace == 1)
|
||||||
|
{
|
||||||
|
out += '<div id="tipue_search_warning_head">Showing results for ' + d + '</div>';
|
||||||
|
out += '<div id="tipue_search_warning">Search instead for <a href="javascript:void(0)" id="tipue_search_replaced">' + d_r + '</a></div>';
|
||||||
|
}
|
||||||
|
if (c == 1)
|
||||||
|
{
|
||||||
|
out += '<div id="tipue_search_results_count">1 result</div>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
c_c = c.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
||||||
|
out += '<div id="tipue_search_results_count">' + c_c + ' results</div>';
|
||||||
|
}
|
||||||
|
|
||||||
|
found.sort();
|
||||||
|
var l_o = 0;
|
||||||
|
for (var i = 0; i < found.length; i++)
|
||||||
|
{
|
||||||
|
var fo = found[i].split('^');
|
||||||
|
if (l_o >= start && l_o < set.show + start)
|
||||||
|
{
|
||||||
|
out += '<div class="tipue_search_content_title"><a href="' + fo[3] + '"' + tipue_search_w + '>' + fo[1] + '</a></div>';
|
||||||
|
|
||||||
|
if (set.showURL)
|
||||||
|
{
|
||||||
|
out += '<div class="tipue_search_content_url"><a href="' + fo[3] + '"' + tipue_search_w + '>' + fo[3] + '</a></div>';
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = fo[2];
|
||||||
|
var t_d = '';
|
||||||
|
var t_w = t.split(' ');
|
||||||
|
if (t_w.length < set.descriptiveWords)
|
||||||
|
{
|
||||||
|
t_d = t;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (var f = 0; f < set.descriptiveWords; f++)
|
||||||
|
{
|
||||||
|
t_d += t_w[f] + ' ';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
t_d = $.trim(t_d);
|
||||||
|
if (t_d.charAt(t_d.length - 1) != '.')
|
||||||
|
{
|
||||||
|
t_d += ' ...';
|
||||||
|
}
|
||||||
|
out += '<div class="tipue_search_content_text">' + t_d + '</div>';
|
||||||
|
}
|
||||||
|
l_o++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (c > set.show)
|
||||||
|
{
|
||||||
|
var pages = Math.ceil(c / set.show);
|
||||||
|
var page = (start / set.show);
|
||||||
|
out += '<div id="tipue_search_foot"><ul id="tipue_search_foot_boxes">';
|
||||||
|
|
||||||
|
if (start > 0)
|
||||||
|
{
|
||||||
|
out += '<li><a href="javascript:void(0)" class="tipue_search_foot_box" id="' + (start - set.show) + '_' + replace + '">Prev</a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (page <= 2)
|
||||||
|
{
|
||||||
|
var p_b = pages;
|
||||||
|
if (pages > 3)
|
||||||
|
{
|
||||||
|
p_b = 3;
|
||||||
|
}
|
||||||
|
for (var f = 0; f < p_b; f++)
|
||||||
|
{
|
||||||
|
if (f == page)
|
||||||
|
{
|
||||||
|
out += '<li class="current">' + (f + 1) + '</li>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
out += '<li><a href="javascript:void(0)" class="tipue_search_foot_box" id="' + (f * set.show) + '_' + replace + '">' + (f + 1) + '</a></li>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var p_b = page + 2;
|
||||||
|
if (p_b > pages)
|
||||||
|
{
|
||||||
|
p_b = pages;
|
||||||
|
}
|
||||||
|
for (var f = page - 1; f < p_b; f++)
|
||||||
|
{
|
||||||
|
if (f == page)
|
||||||
|
{
|
||||||
|
out += '<li class="current">' + (f + 1) + '</li>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
out += '<li><a href="javascript:void(0)" class="tipue_search_foot_box" id="' + (f * set.show) + '_' + replace + '">' + (f + 1) + '</a></li>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (page + 1 != pages)
|
||||||
|
{
|
||||||
|
out += '<li><a href="javascript:void(0)" class="tipue_search_foot_box" id="' + (start + set.show) + '_' + replace + '">Next</a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
out += '</ul></div>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
out += '<div id="tipue_search_warning_head">Nothing found</div>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (show_stop)
|
||||||
|
{
|
||||||
|
out += '<div id="tipue_search_warning_head">Nothing found</div><div id="tipue_search_warning">Common words are largely ignored</div>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
out += '<div id="tipue_search_warning_head">Search too short</div>';
|
||||||
|
if (set.minimumLength == 1)
|
||||||
|
{
|
||||||
|
out += '<div id="tipue_search_warning">Should be one character or more</div>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
out += '<div id="tipue_search_warning">Should be ' + set.minimumLength + ' characters or more</div>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#tipue_search_content').html(out);
|
||||||
|
$('#tipue_search_content').slideDown(200);
|
||||||
|
|
||||||
|
$('#tipue_search_replaced').click(function()
|
||||||
|
{
|
||||||
|
getTipueSearch(0, false);
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.tipue_search_foot_box').click(function()
|
||||||
|
{
|
||||||
|
var id_v = $(this).attr('id');
|
||||||
|
var id_a = id_v.split('_');
|
||||||
|
|
||||||
|
getTipueSearch(parseInt(id_a[0]), id_a[1]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
})(jQuery);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
21
static/js/tipuesearch_set.js
Normal file
21
static/js/tipuesearch_set.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
Tipue Search 4.0
|
||||||
|
Copyright (c) 2014 Tipue
|
||||||
|
Tipue Search is released under the MIT License
|
||||||
|
http://www.tipue.com/search
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
var tipuesearch_stop_words = ["and", "be", "by", "do", "for", "he", "how", "if", "is", "it", "my", "not", "of", "or", "the", "to", "up", "what", "when"];
|
||||||
|
|
||||||
|
var tipuesearch_replace = {"words": [
|
||||||
|
{"word": "tipua", "replace_with": "tipue"},
|
||||||
|
{"word": "javscript", "replace_with": "javascript"}
|
||||||
|
]};
|
||||||
|
|
||||||
|
var tipuesearch_stem = {"words": [
|
||||||
|
{"word": "e-mail", "stem": "email"},
|
||||||
|
{"word": "javascript", "stem": "js"}
|
||||||
|
]};
|
||||||
|
|
@ -34,6 +34,8 @@
|
|||||||
<link href='//fonts.googleapis.com/css?family=Open+Sans:800italic' rel='stylesheet' type='text/css'>
|
<link href='//fonts.googleapis.com/css?family=Open+Sans:800italic' rel='stylesheet' type='text/css'>
|
||||||
<link href='//fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
|
<link href='//fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
|
||||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/uikit/2.15.0/css/uikit.min.css">
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/uikit/2.15.0/css/uikit.min.css">
|
||||||
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/uikit/2.15.0/css/components/search.min.css">
|
||||||
|
<link rel="stylesheet" href="/theme/css/tipuesearch.css">
|
||||||
<link rel="stylesheet" href="/theme/css/solarized.css">
|
<link rel="stylesheet" href="/theme/css/solarized.css">
|
||||||
<link rel="stylesheet" href="/theme/css/main.css">
|
<link rel="stylesheet" href="/theme/css/main.css">
|
||||||
|
|
||||||
@ -74,8 +76,14 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
<div class="uk-width-medium-1-5 uk-hidden-small">
|
<div class="uk-width-medium-1-5 uk-hidden-small">
|
||||||
|
|
||||||
|
<div class="uk-panel uk-panel-box">
|
||||||
|
<form class="uk-search" action="search.html" data-uk-search>
|
||||||
|
<input class="uk-search-field tipue_search" type="search" name="q" id="tipue_search_input" autocomplete="off" placeholder="Search...">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="uk-panel uk-panel-box">
|
<div class="uk-panel uk-panel-box">
|
||||||
<!--<h3 class="uk-panel-title">Categories</h3> -->
|
|
||||||
<ul class="uk-nav uk-nav-side">
|
<ul class="uk-nav uk-nav-side">
|
||||||
<li class="uk-nav-header">Categories</li>
|
<li class="uk-nav-header">Categories</li>
|
||||||
{% for cat, _ in categories %}
|
{% for cat, _ in categories %}
|
||||||
@ -145,6 +153,11 @@
|
|||||||
|
|
||||||
<div id="mg-offcanvas" class="uk-offcanvas">
|
<div id="mg-offcanvas" class="uk-offcanvas">
|
||||||
<div class="uk-offcanvas-bar">
|
<div class="uk-offcanvas-bar">
|
||||||
|
|
||||||
|
<form class="uk-search" action="search.html" data-uk-search>
|
||||||
|
<input class="uk-search-field" type="search" name="q" id="tipue_search_input" autocomplete="off" placeholder="Search...">
|
||||||
|
</form>
|
||||||
|
|
||||||
<ul class="uk-nav uk-nav-offcanvas" data-uk-nav>
|
<ul class="uk-nav uk-nav-offcanvas" data-uk-nav>
|
||||||
<li class="uk-nav-header">Categories</li>
|
<li class="uk-nav-header">Categories</li>
|
||||||
{% for cat, _ in categories %}
|
{% for cat, _ in categories %}
|
||||||
@ -169,8 +182,10 @@
|
|||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
||||||
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script>
|
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script>
|
||||||
<script src="//cdnjs.cloudflare.com/ajax/libs/uikit/2.15.0/js/uikit.min.js"></script>
|
<script src="//cdnjs.cloudflare.com/ajax/libs/uikit/2.15.0/js/uikit.min.js"></script>
|
||||||
<script src="/theme/js/jquery.sticky-kit.min.js"></script>
|
<script src="//cdnjs.cloudflare.com/ajax/libs/uikit/2.15.0/js/components/search.min.js"></script>
|
||||||
|
<script src="/theme/js/jquery.sticky-kit.js"></script>
|
||||||
|
<script src="/theme/js/tipuesearch_set.js"></script>
|
||||||
|
<script src="/theme/js/tipuesearch.js"></script>
|
||||||
<script src="/theme/js/plugins.js"></script>
|
<script src="/theme/js/plugins.js"></script>
|
||||||
<script src="/theme/js/main.js"></script>
|
<script src="/theme/js/main.js"></script>
|
||||||
|
|
||||||
|
17
templates/search.html
Normal file
17
templates/search.html
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% block title %}Search results{% endblock %}
|
||||||
|
{% block description %}{% endblock %}
|
||||||
|
|
||||||
|
{% include 'common_seo.html' %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="uk-width-medium-4-5">
|
||||||
|
<h1 class="uk-heading-large">Search results</h1>
|
||||||
|
|
||||||
|
<div id="tipue_search_content"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
|
16
templates/tipue_search.html
Normal file
16
templates/tipue_search.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"pages": [
|
||||||
|
{% set len = (articles + pages)| length %}
|
||||||
|
{% for item in articles + pages %}
|
||||||
|
{
|
||||||
|
"title": "{{item.title|striptags|e}}",
|
||||||
|
"text":"{{item.content|striptags|e}}",
|
||||||
|
"tags": "{{item.category}}",
|
||||||
|
"loc": "{{ SITEURL }}/{{item.url}}"
|
||||||
|
}{% if loop.index < len %},
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user