Skip to content

Commit fa0934f

Browse files
committed
first upload
1 parent 57c3828 commit fa0934f

File tree

350 files changed

+15680
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

350 files changed

+15680
-0
lines changed

404.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: page
3+
title: "Page Not Found"
4+
description: "Page not found. Your pixels are in another canvas."
5+
---
6+
7+
Sorry, but the page you were trying to view does not exist --- perhaps you can try searching for it below.
8+
9+
<script type="text/javascript">
10+
var GOOG_FIXURL_LANG = 'en';
11+
var GOOG_FIXURL_SITE = '{{ site.url }}'
12+
</script>
13+
<script type="text/javascript"
14+
src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js">
15+
</script>

Gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'jekyll'
4+
gem 'coderay'
5+
gem 'sass', '3.4.5'
6+
gem 'octopress', '~> 3.0.0.rc.12'
7+
gem 'jekyll-sitemap'

Gemfile.lock

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
blankslate (2.1.2.4)
5+
celluloid (0.16.0)
6+
timers (~> 4.0.0)
7+
classifier-reborn (2.0.2)
8+
fast-stemmer (~> 1.0)
9+
coderay (1.1.0)
10+
coffee-script (2.3.0)
11+
coffee-script-source
12+
execjs
13+
coffee-script-source (1.8.0)
14+
colorator (0.1)
15+
execjs (2.2.2)
16+
fast-stemmer (1.0.2)
17+
ffi (1.9.6)
18+
ffi (1.9.6-x86-mingw32)
19+
hitimes (1.2.2)
20+
jekyll (2.5.2)
21+
classifier-reborn (~> 2.0)
22+
colorator (~> 0.1)
23+
jekyll-coffeescript (~> 1.0)
24+
jekyll-gist (~> 1.0)
25+
jekyll-paginate (~> 1.0)
26+
jekyll-sass-converter (~> 1.0)
27+
jekyll-watch (~> 1.1)
28+
kramdown (~> 1.3)
29+
liquid (~> 2.6.1)
30+
mercenary (~> 0.3.3)
31+
pygments.rb (~> 0.6.0)
32+
redcarpet (~> 3.1)
33+
safe_yaml (~> 1.0)
34+
toml (~> 0.1.0)
35+
jekyll-coffeescript (1.0.1)
36+
coffee-script (~> 2.2)
37+
jekyll-gist (1.1.0)
38+
jekyll-paginate (1.1.0)
39+
jekyll-sass-converter (1.3.0)
40+
sass (~> 3.2)
41+
jekyll-sitemap (0.7.0)
42+
jekyll-watch (1.2.0)
43+
listen (~> 2.7)
44+
kramdown (1.5.0)
45+
liquid (2.6.1)
46+
listen (2.8.3)
47+
celluloid (>= 0.15.2)
48+
rb-fsevent (>= 0.9.3)
49+
rb-inotify (>= 0.9)
50+
mercenary (0.3.5)
51+
octopress (3.0.0.rc.22)
52+
jekyll (~> 2.0)
53+
mercenary (~> 0.3.2)
54+
octopress-deploy
55+
octopress-docs
56+
titlecase
57+
octopress-deploy (1.0.0)
58+
colorator
59+
octopress-docs
60+
octopress-docs (0.0.11)
61+
jekyll (~> 2.0)
62+
octopress-escape-code (~> 1.0)
63+
octopress-hooks (~> 2.0)
64+
octopress-escape-code (1.0.4)
65+
octopress-hooks (~> 2.0)
66+
octopress-hooks (2.2.2)
67+
jekyll (~> 2.0)
68+
parslet (1.5.0)
69+
blankslate (~> 2.0)
70+
posix-spawn (0.3.9)
71+
pygments.rb (0.6.0)
72+
posix-spawn (~> 0.3.6)
73+
yajl-ruby (~> 1.1.0)
74+
rb-fsevent (0.9.4)
75+
rb-inotify (0.9.5)
76+
ffi (>= 0.5.0)
77+
redcarpet (3.2.2)
78+
safe_yaml (1.0.4)
79+
sass (3.4.5)
80+
timers (4.0.1)
81+
hitimes
82+
titlecase (0.1.1)
83+
toml (0.1.2)
84+
parslet (~> 1.5.0)
85+
yajl-ruby (1.1.0)
86+
yajl-ruby (1.1.0-x86-mingw32)
87+
88+
PLATFORMS
89+
ruby
90+
x86-mingw32
91+
92+
DEPENDENCIES
93+
coderay
94+
jekyll
95+
jekyll-sitemap
96+
octopress (~> 3.0.0.rc.12)
97+
sass (= 3.4.5)

