Merge branch 'master' of github.com:diaspora/diaspora

This commit is contained in:
danielvincent 2010-10-05 16:28:21 -07:00
commit 8d2cc724b0
17 changed files with 7 additions and 3 deletions

0
public/javascripts/fancybox/jquery.easing-1.3.pack.js Executable file → Normal file
View file

0
public/javascripts/fancybox/jquery.fancybox-1.3.1.css Executable file → Normal file
View file

0
public/javascripts/fancybox/jquery.fancybox-1.3.1.js Executable file → Normal file
View file

View file

View file

0
public/javascripts/fileuploader.js Executable file → Normal file
View file

0
public/javascripts/jquery.cycle/jquery.cycle.lite.min.js vendored Executable file → Normal file
View file

0
public/javascripts/jquery.infieldlabel.js Executable file → Normal file
View file

0
public/javascripts/web_socket.js Executable file → Normal file
View file

0
public/stylesheets/blueprint/src/grid.css Executable file → Normal file
View file

0
public/stylesheets/blueprint/src/print.css Executable file → Normal file
View file

0
public/stylesheets/blueprint/src/reset.css Executable file → Normal file
View file

View file

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

0
public/stylesheets/brandongrotesque_light/demo.html Executable file → Normal file
View file

View file

0
public/stylesheets/fileuploader.css Executable file → Normal file
View file

View file

@ -7,9 +7,13 @@ then
echo "Mongod not started"
else
mkdir -p -v log/thin/
#force AGPL
tar cf ../_source.tar -X .gitignore *
mv ../_source.tar public/source.tar
#force AGPL
test -w public -a ! -e public/source.tar &&
tar cf public/source.tar --exclude='source.tar' -X .gitignore *
test -e public/source.tar || {
echo "Can't find, or even create, public/source.tar. Giving up"
exit 2
}
bundle exec ruby ./script/websocket_server.rb&
bundle exec thin start $@
fi