Skip to content

Commit fde624e

Browse files
committed
Migrating repo from Ocupop
0 parents  commit fde624e

File tree

499 files changed

+165851
-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.

499 files changed

+165851
-0
lines changed

.firebaserc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "www-dartlang-org"
4+
}
5+
}

.gitignore

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
.DS_Store
2+
build
3+
*.swp
4+
_site/
5+
node_modules/
6+
.sass-cache/
7+
_cache/
8+
_bookhtml
9+
scripts/packages
10+
.buildlog
11+
*.pyc
12+
pubspec.lock
13+
packages
14+
*.js.deps
15+
_asset_bundler_cache
16+
.pub
17+
.packages
18+
.idea
19+
*.iml
20+
21+
!src/site/docs/spec/examples/lazyloader/packages/
22+
!src/site/samples/searchable_list/example/packages/
23+
!src/site/samples/tracker/example/packages/
24+
!src/site/samples/polymer_intl/example/packages/
25+
!src/site/samples/angular_todo/example/packages/
26+
!src/site/samples/recipe_book/example/web/packages/
27+
!src/site/samples/google_maps/example/packages/
28+
!src/site/samples/gauge/example/packages/
29+
!src/site/samples/jsonp/example/packages/
30+
!src/site/samples/swipe/example/packages/
31+
!src/site/samples/multi_touch/example/packages/
32+
!src/site/samples/geolocation/example/packages/
33+
!src/site/samples/helloworld/example/packages
34+
!src/site/samples/todomvc/example/packages/
35+
!src/site/codelabs/darrrt/examples/packages/
36+
!src/site/samples/appcache/example/packages/
37+
!src/site/samples/dnd/example/packages/
38+
!src/site/samples/dndfiles/example/packages/
39+
!src/site/samples/filesystem/example/packages/
40+
!src/site/samples/imagefilters/example/packages/
41+
!src/site/samples/localstorage/example/packages/
42+
!src/site/samples/notifications/example/packages/
43+
!src/site/samples/indexeddb_todo/example/packages/
44+
!src/site/samples/notifications/example/packages/
45+
!src/site/samples/raf/example/packages/
46+
!src/site/samples/solar/example/packages/
47+
!src/site/samples/solar3d/example/web/packages/
48+
!src/site/samples/terminal/example/packages/
49+
!src/site/samples/video/example/packages/
50+
!src/site/samples/webaudio/example/packages/
51+
!src/site/samples/websockets/example/packages/
52+
53+
!src/site/docs/tutorials/indexeddb/examples/count_down/out/web/packages/
54+
!src/site/docs/tutorials/forms/examples/slambook/out/web/packages/
55+
!src/site/docs/tutorials/fetchdata/examples/its_all_about_you/out/web/packages/
56+
!src/site/docs/tutorials/fetchdata/examples/portmanteaux_simple/packages/
57+
!src/site/docs/tutorials/polymer-intro/examples/stopwatch/out/web/packages/
58+
!src/site/docs/tutorials/get-started/examples/clickme/packages/
59+
!src/site/docs/tutorials/connect-dart-html/examples/mini/packages/
60+
!src/site/docs/tutorials/connect-dart-html/examples/mini_with_style/packages/
61+
!src/site/docs/tutorials/add-elements/examples/todo/packages/
62+
!src/site/docs/tutorials/add-elements/examples/anagram/packages/
63+
!src/site/docs/tutorials/remove-elements/examples/todo_with_delete/packages/
64+
!src/site/docs/tutorials/using-polymer/examples/using_paper_elements/web/packages/
65+
66+
!src/site/tools/download-archive/out/web/packages/
67+
src/site/events/2015/summit/node_modules
68+
69+
# ============= OCUPOP =============
70+
# RVM users
71+
.ruby-gemset
72+
.ruby-version
73+
74+
# Cache files
75+
.sass-cache
76+
src/.asset-cache
77+
.jekyll-metadata
78+
79+
# Deployment Files
80+
publish
81+
credentials.tar.gz
82+
client-secret.json
83+
tmp
84+
85+
# Misc
86+
trash
87+
Gemfile.lock
88+
89+
90+

.travis.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
language: ruby
2+
sudo: false
3+
cache:
4+
bundler: true
5+
directories:
6+
# - $HOME/[path]
7+
rvm:
8+
- 2.2.3
9+
10+
# before_install:
11+
12+
install:
13+
- bundle install
14+
- npm install -g firebase-tools
15+
16+
before_script:
17+
# - chmod +x ./deploy/runtests.sh
18+
- chmod +x ./deploy/cibuild
19+
- chmod +x ./deploy/deploy-firebase.sh
20+
- chmod +x ./deploy/html_proof.rb
21+
- chmod +x ./deploy/check_sitemap.rb
22+
23+
script:
24+
- ./deploy/cibuild
25+
- ./deploy/check_sitemap.rb
26+
27+
# branch whitelist
28+
# branches:
29+
# only:
30+
# - master # test the master branch
31+
# - /stage-(.*)/ # test every branch which starts with "stage-"
32+
33+
env:
34+
global:
35+
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
36+
37+
38+
# after_success:
39+
# We could add the deployment to firebase here if there are no additional customizations etc...
40+
41+
deploy:
42+
- provider: script
43+
script: ./deploy/deploy-firebase.sh
44+
skip_cleanup: true
45+
on:
46+
branch: master
47+
48+
after_deploy:
49+
# Just FYI test. Won't fail the build if it has errors.
50+
- ./deploy/html_proof.rb
51+
# # Checks for bad HTML, broken links, and forces build to fail if it fails.
52+
# # (By default, Travis doesn't fail builds after deployment.)
53+
# - "./deploy/html_proof.rb || travis_terminate 1"

AUTHORS

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Below is a list of people and organizations that have contributed
2+
# to the Dart www site. Names should be added to the list like so:
3+
#
4+
# Name/Organization <email address>
5+
6+
Google Inc.
7+
8+
Matthew Butler <butler.matthew@gmail.com>
9+
Chris Buckett <chrisbuckett@gmail.com>
10+
Michael Haubenwallner <michael.haubenwallner@gmail.com>
11+
Victor Berchet <victor.berchet@gmail.com>

Gemfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source "http://rubygems.org"
2+
gem "jekyll"
3+
gem "kramdown"
4+
gem 'bootstrap-sass'
5+
gem 'font-awesome-sass'
6+
gem "html-proofer"
7+
gem 'jekyll-assets', '2.1.2'
8+
gem 'jekyll-toc'
9+
gem 'sass'
10+
gem 'uglifier'
11+
gem 'autoprefixer-rails'
12+
gem "jekyll-sitemap"
13+
gem 'nokogiri'

LICENSE

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Except as otherwise noted, the content of this page is licensed under the
2+
Creative Commons Attribution 3.0 License [1], and code samples are licensed
3+
under the BSD License:
4+
5+
Copyright 2012, the Dart project authors. All rights reserved.
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are
8+
met:
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
* Redistributions in binary form must reproduce the above
12+
copyright notice, this list of conditions and the following
13+
disclaimer in the documentation and/or other materials provided
14+
with the distribution.
15+
* Neither the name of Google Inc. nor the names of its
16+
contributors may be used to endorse or promote products derived
17+
from this software without specific prior written permission.
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29+
30+
[1] http://creativecommons.org/licenses/by/3.0/

0 commit comments

Comments
 (0)