Gruntfile.js

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
'use strict';
2+
module.exports = function(grunt) {
3+
4+
grunt.initConfig({
5+
jshint: {
6+
options: {
7+
jshintrc: '.jshintrc'
8+
},
9+
all: [
10+
'Gruntfile.js',
11+
'assets/js/*.js',
12+
'assets/js/plugins/*.js',
13+
'!assets/js/scripts.min.js'
14+
]
15+
},
16+
uglify: {
17+
dist: {
18+
files: {
19+
'assets/js/scripts.min.js': [
20+
'assets/js/plugins/*.js',
21+
'assets/js/_*.js'
22+
]
23+
}
24+
}
25+
},
26+
imagemin: {
27+
dist: {
28+
options: {
29+
optimizationLevel: 7,
30+
progressive: true
31+
},
32+
files: [{
33+
expand: true,
34+
cwd: 'images/',
35+
src: '{,*/}*.{png,jpg,jpeg}',
36+
dest: 'images/'
37+
}]
38+
}
39+
},
40+
svgmin: {
41+
dist: {
42+
files: [{
43+
expand: true,
44+
cwd: 'images/',
45+
src: '{,*/}*.svg',
46+
dest: 'images/'
47+
}]
48+
}
49+
},
50+
watch: {
51+
js: {
52+
files: [
53+
'<%= jshint.all %>'
54+
],
55+
tasks: ['jshint','uglify']
56+
}
57+
},
58+
clean: {
59+
dist: [
60+
'assets/js/scripts.min.js'
61+
]
62+
}
63+
});
64+
65+
// Load tasks
66+
grunt.loadNpmTasks('grunt-contrib-clean');
67+
grunt.loadNpmTasks('grunt-contrib-jshint');
68+
grunt.loadNpmTasks('grunt-contrib-uglify');
69+
grunt.loadNpmTasks('grunt-contrib-watch');
70+
grunt.loadNpmTasks('grunt-contrib-imagemin');
71+
grunt.loadNpmTasks('grunt-svgmin');
72+
73+
// Register tasks
74+
grunt.registerTask('default', [
75+
'clean',
76+
'uglify',
77+
'imagemin',
78+
'svgmin'
79+
]);
80+
grunt.registerTask('dev', [
81+
'watch'
82+
]);
83+
84+
};

Rakefile.rb

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
require "rubygems"
2+
require "bundler/setup"
3+
require "stringex"
4+
5+
## -- Config -- ##
6+
7+
public_dir = "public" # compiled site directory
8+
posts_dir = "_posts" # directory for blog files
9+
new_post_ext = "md" # default new post file extension when using the new_post task
10+
new_page_ext = "md" # default new page file extension when using the new_page task
11+
12+
13+
#############################
14+
# Create a new Post or Page #
15+
#############################
16+
17+
# usage rake new_post
18+
desc "Create a new post in #{posts_dir}"
19+
task :new_post, :title do |t, args|
20+
if args.title
21+
title = args.title
22+
else
23+
title = get_stdin("Enter a title for your post: ")
24+
end
25+
filename = "#{posts_dir}/#{Time.now.strftime('%Y-%m-%d')}-#{title.to_url}.#{new_post_ext}"
26+
if File.exist?(filename)
27+
abort("rake aborted!") if ask("#{filename} already exists. Do you want to overwrite?", ['y', 'n']) == 'n'
28+
end
29+
tags = get_stdin("Enter tags to classify your post (comma separated): ")
30+
puts "Creating new post: #{filename}"
31+
open(filename, 'w') do |post|
32+
post.puts "---"
33+
post.puts "layout: post"
34+
post.puts "title: \"#{title.gsub(/&/,'&amp;')}\""
35+
post.puts "modified: #{Time.now.strftime('%Y-%m-%d %H:%M:%S %z')}"
36+
post.puts "tags: [#{tags}]"
37+
post.puts "image:"
38+
post.puts " feature: "
39+
post.puts " credit: "
40+
post.puts " creditlink: "
41+
post.puts "comments: "
42+
post.puts "share: "
43+
post.puts "---"
44+
end
45+
end
46+
47+
# usage rake new_page
48+
desc "Create a new page"
49+
task :new_page, :title do |t, args|
50+
if args.title
51+
title = args.title
52+
else
53+
title = get_stdin("Enter a title for your page: ")
54+
end
55+
filename = "#{title.to_url}.#{new_page_ext}"
56+
if File.exist?(filename)
57+
abort("rake aborted!") if ask("#{filename} already exists. Do you want to overwrite?", ['y', 'n']) == 'n'
58+
end
59+
tags = get_stdin("Enter tags to classify your page (comma separated): ")
60+
puts "Creating new page: #{filename}"
61+
open(filename, 'w') do |page|
62+
page.puts "---"
63+
page.puts "layout: page"
64+
page.puts "permalink: /#{title.to_url}/"
65+
page.puts "title: \"#{title}\""
66+
page.puts "modified: #{Time.now.strftime('%Y-%m-%d %H:%M')}"
67+
page.puts "tags: [#{tags}]"
68+
page.puts "image:"
69+
page.puts " feature: "
70+
page.puts " credit: "
71+
page.puts " creditlink: "
72+
page.puts "share: "
73+
page.puts "---"
74+
end
75+
end
76+
77+
def get_stdin(message)
78+
print message
79+
STDIN.gets.chomp
80+
end
81+
82+
def ask(message, valid_options)
83+
if valid_options
84+
answer = get_stdin("#{message} #{valid_options.to_s.gsub(/"/, '').gsub(/, /,'/')} ") while !valid_options.include?(answer)
85+
else
86+
answer = get_stdin(message)
87+
end
88+
answer
89+
end

