- Fixes the french translation

- Css Style changed
This commit is contained in:
Paul Schneider
2014-10-29 11:29:03 +01:00
parent a2b1d6bb4e
commit b4fefbce7e
12 changed files with 104 additions and 131 deletions

View File

@ -1,10 +1,10 @@
CONFIG=Release
VERSION=1.1
CONFIG=Debug
DESTDIR=build/web/$(CONFIG)
COPYUNCHANGED="false"
all: build deploy
all: deploy
ddir:
mkdir -p $(DESTDIR)
@ -12,6 +12,7 @@ ddir:
deploy: ddir build
xbuild /p:Configuration=$(CONFIG) /p:SkipCopyUnchangedFiles=$(COPYUNCHANGED) /p:DeployDir=../$(DESTDIR) /t:Deploy web/Web.csproj
rm -rf $(DESTDIR)/obj
mv $(DESTDIR)/Web.config $(DESTDIR)/Web.config.new
rsync: rsync-preprod rsync-local
@ -29,5 +30,8 @@ rsync-local:
rsync -ravu build/web/$(CONFIG)/ root@localhost:/srv/www/yavsc
sourcepkg:
git archive --format=tar --prefix=yavsc-1.1/ 1.1 | bzip2 > yavsc-1.1.tar.bz2
git archive --format=tar --prefix=yavsc-$(CONFIG)/ $(CONFIG) | bzip2 > yavsc-$(CONFIG).tar.bz2
debug: build
(cd web; export MONO_OPTIONS=--debug; xsp4 --port 8080)