diff --git a/.gitignore b/.gitignore index c6873c31..e0689150 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# Dependency directories +Examples/ +node_modules/ +_site/ node_modules/ npm-debug.log package-lock.json diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..f46af413 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source 'https://rubygems.org' +gem 'github-pages', group: :jekyll_plugins + + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 00000000..d6e38448 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,125 @@ +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.9) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + addressable (2.4.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.11.1) + colorator (0.1) + ethon (0.10.1) + ffi (>= 1.3.0) + execjs (2.7.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + ffi (1.9.18) + gemoji (2.1.0) + github-pages (80) + github-pages-health-check (= 1.1.0) + jekyll (= 3.1.6) + jekyll-coffeescript (= 1.0.1) + jekyll-feed (= 0.5.1) + jekyll-gist (= 1.4.0) + jekyll-github-metadata (= 1.11.1) + jekyll-mentions (= 1.1.2) + jekyll-paginate (= 1.1.0) + jekyll-redirect-from (= 0.10.0) + jekyll-sass-converter (= 1.3.0) + jekyll-seo-tag (= 1.4.0) + jekyll-sitemap (= 0.10.0) + jemoji (= 0.6.2) + kramdown (= 1.10.0) + liquid (= 3.0.6) + listen (= 3.0.6) + mercenary (~> 0.3) + rouge (= 1.10.1) + terminal-table (~> 1.4) + github-pages-health-check (1.1.0) + addressable (~> 2.3) + net-dns (~> 0.8) + octokit (~> 4.0) + public_suffix (~> 1.4) + typhoeus (~> 0.7) + html-pipeline (2.4.1) + activesupport (>= 2, < 5) + nokogiri (>= 1.4) + i18n (0.8.6) + jekyll (3.1.6) + colorator (~> 0.1) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 1.1) + kramdown (~> 1.3) + liquid (~> 3.0) + mercenary (~> 0.3.3) + rouge (~> 1.7) + safe_yaml (~> 1.0) + jekyll-coffeescript (1.0.1) + coffee-script (~> 2.2) + jekyll-feed (0.5.1) + jekyll-gist (1.4.0) + octokit (~> 4.2) + jekyll-github-metadata (1.11.1) + octokit (~> 4.0) + jekyll-mentions (1.1.2) + html-pipeline (~> 2.3) + jekyll (~> 3.0) + jekyll-paginate (1.1.0) + jekyll-redirect-from (0.10.0) + jekyll (>= 2.0) + jekyll-sass-converter (1.3.0) + sass (~> 3.2) + jekyll-seo-tag (1.4.0) + jekyll (~> 3.0) + jekyll-sitemap (0.10.0) + jekyll-watch (1.4.0) + listen (~> 3.0, < 3.1) + jemoji (0.6.2) + gemoji (~> 2.0) + html-pipeline (~> 2.2) + jekyll (>= 3.0) + kramdown (1.10.0) + liquid (3.0.6) + listen (3.0.6) + rb-fsevent (>= 0.9.3) + rb-inotify (>= 0.9.7) + mercenary (0.3.6) + mini_portile2 (2.0.0) + minitest (5.10.3) + multipart-post (2.0.0) + net-dns (0.8.0) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + octokit (4.3.0) + sawyer (~> 0.7.0, >= 0.5.3) + public_suffix (1.5.3) + rb-fsevent (0.10.2) + rb-inotify (0.9.10) + ffi (>= 0.5.0, < 2) + rouge (1.10.1) + safe_yaml (1.0.4) + sass (3.4.22) + sawyer (0.7.0) + addressable (>= 2.3.5, < 2.5) + faraday (~> 0.8, < 0.10) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thread_safe (0.3.6) + typhoeus (0.8.0) + ethon (>= 0.8.0) + tzinfo (1.2.3) + thread_safe (~> 0.1) + unicode-display_width (1.3.0) + +PLATFORMS + ruby + +DEPENDENCIES + github-pages + +BUNDLED WITH + 1.12.5 diff --git a/README.md b/README.md index 6e6372ba..f472bf0f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@  +## Docs and Example Code +This repository contains a [wiki](https://github.com/tableau/ProjectFrelard/wiki) which contains developer documentation. You are encouraged to use it and also contribute. ## Setup and Running Samples diff --git a/_config.yml b/_config.yml new file mode 100644 index 00000000..704cff97 --- /dev/null +++ b/_config.yml @@ -0,0 +1,30 @@ +# Site settings +title: Project Frelard +email: git@tableau.com +description: Create add-ins to extend the functionality of Tableau. +repository: d45/tableau.github.io +baseurl: "/extensions-api" +# permalink: pretty + +defaults: + - + scope: + path: "" # Apply to all files + type: pages + values: + layout: "default" + permalink: /:path/:basename:output_ext + + +# Build settings +markdown: kramdown +highlighter: rouge +github: [metadata] + +kramdown: + toc_levels: 1..3 + +# Exclude +exclude: ['node_modules', 'Examples'] + + diff --git a/_includes/analytics.html b/_includes/analytics.html new file mode 100644 index 00000000..0cdbad25 --- /dev/null +++ b/_includes/analytics.html @@ -0,0 +1,7 @@ + + + diff --git a/_includes/docs_menu.html b/_includes/docs_menu.html new file mode 100644 index 00000000..72e0b49c --- /dev/null +++ b/_includes/docs_menu.html @@ -0,0 +1,46 @@ +
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 00000000..5b2182fa --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,8 @@ + + diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 00000000..0160982e --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,18 @@ + + + + +Posted on {{ post.date | date: "%-d %B %Y" }}
++ {{ post.abstract }} +
+ {% if post.photoname %} +Posted on {{ post.date | date: "%-d %B %Y" }}
++ {{ post.abstract }} +
+ {% if post.photoname %} +Loading search results...
+