├── PyCon-2003 ├── Makefile ├── bb-slides.py ├── source │ ├── buildbot.lore │ ├── overview.svg │ ├── slave.svg │ └── template.tpl ├── stylesheet.css └── waterfall.png ├── automating-build-test-and-release-with-buildbot.tex ├── buildbot-rollout ├── .gitignore ├── README.md ├── buildbot │ ├── config │ │ ├── __init__.py │ │ ├── builders.py │ │ ├── buildsteps.py │ │ ├── changesource.py │ │ ├── schedulers.py │ │ ├── slaves.py │ │ └── status.py │ └── master.cfg ├── license.MD ├── requirements.txt ├── rollout │ ├── .pylintrc │ ├── __init__.py │ ├── js │ │ └── utils.js │ ├── jslint │ ├── src │ │ ├── __init__.py │ │ └── module.py │ └── tests │ │ └── test_module.py └── talk │ ├── google-code-prettify │ ├── lang-apollo.js │ ├── lang-basic.js │ ├── lang-clj.js │ ├── lang-css.js │ ├── lang-dart.js │ ├── lang-erlang.js │ ├── lang-go.js │ ├── lang-hs.js │ ├── lang-lisp.js │ ├── lang-llvm.js │ ├── lang-lua.js │ ├── lang-matlab.js │ ├── lang-ml.js │ ├── lang-mumps.js │ ├── lang-n.js │ ├── lang-pascal.js │ ├── lang-proto.js │ ├── lang-r.js │ ├── lang-rd.js │ ├── lang-scala.js │ ├── lang-sql.js │ ├── lang-tcl.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-xq.js │ ├── lang-yaml.js │ ├── prettify.css │ ├── prettify.js │ └── run_prettify.js │ ├── images │ ├── one-does-not-simply-meme-generator-one-does-not-simply-build-a-robot-6352ca.jpg │ ├── overview.png │ ├── shia-cover-cutout.jpg │ ├── shia-labeouf-cover.jpg │ ├── signiq_logo.jpg │ ├── voltron-cutout.jpg │ ├── voltron.jpg │ ├── waterfall_screenshot.png │ └── waterfall_screenshot_2.png │ ├── impress-demo.css │ ├── js │ └── impress.js │ └── presentation.html ├── coordinating-parallel-builds-with-buildbot ├── README.md ├── index.html ├── license.txt ├── pictures │ ├── .DS_Store │ ├── branching.svg │ ├── controlling-build.svg │ ├── dependent.svg │ ├── header-text-transparent.png │ ├── job.svg │ ├── joining.svg │ ├── master.svg │ ├── multiple-flocks.svg │ ├── nut.png │ ├── overview.svg │ ├── real-world-1.svg │ ├── real-world-2.svg │ ├── release-process-lines.svg │ ├── release-process.svg │ ├── slaves.svg │ └── triggerable.svg ├── scripts │ └── script.js └── themes │ ├── .DS_Store │ └── mozilla │ ├── .DS_Store │ ├── fonts │ ├── .DS_Store │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.ttf │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.ttf │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-ExtraBold-webfont.eot │ ├── OpenSans-ExtraBold-webfont.svg │ ├── OpenSans-ExtraBold-webfont.ttf │ ├── OpenSans-ExtraBold-webfont.woff │ ├── OpenSans-ExtraBoldItalic-webfont.eot │ ├── OpenSans-ExtraBoldItalic-webfont.svg │ ├── OpenSans-ExtraBoldItalic-webfont.ttf │ ├── OpenSans-ExtraBoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.ttf │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.ttf │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.ttf │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.ttf │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ ├── OpenSans-Semibold-webfont.woff │ ├── OpenSans-SemiboldItalic-webfont.eot │ ├── OpenSans-SemiboldItalic-webfont.svg │ ├── OpenSans-SemiboldItalic-webfont.ttf │ ├── OpenSans-SemiboldItalic-webfont.woff │ ├── TargetBlank.otf │ └── TargetBlank.svg │ ├── images │ ├── Fx-logo.png │ ├── bg-blue-2.png │ ├── bg-darkgrey-2.png │ ├── bg-red-2.png │ ├── bg-sandstone-2.png │ ├── mozilla-logo-white.png │ ├── mozilla-logo.png │ └── tab-2.png │ └── styles │ ├── fonts.css │ ├── print.css │ ├── reset.css │ └── style.css ├── history └── history.md ├── images ├── Buildbot-Web-Project-and-Web-App-Triggerable.svg ├── Buildbot-Web-Project-and-Web-App.svg ├── Buildbot-Web-Project.svg ├── branching.svg ├── controlling-build.svg ├── dependent.svg ├── full_logo.png ├── full_logo.svg ├── icon.png ├── icon.svg ├── job.svg ├── joining.svg ├── master.svg ├── multiple-flocks.svg ├── nut.png ├── old_logo │ ├── buildbot_large.tif │ ├── buildbot_large_text.png │ ├── buildbot_large_text.svg │ ├── buildbot_nut_for_cutting.svg │ ├── header-text-transparent.png │ ├── hexnut32.png │ ├── hexnut48.png │ ├── hexnut64.png │ ├── icon.blend │ └── nut-nine.png ├── overview.svg ├── real-world-1.svg ├── real-world-2.svg ├── release-process-lines.svg ├── release-process.svg ├── slaves.svg └── triggerable.svg ├── presentation-framework ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── css │ ├── print │ │ ├── paper.css │ │ └── pdf.css │ ├── reveal.min.css │ └── theme │ │ ├── README.md │ │ ├── beige.css │ │ ├── buildbot.css │ │ ├── default.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ ├── source │ │ ├── beige.scss │ │ ├── default.scss │ │ ├── moon.scss │ │ ├── night.scss │ │ ├── serif.scss │ │ ├── simple.scss │ │ ├── sky.scss │ │ └── solarized.scss │ │ └── template │ │ ├── mixins.scss │ │ ├── settings.scss │ │ └── theme.scss ├── img │ └── nut.png ├── index.html ├── js │ └── reveal.min.js ├── lib │ ├── css │ │ └── zenburn.css │ ├── font │ │ ├── league_gothic-webfont.eot │ │ ├── league_gothic-webfont.svg │ │ ├── league_gothic-webfont.ttf │ │ ├── league_gothic-webfont.woff │ │ └── league_gothic_license │ └── js │ │ ├── classList.js │ │ ├── head.min.js │ │ └── html5shiv.js ├── package.json └── plugin │ ├── highlight │ └── highlight.js │ ├── notes │ ├── notes.html │ └── notes.js │ ├── postmessage │ ├── example.html │ └── postmessage.js │ └── print-pdf │ └── print-pdf.js └── pybug2013 ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── Vector_Clock.svg ├── css ├── print │ ├── paper.css │ └── pdf.css ├── reveal.min.css └── theme │ ├── README.md │ ├── beige.css │ ├── buildbot.css │ ├── default.css │ ├── moon.css │ ├── night.css │ ├── serif.css │ ├── simple.css │ ├── sky.css │ ├── solarized.css │ ├── source │ ├── beige.scss │ ├── default.scss │ ├── moon.scss │ ├── night.scss │ ├── serif.scss │ ├── simple.scss │ ├── sky.scss │ └── solarized.scss │ └── template │ ├── mixins.scss │ ├── settings.scss │ └── theme.scss ├── devplan.svg ├── executing.svg ├── generating.svg ├── grid.png ├── img └── nut.png ├── index.html ├── ircbot.png ├── js └── reveal.min.js ├── lib ├── css │ └── zenburn.css ├── font │ ├── league_gothic-webfont.eot │ ├── league_gothic-webfont.svg │ ├── league_gothic-webfont.ttf │ ├── league_gothic-webfont.woff │ └── league_gothic_license └── js │ ├── classList.js │ ├── head.min.js │ └── html5shiv.js ├── masters-docs.png ├── overview.svg ├── package.json ├── plugin ├── highlight │ └── highlight.js ├── notes │ ├── notes.html │ └── notes.js ├── postmessage │ ├── example.html │ └── postmessage.js ├── print-pdf │ └── print-pdf.js └── zoom-js │ └── zoom.js ├── pybug2013-notes.txt ├── rest_api_design_rulebook.jpg ├── restful_web_svcs_cookbook.jpg ├── state-1.svg ├── state-2.svg └── state-3.svg /PyCon-2003/Makefile: -------------------------------------------------------------------------------- 1 | LORE=lore 2 | IMAGES = overview.png slave.png 3 | 4 | all: buildbot.html images 5 | 6 | buildbot.html: source/buildbot.lore source/template.tpl 7 | $(LORE) -p --config template=source/template.tpl $< 8 | mv source/buildbot.html $@ 9 | 10 | .PHONY: hlint 11 | hlint: source/buildbot.lore 12 | $(LORE) --output lint $< 13 | 14 | .PHONY: tarball 15 | tarball: buildbot.html images 16 | rm -rf buildbot-pycon 17 | mkdir buildbot-pycon 18 | cp buildbot.html stylesheet.css buildbot-pycon/ 19 | cp *.png buildbot-pycon/ 20 | tar czf buildbot-pycon.tar.gz buildbot-pycon 21 | rm -rf buildbot-pycon 22 | 23 | clean: 24 | rm -f buildbot.html $(IMAGES) 25 | 26 | .PHONY: images 27 | images: $(IMAGES) sizes 28 | 29 | sizes: 30 | @for i in *.png; do \ 31 | echo $$i `pngtopnm $$i |pnmfile`; \ 32 | done 33 | 34 | %.png: source/%.svg 35 | inkscape --export-png $@ $< 36 | -------------------------------------------------------------------------------- /PyCon-2003/source/template.tpl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |

