├── img └── dutchroyalfamily.jpg ├── assets ├── font-awesome │ └── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── css │ └── font-awesome.min.css └── js │ └── bootstrap.min.js ├── example.py ├── README.md ├── gedcom2html.css ├── gedcomParser_test.py ├── gedcom2html.v4.js ├── gedcom2html.py └── gedcomParser.py /img/dutchroyalfamily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/picnicprojects/gedcom2html/HEAD/img/dutchroyalfamily.jpg -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/picnicprojects/gedcom2html/HEAD/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/picnicprojects/gedcom2html/HEAD/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/picnicprojects/gedcom2html/HEAD/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/picnicprojects/gedcom2html/HEAD/assets/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- 1 | from gedcom2html import Gedcom2html 2 | 3 | g = Gedcom2html() 4 | g.options.file_path = "gedcom-files/dutchroyalfamily.ged" 5 | g.options.title = "Family tree of the Dutch Royal Family" 6 | g.options.home_person_id = "I1208" 7 | g.write_html() 8 | 9 | 10 | # g = Gedcom2html() 11 | # g.options.file_path = "gedcom-files/americanpresidents.ged" 12 | # g.options.title = "American Presidents" 13 | # g.write_html() 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Convert gedcom to html with bootstrap, d3 and jquery using python 2 | ## Usage 3 | ``` 4 | python example.py 5 | ``` 6 | Open generated/index.html in a browser 7 | ## Features 8 | - one html page for each individual in the gedcom file 9 | - ancenstor and descendant fan charts 10 | - a navigator chart (with d3 force simulation) 11 |
12 | An example of the Dutch King: 13 | 14 | ![(https://raw.githubusercontent.com/picnicprojects/gedcom2html/master/img/dutchroyalfamily.jpg)](https://raw.githubusercontent.com/picnicprojects/gedcom2html/master/img/dutchroyalfamily.jpg) 15 | 16 | ## Special Thanks 17 | - gedcom2html uses [gedcom.py](https://github.com/nickreynke/python-gedcom) by Nick Reynke to parse the gedcom file 18 | - [famousfamilytrees](http://famousfamilytrees.blogspot.com/?m=1) for the demo gedcom files 19 | ## To do 20 | - beautify CSS / colors 21 | - command line options 22 | * -private 23 | * none 24 | * hide dates of people alive 25 | * hide all people alive 26 | * -output-dir 27 | * -language 28 | - list of people in right column 29 | - improve age calculation 30 | -------------------------------------------------------------------------------- /gedcom2html.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | 4 | .page-header{ 5 | margin:0px; 6 | background-color:#777; 7 | color:#bbb; 8 | padding:0px; 9 | text-align:center; 10 | } 11 | 12 | .page-header a{ 13 | color:#bbb; 14 | } 15 | 16 | ul li{ 17 | list-style-type: none; 18 | } 19 | 20 | h3{ 21 | font-size:12px; 22 | text-align:center; 23 | font-weight:bold; 24 | } 25 | 26 | span.dates{ 27 | color:#999; 28 | } 29 | 30 | .gedcominfo{ 31 | font-size:9px; 32 | color:#333; 33 | } 34 | .gedcominfo h3{ 35 | font-size:10px; 36 | color:#333; 37 | } 38 | 39 | svg { 40 | margin-top: 32px; 41 | border: 1px solid #aaa; 42 | } 43 | 44 | footer{ 45 | text-align:right; 46 | font-size:12px; 47 | font-weight:bold; 48 | } 49 | 50 | footer a{ 51 | text-decoration: underline; 52 | } 53 | 54 | .person rect { 55 | fill: #fff; 56 | stroke: steelblue; 57 | stroke-width: 1px; 58 | } 59 | 60 | .person { 61 | font: 14px sans-serif; 62 | cursor: pointer; 63 | } 64 | 65 | .link { 66 | fill: none; 67 | stroke: #ccc; 68 | stroke-width: 1.5px; 69 | } 70 | 71 | .tree-name{ 72 | font-size:8px; 73 | text-align:center; 74 | text-wrap 75 | } -------------------------------------------------------------------------------- /gedcomParser_test.py: -------------------------------------------------------------------------------- 1 | from gedcomParser import GedcomParser 2 | import unittest, datetime 3 | 4 | class TestStringMethods(unittest.TestCase): 5 | def test_dutch(self): 6 | g = GedcomParser('demo/dutchroyalfamily.ged') 7 | self.p = g.get_persons() 8 | id_list = self.p.keys() 9 | id_list.sort() 10 | self.assertEqual(id_list[0], u'I1') 11 | self.assertEqual(len(id_list), 167) 12 | self.assertEqual(self.p[id_list[0]].first_name, u'Annemarie Cecilia') 13 | self.assertEqual(self.p[id_list[0]].surname, u'van Weezel') 14 | self.assertEqual(self.p[id_list[0]].nick_name, '') 15 | self.assertEqual(self.p[id_list[0]].birth_date, datetime.date(1977, 12, 18)) 16 | self.assertEqual(self.p[id_list[0]].death_date, False) 17 | self.assertEqual(self.p[id_list[0]].family[0].spouse_id, u'I2698') 18 | self.assertEqual(len(self.p[id_list[0]].family), 1) 19 | self.assertEqual(len(self.p[id_list[0]].family[0].child_id), 3) 20 | self.assertEqual(self.p[id_list[0]].family[0].child_id[0], u'I2') 21 | self.assertEqual(self.p[id_list[0]].family[0].child_id[1], u'I3') 22 | self.assertEqual(self.p[id_list[0]].family[0].child_id[2], u'I4') 23 | 24 | def test_usa(self): 25 | g = GedcomParser('demo/americanpresidents.ged') 26 | self.p = g.get_persons() 27 | id_list = self.p.keys() 28 | id_list.sort() 29 | self.assertEqual(id_list[0], u'I1') 30 | self.assertEqual(len(id_list), 2145) 31 | print self.p[id_list[0]] 32 | self.assertEqual(self.p[id_list[0]].first_name, u'William Jefferson') 33 | self.assertEqual(self.p[id_list[0]].surname, u'CLINTON') 34 | self.assertEqual(self.p[id_list[0]].nick_name, '') 35 | self.assertEqual(self.p[id_list[0]].birth_date, datetime.date(1946, 8, 19)) 36 | self.assertEqual(self.p[id_list[0]].death_date, False) 37 | self.assertEqual(self.p[id_list[0]].family[0].spouse_id, u'I2') 38 | self.assertEqual(len(self.p[id_list[0]].family), 1) 39 | self.assertEqual(len(self.p[id_list[0]].family[0].child_id), 1) 40 | self.assertEqual(self.p[id_list[0]].family[0].child_id[0], u'I66') 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /gedcom2html.v4.js: -------------------------------------------------------------------------------- 1 | function toggle_tree(id){ 2 | $('#ul_'+id).toggle(1000); 3 | if ($('#'+id).hasClass('fa-arrow-circle-right') == true) 4 | { 5 | $('#'+id).removeClass('fa-arrow-circle-right'); 6 | $('#'+id).addClass('fa-arrow-circle-down'); 7 | } 8 | else 9 | { 10 | $('#'+id).removeClass('fa-arrow-circle-down'); 11 | $('#'+id).addClass('fa-arrow-circle-right'); 12 | } 13 | } 14 | 15 | $(document).ready(function() { 16 | arrows = "[id^=ul_parent_]"; 17 | $(arrows).each(function(index, value) 18 | { 19 | $(value).hide(1000); 20 | }); 21 | arrows = "[id^=ul_children_]"; 22 | $(arrows).each(function(index, value) 23 | { 24 | $(value).hide(1000); 25 | }); 26 | }); 27 | 28 | 29 | function drawChartNavigator(jsonNavigator){ 30 | var width = Math.min(1024, $("#column-right").width()); 31 | var height = width, 32 | padding = 0; 33 | 34 | var div = d3.select("#chart_navigator"); 35 | 36 | var svg = div.append("svg") 37 | .attr("id", "mysvg") 38 | .attr("width", width + padding * 2) 39 | .attr("height", height + padding * 2) 40 | .style("border", "0px") 41 | .append("g"); 42 | 43 | var simulation = d3.forceSimulation() 44 | .force("link", d3.forceLink().id(function(d) { return d.id; })) 45 | .force("charge", d3.forceManyBody()) 46 | .force('collision', d3.forceCollide().radius(function(d) {return d.radius + 2})); 47 | 48 | var nodes = jsonNavigator.nodes; 49 | var links = jsonNavigator.links; 50 | 51 | radius_small = Math.sqrt(0.2 * (width*height / nodes.length)); 52 | radius_large = 3 * radius_small; 53 | 54 | calcFixY(); 55 | 56 | function calcFixY(){ 57 | min = 100000; 58 | max = 0; 59 | nodes.forEach(function(d) { 60 | if (d.birth_year.length > 0){ 61 | min = Math.min(min, parseInt(d.birth_year)); 62 | max = Math.max(max, parseInt(d.birth_year)); 63 | } 64 | if (d.color == "#aaa") 65 | { 66 | d.radius = radius_small; 67 | } 68 | else 69 | { 70 | d.radius = radius_large; 71 | } 72 | }); 73 | nodes.forEach(function(n) { 74 | if (n.birth_year.length > 0){ 75 | n.fy = height * (parseInt(n.birth_year) - min) / (max - min); 76 | } 77 | else{ 78 | n.yFixed = null; 79 | } 80 | // n.children = []; 81 | // links.forEach(function(l) { 82 | // if (l.source == n.id) 83 | // { 84 | // n.children.push(l.target); 85 | // } 86 | // }); 87 | }); 88 | }; 89 | 90 | var link = svg.append("g") 91 | .attr("class", "link") 92 | .selectAll("line") 93 | .data(links) 94 | .enter().append("line") 95 | .attr("stroke-width", 1); 96 | 97 | var node = svg.append("g") 98 | .attr("class", "nodes") 99 | .selectAll("circle") 100 | .data(nodes) 101 | .enter().append("a") 102 | .attr("xlink:href", function(d) {return d.url}) 103 | .append("circle") 104 | .attr("r", function(d) {return d.radius}) 105 | .attr("stroke", function(d){if (d.birth_year != ""){return "#000";}}) 106 | .attr("stroke-width", function(d){if (d.birth_year != ""){return 3;}}) 107 | .attr("fill", function(d) { return d.color; }); 108 | 109 | node.append("title") 110 | .text(function(d) { return d.url; }); 111 | 112 | simulation 113 | .nodes(nodes) 114 | .on("tick", ticked); 115 | 116 | simulation.force("link") 117 | .links(links); 118 | 119 | function ticked() { 120 | // ly = radius_large * 3; 121 | // nodes.forEach(function(d) { 122 | // if (d.children.length > 0) { 123 | // d.children.forEach(function(c){ 124 | // nodes.forEach(function(p) { 125 | // if (p.id == c) 126 | // { 127 | // if (d.birth_year.length > 0){ 128 | // min = Math.min(min, parseInt(d.birth_year)); 129 | // d.py = d.y = Math.max(d.y, p.y + ly); 130 | // } 131 | // }); 132 | // }); 133 | // }; 134 | // }); 135 | 136 | 137 | // if (node.attr('yFixed') != null){ 138 | // node.attr('y', function(d) {return d.yFixed;}); 139 | // node.attr('py', function(d) {return d.yFixed;}); 140 | // } 141 | // else 142 | // { 143 | 144 | // nodes.forEach(function(d) { 145 | // if (d.yFixed != null){ 146 | // d.fy = d.yFixed; 147 | // } 148 | // }); 149 | 150 | 151 | // nodes.forEach(function(d) { 152 | // if (d.yFixed != null){ 153 | // d.y = d.py = d.yFixed; 154 | // } 155 | // else 156 | // { 157 | // d should be below its parents 158 | // if (d.children.length > 0) { 159 | // d.children.forEach(function(c){ 160 | // nodes.forEach(function(p) { 161 | // if (p.id == c) 162 | // { 163 | // console.log(d.url, p.url, p.y, d.y); 164 | // d.py = d.y = Math.max(d.y, p.y + ly); 165 | // } 166 | // }); 167 | // }); 168 | // }; 169 | // d should be above its children 170 | // nodes.forEach(function(p) { 171 | // if (p.children.length > 0) { 172 | // p.children.forEach(function(c){ 173 | // nodes.forEach(function(q) { 174 | // if (q.id == c) 175 | // { 176 | // console.log(d.url, p.url, p.y, d.y); 177 | // d.py = d.y = Math.min(d.y, q.y - ly); 178 | // } 179 | // }); 180 | // }); 181 | // }; 182 | // }); 183 | // } 184 | // }); 185 | 186 | link 187 | .attr("x1", function(d) { return d.source.x; }) 188 | .attr("y1", function(d) { return d.source.y; }) 189 | .attr("x2", function(d) { return d.target.x; }) 190 | .attr("y2", function(d) { return d.target.y; }); 191 | 192 | node 193 | .attr("cx", function(d) { return d.x; }) 194 | .attr("cy", function(d) { return d.y; }); 195 | // .attr("cx", function(d) {return (d.x = Math.max(radius, Math.min(width - radius, d.x)));}) 196 | // .attr("cy", function(d) {return (d.y = Math.max(radius, Math.min(height - radius, d.y)));}) 197 | // rescale svg 198 | minx = miny = 100000; 199 | maxx = maxy = -100000; 200 | nodes.forEach(function(d) { 201 | minx = Math.min(minx, d.x); 202 | maxx = Math.max(maxx, d.x); 203 | miny = Math.min(miny, d.y); 204 | maxy = Math.max(maxy, d.y); 205 | }); 206 | s = (minx - radius_large) + " " + (miny - radius_large) + " " + (maxx-minx + 2*radius_large) + " " + (maxy-miny+ 2*radius_large); 207 | $("#mysvg").attr("viewBox", s); 208 | } 209 | }; 210 | 211 | function drawFanChart(json, boolAncestors){ 212 | var width = Math.min(1024, $("#column-left").width()); 213 | 214 | var height = width, 215 | radius = width / 2, 216 | x = d3.scaleLinear().range([0, 2 * Math.PI]), 217 | y = d3.scalePow().exponent(1.3).domain([0, 1]).range([0, radius]), 218 | padding = 5, 219 | duration = 1000; 220 | 221 | if (boolAncestors) 222 | { 223 | var div = d3.select("#fanchart_ancestors"); 224 | } 225 | else 226 | { 227 | var div = d3.select("#fanchart_descendants"); 228 | } 229 | 230 | var svg = div.append("svg") 231 | .attr("width", width + padding * 2) 232 | .attr("height", height + padding * 2) 233 | .style("border", "0px") 234 | .append("g") 235 | .attr("transform", "translate(" + [radius + padding, radius + padding] + ")"); 236 | 237 | var partition = d3.partition(); 238 | 239 | var arc = d3.arc() 240 | .startAngle(function(d) { return Math.max(0, Math.min(2 * Math.PI, x(d.x0))); }) 241 | .endAngle(function(d) { return Math.max(0, Math.min(2 * Math.PI, x(d.x1))); }) 242 | .innerRadius(function(d) { return Math.max(0, y(d.y0)); }) 243 | .outerRadius(function(d) { return Math.max(0, y(d.y1)); }); 244 | 245 | 246 | if (boolAncestors) 247 | { 248 | root = d3.hierarchy(json); 249 | var nodes = partition(root).descendants(); 250 | root.each(function(d){ 251 | dx = 1/Math.pow(2,d.depth); 252 | if (d.depth == 0){ 253 | d.x0 = 0; 254 | d.x1 = 1; 255 | } 256 | else{ 257 | if (d.data.gender == "F"){ 258 | d.x0 = d.parent.x0 + dx; 259 | // d.x = d.parent.x 260 | } 261 | else{ 262 | d.x0 = d.parent.x0; 263 | } 264 | d.x1 = d.x0 + dx; 265 | } 266 | }); 267 | } 268 | else 269 | { 270 | root = d3.hierarchy(json); 271 | // .sum(function (d) { return d.size; }); 272 | root.count() 273 | 274 | var nodes = partition(root).descendants(); 275 | } 276 | 277 | 278 | var path = svg.selectAll("path") 279 | .data(nodes) 280 | .enter() 281 | .append("a") 282 | .attr("xlink:href", function(d) {return d.data.href}) 283 | .append('g').attr("class", "node").append('path') 284 | .attr("d", arc) 285 | .attr("stroke", "#333") 286 | .attr("stroke-width", "1") 287 | .attr("fill-rule", "evenodd") 288 | .style("fill", function(d) {return d.data.color}) 289 | 290 | var textEnter = svg.selectAll(".node") 291 | .append("text") 292 | .style("fill-opacity", 1) 293 | .style("fill", "#000") 294 | .attr("text-anchor", function(d){ 295 | if (d.depth > 5) 296 | { 297 | return 'left'; 298 | } 299 | else 300 | { 301 | return 'middle'; 302 | } 303 | }) 304 | .attr("text-color", "#000") 305 | .text(function(d){return d.data.name;}) 306 | .attr("transform", transformText) 307 | .attr("font-size", "8px"); 308 | 309 | function transformText(d){ 310 | if (d.depth == 0){ 311 | R1 = 0, R2 = 0, TX = 0, TY = 0; 312 | } 313 | else{ 314 | R1 = 0; 315 | a = x(d.x0 + 0.5 * (d.x1 - d.x0)); 316 | if (d.depth > 5) 317 | { 318 | r = y(d.y0); 319 | } 320 | else 321 | { 322 | r = y(d.y0 + 0.5 * (d.y1 - d.y0)); 323 | } 324 | TX = r*Math.sin(a); 325 | TY = -r*Math.cos(a); 326 | R2 = 360* a / (2 * Math.PI); 327 | if (d.depth > 5) 328 | { 329 | R2 = R2 - 90; 330 | } 331 | } 332 | s = "rotate("+R1+")translate("+TX+","+TY+")rotate("+R2+")"; 333 | return s; 334 | }; 335 | }; 336 | -------------------------------------------------------------------------------- /gedcom2html.py: -------------------------------------------------------------------------------- 1 | from gedcomParser import GedcomParser 2 | from datetime import datetime 3 | import codecs, os, shutil, string, sys, getopt 4 | 5 | 6 | def calc_color(type, level = 0, gender = 'M'): 7 | level_max = 10.0; 8 | if type == 0: # not related 9 | c = '#aaa' 10 | elif type == 1: # home_person 11 | c = '#00f' 12 | elif type == 2: # parent 13 | x = 10 + 240 * (1 - (level / level_max)) 14 | c = '#%s0000' % format(int(x), '02x').upper() 15 | elif type == 3: # child 16 | x = 10 + 240 * (1 - (level / level_max)) 17 | c = '#00%s00' % format(int(x), '02x').upper() 18 | else: 19 | c = '#000' # error 20 | return c 21 | 22 | class Html: 23 | def __init__(self, p, all_persons, sources, options): 24 | self.person = p 25 | self.options = options 26 | self.all_persons = all_persons 27 | for id, p2 in self.all_persons.items(): 28 | self.all_persons[id].color = calc_color(0) 29 | p.color = calc_color(1) 30 | self.__fid = codecs.open('generated/' + p.link, encoding='utf-8',mode='w') 31 | self.write_header() 32 | self.__fid.write("
\n") 33 | self.write_person() 34 | self.write_parents() 35 | self.write_families() 36 | self.write_siblings() 37 | self.__fid.write("
\n") 38 | self.__fid.write("
\n") 39 | self.__fid.write("
\n") 40 | self.write_fan_chart_ancestors() 41 | self.__fid.write("
\n") 42 | self.__fid.write("
\n") 43 | self.write_fan_chart_descendants() 44 | self.__fid.write("
\n") 45 | self.__fid.write("
\n") 46 | self.write_chart_navigator() 47 | self.__fid.write("
\n") 48 | self.__fid.write("
\n") 49 | self.write_footer(sources) 50 | 51 | def __del__(self): 52 | self.__fid.close() 53 | 54 | def write_header(self): 55 | self.__fid.write("\n") 56 | self.__fid.write("\n") 57 | self.__fid.write("\n") 58 | self.__fid.write("%s\n" % self.person.short_name) 59 | self.__fid.write("\n" % self.options.title) 60 | self.__fid.write("\n") 61 | self.__fid.write("\n") 62 | self.__fid.write("\n") 63 | self.__fid.write("\n") 64 | self.__fid.write("\n") 65 | self.__fid.write("\n") 66 | self.__fid.write("\n") 67 | self.__fid.write("\n") 68 | self.__fid.write("\n") 69 | self.__fid.write("\n") 70 | self.__fid.write("\n" % self.options.title) 71 | self.__fid.write("
\n") 72 | 73 | def __write_parents(self, id, level): 74 | s = ' '*level 75 | if level == 1: 76 | self.__fid.write("%s
\n") 283 | if len(self.options.sc_project) > 0: 284 | self.__fid.write('\n' % (self.options.sc_project, self.options.sc_security)) 285 | self.__fid.write('\n') 286 | self.__fid.write("\n") 287 | self.__fid.write("\n") 288 | self.__fid.close() 289 | 290 | 291 | class Gedcom2html: 292 | class Options: 293 | def __init__(self): 294 | self.input_file = "" 295 | self.output_path = "generated" 296 | self.sc_project = "" 297 | self.sc_security = "" 298 | self.title = "gedcom2html by picnic projects" 299 | self.home_person_id = "" 300 | 301 | def __init__(self): 302 | self.options = self.Options() 303 | 304 | def __copy_assets(self, gedcom_file): 305 | try: 306 | shutil.rmtree('generated') 307 | except: 308 | pass 309 | path, fname = os.path.split(gedcom_file) 310 | os.makedirs('generated/js') 311 | os.makedirs('generated/css') 312 | shutil.copy2(gedcom_file, 'generated/'+fname) 313 | shutil.copy2('gedcom2html.css','generated/css/') 314 | shutil.copy2('gedcom2html.v4.js', 'generated/js/') 315 | shutil.copy2('assets/css/font-awesome.min.css', 'generated/css/') 316 | shutil.copy2('assets/css/bootstrap.min.css', 'generated/css/') 317 | shutil.copy2('assets/js/d3.v4.min.js', 'generated/js/') 318 | shutil.copy2('assets/js/bootstrap.min.js', 'generated/js/') 319 | shutil.copytree('assets/font-awesome/fonts', 'generated/fonts/') 320 | 321 | def __create_strings(self, p): 322 | #shortest_name 323 | if len(p.nick_name) > 0: 324 | p.shortest_name = p.nick_name 325 | else: 326 | p.shortest_name = p.first_name.split(' ')[0] 327 | 328 | #short_name 329 | p.short_name = "%s %s " % (p.shortest_name, p.surname) 330 | 331 | #string_short 332 | if p.gender == 'M': 333 | s = "" 334 | else: 335 | s = "" 336 | p.string_short = "%s %s " % (s, p.short_name) 337 | 338 | #string_dates 339 | s = "" 340 | p.birth_year = "" 341 | if p.birth_date != False: 342 | s = s + " %s " % '{0.day:02d}-{0.month:02d}-{0.year:4d}'.format(p.birth_date) 343 | p.birth_year = '{0.year:4d}'.format(p.birth_date) 344 | if p.death_date != False: 345 | s = s + " %s " % '{0.day:02d}-{0.month:02d}-{0.year:4d}'.format(p.death_date) 346 | if p.birth_date != False and p.death_date != False: 347 | # self.death_date.year - self.birth_date.year - ((today.month, today.day) < (born.month, born.day)) 348 | age = p.death_date.year - p.birth_date.year 349 | if age == 0: 350 | age = p.death_date.month - p.birth_date.month 351 | s = s + "(%s months) " % age 352 | else: 353 | s = s + "(%s years) " % age 354 | p.string_dates = s 355 | 356 | #link 357 | s = "%s_%s.html" % (p.id, p.shortest_name) 358 | s = s.replace(' ','_') 359 | valid_chars = "-_.() %s%s" % (string.ascii_letters, string.digits) 360 | p.link = ''.join(c for c in s if c in valid_chars) 361 | 362 | #string_long 363 | if len(p.string_dates) > 0: 364 | p.string_long = ("%s %s" % (p.link, p.string_short, p.string_dates)) 365 | else: 366 | p.string_long = ("%s" % (p.link, p.string_short)) 367 | 368 | def __write_index_html(self, link): 369 | fid = open('generated/index.html','w') 370 | fid.write('' % link) 371 | fid.close 372 | 373 | def write_html(self): 374 | self.__copy_assets(self.options.file_path) 375 | g = GedcomParser(self.options.file_path) 376 | all_persons = g.get_persons() 377 | sources = g.get_sources() 378 | i = -1 379 | for index, p in all_persons.items(): 380 | self.__create_strings(p) 381 | if i == -1: 382 | i = index 383 | if len(self.options.home_person_id) > 0: 384 | self.__write_index_html(all_persons[self.options.home_person_id].link) 385 | else: 386 | self.__write_index_html(all_persons[i].link) 387 | for index, p in all_persons.items(): 388 | h = Html(p, all_persons, sources, self.options) 389 | 390 | -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"} -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.1 (http://getbootstrap.com) 3 | * Copyright 2011-2014 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.1",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.1",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.1",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c="prev"==a?-1:1,d=this.getItemIndex(b),e=(d+c)%this.$items.length;return this.$items.eq(e)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i="next"==b?"first":"last",j=this;if(!f.length){if(!this.options.wrap)return;f=this.$element.find(".item")[i]()}if(f.hasClass("active"))return this.sliding=!1;var k=f[0],l=a.Event("slide.bs.carousel",{relatedTarget:k,direction:h});if(this.$element.trigger(l),!l.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var m=a(this.$indicators.children()[this.getItemIndex(f)]);m&&m.addClass("active")}var n=a.Event("slid.bs.carousel",{relatedTarget:k,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),j.sliding=!1,setTimeout(function(){j.$element.trigger(n)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(n)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&"show"==b&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a(this.options.trigger).filter('[href="#'+b.id+'"], [data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.1",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0,trigger:'[data-toggle="collapse"]'},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.find("> .panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":a.extend({},e.data(),{trigger:this});c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.1",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('