Skip to content

Commit

Permalink
initial import from the files used in 2013 flock booklet
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlerch committed Aug 2, 2015
1 parent 18a585d commit 4cff791
Show file tree
Hide file tree
Showing 29 changed files with 59,505 additions and 0 deletions.
25 changes: 25 additions & 0 deletions generatepdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

mkdir pdf;
pushd pages/;
counter=0;
pagelist=""
for i in $(cat ../pageorder);
do
((counter++));
echo $counter;
cp $i.svg $i.tmp.svg;
rpl "mypagenumber" "$counter" $i.tmp.svg;
inkscape --export-pdf=../pdf/$i.pdf $i.tmp.svg;
pagelist=$pagelist" "$i.pdf;
rm -rf $i.tmp.svg;
done;
echo $pagelist;
popd;
pushd pdf/;
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=flock-booklet-individual-pages.pdf $pagelist;
mv flock-booklet-individual-pages.pdf ../;
popd;
rm -rf pdf/;
podofoimpose flock-booklet-individual-pages.pdf flock-booklet-merged-pages.pdf plan.plan

28 changes: 28 additions & 0 deletions pageorder
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
title
welcome
online
help
codeofconduct
eveningevents
extrainfo
regionalmap
detailmap
roomplan2
roomplan
friday1
friday2
friday3
fullpagead
saturday1
saturday2
saturday3
saturday4
sunday1
sunday2
sunday3
sponsors
notes
notes
notes
notes
backpage
148 changes: 148 additions & 0 deletions pages/backpage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4cff791

Please sign in to comment.