Skip to content

Commit 7c2de05

Browse files
committed
Travis Updates
Updates to travis Add rest of pointers for document versions Add files needed to make html look good
1 parent 4005733 commit 7c2de05

File tree

4 files changed

+88
-4
lines changed

4 files changed

+88
-4
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,17 @@ before_install:
66
- sudo apt-get install -y python-lxml python-pip
77
install:
88
- deactivate
9-
- rvm install 2.2.0
10-
- rvm use 2.2.0
119
- sudo pip install xml2rfc
1210
script:
1311
- make ghpages
1412
env:
1513
global:
16-
- secure: <insert encrypted GH_TOKEN=blah here>
14+
- secure: UxxrSOF4wfTh1Y6zkFUqfROIdOibTtWZ7qK6HY1CDdzwl2kpXaJZ0g0FMV7fSfJsrLRjbUv3jl7Ob2JSDtIsWNE1OlG0bb+IqwG4cSTU5avDFJeDwqFGRYCmoqdeEUzyXuwfzhwq+6iVmwONMXsZal6Ww3yegcENnOYX9x/GmKI=
1715
before_deploy: make submit
1816
deploy:
1917
provider: releases
2018
api-key:
21-
secure: <insert encrypted API key here>
19+
secure: UxxrSOF4wfTh1Y6zkFUqfROIdOibTtWZ7qK6HY1CDdzwl2kpXaJZ0g0FMV7fSfJsrLRjbUv3jl7Ob2JSDtIsWNE1OlG0bb+IqwG4cSTU5avDFJeDwqFGRYCmoqdeEUzyXuwfzhwq+6iVmwONMXsZal6Ww3yegcENnOYX9x/GmKI=
2220
file:
2321
- $TRAVIS_TAG.txt
2422
- $TRAVIS_TAG.html

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
This is the working area for the IETF SACM Architecture draft.
44

5+
* [Editor's copy](https://sacmwg.github.io/draft-ietf-sacm-architecture/)
56
* [Working Group Draft] (https://tools.ietf.org/html/draft-ietf-sacm-architecture)
7+
* [Compare Working Group and Editor's Drafts] (https://tools.ietf.org/rfcdiff?url1=https://www.ietf.org/id/draft-ietf-sacm-architecture&url2=https://sacmwg.github.io/draft-ietf-sacm-architecture/draft-ietf-sacm-architecture.txt)
68

79
## Document Status
810

lib/addstyle.sed

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
\~</style>~ { a\
2+
<style type="text/css">
3+
r lib/style.css
4+
a\
5+
</style>
6+
}

lib/style.css

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
@viewport {
2+
zoom: 1.0;
3+
width: extend-to-zoom;
4+
}
5+
6+
@-ms-viewport {
7+
width: extend-to-zoom;
8+
zoom: 1.0;
9+
}
10+
11+
body {
12+
font: 11pt cambria, helvetica, arial, sans-serif;
13+
font-size-adjust: 0.5;
14+
line-height: 130%;
15+
margin: 1em auto;
16+
max-width: 700px;
17+
}
18+
19+
.title, .filename, h1, h2, h3, h4 {
20+
font-family: candara, helvetica, arial, sans-serif;
21+
font-size-adjust: 0.5;
22+
}
23+
.title { font-size: 150%; }
24+
h1 { font-size: 130%; }
25+
h2 { font-size: 120%; }
26+
h3, h4 { font-size: 110%; }
27+
ul.toc >li { font-size: 95%; }
28+
ul.toc >li >ul, .figure, caption { font-size: 90%; }
29+
30+
table {
31+
margin-left: 0em;
32+
}
33+
table.header {
34+
width: 100%;
35+
}
36+
37+
table.header td {
38+
background-color: inherit;
39+
color: black;
40+
}
41+
42+
samp, tt, code, pre {
43+
font: 11pt consolas, monospace;
44+
font-size-adjust: none;
45+
}
46+
47+
pre.text, pre.text2 {
48+
width: 90%;
49+
}
50+
51+
dt {
52+
float: left; clear: left;
53+
margin: 0.5em 0.5em 0 0;
54+
}
55+
dt:first-child {
56+
margin-top: 0;
57+
}
58+
dd {
59+
margin: 0.5em 0 0 2em;
60+
}
61+
dd p, dd ul {
62+
margin-top: 0; margin-bottom: 0;
63+
}
64+
dd *+p {
65+
margin-top: 0.5em;
66+
}
67+
68+
ol, ul {
69+
padding: 0;
70+
margin: 0.5em 0 0.5em 2em;
71+
}
72+
ul.toc, ul.toc ul {
73+
margin: 0 0 0 1.5em;
74+
}
75+
ul.toc a:first-child {
76+
display: inline-block;
77+
min-width: 1.2em;
78+
}

0 commit comments

Comments
 (0)