-
6 |
7 | {{for student in sponsored_students}}
8 |
- {{html_quote(student['name']) | html}}, 9 | {{html_quote(student['org']) | html}}, 10 | {{html_quote(student['location']) | html}} 11 | 12 | {{endfor}} 13 | 14 |
├── .gitignore ├── publisher ├── mail │ ├── mail_authors_example.txt │ ├── mail_authors.py │ ├── templates │ │ ├── author-revision.txt.tmpl │ │ └── reviewer-invite.txt.tmpl │ ├── email.json │ ├── mail_reviewers.py │ └── _mailer.py ├── _static │ ├── status.sty │ ├── google_analytics.js │ ├── scipy-proc.css │ ├── proc_links.js │ ├── scipy.sty │ ├── institutions.json │ ├── common.css │ └── screen.css ├── _templates │ ├── proceedings.bib.tmpl │ ├── students.html.tmpl │ ├── organization.html.tmpl │ ├── article.bib.tmpl │ ├── students.tex.tmpl │ ├── organization.tex.tmpl │ ├── toc.tex.tmpl │ ├── copyright.tex.tmpl │ ├── title.tex.tmpl │ ├── index.html.tmpl │ ├── proceedings.tex.tmpl │ ├── article.html.tmpl │ ├── header.html.tmpl │ └── cover.svg ├── writer │ ├── sphinx_highlight.py │ ├── code_block.py │ ├── rstmath.py │ └── __init__.py ├── tempita │ ├── compat3.py │ ├── _looper.py │ └── __init__.py ├── options.py ├── conf.py ├── Makefile ├── build_html.py ├── build_papers.py ├── build_template.py └── build_paper.py ├── papers └── 00_vanderwalt │ ├── figure1.png │ └── 00_vanderwalt.rst ├── make_paper.sh ├── reviews ├── README ├── submission-template.rst ├── invite-abstract-reviews.rst ├── invite-paper-reviews.rst └── review-template.rst ├── README.txt ├── LICENSE.txt └── scipy_proc.json /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | _build 3 | *.pyc 4 | *~ 5 | -------------------------------------------------------------------------------- /publisher/mail/mail_authors_example.txt: -------------------------------------------------------------------------------- 1 | ./mail_authors.py --template author-revision.txt 2 | -------------------------------------------------------------------------------- /publisher/_static/status.sty: -------------------------------------------------------------------------------- 1 | % DRAFT ?? 2 | \usepackage{draftwatermark} 3 | \SetWatermarkLightness{0.9} 4 | -------------------------------------------------------------------------------- /papers/00_vanderwalt/figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings/master/papers/00_vanderwalt/figure1.png -------------------------------------------------------------------------------- /publisher/_templates/proceedings.bib.tmpl: -------------------------------------------------------------------------------- 1 | @Proceedings{ {{proceedings['citation_key']}}, 2 | title = { {{proceedings['title']['full']}} }, 3 | booktitle = { {{proceedings['title']['full']}} }, 4 | year = { {{proceedings['year']}} }, 5 | editor = { {{' and '.join(proceedings['editor'])}} }, 6 | isbn = { {{proceedings['isbn']}} } 7 | } 8 | -------------------------------------------------------------------------------- /publisher/mail/mail_authors.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import _mailer as mailer 4 | 5 | args = mailer.parse_args() 6 | config = mailer.load_config('email.json') 7 | 8 | for author in config['authors']: 9 | to = mailer.email_addr_from(author) 10 | mailer.send_template(config['sender'], to, args.template, config) 11 | 12 | print "Mail for %d authors." % len(config['authors']) 13 | -------------------------------------------------------------------------------- /make_paper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | DIR=$1 4 | 5 | if [[ ! -d $DIR ]]; then 6 | echo "Usage: make_paper.sh source_dir" 7 | exit -1 8 | fi 9 | 10 | python publisher/build_paper.py $DIR 11 | if [ "$?" -ne "0" ]; then 12 | echo "Error building paper $DIR. Aborting." 13 | exit 1 14 | fi 15 | 16 | #cd $OUTDIR 17 | #$TEX2PDF > /dev/null && $TEX2PDF | (python $WD/publisher/page_count.py) 18 | -------------------------------------------------------------------------------- /publisher/_templates/students.html.tmpl: -------------------------------------------------------------------------------- 1 |