Skip to content

Commit 9fa6b5b

Browse files
authored
Merge pull request #246 from justwriteclick/build
Cover updates, remove mailer signup
2 parents d1d317e + 4167db0 commit 9fa6b5b

33 files changed

+6
-68
lines changed

Gemfile.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ GEM
8888
rb-inotify (~> 0.9, >= 0.9.10)
8989
mercenary (0.4.0)
9090
multipart-post (2.1.1)
91-
nokogiri (1.14.3-x86_64-darwin)
91+
nokogiri (1.15.6-x86_64-darwin)
9292
racc (~> 1.4)
93-
nokogiri (1.14.3-x86_64-linux)
93+
nokogiri (1.15.6-x86_64-linux)
9494
racc (~> 1.4)
9595
nokogumbo (2.0.5)
9696
nokogiri (~> 1.8, >= 1.8.4)
@@ -101,12 +101,13 @@ GEM
101101
pathutil (0.16.2)
102102
forwardable-extended (~> 2.6)
103103
public_suffix (4.0.6)
104-
racc (1.6.2)
104+
racc (1.7.3)
105105
rainbow (3.0.0)
106106
rb-fsevent (0.11.0)
107107
rb-inotify (0.10.1)
108108
ffi (~> 1.0)
109-
rexml (3.2.5)
109+
rexml (3.2.8)
110+
strscan (>= 3.0.9)
110111
rouge (3.26.1)
111112
ruby2_keywords (0.0.5)
112113
safe_yaml (1.0.5)
@@ -115,6 +116,7 @@ GEM
115116
sawyer (0.8.2)
116117
addressable (>= 2.3.5)
117118
faraday (> 0.8, < 2.0)
119+
strscan (3.1.0)
118120
terminal-table (2.0.0)
119121
unicode-display_width (~> 1.1, >= 1.1.1)
120122
typhoeus (1.4.0)

_layouts/learn.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ <h1>{{ page.title }}</h1>
2121
</div>
2222
{{ content }}
2323

24-
{% include sign-up.html %}
25-
2624
</div>
2725
</div>
2826
{% include footer.html %}

_posts/articles/2016-09-17-github-for-docs.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,3 @@ I hope I'm talking to people who care a lot about words. Let's start with some v
5353
These definitions can give you decision points to make about information architecture, so think about which deliverables you'll make, who should review and collaborate on those deliverables, and how you can automate publishing with the chunks of a repository or an organization as overarching collections.
5454

5555
Take a look at [this article's source on GitHub](https://raw.githubusercontent.com/justwriteclick/docslikecode/master/_posts/articles/2016-09-17-github-for-docs.md) to get a sense of the "source" for a document. We'll look at the source aspects in a future article. To stay in touch, subscribe to get relevant emails in your inbox.
56-
57-
{% include sign-up.html %}

_posts/articles/2016-09-18-github-collaborators.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,3 @@ When you write with people beyond your immediate team, ensure that those contrib
3232
Harnessing these needs being met is not about gaining free labor. Contributors should be highly, highly valued, and rewarded. It's about creating opportunities to shine, and curating jobs. Because contributor graphs are available on GitHub, and because the contribution data can be mined to see that reputation being built one pull request at a time, GitHub gives rewards in a new way.
3333

3434
If you think this all sounds nice but impractical, I encourage you to sign up for the newsletter to learn how to practice these techniques like you would a musical instrument. You need hands-on experience and time to play to get better and better.
35-
36-
{% include sign-up.html %}

_posts/articles/2016-09-23-doc-issues-tracking.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,3 @@ To take it a step further, you can also add a link to edit the source doc file i
4040
In traditional enterprise doc systems, writers can go weeks without getting reviews or input. Even when asking and nagging multiple times, sometimes the documentation systems are so separate from code systems that technical reviews are through email. GASP. Put those days behind you and go where the technically knowledgeable people are.
4141

4242
Working with the same collaboration tools as technical people gives better reviews. We can merge as many as 50 patches per day, though, in reality, it's about a dozen a day. We are running up to four automated doc tests per patch and requiring two humans to check the patch and click to publish. Each reviewer who can publish must adhere to our review rules, and people follow the rules well.
43-
44-
{% include sign-up.html %}

_posts/articles/2016-09-24-what-docs-like-code-looks-like.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,3 @@ This video shows you how to clone a GitHub repo with an existing Jekyll theme an
2929
### How it's made
3030

3131
<iframe width="560" height="315" src="https://www.youtube.com/embed/{{ include.id }}" frameborder="0" allowfullscreen></iframe>
32-
33-
{% include sign-up.html %}

_posts/articles/2016-11-26-remodel-your-docs.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,3 @@ Here are some resources to get your first punch in that punch list:
4343
* Using Python Sphinx? The OpenStack docs theme has some Javascript you could re-use to pre-populate an Issue template so the reporter sends the page URL, the source URL, the git SHA of the commit for that version of the page, and the release version value. See this [docs.js snippet](https://github.com/openstack/openstackdocstheme/blob/master/openstackdocstheme/theme/openstackdocs/static/js/docs.js#L119).
4444
* Using a private repo for docs, but want to track bugs publicly? Use [Issues-only Access Permissions](https://help.github.com/articles/issues-only-access-permissions/).
4545
* Want to add a bit of code to pre-create Issues to use as comments on every page? Free yourself from Disqus comments. Try this [set of tips and sample code in a blog post](https://zpbappi.com/jekyll-with-tags-archive-and-comments-in-github-pages/).
46-
47-
{% include sign-up.html %}

_posts/articles/2016-12-29-coming-soon-writing-docs-like-code.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,3 @@ Here are some of the topics:
2828
* What about wikis?
2929

3030
When you treat docs as code, what are your biggest barriers? Your looming concerns? Let me know so we can address these. Sign up below to learn more together.
31-
32-
{% include sign-up.html %}

_posts/articles/2017-03-18-pantheon-case-study.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,3 @@ As of March 2017, this workflow was not available to forks for security reasons.
6666
#### Are there any questions you wish you had asked before using GitHub for docs?
6767

6868
How do the needs of open source software projects differ from those of a documentation project? Where does GitHub fail to fulfill the needs of documentation projects and how can those gaps be filled?
69-
70-
{% include sign-up.html %}

_posts/articles/2017-03-25-symantec-case-study.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,3 @@ The biggest thing we didn't do was integrate the Javadoc build completely into t
127127
On the other hand, because other doc components besides the Javadoc could only be built manually, more automation could have solved only part of the problem of keeping content up-to-date on the server. Ultimately, the decision not to automate the Javadoc made sense &mdash; there are always pain points on either side of a decision like this.
128128

129129
We also didn't realize initially that we'd have to coordinate our doxygen build, which ran over only a small subset of the code, with multiple other doxygen builds over other parts of the code tree. I wound up working with lead devs on other coding projects to coordinate main page markup and config values so that we could all get the doc builds that we needed. This work was a bit fiddly, and produced an extra round of review with every Javadoc build to make sure that the right components were all properly included.
130-
131-
{% include sign-up.html %}

0 commit comments

Comments
 (0)