-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Awestruct
- Loading branch information
0 parents
commit e77ee3d
Showing
100 changed files
with
11,511 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
*.sln merge=union | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
################# | ||
## Eclipse | ||
################# | ||
|
||
*.pydevproject | ||
.project | ||
.metadata | ||
bin/ | ||
tmp/ | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.classpath | ||
.settings/ | ||
.loadpath | ||
|
||
# External tool builders | ||
.externalToolBuilders/ | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# CDT-specific | ||
.cproject | ||
|
||
# PDT-specific | ||
.buildpath | ||
|
||
|
||
################# | ||
## Visual Studio | ||
################# | ||
|
||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
|
||
# Build results | ||
|
||
[Dd]ebug/ | ||
[Rr]elease/ | ||
x64/ | ||
build/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
|
||
# MSTest test Results | ||
[Tt]est[Rr]esult*/ | ||
[Bb]uild[Ll]og.* | ||
|
||
*_i.c | ||
*_p.c | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.pch | ||
*.pdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.tmp_proj | ||
*.log | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
*.pidb | ||
*.log | ||
*.scc | ||
|
||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
*.cachefile | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
*.vspx | ||
|
||
# Guidance Automation Toolkit | ||
*.gpState | ||
|
||
# ReSharper is a .NET coding add-in | ||
_ReSharper*/ | ||
*.[Rr]e[Ss]harper | ||
|
||
# TeamCity is a build add-in | ||
_TeamCity* | ||
|
||
# DotCover is a Code Coverage Tool | ||
*.dotCover | ||
|
||
# NCrunch | ||
*.ncrunch* | ||
.*crunch*.local.xml | ||
|
||
# Installshield output folder | ||
[Ee]xpress/ | ||
|
||
# DocProject is a documentation generator add-in | ||
DocProject/buildhelp/ | ||
DocProject/Help/*.HxT | ||
DocProject/Help/*.HxC | ||
DocProject/Help/*.hhc | ||
DocProject/Help/*.hhk | ||
DocProject/Help/*.hhp | ||
DocProject/Help/Html2 | ||
DocProject/Help/html | ||
|
||
# Click-Once directory | ||
publish/ | ||
|
||
# Publish Web Output | ||
*.Publish.xml | ||
*.pubxml | ||
|
||
# NuGet Packages Directory | ||
## TODO: If you have NuGet Package Restore enabled, uncomment the next line | ||
#packages/ | ||
|
||
# Windows Azure Build Output | ||
csx | ||
*.build.csdef | ||
|
||
# Windows Store app package directory | ||
AppPackages/ | ||
|
||
# Others | ||
sql/ | ||
*.Cache | ||
ClientBin/ | ||
[Ss]tyle[Cc]op.* | ||
~$* | ||
*~ | ||
*.dbmdl | ||
*.[Pp]ublish.xml | ||
*.pfx | ||
*.publishsettings | ||
|
||
# RIA/Silverlight projects | ||
Generated_Code/ | ||
|
||
# Backup & report files from converting an old project file to a newer | ||
# Visual Studio version. Backup files are not needed, because we have git ;-) | ||
_UpgradeReport_Files/ | ||
Backup*/ | ||
UpgradeLog*.XML | ||
UpgradeLog*.htm | ||
|
||
# SQL Server files | ||
App_Data/*.mdf | ||
App_Data/*.ldf | ||
|
||
############# | ||
## Windows detritus | ||
############# | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Mac crap | ||
.DS_Store | ||
|
||
|
||
############# | ||
## Python | ||
############# | ||
|
||
*.py[co] | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist/ | ||
build/ | ||
eggs/ | ||
parts/ | ||
var/ | ||
sdist/ | ||
develop-eggs/ | ||
.installed.cfg | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
|
||
#Translations | ||
*.mo | ||
|
||
#Mr Developer | ||
.mr.developer.cfg |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Gemfile* | ||
Rakefile |
Binary file added
BIN
+3.73 KB
web/html/awestruct/.sass-cache/2758107066ad1aa1a86e1e514e701d649e1c8cf4/bootstrap.scssc
Binary file not shown.
Binary file added
BIN
+6.73 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_alerts.scssc
Binary file not shown.
Binary file added
BIN
+6.01 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_badges.scssc
Binary file not shown.
Binary file added
BIN
+3.19 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_breadcrumbs.scssc
Binary file not shown.
Binary file added
BIN
+28 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_button-groups.scssc
Binary file not shown.
Binary file added
BIN
+17.8 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_buttons.scssc
Binary file not shown.
Binary file added
BIN
+22.8 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_carousel.scssc
Binary file not shown.
Binary file added
BIN
+3.72 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_close.scssc
Binary file not shown.
Binary file added
BIN
+6.99 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_code.scssc
Binary file not shown.
Binary file added
BIN
+3.79 KB
...westruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_component-animations.scssc
Binary file not shown.
Binary file added
BIN
+21.5 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_dropdowns.scssc
Binary file not shown.
Binary file added
BIN
+49.6 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_forms.scssc
Binary file not shown.
Binary file added
BIN
+98.3 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_glyphicons.scssc
Binary file not shown.
Binary file added
BIN
+5.12 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_grid.scssc
Binary file not shown.
Binary file added
BIN
+20.6 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_input-groups.scssc
Binary file not shown.
Binary file added
BIN
+5.39 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_jumbotron.scssc
Binary file not shown.
Binary file added
BIN
+5.79 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_labels.scssc
Binary file not shown.
Binary file added
BIN
+12.9 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_list-group.scssc
Binary file not shown.
Binary file added
BIN
+4.25 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_media.scssc
Binary file not shown.
Binary file added
BIN
+2.81 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_mixins.scssc
Binary file not shown.
Binary file added
BIN
+16.5 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_modals.scssc
Binary file not shown.
Binary file added
BIN
+67.3 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_navbar.scssc
Binary file not shown.
Binary file added
BIN
+23.1 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_navs.scssc
Binary file not shown.
Binary file added
BIN
+29.9 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_normalize.scssc
Binary file not shown.
Binary file added
BIN
+5.38 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_pager.scssc
Binary file not shown.
Binary file added
BIN
+10.7 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_pagination.scssc
Binary file not shown.
Binary file added
BIN
+28.7 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_panels.scssc
Binary file not shown.
Binary file added
BIN
+17.1 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_popovers.scssc
Binary file not shown.
Binary file added
BIN
+8.93 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_print.scssc
Binary file not shown.
Binary file added
BIN
+9.13 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_progress-bars.scssc
Binary file not shown.
Binary file added
BIN
+3.12 KB
...ml/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_responsive-embed.scssc
Binary file not shown.
Binary file added
BIN
+16.7 KB
...westruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_responsive-utilities.scssc
Binary file not shown.
Binary file added
BIN
+12.4 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_scaffolding.scssc
Binary file not shown.
Binary file added
BIN
+22.3 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_tables.scssc
Binary file not shown.
Binary file added
BIN
+4.59 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_thumbnails.scssc
Binary file not shown.
Binary file added
BIN
+13.8 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_tooltip.scssc
Binary file not shown.
Binary file added
BIN
+30.4 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_type.scssc
Binary file not shown.
Binary file added
BIN
+3.88 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_utilities.scssc
Binary file not shown.
Binary file added
BIN
+93 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_variables.scssc
Binary file not shown.
Binary file added
BIN
+3.55 KB
web/html/awestruct/.sass-cache/439027dab4a97745cf3fc1a755f3a7847d14a649/_wells.scssc
Binary file not shown.
Binary file added
BIN
+1.97 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_alerts.scssc
Binary file not shown.
Binary file added
BIN
+1.29 KB
.../awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_background-variant.scssc
Binary file not shown.
Binary file added
BIN
+2.02 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_border-radius.scssc
Binary file not shown.
Binary file added
BIN
+6.32 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_buttons.scssc
Binary file not shown.
Binary file added
BIN
+768 Bytes
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_center-block.scssc
Binary file not shown.
Binary file added
BIN
+2.33 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_clearfix.scssc
Binary file not shown.
Binary file added
BIN
+11.2 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_forms.scssc
Binary file not shown.
Binary file added
BIN
+18.9 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_gradients.scssc
Binary file not shown.
Binary file added
BIN
+12.5 KB
...html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_grid-framework.scssc
Binary file not shown.
Binary file added
BIN
+14 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_grid.scssc
Binary file not shown.
Binary file added
BIN
+2.23 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_hide-text.scssc
Binary file not shown.
Binary file added
BIN
+5.02 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_image.scssc
Binary file not shown.
Binary file added
BIN
+1.62 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_labels.scssc
Binary file not shown.
Binary file added
BIN
+3.42 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_list-group.scssc
Binary file not shown.
Binary file added
BIN
+1.48 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_nav-divider.scssc
Binary file not shown.
Binary file added
BIN
+1.57 KB
.../awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_nav-vertical-align.scssc
Binary file not shown.
Binary file added
BIN
+1.37 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_opacity.scssc
Binary file not shown.
Binary file added
BIN
+3.01 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_pagination.scssc
Binary file not shown.
Binary file added
BIN
+2.71 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_panels.scssc
Binary file not shown.
Binary file added
BIN
+1.15 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_progress-bar.scssc
Binary file not shown.
Binary file added
BIN
+909 Bytes
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_reset-filter.scssc
Binary file not shown.
Binary file added
BIN
+915 Bytes
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_resize.scssc
Binary file not shown.
Binary file added
BIN
+2.1 KB
...estruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_responsive-visibility.scssc
Binary file not shown.
Binary file added
BIN
+1 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_size.scssc
Binary file not shown.
Binary file added
BIN
+908 Bytes
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_tab-focus.scssc
Binary file not shown.
Binary file added
BIN
+3.65 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_table-row.scssc
Binary file not shown.
Binary file added
BIN
+1.24 KB
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_text-emphasis.scssc
Binary file not shown.
Binary file added
BIN
+852 Bytes
web/html/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_text-overflow.scssc
Binary file not shown.
Binary file added
BIN
+26.2 KB
...tml/awestruct/.sass-cache/a0b4528a6b32b713ac2fb2a00ca5edaf05ff18c1/_vendor-prefixes.scssc
Binary file not shown.
Binary file added
BIN
+58.9 KB
web/html/awestruct/.sass-cache/e6f112b13b66d8cd7e6555d0792d2d527b41804c/_variables.scssc
Binary file not shown.
Binary file added
BIN
+483 Bytes
web/html/awestruct/.sass-cache/e6f112b13b66d8cd7e6555d0792d2d527b41804c/styles.scssc
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This file is a Bundler dependency descriptor file. Its purpose is to list all of | ||
# the dependencies you are using to build your site. It is highly recommended you use | ||
# this to keep your dependencies up to date and not cause conflicts with other gems | ||
# already on your system. | ||
# | ||
# If you do not already have Bundler installed on your computer, run: | ||
# | ||
# gem install bundler | ||
# | ||
# To use this dependecy file simply run: | ||
# | ||
# bundle install | ||
# | ||
# We do recommend that you install the gems into another directory however, to ensure | ||
# your awestruct site is pristine and isn't using versions of gems from other programs. | ||
# To do this execute: | ||
# | ||
# bundle install --path .bundle | ||
# | ||
# More information about Bundler and its other commands can be found at http://gembundler.com/. | ||
# To add other dependencies for your awestruct site simply follow the same pattern as you'll | ||
# find below. To make use of dependecies listed here, simply remove the '#' from the start of | ||
# the line to uncomment the dependency. We hope you enjoy using Awestruct! | ||
|
||
source 'https://rubygems.org' # This tells Bundler where to look for gems | ||
|
||
gem 'awestruct', '~> 0.5.3' # Goes without saying | ||
gem 'webrick', '~> 1.3.1' # The rack webserver to use in dev mode | ||
|
||
# FIXME | ||
# gem 'rake', '>= 0.9.2' # Needed for the Rakefile to work | ||
# gem 'coffee-script', '>= 2.2.0' # If using coffee-script or to remove the warning | ||
# gem 'rb-fsevent', '~> 0.9', :require => false # to remove warning about pulling, Mac OSX | ||
# gem 'rb-inotify', '>= 0.9.0', :require => false # to remove warning about pulling, Linux | ||
# gem 'wdm', :platforms => [:mswin, :mingw], :require => false # to remove warning about pulling, Windows (ruby 1.9+) | ||
# gem 'rb-fchange', '~> 0.0.6', :require => false # to remove warning about pulling, Windows (ruby 1.8.7) | ||
# gem 'therubyracer', '0.10.0', :platforms => :ruby # Javascript runtime on mri (needed for LESS and coffee-script) | ||
# gem 'therubyrhino', '~> 2.0.2', :platforms => :jruby # Javascript runtime on jruby (needed for LESS and coffee-script) | ||
# gem 'less', '>= 2.2.2' # If using LESS instead of sass | ||
# gem 'org-ruby', '>= 0.8' # If using Org-Mode | ||
# gem 'RedCloth', '>= 4.2.9' # If using Textile | ||
# gem 'asciidoctor', '>= 0.1.1' # If using AsciiDoc syntax, need 0.1.1 for Header support | ||
# gem 'slim', '>= 1.3.6' # If using slim instead of haml | ||
# gem 'kramdown', '>= 0.14.2' # If using Markdown | ||
# gem 'uglifier', '>= 1.3.0' # If using the minify transformer | ||
# gem 'htmlcompressor', '>= 0.0.3' # If using the minify transformer | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
= Awestruct test | ||
Francisco Tena <@gmail> | ||
|
||
Little test to meet http://www.awestruct.org[Awestruct]. | ||
|
||
It called my attention when I met http://www.methods.co.nz/asciidoc/index.html[ASCIIDoc]. More info http://asciidoctor.org/docs/asciidoc-writers-guide/[here] |
Oops, something went wrong.