https://github.com/sagemathinc/cocalc
Raw File
Tip revision: 086d99635ccc1ae0683d02be03c1382a66d390b8 authored by Harald Schilly on 09 January 2017, 19:38:30 UTC
webapp/latex/Rnw: using concordance information to map latex errors to the lines in the Rnw file
Tip revision: 086d996
AUTHORS.md
# Authors

William Stein ([wstein@sagemath.com](mailto:wstein@sagemath.com)) wrote most of SageMathCloud.  See the git history, which as of Oct 30, 2015, has 96% commits by him.  This needs to change.

Everytime the GPL licensing note refers to the _"Authors of SageMathCloud"_, the following  (maybe incomplete) list is meant.

* Keith Clawson
* Russ Hensel
* Jonathan Lee
* Andrew Ohana
* Bill Page
* Issa Rice
* Nicholas Ruhland
* Harald Schilly
* William Stein
* Christopher Swenson
* Vivek Venkatachalam
* Travis Scholl


## Git Authors

To extract the names of all Git contributors,
run this piece of Python code inside the codebase:

    from subprocess import check_output
    authors = check_output(['git', 'log', '--pretty=format:"%aN <%aE>"', 'HEAD'])
    sortkey = lambda n : n.split("<",1)[0].split()[-1].lower() if "<" in n else n
    for name in sorted(set(authors.splitlines()), key = sortkey):
        print(name)
back to top