add authors list
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
c1a50cc697
commit
52d0b14233
14
Makefile
14
Makefile
|
@ -8,9 +8,19 @@ push: output luadoc changelogs
|
|||
rsync -Pavz --exclude src html/ awesome.naquadah.org:/var/www/awesome.naquadah.org/
|
||||
rsync -Pavz src/build/luadoc/ awesome.naquadah.org:/var/www/awesome.naquadah.org/apidoc
|
||||
|
||||
output:
|
||||
output: authors.mdwn
|
||||
$(IKIWIKI) $(CURDIR) html -v --wikiname about --plugin=goodstuff --templatedir=templates \
|
||||
--exclude=html --exclude=Makefile --rss --url http://awesome.naquadah.org
|
||||
|
||||
authors.mdwn:
|
||||
echo '## Primary' > authors.mdwn
|
||||
echo '<pre>' >> authors.mdwn
|
||||
git --git-dir=src/.git shortlog -n -s | head -n 10 | column -x -c 80 >> authors.mdwn
|
||||
echo '</pre>' >> authors.mdwn
|
||||
echo '## Contributors' >> authors.mdwn
|
||||
echo '<pre>' >> authors.mdwn
|
||||
git --git-dir=src/.git shortlog -n -s | tail -n +11 | column -x -c 80 >> authors.mdwn
|
||||
echo '</pre>' >> authors.mdwn
|
||||
luadoc:
|
||||
make -C src build cmake all
|
||||
|
||||
|
@ -25,3 +35,5 @@ changelogs:
|
|||
git --git-dir=src/.git shortlog $$pv..$$v > html/changelogs/short/$$v ; \
|
||||
git --git-dir=src/.git log $$pv..$$v > html/changelogs/$$v ; \
|
||||
pv=$$v; done)
|
||||
|
||||
.PHONY: authors.mdwn changelogs
|
||||
|
|
|
@ -20,6 +20,9 @@ You can join us on channel `#awesome` on the [`OFTC`](http://www.oftc.net) IRC n
|
|||
|
||||
There's also a [wiki](/wiki/) you are free to use and modify.
|
||||
|
||||
# Authors
|
||||
[[!inline pages="authors" raw="yes" rss="no"]]
|
||||
|
||||
# Development statistics
|
||||
|
||||
<div align="center">
|
||||
|
|
Loading…
Reference in New Issue