Move server into its own subdirectory. Preparing for repo merges.

This commit is contained in:
Tony Garnock-Jones 2012-05-10 16:46:59 -04:00
parent e094c17f73
commit 36edc2dc1a
299 changed files with 12 additions and 12 deletions

10
.gitignore vendored
View File

@ -1,11 +1 @@
scratch/
_build/
*.native
message.ml
amqp_spec.ml
thirdparty/_dist
thirdparty/lwt-2.3.2/setup.data
thirdparty/lwt-2.3.2/setup.log
thirdparty/lwt-2.3.2/src/unix/lwt_config.h
thirdparty/lwt-2.3.2/src/unix/lwt_config.ml

10
server/.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
_build/
*.native
message.ml
amqp_spec.ml
thirdparty/_dist
thirdparty/lwt-2.3.2/setup.data
thirdparty/lwt-2.3.2/setup.log
thirdparty/lwt-2.3.2/src/unix/lwt_config.h
thirdparty/lwt-2.3.2/src/unix/lwt_config.ml

View File

@ -32,7 +32,7 @@ web/bootstrap/css/bootstrap.css: web/bootstrap/less/*.less
web/%.html: web/bootstrap/templates/%.xml web/bootstrap/template.xsl web/bootstrap/nav.xml
xsltproc web/bootstrap/template.xsl $< > $@
message.ml: messages.json codegen.py
message.ml: ../protocol/messages.json codegen.py
python codegen.py > $@
amqp_spec.ml: amqp0-9-1.stripped.xml amqp_codegen.py

View File

View File

View File

@ -39,7 +39,7 @@ class MessageType:
def format_args(self, template, separator = ', '):
return separator.join([template % (x,) for x in self.argnames])
with file("messages.json") as f:
with file("../protocol/messages.json") as f:
raw_spec = json.load(f)
copyright_stmt = '(* %s *)' % (raw_spec['copyright'])

Some files were not shown because too many files have changed in this diff Show More