diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ac8f968 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so +*.pyc + +# Logs and databases # +###################### +*.log + +# OS generated files # +###################### +.DS_Store* +ehthumbs.db +Icon? +Thumbs.db diff --git a/README.mkd b/README.mkd index 7268f41..a9c615c 100644 --- a/README.mkd +++ b/README.mkd @@ -6,4 +6,4 @@ LightWrite is a free and open source web-based clone of [WriteRoom](http://www.h LightWrite is built on lots of open source componants, including Python, Django, jQuery, and Smoke.js. -Are there bugs or features you want for LightWrite? Get in touch! +Are there bugs or features you want for LightWrite? Get in touch! diff --git a/lightwrite/local_settings.py b/lightwrite/local_settings.py index 06e2d0f..3ee4f1c 100644 --- a/lightwrite/local_settings.py +++ b/lightwrite/local_settings.py @@ -1,6 +1,6 @@ MEDIA_ROOT = '/home/tuttle/Projects/LightWrite/static' SITE_ROOT = '/home/tuttle/Projects/LightWrite/' STATICFILES_DIRS = ( - '/home/tuttle/Projects/LightWrite/static/', + '/home/tuttle/Projects/LightWrite/static/', ) diff --git a/lightwrite/templates/light.html b/lightwrite/templates/light.html index 69a39f0..8d85900 100644 --- a/lightwrite/templates/light.html +++ b/lightwrite/templates/light.html @@ -17,7 +17,7 @@ jQuery('#logoo').attr("src", "/static/gunio2.png") }, function(){ jQuery('#logoo').attr("src", "/static/gunio.png"); - }); + }); }) var light = true; @@ -50,19 +50,19 @@ $('#footer-items').css('background-color', '#ffffff'); $('#main form div textarea#writearea').css('color', '#000000'); $('#main form div textarea#writearea').css('text-shadow', '0 0 1px #666677'); - light = true; + light = true; } - else{ + else{ $('#writearea').css('background-color', '#000000'); $('body').css('background-color', '#000000'); $('#footer').css('background-color', '#000000'); $('#footer-items').css('background-color', '#000000'); $('#main form div textarea#writearea').css('color', '#ffffff'); $('#main form div textarea#writearea').css('text-shadow', '0 0 1px #999988'); - light = false; + light = false; } - + }