aboutsummaryrefslogtreecommitdiff
path: root/TexServer.wiki
blob: 76e5d62c735b061c369cd7915ea9d08cbad2ae17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
= TexServer =

This is an idea for an easy way to display TeX files. The basic idea
is that TeX files are served, and built on demand. If you build this,
please tell me.

`GET list/`
lists available document

	Implemented as regular directory listing from file server
	Just list the repos.

`GET doc/name`
Returns the given document, builds it if not already there.

In every repo, put an index.cgi, which should do:
{{{sh
	$ git fetch --all
	$ git checkout <branch>
	$ latexmk
	$ return <doc>.pdf 
}}}