_config.yml

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
title: Ardour 3
2+
description: An updated version of the original FLOSS manual.
3+
disqus_shortname:
4+
reading_time: true
5+
words_per_minute: 120
6+
url: http://brunoruviaro.github.io/ardour3-floss-tutorial
7+
8+
#http://localhost:4000
9+
10+
#http://brunoruviaro.github.io/ardour3-floss-tutorial
11+
12+
# Owner/author information
13+
owner:
14+
name: Ardour 3 Tutorial
15+
avatar: ardour3-icon.png
16+
bio: "An updated version of the original Ardour FLOSS Manual."
17+
email:
18+
# Social networking links used in footer. Update and remove as you like.
19+
twitter:
20+
facebook:
21+
github: brunoruviaro/ardour3-floss-tutorial/
22+
stackexchange:
23+
linkedin:
24+
instagram:
25+
flickr:
26+
tumblr:
27+
# For Google Authorship https://plus.google.com/authorship
28+
# google plus id, include the '+', eg +mmistakes
29+
google_plus:
30+
31+
# Background image to be tiled on all pages
32+
background:
33+
34+
# Analytics and webmaster tools stuff goes here
35+
google_analytics: #UA-2011187-5
36+
google_verify:
37+
# https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here
38+
bing_verify:
39+
40+
# http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
41+
timezone: America/Los_Angeles
42+
future: true
43+
highlighter: pygments
44+
markdown: kramdown
45+
gems:
46+
- jekyll-sitemap
47+
sass:
48+
sass_dir: _sass
49+
style: compressed
50+
51+
# https://github.com/mojombo/jekyll/wiki/Permalinks
52+
permalink: /:categories/:title/
53+
54+
# Amount of post to show on home page
55+
paginate: 5
56+
57+
kramdown:
58+
auto_ids: true
59+
footnote_nr: 1
60+
entity_output: as_char
61+
toc_levels: 1..6
62+
use_coderay: true
63+
64+
coderay:
65+
coderay_line_numbers: nil
66+
coderay_line_numbers_start: 1
67+
coderay_tab_width: 4
68+
coderay_bold_every: 10
69+
coderay_css: class
70+
71+
include: [".htaccess"]
72+
exclude: ["drafts", "lib", "config.rb", "Capfile", "config", "Gemfile", "Gemfile.lock", "README.md", "LICENSE", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules"]

_data/navigation.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Menu navigation links
2+
3+
- title: Contents
4+
url: https://brunoruviaro.github.io/ardour3-floss-tutorial/tags
5+
6+
#- title: External Link
7+
# url: http://mademistakes.com

_includes/browser-upgrade.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!--[if lt IE 9]><div class="upgrade"><strong><a href="http://whatbrowser.org/">Your browser is quite old!</strong> Why not upgrade to a different browser to better enjoy this site?</a></div><![endif]-->

0 commit comments

Comments
 (0)