Skip to content

Commit

Permalink
move of doc for installer from installer to doc as archive file to be
Browse files Browse the repository at this point in the history
distributed over the existing python framework
  • Loading branch information
patinusb committed Nov 13, 2012
1 parent 81072c4 commit 1bc8c7f
Show file tree
Hide file tree
Showing 75 changed files with 7,349 additions and 0 deletions.
4 changes: 4 additions & 0 deletions archive-doc-installer/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

all:
markdown pkg.md > pkg.html

6 changes: 6 additions & 0 deletions archive-doc-installer/anr-proteus.github.com/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
PROTEUS repository
==================

- PROTEUS website: http://anr-proteus.fr
- How to install slides: http://anr-proteus.github.com/slides/install.html
- Slides Demo MORSE+PROTEUS: http://anr-proteus.github.com/slides/demo.html
5 changes: 5 additions & 0 deletions archive-doc-installer/anr-proteus.github.com/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<html>
<h1>welcome on proteus github</h1>
<p><a href="http://bit.ly/proteus1">install</a> - <a href="http://bit.ly/proteus2">demo</a></p>
<p><a href="http://anr-proteus.fr">anr-proteus.fr</a></p>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- git: {local-name: proteus, uri: 'https://github.com/anr-proteus/proteus.git', version: master}

17 changes: 17 additions & 0 deletions archive-doc-installer/anr-proteus.github.com/slides/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# The shell in which to execute make rules.
SHELL = /bin/sh

# Default target executed when no arguments are given to make.
default_target: doc plain

# Build rule for target named doc.
# https://github.com/adamzap/landslide
doc:
for i in *.cfg; do landslide $${i}; done
plain:
for i in *.md; do markdown $${i} > $${i%.md}.plain.html; done
pdf:
for i in *.md; do landslide -i $${i} -d $${i%.md}.pdf; done
html:
for i in *.md; do landslide -i $${i} -d $${i%.md}.html; done

