bbdocsmaterialize 0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/author.html +0 -0
- data/_includes/footer.html +41 -0
- data/_includes/header.html +85 -0
- data/_includes/homebody.html +0 -0
- data/_includes/post.html +65 -0
- data/_includes/search.html +9 -0
- data/_layouts/.DS_Store +0 -0
- data/_layouts/home.html +0 -0
- data/_layouts/post.html +3 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/main.css +633 -0
- data/assets/img/.DS_Store +0 -0
- data/assets/img/bb_logo.png +0 -0
- data/assets/img/bb_logo_short.jpg +0 -0
- data/assets/img/bb_logo_short_nobg.png +0 -0
- data/assets/img/cd-icons.svg +26 -0
- data/assets/img/favicon-96x96.png +0 -0
- data/assets/img/nav_advanced_learning.png +0 -0
- data/assets/js/.DS_Store +0 -0
- data/assets/js/accordion-menu.js +53 -0
- data/assets/js/toc.js +108 -0
- data/assets/tipuesearch/.DS_Store +0 -0
- data/assets/tipuesearch/css/normalize.css +461 -0
- data/assets/tipuesearch/css/tipuesearch.css +250 -0
- data/assets/tipuesearch/tipuesearch.min.js +178 -0
- data/assets/tipuesearch/tipuesearch_content.js +83 -0
- data/assets/tipuesearch/tipuesearch_set.js +79 -0
- metadata +86 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
Tipue Search 6.1
|
4
|
+
Copyright (c) 2017 Tipue
|
5
|
+
Tipue Search is released under the MIT License
|
6
|
+
http://www.tipue.com/search
|
7
|
+
*/
|
8
|
+
|
9
|
+
|
10
|
+
/*
|
11
|
+
Stop words
|
12
|
+
Stop words list from http://www.ranks.nl/stopwords
|
13
|
+
*/
|
14
|
+
|
15
|
+
var tipuesearch_stop_words = ["a", "about", "above", "after", "again", "against", "all", "am", "an", "and", "any", "are", "aren't", "as", "at", "be", "because", "been", "before", "being", "below", "between", "both", "but", "by", "can't", "cannot", "could", "couldn't", "did", "didn't", "do", "does", "doesn't", "doing", "don't", "down", "during", "each", "few", "for", "from", "further", "had", "hadn't", "has", "hasn't", "have", "haven't", "having", "he", "he'd", "he'll", "he's", "her", "here", "here's", "hers", "herself", "him", "himself", "his", "how", "how's", "i", "i'd", "i'll", "i'm", "i've", "if", "in", "into", "is", "isn't", "it", "it's", "its", "itself", "let's", "me", "more", "most", "mustn't", "my", "myself", "no", "nor", "not", "of", "off", "on", "once", "only", "or", "other", "ought", "our", "ours", "ourselves", "out", "over", "own", "same", "shan't", "she", "she'd", "she'll", "she's", "should", "shouldn't", "so", "some", "such", "than", "that", "that's", "the", "their", "theirs", "them", "themselves", "then", "there", "there's", "these", "they", "they'd", "they'll", "they're", "they've", "this", "those", "through", "to", "too", "under", "until", "up", "very", "was", "wasn't", "we", "we'd", "we'll", "we're", "we've", "were", "weren't", "what", "what's", "when", "when's", "where", "where's", "which", "while", "who", "who's", "whom", "why", "why's", "with", "won't", "would", "wouldn't", "you", "you'd", "you'll", "you're", "you've", "your", "yours", "yourself", "yourselves"];
|
16
|
+
|
17
|
+
|
18
|
+
// Word replace
|
19
|
+
|
20
|
+
var tipuesearch_replace = {'words': [
|
21
|
+
{'word': 'tip', 'replace_with': 'tipue'},
|
22
|
+
{'word': 'javscript', 'replace_with': 'javascript'},
|
23
|
+
{'word': 'jqeury', 'replace_with': 'jquery'}
|
24
|
+
]};
|
25
|
+
|
26
|
+
|
27
|
+
// Weighting
|
28
|
+
|
29
|
+
var tipuesearch_weight = {'weight': [
|
30
|
+
{'url': 'http://www.tipue.com', 'score': 20},
|
31
|
+
{'url': 'http://www.tipue.com/search', 'score': 30},
|
32
|
+
{'url': 'http://www.tipue.com/is', 'score': 10}
|
33
|
+
]};
|
34
|
+
|
35
|
+
|
36
|
+
// Illogical stemming
|
37
|
+
|
38
|
+
var tipuesearch_stem = {'words': [
|
39
|
+
{'word': 'e-mail', 'stem': 'email'},
|
40
|
+
{'word': 'javascript', 'stem': 'jquery'},
|
41
|
+
{'word': 'javascript', 'stem': 'js'}
|
42
|
+
]};
|
43
|
+
|
44
|
+
|
45
|
+
// Related searches
|
46
|
+
|
47
|
+
var tipuesearch_related = {'searches': [
|
48
|
+
{'search': 'tipue', 'related': 'Tipue Search'},
|
49
|
+
{'search': 'tipue', 'before': 'Tipue Search', 'related': 'Getting Started'},
|
50
|
+
{'search': 'tipue', 'before': 'Tipue', 'related': 'jQuery'},
|
51
|
+
{'search': 'tipue', 'before': 'Tipue', 'related': 'Blog'}
|
52
|
+
]};
|
53
|
+
|
54
|
+
|
55
|
+
// Internal strings
|
56
|
+
|
57
|
+
var tipuesearch_string_1 = 'No title';
|
58
|
+
var tipuesearch_string_2 = 'Showing results for';
|
59
|
+
var tipuesearch_string_3 = 'Search instead for';
|
60
|
+
var tipuesearch_string_4 = '1 result';
|
61
|
+
var tipuesearch_string_5 = 'results';
|
62
|
+
var tipuesearch_string_6 = 'Back';
|
63
|
+
var tipuesearch_string_7 = 'More';
|
64
|
+
var tipuesearch_string_8 = 'Nothing found.';
|
65
|
+
var tipuesearch_string_9 = 'Common words are largely ignored.';
|
66
|
+
var tipuesearch_string_10 = 'Search too short';
|
67
|
+
var tipuesearch_string_11 = 'Should be one character or more.';
|
68
|
+
var tipuesearch_string_12 = 'Should be';
|
69
|
+
var tipuesearch_string_13 = 'characters or more.';
|
70
|
+
var tipuesearch_string_14 = 'seconds';
|
71
|
+
var tipuesearch_string_15 = 'Searches related to';
|
72
|
+
|
73
|
+
|
74
|
+
// Internals
|
75
|
+
|
76
|
+
|
77
|
+
// Timer for showTime
|
78
|
+
|
79
|
+
var startTimer = new Date().getTime();
|
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bbdocsmaterialize
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '0.2'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- daveyherrera
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-11-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.1'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- davey.herrera@blackboard.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- LICENSE.txt
|
35
|
+
- README.md
|
36
|
+
- _includes/author.html
|
37
|
+
- _includes/footer.html
|
38
|
+
- _includes/header.html
|
39
|
+
- _includes/homebody.html
|
40
|
+
- _includes/post.html
|
41
|
+
- _includes/search.html
|
42
|
+
- _layouts/.DS_Store
|
43
|
+
- _layouts/home.html
|
44
|
+
- _layouts/post.html
|
45
|
+
- assets/.DS_Store
|
46
|
+
- assets/css/main.css
|
47
|
+
- assets/img/.DS_Store
|
48
|
+
- assets/img/bb_logo.png
|
49
|
+
- assets/img/bb_logo_short.jpg
|
50
|
+
- assets/img/bb_logo_short_nobg.png
|
51
|
+
- assets/img/cd-icons.svg
|
52
|
+
- assets/img/favicon-96x96.png
|
53
|
+
- assets/img/nav_advanced_learning.png
|
54
|
+
- assets/js/.DS_Store
|
55
|
+
- assets/js/accordion-menu.js
|
56
|
+
- assets/js/toc.js
|
57
|
+
- assets/tipuesearch/.DS_Store
|
58
|
+
- assets/tipuesearch/css/normalize.css
|
59
|
+
- assets/tipuesearch/css/tipuesearch.css
|
60
|
+
- assets/tipuesearch/tipuesearch.min.js
|
61
|
+
- assets/tipuesearch/tipuesearch_content.js
|
62
|
+
- assets/tipuesearch/tipuesearch_set.js
|
63
|
+
homepage: https://github.com/blackboard/bbdocsMaterialize
|
64
|
+
licenses:
|
65
|
+
- MIT
|
66
|
+
metadata: {}
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options: []
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
requirements: []
|
82
|
+
rubygems_version: 3.1.2
|
83
|
+
signing_key:
|
84
|
+
specification_version: 4
|
85
|
+
summary: This is the new site layout for Blackboard Developer Documents
|
86
|
+
test_files: []
|