Skip to content

Commit e1f3385

Browse files
committed
changelog support
1 parent 99825b0 commit e1f3385

File tree

3 files changed

+117
-0
lines changed

3 files changed

+117
-0
lines changed

_layouts/changelog.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
{% include head.html %}
5+
<style>
6+
body { padding-top: 0px; }
7+
.navbar-fixed-top { position: relative !important; }
8+
</style>
9+
<link href="/css/sidenav.css" rel="stylesheet">
10+
</head>
11+
<body data-spy="scroll" data-target=".sidebar"> <!-- data-offset-top="10">-->
12+
{% include nav.html %}
13+
<div class="container">
14+
<ul class="breadcrumb">
15+
<li><a href="/">Home</a> <span class="divider">/</span></li>
16+
<li><a href="/changelog.html">ChangeLog</a> <span class="divider">/</span></li>
17+
</ul>
18+
</div>
19+
<div class="container">
20+
<div class="row">
21+
<div class="span3">
22+
<div data-spy="affix" data-offset-bottom="290">
23+
<ul class="nav nav-list sidenav">
24+
<li><a href="/changelog.html"><i class="icon-chevron-right"></i> ChangeLog Home</a></li>
25+
{% for page in site.pages | sort: 'title' %}
26+
{% if page.url contains '/changelog/' %}
27+
<li>
28+
<a href="{{ page.feed_url }}"><i class="icon-chevron-right"></i> {{ page.title }}</a>
29+
{{ page.output }}
30+
</li>
31+
{% endif %}
32+
{% endfor %}
33+
</ul>
34+
</div>
35+
</div>
36+
</div>
37+
</div>
38+
{% include footer.html %}
39+
{% include js.html %}
40+
</body>
41+
</html>
42+
43+
<!--
44+
45+
all comments url
46+
https://cloud-haskell.atlassian.net/sr/jira.issueviews:searchrequest-comments-rss/temp/SearchRequest.xml?jqlQuery=&tempMax=1000
47+
48+
--!>
49+
50+

changelog.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: wiki
3+
title: Cloud Haskell Wiki
4+
wiki: Welcome
5+
---
6+
7+
### Welcome
8+
9+
Welcome to the Cloud Haskell Wiki. Navigate to specific pages using the links
10+
on the left. If you wish to edit or add to the pages in this wiki, read on.
11+
12+
### Editing
13+
14+
Editing the wiki is pretty simple. This entire website is stored in a git
15+
repository and its dynamic content rendered by github pages using [Jekyll][1].
16+
You can clone the repository [here][2]. Instructions for using jekyll are
17+
available [online][1], but in general it's just a matter of finding the right
18+
markdown file. Wiki content is all located in the wiki subfolder.
19+
20+
### Adding new content
21+
22+
New wiki pages need to have some specific fields in their [Yaml Front Matter][3].
23+
There is a makefile in the root directory which will create a wiki page for
24+
you (in the wiki directory) and populate the front matter for you. Calling the
25+
makefile is pretty easy.
26+
27+
{% highlight bash %}
28+
make wikipage NAME=<pagename>
29+
{% endhighlight %}
30+
31+
[1]: https://github.com/mojombo/jekyll
32+
[2]: https://github.com/haskell-distributed/haskell-distributed.github.com
33+
[3]: https://github.com/mojombo/jekyll/wiki/YAML-Front-Matter

changelog/dp-0.4.2.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: changelog
3+
title: distributed-process-0.4.2
4+
feed_url: https://cloud-haskell.atlassian.net/sr/jira.issueviews:searchrequest-rss/temp/SearchRequest.xml?jqlQuery=project+%3D+DP+AND+status+%3D+Closed+AND+fixVersion+%3D+0.4.2&tempMax=1000
5+
---
6+
7+
### Release Notes - distributed-process - Version 0.4.2
8+
9+
<h2> Bug
10+
</h2>
11+
<ul>
12+
<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-60'>DP-60</a>] - Fixes made for the distributed-process with strict bytestrings
13+
</li>
14+
</ul>
15+
16+
<h2> Improvement
17+
</h2>
18+
<ul>
19+
<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-61'>DP-61</a>] - Switched from Binary to cereal, allowed switching between lazy and strict ByteString, fixed some bugs
20+
</li>
21+
</ul>
22+
23+
<h2> Task
24+
</h2>
25+
<ul>
26+
<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-31'>DP-31</a>] - Messages from the &quot;main channel&quot; as a receivePort
27+
</li>
28+
<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-35'>DP-35</a>] - Add variants of exit and kill for the current process
29+
</li>
30+
<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-50'>DP-50</a>] - killing processes
31+
</li>
32+
<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-51'>DP-51</a>] - provide local versions of spawnLink and spawnMonitor
33+
</li>
34+
</ul>

0 commit comments

Comments
 (0)