182 changes: 182 additions & 0 deletions archive-doc-installer/anr-proteus.github.com/slides/default/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
<!DOCTYPE html>
<!--
Copyright 2010 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Original slides: Marcin Wichary (mwichary@google.com)
Modifications: Ernest Delgado (ernestd@google.com)
Alex Russell (slightlyoff@chromium.org)
landslide modifications: Adam Zapletal (adamzap@gmail.com)
Nicolas Perriault (nperriault@gmail.com)
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>{{ head_title }}</title>
<!-- Styles -->
{% if embed %}
<style type="text/css" media="print">
{{ css.print.contents }}
</style>
<style type="text/css" media="screen, projection">
{{ css.screen.contents }}
</style>
{% else %}
<link rel="stylesheet" media="print" href="{{ css.print.path_url }}">
<link rel="stylesheet" media="screen, projection" href="{{ css.screen.path_url }}">
{% endif %}
{% for css in user_css %}
{% if embed %}
<style type="text/css" media="screen, projection">
{{ css.contents }}
</style>
{% else %}
<link rel="stylesheet" href="{{ css.path_url }}">
{% endif %}
{% endfor %}
<!-- /Styles -->
<!-- Javascripts -->
{% if embed %}
<script>
{{ js.contents }}
</script>
{% else %}
<script type="text/javascript" src="{{ js.path_url }}"></script>
{% endif %}
{% for js in user_js %}
{% if embed %}
<script>
{{ js.contents }}
</script>
{% else %}
<script type="text/javascript" src="{{ js.path_url }}"></script>
{% endif %}
{% endfor %}
<!-- /Javascripts -->
</head>
<body>
<div id="blank"></div>
<div class="presentation">
<div id="current_presenter_notes">
<div id="presenter_note"></div>
</div>
<div class="slides">
{% for slide in slides %}
<!-- slide source: {% if slide.source %}{{ slide.source.rel_path }}{% endif %} -->
<div class="slide-wrapper">
<div class="slide{% if slide.classes %}{% for class in slide.classes %} {{ class }}{% endfor %}{% endif %}">
<div class="inner">
{% if slide.header %}
<header>{{ slide.header }}</header>
{% endif %}
{% if slide.content %}
<section>{{ slide.content }}</section>
{% endif %}
</div>
<div class="presenter_notes">
<header><h1>Presenter Notes</h1></header>
<section>
{% if slide.presenter_notes %}
{{ slide.presenter_notes }}
{% endif %}
</section>
</div>
<footer>
{% if slide.source %}
<aside class="source">
Source: <a href="{{ slide.source.rel_path }}">{{ slide.source.rel_path }}</a>
</aside>
{% endif %}
<aside class="page_number">
{{ slide.number }}/{{ num_slides }}
</aside>
</footer>
</div>
</div>
{% endfor %}
</div>
</div>
{% if toc %}
<div id="toc" class="sidebar hidden">
<h2>Table of Contents</h2>
<table>
<caption>Table of Contents</caption>
{% for section in toc %}
<tr id="toc-row-{{ section.number }}">
<th><a href="#slide{{ section.number }}">{{ section.title }}</a></th>
<td><a href="#slide{{ section.number }}">{{ section.number }}</a></td>
</tr>
{% if section.sub %}
{% for subsection in section.sub %}
<tr id="toc-row-{{ subsection.number }}" class="sub">
<th><a href="#slide{{ subsection.number }}">{{ subsection.title }}</a></th>
<td><a href="#slide{{ subsection.number }}">{{ subsection.number }}</a></td>
</tr>
{% endfor %}
{% endif %}
{% endfor %}
</table>
</div>
{% endif %}
<div id="help" class="sidebar hidden">
<h2>Help</h2>
<table>
<caption>Help</caption>
<tr>
<th>Table of Contents</th>
<td>t</td>
</tr>
<tr>
<th>Exposé</th>
<td>ESC</td>
</tr>
<tr>
<th>Full screen slides</th>
<td>e</td>
</tr>
<tr>
<th>Presenter View</th>
<td>p</td>
</tr>
<tr>
<th>Source Files</th>
<td>s</td>
</tr>
<tr>
<th>Slide Numbers</th>
<td>n</td>
</tr>
<tr>
<th>Toggle screen blanking</th>
<td>b</td>
</tr>
<tr>
<th>Show/hide slide context</th>
<td>c</td>
</tr>
<tr>
<th>Notes</th>
<td>2</td>
</tr>
<tr>
<th>Help</th>
<td>h</td>
</tr>
</table>
</div>
<script>main()</script>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
* {
margin: 0;
padding: 0;
}

@page {
size: landscape;
}

body {
font: 100% "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
padding: 0;
margin: 0;
}

div.slide {
min-width: 800px;
min-height: 600px;
padding: 1em;
overflow: hidden;
page-break-after: always;
border: 1px solid black;
border-radius: 20px;
}

div.slide div.inner {
width: 800px;
height: 600px;
margin: auto;
display: table-cell;
}

h1 {
font-size: 2.4em;
}

h2 {
font-size: 1.4em;
}

h3 {
margin: 1em 0;
}

ul {
margin: 0;
padding: 0;
}

p, li, pre {
margin: 1em 0;
}

li {
margin-left: 2em;
}

a {
color: #000000;
}

pre, code {
max-width: 800px;
background: #eee;
font-family: Monaco, monospace;
font-size: 90%;
}

pre {
padding: .2em .5em;
overflow: hidden;
border-radius: .8em;
}

code {
padding: 0 .2em;
}

.slide header:only-child h1 {
line-height: 180%;
text-align: center;
display: table-cell;
vertical-align: middle;
height: 600px;
width: 800px;
font-size: 48px;
margin-top:100px;
margin-bottom:100px;
}

#toc, #help, .slide aside, .slide footer, .slide .notes,
.presenter_notes, #current_presenter_notes, #presenter_note {
display: none;
}
Loading

0 comments on commit 1bc8c7f

Please sign in to comment.