This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Threading; | |
using System.Windows.Automation; | |
using System.Windows.Forms; | |
//WARNING: The code below is NOT for the faint of heart. Exceptions are swallowed freely, sendkeys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sqlite3 | |
conn = sqlite3.connect('docSet.dsidx') | |
cur = conn.cursor() | |
cur.execute("DROP INDEX IF EXISTS anchor") | |
cur.execute("DROP TABLE IF EXISTS searchIndex") | |
cur.execute("CREATE TABLE searchIndex(id INTEGER PRIMARY KEY, name TEXT, type TEXT, path TEXT)") | |
cur.execute("CREATE UNIQUE INDEX anchor ON searchIndex (name, type, path)") | |
for root, dirs, files in os.walk('Documents'): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Remember to set production_url in your _config.yml file! | |
layout: nil | |
title : Sitemap | |
--- | |
<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
{% for post in site.posts %} | |
<url> | |
<loc>{{site.production_url}}{{ post.url }}</loc> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: robots | |
--- | |
User-agent: * | |
Sitemap: <{{site.production_url}}/sitemap.xml> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if page.keywords %} | |
<meta name="keywords" content="{{ page.keywords }}"> | |
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if site.JB.comments.provider and page.comments != false %} | |
{% case site.JB.comments.provider %} | |
{% when "duoshuo" %} | |
{% include JB/comments-providers/duoshuo %} | |
{% when "disqus" %} | |
{% include JB/comments-providers/disqus %} | |
{% when "livefyre" %} | |
{% include JB/comments-providers/livefyre %} | |
{% when "intensedebate" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="ds-thread"></div> | |
<script type="text/javascript"> | |
var duoshuoQuery = {short_name:'{{ site.JB.comments.duoshuo.short_name }}'}; | |
(function() { | |
var ds = document.createElement('script'); | |
ds.type = 'text/javascript';ds.async = true; | |
ds.src = 'http://static.duoshuo.com/embed.js'; | |
ds.charset = 'UTF-8'; | |
(document.getElementsByTagName('head')[0] | |
|| document.getElementsByTagName('body')[0]).appendChild(ds); |