13 |
14 |
15 | 16 |
17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /PyCon-2003/stylesheet.css: -------------------------------------------------------------------------------- 1 | 2 | body 3 | { 4 | margin-left: 2em; 5 | margin-right: 2em; 6 | border: 0px; 7 | padding: 0px; 8 | font-family: sans-serif; 9 | } 10 | 11 | .done { color: #005500; background-color: #99ff99 } 12 | .notdone { color: #550000; background-color: #ff9999;} 13 | 14 | pre 15 | { 16 | padding: 1em; 17 | font-family: Neep Alt, Courier New, Courier; 18 | font-size: 12pt; 19 | border: thin black solid; 20 | } 21 | 22 | .boxed 23 | { 24 | padding: 1em; 25 | border: thin black solid; 26 | } 27 | 28 | .shell 29 | { 30 | background-color: #ffffdd; 31 | } 32 | 33 | .python 34 | { 35 | background-color: #dddddd; 36 | } 37 | 38 | .htmlsource 39 | { 40 | background-color: #dddddd; 41 | } 42 | 43 | .py-prototype 44 | { 45 | background-color: #ddddff; 46 | } 47 | 48 | 49 | .python-interpreter 50 | { 51 | background-color: #ddddff; 52 | } 53 | 54 | .doit 55 | { 56 | border: thin blue dashed ; 57 | background-color: #0ef 58 | } 59 | 60 | .py-src-comment 61 | { 62 | color: #1111CC 63 | } 64 | 65 | .py-src-keyword 66 | { 67 | color: #3333CC; 68 | font-weight: bold; 69 | } 70 | 71 | .py-src-parameter 72 | { 73 | color: #000066; 74 | font-weight: bold; 75 | } 76 | 77 | .py-src-identifier 78 | { 79 | color: #CC0000 80 | } 81 | 82 | .py-src-string 83 | { 84 | 85 | color: #115511 86 | } 87 | 88 | .py-src-endmarker 89 | { 90 | display: block; /* IE hack; prevents following line from being sucked into the py-listing box. */ 91 | } 92 | 93 | .py-listing 94 | { 95 | margin: 1ex; 96 | border: thin solid black; 97 | background-color: #eee; 98 | } 99 | 100 | .py-listing pre 101 | { 102 | margin: 0px; 103 | border: none; 104 | border-bottom: thin solid black; 105 | } 106 | 107 | .py-listing .python 108 | { 109 | margin-top: 0; 110 | margin-bottom: 0; 111 | border: none; 112 | border-bottom: thin solid black; 113 | } 114 | 115 | .py-listing .htmlsource 116 | { 117 | margin-top: 0; 118 | margin-bottom: 0; 119 | border: none; 120 | border-bottom: thin solid black; 121 | } 122 | 123 | .py-caption 124 | { 125 | text-align: center; 126 | padding-top: 0.5em; 127 | padding-bottom: 0.5em; 128 | } 129 | 130 | .py-filename 131 | { 132 | font-style: italic; 133 | } 134 | 135 | .manhole-output 136 | { 137 | color: blue; 138 | } 139 | 140 | hr 141 | { 142 | display: inline; 143 | } 144 | 145 | ul 146 | { 147 | padding: 0px; 148 | margin: 0px; 149 | margin-left: 1em; 150 | padding-left: 1em; 151 | border-left: 1em; 152 | } 153 | 154 | li 155 | { 156 | padding: 2px; 157 | } 158 | 159 | dt 160 | { 161 | font-weight: bold; 162 | margin-left: 1ex; 163 | } 164 | 165 | dd 166 | { 167 | margin-bottom: 1em; 168 | } 169 | 170 | div.note 171 | { 172 | background-color: #FFFFCC; 173 | margin-top: 1ex; 174 | margin-left: 5%; 175 | margin-right: 5%; 176 | padding-top: 1ex; 177 | padding-left: 5%; 178 | padding-right: 5%; 179 | border: thin black solid; 180 | } 181 | -------------------------------------------------------------------------------- /PyCon-2003/waterfall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/PyCon-2003/waterfall.png -------------------------------------------------------------------------------- /buildbot-rollout/.gitignore: -------------------------------------------------------------------------------- 1 | notes.txt 2 | rollout-master/* 3 | rollout-slave/* 4 | virt/* 5 | *.pyc 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /buildbot-rollout/README.md: -------------------------------------------------------------------------------- 1 | Buildbot-rollout 2 | ================ 3 | 4 | Code repository for PyConAU 2013 talk about the buildbot CI system. 5 | -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/buildbot/config/__init__.py -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/config/builders.py: -------------------------------------------------------------------------------- 1 | ####### BUILDERS 2 | 3 | # The 'builders' list defines the Builders, which tell Buildbot how to perform a build: 4 | # what steps, and which slaves can execute them. Note that any particular build will 5 | # only take place on one slave. 6 | 7 | 8 | from buildbot.config import BuilderConfig 9 | from . import buildsteps 10 | 11 | 12 | def get_builders(name, build_dir): 13 | builders = [] 14 | 15 | builders.append( 16 | BuilderConfig(name="12.04-" + name, 17 | slavenames=['slave'], slavebuilddir=build_dir, 18 | factory=buildsteps.get_buildsteps(build_dir + "/build"))) 19 | 20 | builders.append( 21 | BuilderConfig(name="12.04-" + name + '_try', 22 | slavenames=['slave'], slavebuilddir=build_dir, 23 | factory=buildsteps.get_buildsteps(build_dir + "/build"))) 24 | 25 | builders.append( 26 | BuilderConfig(name="12.04-" + name + '_sprint', 27 | slavenames=['slave'], slavebuilddir=build_dir, 28 | factory=buildsteps.get_buildsteps(build_dir + "/build"))) 29 | 30 | 31 | return builders 32 | -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/config/buildsteps.py: -------------------------------------------------------------------------------- 1 | from buildbot.process.factory import BuildFactory 2 | from buildbot.steps.python import PyLint 3 | from buildbot.steps.shell import ShellCommand 4 | from buildbot.steps.source.git import Git 5 | 6 | 7 | 8 | def get_buildsteps(working_dir): 9 | build_steps = BuildFactory() 10 | 11 | repo = Git(repourl="https://github.com/mlakewood/Buildbot-rollout.git", branch='master') 12 | 13 | virt_env = working_dir + '/virt/lib' 14 | 15 | slave_python = working_dir + '/virt/bin/python' 16 | 17 | env = {"LD_LIBRARY_PATH": virt_env} 18 | 19 | build_steps.addStep(repo) 20 | 21 | # # Remove the Virtual Environment from the last run 22 | # command = "rm -Rf %s/virt" % (working_dir) 23 | # build_steps.addStep(ShellCommand(workdir=working_dir, description="Clear Virtualenv", command=command.split(" "))) 24 | 25 | # # Create the virtual environment for the build 26 | # command = "virtualenv virt" 27 | # build_steps.addStep(ShellCommand(workdir=working_dir, description="Create Virtualenv", command=command.split(" "))) 28 | 29 | # # Pip install the python packages from requirements.txt 30 | # command = '%s/virt/bin/pip install -r requirements.txt' % working_dir 31 | # build_steps.addStep(ShellCommand(workdir=working_dir, description="Install packages", command=command.split(" "))) 32 | 33 | # Run the tests through coverage to get test coverage at the same time 34 | command = "../virt/bin/coverage run --include=src -m unittest discover -vf tests" 35 | build_steps.addStep(ShellCommand(workdir=working_dir + '/rollout', description="rollout Unit Tests", command=command.split(" "))) 36 | 37 | # Output the coverage report 38 | command= "virt/bin/coverage report --omit=*tests* -m" 39 | build_steps.addStep(ShellCommand(workdir=working_dir, description="API Unit Test Coverage Report", command=command.split(" "))) 40 | 41 | # Run pylint. P 42 | command = "pylint %s/rollout --rcfile=rollout/.pylintrc" % (working_dir) 43 | build_steps.addStep(PyLint(workdir=working_dir, description="API pylint", command=command.split(" "))) 44 | 45 | command = "./jslint js/*" 46 | build_steps.addStep(ShellCommand(workdir=working_dir + '/rollout', description="Insight JSLint code", command=command)) 47 | 48 | return build_steps 49 | 50 | -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/config/changesource.py: -------------------------------------------------------------------------------- 1 | ####### CHANGESOURCES 2 | 3 | # the 'change_source' setting tells the buildmaster how it should find out 4 | # about source code changes. Here we point to the buildbot clone of pyflakes. 5 | 6 | #from buildbot.changes.gitpoller import GitPoller 7 | #c['change_source'] = GitPoller( 8 | # 'git://github.com/buildbot/pyflakes.git', 9 | # workdir='gitpoller-workdir', branch='master', 10 | # pollinterval=300) 11 | 12 | from buildbot.changes.gitpoller import GitPoller 13 | 14 | def get_source(): 15 | return GitPoller("https://github.com/mlakewood/Buildbot-rollout.git", branch="master", pollinterval=10) 16 | 17 | -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/config/schedulers.py: -------------------------------------------------------------------------------- 1 | ####### SCHEDULERS 2 | 3 | # Configure the Schedulers, which decide how to react to incoming changes. In this 4 | # case, just kick off a 'runtests' build 5 | 6 | #from buildbot.schedulers.timed import Periodic 7 | #c['schedulers'] = [] 8 | #c['schedulers'].append(SingleBranchScheduler( 9 | # name="all", 10 | # branch='master', 11 | # treeStableTimer=None, 12 | # builderNames=["runtests"])) 13 | 14 | #print c 15 | 16 | #periodic = Periodic("every_6_hours", ['slave'], 6*60*60) 17 | #c['schedulers'] = [periodic] 18 | 19 | from buildbot.schedulers.basic import SingleBranchScheduler 20 | from buildbot.schedulers.timed import Periodic 21 | from buildbot.schedulers.trysched import Try_Jobdir 22 | from buildbot.schedulers.trysched import Try_Userpass 23 | 24 | 25 | def get_schedulers(build): 26 | 27 | quick = SingleBranchScheduler(name='quick', 28 | branch='master', 29 | treeStableTimer=60, 30 | builderNames=["12.04-" + build]) 31 | 32 | sprint = SingleBranchScheduler(name='sprint', 33 | branch='sprint', 34 | treeStableTimer=60, 35 | builderNames=["12.04-" + build + '_sprint']) 36 | 37 | try_job = Try_Jobdir(name="try_job", 38 | builderNames=["12.04-" + build + '_try'], 39 | jobdir="jobdir") 40 | 41 | 42 | return [quick, sprint, try_job] 43 | -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/config/slaves.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | ####### BUILDSLAVES 4 | 5 | # The 'slaves' list defines the set of recognized buildslaves. Each element is 6 | # a BuildSlave object, specifying a unique slave name and password. The same 7 | # slave name and password must be configured on the slave. 8 | 9 | 10 | 11 | 12 | from buildbot.buildslave import BuildSlave 13 | 14 | def get_slaves(): 15 | return [BuildSlave("slave", "pass")] 16 | 17 | -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/config/status.py: -------------------------------------------------------------------------------- 1 | ####### STATUS TARGETS 2 | 3 | # 'status' is a list of Status Targets. The results of each build will be 4 | # pushed to these targets. buildbot/status/*.py has a variety to choose from, 5 | # including web pages, email senders, and IRC bots. 6 | #. 7 | 8 | from buildbot.status import html 9 | from buildbot.status.web import auth, authz 10 | from buildbot.status.mail import MailNotifier 11 | 12 | def get_status(): 13 | status = [] 14 | authz_cfg=authz.Authz( 15 | # change any of these to True to enable; see the manual for more 16 | # options 17 | gracefulShutdown = False, 18 | forceBuild = True, # use this to test your slave once it is set up 19 | forceAllBuilds = False, 20 | pingBuilder = False, 21 | stopBuild = False, 22 | stopAllBuilds = False, 23 | cancelPendingBuild = False, 24 | ) 25 | status.append(html.WebStatus(http_port=8010, authz=authz_cfg)) 26 | 27 | 28 | mn = MailNotifier(fromaddr="buildbot@rollout.com", 29 | sendToInterestedUsers=False, mode='all', 30 | extraRecipients=['dev@rollout.com'], 31 | useTls=True, relayhost="smtp.gmail.com", smtpPort=587, smtpUser="dev@rollout.com", smtpPassword="rollout") 32 | status.append(mn) 33 | return status 34 | -------------------------------------------------------------------------------- /buildbot-rollout/buildbot/master.cfg: -------------------------------------------------------------------------------- 1 | # This is the dictionary that the buildmaster pays attention to. 2 | # It uses this dictionary to workout what its going to do. 3 | 4 | from config import slaves, schedulers, builders, status, changesource 5 | 6 | 7 | BuildmasterConfig = { 8 | 'slaves': slaves.get_slaves(), 9 | 'schedulers': schedulers.get_schedulers('rollout-build'), 10 | 'builders': builders.get_builders("rollout-build", "/Users/mlakewood/Documents/Programming/buildbot-talk/rollout-slave"), 11 | 'status': status.get_status(), 12 | 'slavePortnum': 9989, 13 | 'change_source': changesource.get_source(), 14 | 'title': 'rollout BuildBot', 15 | 'buildbotURL': 'http://buildbot.rollout.com:8010/', 16 | 'db_url': 'sqlite:///state.sqlite', 17 | } 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /buildbot-rollout/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | coverage 3 | pylint -------------------------------------------------------------------------------- /buildbot-rollout/rollout/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Example package 3 | """ -------------------------------------------------------------------------------- /buildbot-rollout/rollout/js/utils.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var bumblebee = function (x, y) { 4 | 5 | return x + y; 6 | }; -------------------------------------------------------------------------------- /buildbot-rollout/rollout/jslint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/rollout/jslint -------------------------------------------------------------------------------- /buildbot-rollout/rollout/src/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Base package for rollout src 3 | """ -------------------------------------------------------------------------------- /buildbot-rollout/rollout/src/module.py: -------------------------------------------------------------------------------- 1 | """ 2 | An example function to test 3 | """ 4 | 5 | def bumblebee(in_x, in_y): 6 | """ 7 | sum x and y and return 8 | """ 9 | return in_x + in_y 10 | -------------------------------------------------------------------------------- /buildbot-rollout/rollout/tests/test_module.py: -------------------------------------------------------------------------------- 1 | from unittest import TestCase 2 | 3 | from src.module import bumblebee 4 | 5 | class BasicTest(TestCase): 6 | 7 | def test_bumblebee(self): 8 | """ 9 | test sum function 10 | """ 11 | 12 | self.assertEquals(bumblebee(1, 1), 2) -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-apollo.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/, 2 | null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-basic.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun", 3 | /^.[^\s\w"$%.]*/,a]]),["basic","cbm"]); 4 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-clj.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (C) 2011 Google Inc. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | var a=null; 17 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a], 18 | ["typ",/^:[\dA-Za-z-]+/]]),["clj"]); 19 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n\u000c"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]+)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//], 2 | ["com",/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-dart.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i], 2 | ["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]), 3 | ["dart"]); 4 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-erlang.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/], 2 | ["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-go.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]); 2 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]); 4 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-llvm.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); 2 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-lua.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i], 2 | ["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-ml.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/], 2 | ["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-mumps.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i, 2 | null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-n.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, 3 | a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, 4 | a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); 5 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-pascal.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a], 3 | ["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]); 4 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-r.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/], 2 | ["pun",/^(?:<>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-rd.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]); 2 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-scala.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/], 2 | ["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-sql.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|apply|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|connect|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|following|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|matched|merge|natural|national|nocheck|nonclustered|nocycle|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|partition|percent|pivot|plan|preceding|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rows?|rule|save|schema|select|session_user|set|setuser|shutdown|some|start|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|unbounded|union|unique|unpivot|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|within|writetext|xml)(?=[^\w-]|$)/i, 2 | null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-tcl.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit", 3 | /^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]); 4 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-tex.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); 2 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-vb.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null,"\t\n\r \u00a0\u2028\u2029"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"\u201c\u201d'],["com",/^['\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\n\r_\u2028\u2029])*/,null,"'\u2018\u2019"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i, 2 | null],["com",/^rem\b.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*(?:\[[!#%&@]+])?|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-vhdl.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i, 2 | null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i], 3 | ["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]); 4 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-wiki.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]); 2 | PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /buildbot-rollout/talk/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/one-does-not-simply-meme-generator-one-does-not-simply-build-a-robot-6352ca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/one-does-not-simply-meme-generator-one-does-not-simply-build-a-robot-6352ca.jpg -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/overview.png -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/shia-cover-cutout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/shia-cover-cutout.jpg -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/shia-labeouf-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/shia-labeouf-cover.jpg -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/signiq_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/signiq_logo.jpg -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/voltron-cutout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/voltron-cutout.jpg -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/voltron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/voltron.jpg -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/waterfall_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/waterfall_screenshot.png -------------------------------------------------------------------------------- /buildbot-rollout/talk/images/waterfall_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/buildbot-rollout/talk/images/waterfall_screenshot_2.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/README.md: -------------------------------------------------------------------------------- 1 | # Mozilla Evangelism Reps shower 2 | 3 | This is the HTML5 slide deck system created to make it easier for Mozilla evangelism reps to get started with their presentations. 4 | 5 | * Based on [@pepelsbey](http://twitter.com/pepelsbey)'s original shower system available on [https://github.com/pepelsbey/shower](https://github.com/pepelsbey/shower) 6 | * Licensed under [MIT License](http://en.wikipedia.org/wiki/MIT_License), see [license page](https://github.com/pepelsbey/shower/wiki/License-En) for details. 7 | 8 | ## Enhancements 9 | 10 | * Speaker notes using console.log() 11 | * Smooth transitions between slides 12 | * Option to turn off slide numbers 13 | * left/right placement of images 14 | * Image frames / swinging animation 15 | 16 | ## How to use 17 | 18 | The way to present these slides is explained in detail [in this screencast](http://www.youtube.com/watch?v=5xBfy8mN1iQ) 19 | 20 | ## Editing slides 21 | 22 | The mozilla-example.html file contains all the possible slides the system supports. Simply copy the ones you need and delete the others. There are also comments to explain the global switches for the system. 23 | 24 | ### General edits to the slide system 25 | 26 | There are a few things you can change in the overall document: 27 | 28 | * Smooth transitions - by default there is a one second transition using opacity for fading in between slides. This is triggered by the class "fade" on the HTML elements. If you remove it, slides just pop from one to another. 29 | * Progress bar - the progress bar can be removed by deleting the DIV with the class "progress" at the bottom of the document 30 | * Slide numbers - if you want to remove the slide numbers, add a class of "nonumbers" to the HTML element 31 | 32 | ### Slides 33 | 34 | * Each slide needs a unique ID and the class of slide to be recognised by the system and to be navigated to. 35 | * Each slide has a header and a footer - the presenter notes go into the footer of the slide. They are not shown by default. You can roll over the slides in list view to see them and during presenting they'll be shown in the debugging console of the browser. 36 | * Each slide needs a H2 header to show as the "NEXT" information in the speaker note display. 37 | 38 | ### Lists 39 | 40 | You can control the display of lists by adding various classes to the UL element: 41 | 42 | * "longlist" applies a smaller font so that you can add more items 43 | * "inline" turns the list into comma separated words followed by a full stop. 44 | * "oneline" puts all list items on one line 45 | * "inner" adds in-slide navigation to the list. You need to set a class of "active" to the first LI to show the items one by one rather than all at the same time 46 | 47 | ### Images 48 | 49 | * Adding a class of "middle", "left" or "right" to any IMG element positions it on the screen. 50 | * Slides with a class of "cower" will show the image as a background with the headings becoming white with a half-opaque black background. You can add a "w" or "h" class to the slide to fit the background image to the width or the height respectively. 51 | * Adding a FIGURE element around the image allows you to add extra features by adding one or more of the following classes to the FIGURE: 52 | - Adding a "shadow" class gives it a drop shadow 53 | - Adding a "frame" class makes the image look like it is hanging from a nail 54 | - Adding a "swing" class adds an animation to dangle it from the nail. 55 | -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/license.txt: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright © 2010–2012 Vadim Makeev, http://pepelsbey.net/ 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | 23 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 24 | 25 | Лицензия MIT 26 | 27 | Copyright © 2010–2012 Вадим Макеев, http://pepelsbey.net/ 28 | 29 | Данная лицензия разрешает лицам, получившим копию данного программного обеспечения 30 | и сопутствующей документации (в дальнейшем именуемыми «Программное Обеспечение»), 31 | безвозмездно использовать Программное Обеспечение без ограничений, включая 32 | неограниченное право на использование, копирование, изменение, добавление, 33 | публикацию, распространение, сублицензирование и/или продажу копий 34 | Программного Обеспечения, также как и лицам, которым предоставляется 35 | данное Программное Обеспечение, при соблюдении следующих условий: 36 | 37 | Указанное выше уведомление об авторском праве и данные условия должны быть 38 | включены во все копии или значимые части данного Программного Обеспечения. 39 | 40 | ДАННОЕ ПРОГРАММНОЕ ОБЕСПЕЧЕНИЕ ПРЕДОСТАВЛЯЕТСЯ «КАК ЕСТЬ», БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ, 41 | ЯВНО ВЫРАЖЕННЫХ ИЛИ ПОДРАЗУМЕВАЕМЫХ, ВКЛЮЧАЯ, НО НЕ ОГРАНИЧИВАЯСЬ ГАРАНТИЯМИ ТОВАРНОЙ 42 | ПРИГОДНОСТИ, СООТВЕТСТВИЯ ПО ЕГО КОНКРЕТНОМУ НАЗНАЧЕНИЮ И ОТСУТСТВИЯ НАРУШЕНИЙ ПРАВ. 43 | НИ В КАКОМ СЛУЧАЕ АВТОРЫ ИЛИ ПРАВООБЛАДАТЕЛИ НЕ НЕСУТ ОТВЕТСТВЕННОСТИ ПО ИСКАМ 44 | О ВОЗМЕЩЕНИИ УЩЕРБА, УБЫТКОВ ИЛИ ДРУГИХ ТРЕБОВАНИЙ ПО ДЕЙСТВУЮЩИМ КОНТРАКТАМ, 45 | ДЕЛИКТАМ ИЛИ ИНОМУ, ВОЗНИКШИМ ИЗ, ИМЕЮЩИМ ПРИЧИНОЙ ИЛИ СВЯЗАННЫМ С ПРОГРАММНЫМ 46 | ОБЕСПЕЧЕНИЕМ ИЛИ ИСПОЛЬЗОВАНИЕМ ПРОГРАММНОГО ОБЕСПЕЧЕНИЯ ИЛИ ИНЫМИ ДЕЙСТВИЯМИ 47 | С ПРОГРАММНЫМ ОБЕСПЕЧЕНИЕМ. -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/pictures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/pictures/.DS_Store -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/pictures/header-text-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/pictures/header-text-transparent.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/pictures/nut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/pictures/nut.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/.DS_Store -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/.DS_Store -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/.DS_Store -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-BoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-BoldItalic-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBold-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBold-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBold-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBoldItalic-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBoldItalic-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-ExtraBoldItalic-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Italic-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-LightItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-LightItalic-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/TargetBlank.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/TargetBlank.otf -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/fonts/TargetBlank.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Designer: Vadim Makeev 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/Fx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/Fx-logo.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-blue-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-blue-2.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-darkgrey-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-darkgrey-2.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-red-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-red-2.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-sandstone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/bg-sandstone-2.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/mozilla-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/mozilla-logo-white.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/mozilla-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/mozilla-logo.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/images/tab-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/coordinating-parallel-builds-with-buildbot/themes/mozilla/images/tab-2.png -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/styles/print.css: -------------------------------------------------------------------------------- 1 | /* 2 | Ribbon theme for Shower presentation template: http://github.com/pepelsbey/shower 3 | Copyright © 2010–2011 Vadim Makeev, http://pepelsbey.net/ 4 | Licensed under MIT license: https://github.com/pepelsbey/shower/wiki/License 5 | */ 6 | 7 | @page { 8 | margin:0; 9 | size:1024px 640px; 10 | } 11 | 12 | /* List 13 | ---------------------------------------- */ 14 | .list { 15 | float:none; 16 | padding:0; 17 | background:#888; 18 | } 19 | 20 | /* Caption */ 21 | .list .caption { 22 | display:none; 23 | } 24 | 25 | /* Slide */ 26 | .list .slide { 27 | float:none; 28 | margin:0; 29 | padding:0; 30 | } 31 | .list .slide > DIV { 32 | width:1024px; 33 | height:640px; 34 | background:none; 35 | } 36 | .list .slide > div, 37 | .list .slide > div:hover { 38 | -webkit-box-shadow:none; 39 | -moz-box-shadow:none; 40 | box-shadow:none; 41 | } 42 | .list .slide section { 43 | -webkit-transform:none; 44 | -moz-transform:none; 45 | -ms-transform:none; 46 | -o-transform:none; 47 | transform:none; 48 | } 49 | .list .slide:after { 50 | position:absolute; 51 | bottom:85px; 52 | left:120px; 53 | color:#BBB; 54 | line-height:1; 55 | text-shadow:none; 56 | } 57 | -------------------------------------------------------------------------------- /coordinating-parallel-builds-with-buildbot/themes/mozilla/styles/reset.css: -------------------------------------------------------------------------------- 1 | html, body, div, span, applet, object, iframe, 2 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 3 | a, abbr, acronym, address, big, cite, code, 4 | del, dfn, em, img, ins, kbd, q, s, samp, 5 | small, strike, strong, sub, sup, tt, var, 6 | b, u, i, center, 7 | dl, dt, dd, ol, ul, li, 8 | fieldset, form, label, legend, 9 | table, caption, tbody, tfoot, thead, tr, th, td, 10 | article, aside, canvas, details, embed, 11 | figure, figcaption, footer, header, hgroup, 12 | menu, nav, output, ruby, section, summary, 13 | time, mark, audio, video { 14 | margin:0; 15 | padding:0; 16 | border:0; 17 | font-size:100%; 18 | font:inherit; 19 | vertical-align:baseline; 20 | } 21 | article, aside, details, figcaption, figure, 22 | footer, header, hgroup, menu, nav, section { 23 | display:block; 24 | } 25 | body { 26 | line-height:1; 27 | } 28 | ol, ul { 29 | list-style:none; 30 | } 31 | blockquote, q { 32 | quotes:none; 33 | } 34 | blockquote:before, blockquote:after, 35 | q:before, q:after { 36 | content:''; 37 | content:none; 38 | } 39 | table { 40 | border-collapse:collapse; 41 | border-spacing:0; 42 | } -------------------------------------------------------------------------------- /images/branching.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/branching.svg -------------------------------------------------------------------------------- /images/controlling-build.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/controlling-build.svg -------------------------------------------------------------------------------- /images/dependent.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/dependent.svg -------------------------------------------------------------------------------- /images/full_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/full_logo.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/icon.png -------------------------------------------------------------------------------- /images/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /images/job.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/job.svg -------------------------------------------------------------------------------- /images/joining.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/joining.svg -------------------------------------------------------------------------------- /images/master.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/master.svg -------------------------------------------------------------------------------- /images/multiple-flocks.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/multiple-flocks.svg -------------------------------------------------------------------------------- /images/nut.png: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/nut.png -------------------------------------------------------------------------------- /images/old_logo/buildbot_large.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/buildbot_large.tif -------------------------------------------------------------------------------- /images/old_logo/buildbot_large_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/buildbot_large_text.png -------------------------------------------------------------------------------- /images/old_logo/buildbot_nut_for_cutting.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 41 | 44 | 45 | 47 | 54 | 55 | 57 | 58 | 60 | image/svg+xml 61 | 63 | 64 | 65 | 66 | 67 | 73 | 83 | 93 | Buildbot 102 | 103 | -------------------------------------------------------------------------------- /images/old_logo/header-text-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/header-text-transparent.png -------------------------------------------------------------------------------- /images/old_logo/hexnut32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/hexnut32.png -------------------------------------------------------------------------------- /images/old_logo/hexnut48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/hexnut48.png -------------------------------------------------------------------------------- /images/old_logo/hexnut64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/hexnut64.png -------------------------------------------------------------------------------- /images/old_logo/icon.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/icon.blend -------------------------------------------------------------------------------- /images/old_logo/nut-nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/images/old_logo/nut-nine.png -------------------------------------------------------------------------------- /images/overview.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/overview.svg -------------------------------------------------------------------------------- /images/real-world-1.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/real-world-1.svg -------------------------------------------------------------------------------- /images/real-world-2.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/real-world-2.svg -------------------------------------------------------------------------------- /images/release-process-lines.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/release-process-lines.svg -------------------------------------------------------------------------------- /images/release-process.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/release-process.svg -------------------------------------------------------------------------------- /images/slaves.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/slaves.svg -------------------------------------------------------------------------------- /images/triggerable.svg: -------------------------------------------------------------------------------- 1 | ../coordinating-parallel-builds-with-buildbot/pictures/triggerable.svg -------------------------------------------------------------------------------- /presentation-framework/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache -------------------------------------------------------------------------------- /presentation-framework/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /presentation-framework/Gruntfile.js: -------------------------------------------------------------------------------- 1 | /* global module:false */ 2 | module.exports = function(grunt) { 3 | 4 | // Project configuration 5 | grunt.initConfig({ 6 | pkg: grunt.file.readJSON('package.json'), 7 | meta: { 8 | banner: 9 | '/*!\n' + 10 | ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' + 11 | ' * http://lab.hakim.se/reveal-js\n' + 12 | ' * MIT licensed\n' + 13 | ' *\n' + 14 | ' * Copyright (C) 2013 Hakim El Hattab, http://hakim.se\n' + 15 | ' */' 16 | }, 17 | 18 | // Tests will be added soon 19 | qunit: { 20 | files: [ 'test/**/*.html' ] 21 | }, 22 | 23 | uglify: { 24 | options: { 25 | banner: '<%= meta.banner %>\n' 26 | }, 27 | build: { 28 | src: 'js/reveal.js', 29 | dest: 'js/reveal.min.js' 30 | } 31 | }, 32 | 33 | cssmin: { 34 | compress: { 35 | files: { 36 | 'css/reveal.min.css': [ 'css/reveal.css' ] 37 | } 38 | } 39 | }, 40 | 41 | sass: { 42 | main: { 43 | files: { 44 | 'css/theme/default.css': 'css/theme/source/default.scss', 45 | 'css/theme/beige.css': 'css/theme/source/beige.scss', 46 | 'css/theme/night.css': 'css/theme/source/night.scss', 47 | 'css/theme/serif.css': 'css/theme/source/serif.scss', 48 | 'css/theme/simple.css': 'css/theme/source/simple.scss', 49 | 'css/theme/sky.css': 'css/theme/source/sky.scss', 50 | 'css/theme/moon.css': 'css/theme/source/moon.scss', 51 | 'css/theme/solarized.css': 'css/theme/source/solarized.scss' 52 | } 53 | } 54 | }, 55 | 56 | jshint: { 57 | options: { 58 | curly: false, 59 | eqeqeq: true, 60 | immed: true, 61 | latedef: true, 62 | newcap: true, 63 | noarg: true, 64 | sub: true, 65 | undef: true, 66 | eqnull: true, 67 | browser: true, 68 | expr: true, 69 | globals: { 70 | head: false, 71 | module: false, 72 | console: false 73 | } 74 | }, 75 | files: [ 'Gruntfile.js', 'js/reveal.js' ] 76 | }, 77 | 78 | connect: { 79 | server: { 80 | options: { 81 | port: 8000, 82 | base: '.' 83 | } 84 | } 85 | }, 86 | 87 | zip: { 88 | 'reveal-js-presentation.zip': [ 89 | 'index.html', 90 | 'css/**', 91 | 'js/**', 92 | 'lib/**', 93 | 'images/**', 94 | 'plugin/**' 95 | ] 96 | }, 97 | 98 | watch: { 99 | main: { 100 | files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ], 101 | tasks: 'default' 102 | }, 103 | theme: { 104 | files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ], 105 | tasks: 'themes' 106 | } 107 | } 108 | 109 | }); 110 | 111 | // Dependencies 112 | grunt.loadNpmTasks( 'grunt-contrib-jshint' ); 113 | grunt.loadNpmTasks( 'grunt-contrib-cssmin' ); 114 | grunt.loadNpmTasks( 'grunt-contrib-uglify' ); 115 | grunt.loadNpmTasks( 'grunt-contrib-watch' ); 116 | grunt.loadNpmTasks( 'grunt-contrib-sass' ); 117 | grunt.loadNpmTasks( 'grunt-contrib-connect' ); 118 | grunt.loadNpmTasks( 'grunt-zip' ); 119 | 120 | // Default task 121 | grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify' ] ); 122 | 123 | // Theme task 124 | grunt.registerTask( 'themes', [ 'sass' ] ); 125 | 126 | // Package presentation to archive 127 | grunt.registerTask( 'package', [ 'default', 'zip' ] ); 128 | 129 | // Serve presentation locally 130 | grunt.registerTask( 'serve', [ 'connect', 'watch' ] ); 131 | 132 | }; 133 | -------------------------------------------------------------------------------- /presentation-framework/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2013 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /presentation-framework/css/print/pdf.css: -------------------------------------------------------------------------------- 1 | /* Default Print Stylesheet Template 2 | by Rob Glazebrook of CSSnewbie.com 3 | Last Updated: June 4, 2008 4 | 5 | Feel free (nay, compelled) to edit, append, and 6 | manipulate this file as you see fit. */ 7 | 8 | 9 | /* SECTION 1: Set default width, margin, float, and 10 | background. This prevents elements from extending 11 | beyond the edge of the printed page, and prevents 12 | unnecessary background images from printing */ 13 | 14 | * { 15 | -webkit-print-color-adjust: exact; 16 | } 17 | 18 | body { 19 | font-size: 18pt; 20 | width: auto; 21 | height: auto; 22 | border: 0; 23 | padding: 0; 24 | float: none !important; 25 | overflow: visible; 26 | } 27 | 28 | html { 29 | width: 100%; 30 | height: 100%; 31 | overflow: visible; 32 | } 33 | 34 | @page { 35 | size: letter landscape; 36 | margin: 0; 37 | } 38 | 39 | /* SECTION 2: Remove any elements not needed in print. 40 | This would include navigation, ads, sidebars, etc. */ 41 | .nestedarrow, 42 | .controls, 43 | .reveal .progress, 44 | .reveal.overview, 45 | .fork-reveal, 46 | .share-reveal, 47 | .state-background { 48 | display: none !important; 49 | } 50 | 51 | /* SECTION 3: Set body font face, size, and color. 52 | Consider using a serif font for readability. */ 53 | body, p, td, li, div { 54 | font-size: 18pt; 55 | } 56 | 57 | /* SECTION 4: Set heading font face, sizes, and color. 58 | Diffrentiate your headings from your body text. 59 | Perhaps use a large sans-serif for distinction. */ 60 | h1,h2,h3,h4,h5,h6 { 61 | text-shadow: 0 0 0 #000 !important; 62 | } 63 | 64 | /* SECTION 5: Make hyperlinks more usable. 65 | Ensure links are underlined, and consider appending 66 | the URL to the end of the link for usability. */ 67 | a:link, 68 | a:visited { 69 | font-weight: bold; 70 | text-decoration: underline; 71 | } 72 | 73 | 74 | /* SECTION 6: more reveal.js specific additions by @skypanther */ 75 | ul, ol, div, p { 76 | visibility: visible; 77 | position: static; 78 | width: auto; 79 | height: auto; 80 | display: block; 81 | overflow: visible; 82 | margin: auto; 83 | } 84 | .reveal .slides { 85 | position: static; 86 | width: 100%; 87 | height: auto; 88 | 89 | left: auto; 90 | top: auto; 91 | margin-left: auto; 92 | margin-right: auto; 93 | margin-top: auto; 94 | padding: auto; 95 | 96 | overflow: visible; 97 | display: block; 98 | 99 | text-align: center; 100 | 101 | -webkit-perspective: none; 102 | -moz-perspective: none; 103 | -ms-perspective: none; 104 | perspective: none; 105 | 106 | -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ 107 | -moz-perspective-origin: 50% 50%; 108 | -ms-perspective-origin: 50% 50%; 109 | perspective-origin: 50% 50%; 110 | } 111 | .reveal .slides section { 112 | 113 | page-break-after: always !important; 114 | 115 | visibility: visible !important; 116 | position: static !important; 117 | width: 100% !important; 118 | height: auto !important; 119 | min-height: initial !important; 120 | display: block !important; 121 | overflow: visible !important; 122 | 123 | left: 0 !important; 124 | top: 0 !important; 125 | margin-left: 0px !important; 126 | margin-top: 50px !important; 127 | padding: 20px 0px !important; 128 | 129 | opacity: 1 !important; 130 | 131 | -webkit-transform-style: flat !important; 132 | -moz-transform-style: flat !important; 133 | -ms-transform-style: flat !important; 134 | transform-style: flat !important; 135 | 136 | -webkit-transform: none !important; 137 | -moz-transform: none !important; 138 | -ms-transform: none !important; 139 | transform: none !important; 140 | } 141 | .reveal section.stack { 142 | margin: 0px !important; 143 | padding: 0px !important; 144 | page-break-after: avoid !important; 145 | } 146 | .reveal section .fragment { 147 | opacity: 1 !important; 148 | visibility: visible !important; 149 | 150 | -webkit-transform: none !important; 151 | -moz-transform: none !important; 152 | -ms-transform: none !important; 153 | transform: none !important; 154 | } 155 | .reveal img { 156 | box-shadow: none; 157 | } 158 | .reveal .roll { 159 | overflow: visible; 160 | line-height: 1em; 161 | } 162 | .reveal small a { 163 | font-size: 16pt !important; 164 | } 165 | -------------------------------------------------------------------------------- /presentation-framework/css/theme/README.md: -------------------------------------------------------------------------------- 1 | ## Dependencies 2 | 3 | Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#development-environment 4 | 5 | 6 | 7 | ## Creating a Theme 8 | 9 | To create your own theme, start by duplicating any ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source) and adding it to the compilation list in the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js). 10 | 11 | Each theme file does four things in the following order: 12 | 13 | 1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)** 14 | Shared utility functions. 15 | 16 | 2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)** 17 | Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3. 18 | 19 | 3. **Override** 20 | This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding full selectors with hardcoded styles. 21 | 22 | 4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)** 23 | The template theme file which will generate final CSS output based on the currently defined variables. -------------------------------------------------------------------------------- /presentation-framework/css/theme/buildbot.css: -------------------------------------------------------------------------------- 1 | @import url(http://fonts.googleapis.com/css?family=Oxygen:400,300,700); 2 | /** 3 | * A simple theme for reveal.js presentations, similar 4 | * to the default theme. The accent color is darkblue. 5 | * 6 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. 7 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 8 | */ 9 | /********************************************* 10 | * GLOBAL STYLES 11 | *********************************************/ 12 | body { 13 | background: white; 14 | background-color: white; } 15 | 16 | .reveal { 17 | font-family: "Oxygen", sans-serif; 18 | font-size: 36px; 19 | font-weight: 300; 20 | letter-spacing: -0.02em; 21 | color: black; } 22 | 23 | ::selection { 24 | color: white; 25 | background: rgba(0, 0, 0, 0.99); 26 | text-shadow: none; } 27 | 28 | /********************************************* 29 | * BUILDBOT BADGE 30 | *********************************************/ 31 | .badge { 32 | height: 40px; 33 | background-color: rgb(27, 0, 27); 34 | background-image: linear-gradient(to bottom, rgb(34, 34, 34), rgb(17, 17, 17)); 35 | background-repeat: repeat-x; 36 | box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 10px; 37 | 38 | opacity: 1; 39 | transition: opacity 1800ms ease; 40 | } 41 | 42 | .badge div { 43 | color: #AAA; 44 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 45 | font-size: 30px; 46 | line-height: 35px; 47 | font-weight: 200; 48 | padding-left: 40px; 49 | /* this image has a lot of whitespace around it */ 50 | background-image: url("../../img/nut.png"); 51 | background-size: 40px; 52 | background-repeat: no-repeat; 53 | } 54 | 55 | .no-badge .badge { 56 | opacity: 0; 57 | transition: opacity 500ms ease; 58 | } 59 | 60 | /********************************************* 61 | * HEADERS 62 | *********************************************/ 63 | .reveal h1, 64 | .reveal h2, 65 | .reveal h3, 66 | .reveal h4, 67 | .reveal h5, 68 | .reveal h6 { 69 | margin: 0 0 20px 0; 70 | color: black; 71 | color: black; 72 | font-family: "Oxygen", sans-serif; 73 | font-weight: 400; 74 | line-height: 0.9em; 75 | letter-spacing: 0.02em; 76 | text-transform: none; 77 | text-shadow: none; } 78 | 79 | .reveal h1, 80 | .reveal h2, 81 | .reveal h3 { 82 | color: rgb(93, 75, 116); 83 | font-weight: 700; } 84 | 85 | .reveal h1 { 86 | text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } 87 | 88 | /********************************************* 89 | * LINKS 90 | *********************************************/ 91 | .reveal a:not(.image) { 92 | color: darkblue; 93 | text-decoration: none; 94 | -webkit-transition: color .15s ease; 95 | -moz-transition: color .15s ease; 96 | -ms-transition: color .15s ease; 97 | -o-transition: color .15s ease; 98 | transition: color .15s ease; } 99 | 100 | .reveal a:not(.image):hover { 101 | color: #0000f1; 102 | text-shadow: none; 103 | border: none; } 104 | 105 | .reveal .roll span:after { 106 | color: #fff; 107 | background: #00003f; } 108 | 109 | /********************************************* 110 | * IMAGES 111 | *********************************************/ 112 | .reveal section img { 113 | margin: 15px 0px; 114 | background: rgba(255, 255, 255, 0.12); 115 | border: 0px; 116 | -webkit-transition: all .2s linear; 117 | -moz-transition: all .2s linear; 118 | -ms-transition: all .2s linear; 119 | -o-transition: all .2s linear; 120 | transition: all .2s linear; } 121 | 122 | .reveal a:hover img { 123 | background: rgba(255, 255, 255, 0.2); 124 | border-color: darkblue; 125 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 126 | -------------------------------------------------------------------------------- /presentation-framework/css/theme/night.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 2 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 3 | /** 4 | * Black theme for reveal.js. 5 | * 6 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 7 | */ 8 | /********************************************* 9 | * GLOBAL STYLES 10 | *********************************************/ 11 | body { 12 | background: #111111; 13 | background-color: #111111; } 14 | 15 | .reveal { 16 | font-family: "Open Sans", sans-serif; 17 | font-size: 30px; 18 | font-weight: 200; 19 | letter-spacing: -0.02em; 20 | color: #eeeeee; } 21 | 22 | ::selection { 23 | color: white; 24 | background: #e7ad52; 25 | text-shadow: none; } 26 | 27 | /********************************************* 28 | * HEADERS 29 | *********************************************/ 30 | .reveal h1, 31 | .reveal h2, 32 | .reveal h3, 33 | .reveal h4, 34 | .reveal h5, 35 | .reveal h6 { 36 | margin: 0 0 20px 0; 37 | color: #eeeeee; 38 | font-family: "Montserrat", Impact, sans-serif; 39 | line-height: 0.9em; 40 | letter-spacing: -0.03em; 41 | text-transform: none; 42 | text-shadow: none; } 43 | 44 | .reveal h1 { 45 | text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } 46 | 47 | /********************************************* 48 | * LINKS 49 | *********************************************/ 50 | .reveal a:not(.image) { 51 | color: #e7ad52; 52 | text-decoration: none; 53 | -webkit-transition: color .15s ease; 54 | -moz-transition: color .15s ease; 55 | -ms-transition: color .15s ease; 56 | -o-transition: color .15s ease; 57 | transition: color .15s ease; } 58 | 59 | .reveal a:not(.image):hover { 60 | color: #f3d7ac; 61 | text-shadow: none; 62 | border: none; } 63 | 64 | .reveal .roll span:after { 65 | color: #fff; 66 | background: #d08a1d; } 67 | 68 | /********************************************* 69 | * IMAGES 70 | *********************************************/ 71 | .reveal section img { 72 | margin: 15px 0px; 73 | background: rgba(255, 255, 255, 0.12); 74 | border: 4px solid #eeeeee; 75 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); 76 | -webkit-transition: all .2s linear; 77 | -moz-transition: all .2s linear; 78 | -ms-transition: all .2s linear; 79 | -o-transition: all .2s linear; 80 | transition: all .2s linear; } 81 | 82 | .reveal a:hover img { 83 | background: rgba(255, 255, 255, 0.2); 84 | border-color: #e7ad52; 85 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 86 | 87 | /********************************************* 88 | * NAVIGATION CONTROLS 89 | *********************************************/ 90 | .reveal .controls div.navigate-left, 91 | .reveal .controls div.navigate-left.enabled { 92 | border-right-color: #e7ad52; } 93 | 94 | .reveal .controls div.navigate-right, 95 | .reveal .controls div.navigate-right.enabled { 96 | border-left-color: #e7ad52; } 97 | 98 | .reveal .controls div.navigate-up, 99 | .reveal .controls div.navigate-up.enabled { 100 | border-bottom-color: #e7ad52; } 101 | 102 | .reveal .controls div.navigate-down, 103 | .reveal .controls div.navigate-down.enabled { 104 | border-top-color: #e7ad52; } 105 | 106 | .reveal .controls div.navigate-left.enabled:hover { 107 | border-right-color: #f3d7ac; } 108 | 109 | .reveal .controls div.navigate-right.enabled:hover { 110 | border-left-color: #f3d7ac; } 111 | 112 | .reveal .controls div.navigate-up.enabled:hover { 113 | border-bottom-color: #f3d7ac; } 114 | 115 | .reveal .controls div.navigate-down.enabled:hover { 116 | border-top-color: #f3d7ac; } 117 | 118 | /********************************************* 119 | * PROGRESS BAR 120 | *********************************************/ 121 | .reveal .progress { 122 | background: rgba(0, 0, 0, 0.2); } 123 | 124 | .reveal .progress span { 125 | background: #e7ad52; 126 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 127 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 128 | -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 129 | -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 130 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 131 | -------------------------------------------------------------------------------- /presentation-framework/css/theme/serif.css: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple theme for reveal.js presentations, similar 3 | * to the default theme. The accent color is darkblue. 4 | * 5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. 6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of. 7 | */ 8 | /********************************************* 9 | * GLOBAL STYLES 10 | *********************************************/ 11 | body { 12 | background: #f0f1eb; 13 | background-color: #f0f1eb; } 14 | 15 | .reveal { 16 | font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; 17 | font-size: 36px; 18 | font-weight: 200; 19 | letter-spacing: -0.02em; 20 | color: black; } 21 | 22 | ::selection { 23 | color: white; 24 | background: #26351c; 25 | text-shadow: none; } 26 | 27 | /********************************************* 28 | * HEADERS 29 | *********************************************/ 30 | .reveal h1, 31 | .reveal h2, 32 | .reveal h3, 33 | .reveal h4, 34 | .reveal h5, 35 | .reveal h6 { 36 | margin: 0 0 20px 0; 37 | color: #383d3d; 38 | font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; 39 | line-height: 0.9em; 40 | letter-spacing: 0.02em; 41 | text-transform: none; 42 | text-shadow: none; } 43 | 44 | .reveal h1 { 45 | text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } 46 | 47 | /********************************************* 48 | * LINKS 49 | *********************************************/ 50 | .reveal a:not(.image) { 51 | color: #51483d; 52 | text-decoration: none; 53 | -webkit-transition: color .15s ease; 54 | -moz-transition: color .15s ease; 55 | -ms-transition: color .15s ease; 56 | -o-transition: color .15s ease; 57 | transition: color .15s ease; } 58 | 59 | .reveal a:not(.image):hover { 60 | color: #8b7c69; 61 | text-shadow: none; 62 | border: none; } 63 | 64 | .reveal .roll span:after { 65 | color: #fff; 66 | background: #25211c; } 67 | 68 | /********************************************* 69 | * IMAGES 70 | *********************************************/ 71 | .reveal section img { 72 | margin: 15px 0px; 73 | background: rgba(255, 255, 255, 0.12); 74 | border: 4px solid black; 75 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); 76 | -webkit-transition: all .2s linear; 77 | -moz-transition: all .2s linear; 78 | -ms-transition: all .2s linear; 79 | -o-transition: all .2s linear; 80 | transition: all .2s linear; } 81 | 82 | .reveal a:hover img { 83 | background: rgba(255, 255, 255, 0.2); 84 | border-color: #51483d; 85 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 86 | 87 | /********************************************* 88 | * NAVIGATION CONTROLS 89 | *********************************************/ 90 | .reveal .controls div.navigate-left, 91 | .reveal .controls div.navigate-left.enabled { 92 | border-right-color: #51483d; } 93 | 94 | .reveal .controls div.navigate-right, 95 | .reveal .controls div.navigate-right.enabled { 96 | border-left-color: #51483d; } 97 | 98 | .reveal .controls div.navigate-up, 99 | .reveal .controls div.navigate-up.enabled { 100 | border-bottom-color: #51483d; } 101 | 102 | .reveal .controls div.navigate-down, 103 | .reveal .controls div.navigate-down.enabled { 104 | border-top-color: #51483d; } 105 | 106 | .reveal .controls div.navigate-left.enabled:hover { 107 | border-right-color: #8b7c69; } 108 | 109 | .reveal .controls div.navigate-right.enabled:hover { 110 | border-left-color: #8b7c69; } 111 | 112 | .reveal .controls div.navigate-up.enabled:hover { 113 | border-bottom-color: #8b7c69; } 114 | 115 | .reveal .controls div.navigate-down.enabled:hover { 116 | border-top-color: #8b7c69; } 117 | 118 | /********************************************* 119 | * PROGRESS BAR 120 | *********************************************/ 121 | .reveal .progress { 122 | background: rgba(0, 0, 0, 0.2); } 123 | 124 | .reveal .progress span { 125 | background: #51483d; 126 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 127 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 128 | -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 129 | -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 130 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 131 | -------------------------------------------------------------------------------- /presentation-framework/css/theme/simple.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); 2 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 3 | /** 4 | * A simple theme for reveal.js presentations, similar 5 | * to the default theme. The accent color is darkblue. 6 | * 7 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. 8 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 9 | */ 10 | /********************************************* 11 | * GLOBAL STYLES 12 | *********************************************/ 13 | body { 14 | background: white; 15 | background-color: white; } 16 | 17 | .reveal { 18 | font-family: "Lato", sans-serif; 19 | font-size: 36px; 20 | font-weight: 200; 21 | letter-spacing: -0.02em; 22 | color: black; } 23 | 24 | ::selection { 25 | color: white; 26 | background: rgba(0, 0, 0, 0.99); 27 | text-shadow: none; } 28 | 29 | /********************************************* 30 | * HEADERS 31 | *********************************************/ 32 | .reveal h1, 33 | .reveal h2, 34 | .reveal h3, 35 | .reveal h4, 36 | .reveal h5, 37 | .reveal h6 { 38 | margin: 0 0 20px 0; 39 | color: black; 40 | font-family: "News Cycle", Impact, sans-serif; 41 | line-height: 0.9em; 42 | letter-spacing: 0.02em; 43 | text-transform: none; 44 | text-shadow: none; } 45 | 46 | .reveal h1 { 47 | text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } 48 | 49 | /********************************************* 50 | * LINKS 51 | *********************************************/ 52 | .reveal a:not(.image) { 53 | color: darkblue; 54 | text-decoration: none; 55 | -webkit-transition: color .15s ease; 56 | -moz-transition: color .15s ease; 57 | -ms-transition: color .15s ease; 58 | -o-transition: color .15s ease; 59 | transition: color .15s ease; } 60 | 61 | .reveal a:not(.image):hover { 62 | color: #0000f1; 63 | text-shadow: none; 64 | border: none; } 65 | 66 | .reveal .roll span:after { 67 | color: #fff; 68 | background: #00003f; } 69 | 70 | /********************************************* 71 | * IMAGES 72 | *********************************************/ 73 | .reveal section img { 74 | margin: 15px 0px; 75 | background: rgba(255, 255, 255, 0.12); 76 | border: 4px solid black; 77 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); 78 | -webkit-transition: all .2s linear; 79 | -moz-transition: all .2s linear; 80 | -ms-transition: all .2s linear; 81 | -o-transition: all .2s linear; 82 | transition: all .2s linear; } 83 | 84 | .reveal a:hover img { 85 | background: rgba(255, 255, 255, 0.2); 86 | border-color: darkblue; 87 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 88 | 89 | /********************************************* 90 | * NAVIGATION CONTROLS 91 | *********************************************/ 92 | .reveal .controls div.navigate-left, 93 | .reveal .controls div.navigate-left.enabled { 94 | border-right-color: darkblue; } 95 | 96 | .reveal .controls div.navigate-right, 97 | .reveal .controls div.navigate-right.enabled { 98 | border-left-color: darkblue; } 99 | 100 | .reveal .controls div.navigate-up, 101 | .reveal .controls div.navigate-up.enabled { 102 | border-bottom-color: darkblue; } 103 | 104 | .reveal .controls div.navigate-down, 105 | .reveal .controls div.navigate-down.enabled { 106 | border-top-color: darkblue; } 107 | 108 | .reveal .controls div.navigate-left.enabled:hover { 109 | border-right-color: #0000f1; } 110 | 111 | .reveal .controls div.navigate-right.enabled:hover { 112 | border-left-color: #0000f1; } 113 | 114 | .reveal .controls div.navigate-up.enabled:hover { 115 | border-bottom-color: #0000f1; } 116 | 117 | .reveal .controls div.navigate-down.enabled:hover { 118 | border-top-color: #0000f1; } 119 | 120 | /********************************************* 121 | * PROGRESS BAR 122 | *********************************************/ 123 | .reveal .progress { 124 | background: rgba(0, 0, 0, 0.2); } 125 | 126 | .reveal .progress span { 127 | background: darkblue; 128 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 129 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 130 | -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 131 | -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 132 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 133 | -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/beige.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Beige theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | 15 | // Include theme-specific fonts 16 | @font-face { 17 | font-family: 'League Gothic'; 18 | src: url('../../lib/font/league_gothic-webfont.eot'); 19 | src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), 20 | url('../../lib/font/league_gothic-webfont.woff') format('woff'), 21 | url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), 22 | url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); 23 | 24 | font-weight: normal; 25 | font-style: normal; 26 | } 27 | 28 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 29 | 30 | 31 | // Override theme settings (see ../template/settings.scss) 32 | $mainColor: #333; 33 | $headingColor: #333; 34 | $headingTextShadow: none; 35 | $backgroundColor: #f7f3de; 36 | $linkColor: #8b743d; 37 | $linkColorHover: lighten( $linkColor, 20% ); 38 | $selectionBackgroundColor: rgba(79, 64, 28, 0.99); 39 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); 40 | 41 | // Background generator 42 | @mixin bodyBackground() { 43 | @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) ); 44 | } 45 | 46 | 47 | 48 | // Theme template ------------------------------ 49 | @import "../template/theme"; 50 | // --------------------------------------------- -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/default.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Default theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | 15 | // Include theme-specific fonts 16 | @font-face { 17 | font-family: 'League Gothic'; 18 | src: url('../../lib/font/league_gothic-webfont.eot'); 19 | src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), 20 | url('../../lib/font/league_gothic-webfont.woff') format('woff'), 21 | url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), 22 | url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); 23 | 24 | font-weight: normal; 25 | font-style: normal; 26 | } 27 | 28 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 29 | 30 | // Override theme settings (see ../template/settings.scss) 31 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); 32 | 33 | // Background generator 34 | @mixin bodyBackground() { 35 | @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) ); 36 | } 37 | 38 | 39 | 40 | // Theme template ------------------------------ 41 | @import "../template/theme"; 42 | // --------------------------------------------- -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/moon.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Solarized Dark theme for reveal.js. 3 | * Author: Achim Staebler 4 | */ 5 | 6 | 7 | // Default mixins and settings ----------------- 8 | @import "../template/mixins"; 9 | @import "../template/settings"; 10 | // --------------------------------------------- 11 | 12 | 13 | 14 | // Include theme-specific fonts 15 | @font-face { 16 | font-family: 'League Gothic'; 17 | src: url('../../lib/font/league_gothic-webfont.eot'); 18 | src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), 19 | url('../../lib/font/league_gothic-webfont.woff') format('woff'), 20 | url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), 21 | url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); 22 | 23 | font-weight: normal; 24 | font-style: normal; 25 | } 26 | 27 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 28 | 29 | /** 30 | * Solarized colors by Ethan Schoonover 31 | */ 32 | html * { 33 | color-profile: sRGB; 34 | rendering-intent: auto; 35 | } 36 | 37 | // Solarized colors 38 | $base03: #002b36; 39 | $base02: #073642; 40 | $base01: #586e75; 41 | $base00: #657b83; 42 | $base0: #839496; 43 | $base1: #93a1a1; 44 | $base2: #eee8d5; 45 | $base3: #fdf6e3; 46 | $yellow: #b58900; 47 | $orange: #cb4b16; 48 | $red: #dc322f; 49 | $magenta: #d33682; 50 | $violet: #6c71c4; 51 | $blue: #268bd2; 52 | $cyan: #2aa198; 53 | $green: #859900; 54 | 55 | // Override theme settings (see ../template/settings.scss) 56 | $mainColor: $base1; 57 | $headingColor: $base2; 58 | $headingTextShadow: none; 59 | $backgroundColor: $base03; 60 | $linkColor: $blue; 61 | $linkColorHover: lighten( $linkColor, 20% ); 62 | $selectionBackgroundColor: $magenta; 63 | 64 | 65 | 66 | // Theme template ------------------------------ 67 | @import "../template/theme"; 68 | // --------------------------------------------- 69 | -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/serif.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple theme for reveal.js presentations, similar 3 | * to the default theme. The accent color is darkblue. 4 | * 5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. 6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of. 7 | */ 8 | 9 | 10 | // Default mixins and settings ----------------- 11 | @import "../template/mixins"; 12 | @import "../template/settings"; 13 | // --------------------------------------------- 14 | 15 | 16 | 17 | // Override theme settings (see ../template/settings.scss) 18 | $mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; 19 | $mainColor: #000; 20 | $headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; 21 | $headingColor: #383D3D; 22 | $headingTextShadow: none; 23 | $headingTextTransform: none; 24 | $backgroundColor: #F0F1EB; 25 | $linkColor: #51483D; 26 | $linkColorHover: lighten( $linkColor, 20% ); 27 | $selectionBackgroundColor: #26351C; 28 | 29 | 30 | 31 | // Theme template ------------------------------ 32 | @import "../template/theme"; 33 | // --------------------------------------------- -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/simple.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple theme for reveal.js presentations, similar 3 | * to the default theme. The accent color is darkblue. 4 | * 5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. 6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 7 | */ 8 | 9 | 10 | // Default mixins and settings ----------------- 11 | @import "../template/mixins"; 12 | @import "../template/settings"; 13 | // --------------------------------------------- 14 | 15 | 16 | 17 | // Include theme-specific fonts 18 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); 19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 20 | 21 | 22 | // Override theme settings (see ../template/settings.scss) 23 | $mainFont: 'Lato', sans-serif; 24 | $mainColor: #000; 25 | $headingFont: 'News Cycle', Impact, sans-serif; 26 | $headingColor: #000; 27 | $headingTextShadow: none; 28 | $headingTextTransform: none; 29 | $backgroundColor: #fff; 30 | $linkColor: #00008B; 31 | $linkColorHover: lighten( $linkColor, 20% ); 32 | $selectionBackgroundColor: rgba(0, 0, 0, 0.99); 33 | 34 | 35 | 36 | // Theme template ------------------------------ 37 | @import "../template/theme"; 38 | // --------------------------------------------- -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/sky.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Sky theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | 15 | // Include theme-specific fonts 16 | @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); 17 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); 18 | 19 | 20 | // Override theme settings (see ../template/settings.scss) 21 | $mainFont: 'Open Sans', sans-serif; 22 | $mainColor: #333; 23 | $headingFont: 'Quicksand', sans-serif; 24 | $headingColor: #333; 25 | $headingLetterSpacing: -0.08em; 26 | $headingTextShadow: none; 27 | $backgroundColor: #f7fbfc; 28 | $linkColor: #3b759e; 29 | $linkColorHover: lighten( $linkColor, 20% ); 30 | $selectionBackgroundColor: #134674; 31 | 32 | // Background generator 33 | @mixin bodyBackground() { 34 | @include radial-gradient( #add9e4, #f7fbfc ); 35 | } 36 | 37 | 38 | 39 | // Theme template ------------------------------ 40 | @import "../template/theme"; 41 | // --------------------------------------------- -------------------------------------------------------------------------------- /presentation-framework/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Solarized Light theme for reveal.js. 3 | * Author: Achim Staebler 4 | */ 5 | 6 | 7 | // Default mixins and settings ----------------- 8 | @import "../template/mixins"; 9 | @import "../template/settings"; 10 | // --------------------------------------------- 11 | 12 | 13 | 14 | // Include theme-specific fonts 15 | @font-face { 16 | font-family: 'League Gothic'; 17 | src: url('../../lib/font/league_gothic-webfont.eot'); 18 | src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), 19 | url('../../lib/font/league_gothic-webfont.woff') format('woff'), 20 | url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), 21 | url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); 22 | 23 | font-weight: normal; 24 | font-style: normal; 25 | } 26 | 27 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 28 | 29 | 30 | /** 31 | * Solarized colors by Ethan Schoonover 32 | */ 33 | html * { 34 | color-profile: sRGB; 35 | rendering-intent: auto; 36 | } 37 | 38 | // Solarized colors 39 | $base03: #002b36; 40 | $base02: #073642; 41 | $base01: #586e75; 42 | $base00: #657b83; 43 | $base0: #839496; 44 | $base1: #93a1a1; 45 | $base2: #eee8d5; 46 | $base3: #fdf6e3; 47 | $yellow: #b58900; 48 | $orange: #cb4b16; 49 | $red: #dc322f; 50 | $magenta: #d33682; 51 | $violet: #6c71c4; 52 | $blue: #268bd2; 53 | $cyan: #2aa198; 54 | $green: #859900; 55 | 56 | // Override theme settings (see ../template/settings.scss) 57 | $mainColor: $base00; 58 | $headingColor: $base01; 59 | $headingTextShadow: none; 60 | $backgroundColor: $base3; 61 | $linkColor: $blue; 62 | $linkColorHover: lighten( $linkColor, 20% ); 63 | $selectionBackgroundColor: $magenta; 64 | 65 | // Background generator 66 | // @mixin bodyBackground() { 67 | // @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) ); 68 | // } 69 | 70 | 71 | 72 | // Theme template ------------------------------ 73 | @import "../template/theme"; 74 | // --------------------------------------------- 75 | -------------------------------------------------------------------------------- /presentation-framework/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin vertical-gradient( $top, $bottom ) { 2 | background: $top; 3 | background: -moz-linear-gradient( top, $top 0%, $bottom 100% ); 4 | background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) ); 5 | background: -webkit-linear-gradient( top, $top 0%, $bottom 100% ); 6 | background: -o-linear-gradient( top, $top 0%, $bottom 100% ); 7 | background: -ms-linear-gradient( top, $top 0%, $bottom 100% ); 8 | background: linear-gradient( top, $top 0%, $bottom 100% ); 9 | } 10 | 11 | @mixin horizontal-gradient( $top, $bottom ) { 12 | background: $top; 13 | background: -moz-linear-gradient( left, $top 0%, $bottom 100% ); 14 | background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) ); 15 | background: -webkit-linear-gradient( left, $top 0%, $bottom 100% ); 16 | background: -o-linear-gradient( left, $top 0%, $bottom 100% ); 17 | background: -ms-linear-gradient( left, $top 0%, $bottom 100% ); 18 | background: linear-gradient( left, $top 0%, $bottom 100% ); 19 | } 20 | 21 | @mixin radial-gradient( $outer, $inner, $type: circle ) { 22 | background: $outer; 23 | background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 24 | background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) ); 25 | background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 26 | background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 27 | background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 28 | background: radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 29 | } -------------------------------------------------------------------------------- /presentation-framework/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 36px; 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingFont: 'League Gothic', Impact, sans-serif; 14 | $headingColor: #eee; 15 | $headingLineHeight: 0.9em; 16 | $headingLetterSpacing: 0.02em; 17 | $headingTextTransform: uppercase; 18 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 19 | $heading1TextShadow: $headingTextShadow; 20 | 21 | // Links and actions 22 | $linkColor: #13DAEC; 23 | $linkColorHover: lighten( $linkColor, 20% ); 24 | 25 | // Text selection 26 | $selectionBackgroundColor: #FF5E99; 27 | $selectionColor: #fff; 28 | 29 | // Generates the presentation background, can be overridden 30 | // to return a background image or gradient 31 | @mixin bodyBackground() { 32 | background: $backgroundColor; 33 | } -------------------------------------------------------------------------------- /presentation-framework/css/theme/template/theme.scss: -------------------------------------------------------------------------------- 1 | // Base theme template for reveal.js 2 | 3 | /********************************************* 4 | * GLOBAL STYLES 5 | *********************************************/ 6 | 7 | body { 8 | @include bodyBackground(); 9 | background-color: $backgroundColor; 10 | } 11 | 12 | .reveal { 13 | font-family: $mainFont; 14 | font-size: $mainFontSize; 15 | font-weight: 200; 16 | letter-spacing: -0.02em; 17 | color: $mainColor; 18 | } 19 | 20 | ::selection { 21 | color: $selectionColor; 22 | background: $selectionBackgroundColor; 23 | text-shadow: none; 24 | } 25 | 26 | /********************************************* 27 | * HEADERS 28 | *********************************************/ 29 | 30 | .reveal h1, 31 | .reveal h2, 32 | .reveal h3, 33 | .reveal h4, 34 | .reveal h5, 35 | .reveal h6 { 36 | margin: 0 0 20px 0; 37 | color: $headingColor; 38 | 39 | font-family: $headingFont; 40 | line-height: $headingLineHeight; 41 | letter-spacing: $headingLetterSpacing; 42 | 43 | text-transform: $headingTextTransform; 44 | text-shadow: $headingTextShadow; 45 | } 46 | 47 | .reveal h1 { 48 | text-shadow: $heading1TextShadow; 49 | } 50 | 51 | 52 | /********************************************* 53 | * LINKS 54 | *********************************************/ 55 | 56 | .reveal a:not(.image) { 57 | color: $linkColor; 58 | text-decoration: none; 59 | 60 | -webkit-transition: color .15s ease; 61 | -moz-transition: color .15s ease; 62 | -ms-transition: color .15s ease; 63 | -o-transition: color .15s ease; 64 | transition: color .15s ease; 65 | } 66 | .reveal a:not(.image):hover { 67 | color: $linkColorHover; 68 | 69 | text-shadow: none; 70 | border: none; 71 | } 72 | 73 | .reveal .roll span:after { 74 | color: #fff; 75 | background: darken( $linkColor, 15% ); 76 | } 77 | 78 | 79 | /********************************************* 80 | * IMAGES 81 | *********************************************/ 82 | 83 | .reveal section img { 84 | margin: 15px 0px; 85 | background: rgba(255,255,255,0.12); 86 | border: 4px solid $mainColor; 87 | 88 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); 89 | 90 | -webkit-transition: all .2s linear; 91 | -moz-transition: all .2s linear; 92 | -ms-transition: all .2s linear; 93 | -o-transition: all .2s linear; 94 | transition: all .2s linear; 95 | } 96 | 97 | .reveal a:hover img { 98 | background: rgba(255,255,255,0.2); 99 | border-color: $linkColor; 100 | 101 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); 102 | } 103 | 104 | 105 | /********************************************* 106 | * NAVIGATION CONTROLS 107 | *********************************************/ 108 | 109 | .reveal .controls div.navigate-left, 110 | .reveal .controls div.navigate-left.enabled { 111 | border-right-color: $linkColor; 112 | } 113 | 114 | .reveal .controls div.navigate-right, 115 | .reveal .controls div.navigate-right.enabled { 116 | border-left-color: $linkColor; 117 | } 118 | 119 | .reveal .controls div.navigate-up, 120 | .reveal .controls div.navigate-up.enabled { 121 | border-bottom-color: $linkColor; 122 | } 123 | 124 | .reveal .controls div.navigate-down, 125 | .reveal .controls div.navigate-down.enabled { 126 | border-top-color: $linkColor; 127 | } 128 | 129 | .reveal .controls div.navigate-left.enabled:hover { 130 | border-right-color: $linkColorHover; 131 | } 132 | 133 | .reveal .controls div.navigate-right.enabled:hover { 134 | border-left-color: $linkColorHover; 135 | } 136 | 137 | .reveal .controls div.navigate-up.enabled:hover { 138 | border-bottom-color: $linkColorHover; 139 | } 140 | 141 | .reveal .controls div.navigate-down.enabled:hover { 142 | border-top-color: $linkColorHover; 143 | } 144 | 145 | 146 | /********************************************* 147 | * PROGRESS BAR 148 | *********************************************/ 149 | 150 | .reveal .progress { 151 | background: rgba(0,0,0,0.2); 152 | } 153 | .reveal .progress span { 154 | background: $linkColor; 155 | 156 | -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); 157 | -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); 158 | -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); 159 | -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); 160 | transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); 161 | } 162 | -------------------------------------------------------------------------------- /presentation-framework/img/nut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/presentation-framework/img/nut.png -------------------------------------------------------------------------------- /presentation-framework/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Buildbot 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 28 | 31 | 32 | 33 | 34 | 35 |
36 |
Buildbot
37 |
38 | 39 |
40 | 41 | 42 |
43 | 44 |
45 |

Buildbot

46 |

The Continuous Integration Framework

47 |

48 | Your Name Here
Your Affiliation Here
49 |

50 | 51 |
52 | 53 |
54 |

Go!

55 |

56 | Here's where you talk about Buildbot. Note the fancy header at the top. 57 | Using this framework will help to unite Buildbot presentations. 58 |

59 | 60 |

61 | You can use any features of reveal.js you'd like. 62 |

63 | 64 | 67 |
68 | 69 |
70 | 71 |
72 | 73 | 74 | 75 | 76 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /presentation-framework/lib/css/zenburn.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Zenburn style from voldmar.ru (c) Vladimir Epifanov 4 | based on dark.css by Ivan Sagalaev 5 | 6 | */ 7 | 8 | pre code { 9 | display: block; padding: 0.5em; 10 | background: #3F3F3F; 11 | color: #DCDCDC; 12 | } 13 | 14 | pre .keyword, 15 | pre .tag, 16 | pre .django .tag, 17 | pre .django .keyword, 18 | pre .css .class, 19 | pre .css .id, 20 | pre .lisp .title { 21 | color: #E3CEAB; 22 | } 23 | 24 | pre .django .template_tag, 25 | pre .django .variable, 26 | pre .django .filter .argument { 27 | color: #DCDCDC; 28 | } 29 | 30 | pre .number, 31 | pre .date { 32 | color: #8CD0D3; 33 | } 34 | 35 | pre .dos .envvar, 36 | pre .dos .stream, 37 | pre .variable, 38 | pre .apache .sqbracket { 39 | color: #EFDCBC; 40 | } 41 | 42 | pre .dos .flow, 43 | pre .diff .change, 44 | pre .python .exception, 45 | pre .python .built_in, 46 | pre .literal, 47 | pre .tex .special { 48 | color: #EFEFAF; 49 | } 50 | 51 | pre .diff .chunk, 52 | pre .ruby .subst { 53 | color: #8F8F8F; 54 | } 55 | 56 | pre .dos .keyword, 57 | pre .python .decorator, 58 | pre .class .title, 59 | pre .haskell .label, 60 | pre .function .title, 61 | pre .ini .title, 62 | pre .diff .header, 63 | pre .ruby .class .parent, 64 | pre .apache .tag, 65 | pre .nginx .built_in, 66 | pre .tex .command, 67 | pre .input_number { 68 | color: #efef8f; 69 | } 70 | 71 | pre .dos .winutils, 72 | pre .ruby .symbol, 73 | pre .ruby .symbol .string, 74 | pre .ruby .symbol .keyword, 75 | pre .ruby .symbol .keymethods, 76 | pre .ruby .string, 77 | pre .ruby .instancevar { 78 | color: #DCA3A3; 79 | } 80 | 81 | pre .diff .deletion, 82 | pre .string, 83 | pre .tag .value, 84 | pre .preprocessor, 85 | pre .built_in, 86 | pre .sql .aggregate, 87 | pre .javadoc, 88 | pre .smalltalk .class, 89 | pre .smalltalk .localvars, 90 | pre .smalltalk .array, 91 | pre .css .rules .value, 92 | pre .attr_selector, 93 | pre .pseudo, 94 | pre .apache .cbracket, 95 | pre .tex .formula { 96 | color: #CC9393; 97 | } 98 | 99 | pre .shebang, 100 | pre .diff .addition, 101 | pre .comment, 102 | pre .java .annotation, 103 | pre .template_comment, 104 | pre .pi, 105 | pre .doctype { 106 | color: #7F9F7F; 107 | } 108 | 109 | pre .xml .css, 110 | pre .xml .javascript, 111 | pre .xml .vbscript, 112 | pre .tex .formula { 113 | opacity: 0.5; 114 | } 115 | -------------------------------------------------------------------------------- /presentation-framework/lib/font/league_gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/presentation-framework/lib/font/league_gothic-webfont.eot -------------------------------------------------------------------------------- /presentation-framework/lib/font/league_gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/presentation-framework/lib/font/league_gothic-webfont.ttf -------------------------------------------------------------------------------- /presentation-framework/lib/font/league_gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildbot/buildbot-media/bf9c7b872377fe21ac2c830cca019b7507309b00/presentation-framework/lib/font/league_gothic-webfont.woff -------------------------------------------------------------------------------- /presentation-framework/lib/font/league_gothic_license: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /presentation-framework/lib/js/classList.js: -------------------------------------------------------------------------------- 1 | /*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/ 2 | if(typeof document!=="undefined"&&!("classList" in document.createElement("a"))){(function(j){var a="classList",f="prototype",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\s+|\s+$/g,"")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p 3 | Copyright Tero Piirainen (tipiirai) 4 | License MIT / http://bit.ly/mit-license 5 | Version 0.96 6 | 7 | http://headjs.com 8 | */(function(a){function z(){d||(d=!0,s(e,function(a){p(a)}))}function y(c,d){var e=a.createElement("script");e.type="text/"+(c.type||"javascript"),e.src=c.src||c,e.async=!1,e.onreadystatechange=e.onload=function(){var a=e.readyState;!d.done&&(!a||/loaded|complete/.test(a))&&(d.done=!0,d())},(a.body||b).appendChild(e)}function x(a,b){if(a.state==o)return b&&b();if(a.state==n)return k.ready(a.name,b);if(a.state==m)return a.onpreload.push(function(){x(a,b)});a.state=n,y(a.url,function(){a.state=o,b&&b(),s(g[a.name],function(a){p(a)}),u()&&d&&s(g.ALL,function(a){p(a)})})}function w(a,b){a.state===undefined&&(a.state=m,a.onpreload=[],y({src:a.url,type:"cache"},function(){v(a)}))}function v(a){a.state=l,s(a.onpreload,function(a){a.call()})}function u(a){a=a||h;var b;for(var c in a){if(a.hasOwnProperty(c)&&a[c].state!=o)return!1;b=!0}return b}function t(a){return Object.prototype.toString.call(a)=="[object Function]"}function s(a,b){if(!!a){typeof a=="object"&&(a=[].slice.call(a));for(var c=0;c