diff --git a/NEWS b/NEWS index 52a19e1..de88cde 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +1.3.13: May 5, 2008 + * Instructions for enabling JavaScript, linked from various forms that + require it. + 1.3.12: May 3, 2008: * Fixed yet another diff-breaking edge case. This one had to do with inserting italicized text right before some existing italicized text. diff --git a/static/html/enable JavaScript.html b/static/html/enable JavaScript.html new file mode 100644 index 0000000..44a32b6 --- /dev/null +++ b/static/html/enable JavaScript.html @@ -0,0 +1,70 @@ +

enable JavaScript

+ +

+Luminotes requires JavaScript to be enabled in your web browser for various +site functionality to work. Here are directions for how to turn on JavaScript +support in various web browsers. It only takes a few seconds. +

+ +Firefox 2 for Windows + +
    +
  1. Click Tools on the menu at the top of your browser window.
  2. +
  3. Click Options...
  4. +
  5. Click the Content icon.
  6. +
  7. Check the Enable JavaScript option.
  8. +
  9. Click the OK button.
  10. +
  11. Return to the page that required JavaScript, and then click the reload button or press the F5 key to reload the page.
  12. +
+ +Firefox 2 for Linux + +
    +
  1. Click Edit on the menu at the top of your browser window.
  2. +
  3. Click Preferences.
  4. +
  5. Click the Content icon.
  6. +
  7. Check the Enable JavaScript option.
  8. +
  9. Click the Close button.
  10. +
  11. Return to the page that required JavaScript, and then click the reload button or press the F5 key to reload the page.
  12. +
+ +Firefox 2 for Mac + +
    +
  1. Click Firefox on the menu at the top of your browser window.
  2. +
  3. Click Preferences...
  4. +
  5. Click the Content icon.
  6. +
  7. Check the Enable JavaScript option.
  8. +
  9. Click the OK button.
  10. +
  11. Return to the page that required JavaScript, and then click the reload button or press the F5 key to reload the page.
  12. +
+ +Internet Explorer 6 + +
    +
  1. Click Tools on the menu at the top of your browser window.
  2. +
  3. Click Internet Options.
  4. +
  5. Click the Security tab.
  6. +
  7. Click the Custom Level... button.
  8. +
  9. Scroll down to the Scripting section.
  10. +
  11. Under the Active scripting heading, click Enable.
  12. +
  13. Click the OK button.
  14. +
  15. If you're prompted to confirm, click the Yes button.
  16. +
  17. Click the OK button.
  18. +
  19. Return to the page that required JavaScript, and then click the refresh button or press the F5 key to reload the page.
  20. +
+ +Internet Explorer 7 + +
    +
  1. Click the Tools button in the top right of your browser window.
  2. +
  3. Click Internet Options.
  4. +
  5. Click the Security tab.
  6. +
  7. Click the Custom level... button.
  8. +
  9. Scroll down to the Scripting section.
  10. +
  11. Under the Active scripting heading, click Enable.
  12. +
  13. Click the OK button.
  14. +
  15. If you're prompted to confirm, click the Yes button.
  16. +
  17. Click the OK button.
  18. +
  19. Return to the page that required JavaScript, and then click the refresh button or press the F5 key to reload the page.
  20. +
diff --git a/static/html/login.html b/static/html/login.html index b3495e3..3502b36 100644 --- a/static/html/login.html +++ b/static/html/login.html @@ -1,7 +1,17 @@

login

+ + +

No account yet? Want to make a wiki? You can try the demo or sign up for a free account. +

diff --git a/static/html/password reset.html b/static/html/password reset.html index 0fd9d4a..034073c 100644 --- a/static/html/password reset.html +++ b/static/html/password reset.html @@ -1,5 +1,13 @@

password reset

+ +

If you can't remember your username or password, just enter the email address you gave during sign up, and you'll receive a link to reset your password. diff --git a/static/html/sign up.html b/static/html/sign up.html index de0d15e..a54e95c 100644 --- a/static/html/sign up.html +++ b/static/html/sign up.html @@ -1,5 +1,13 @@

sign up

+ +

There's nothing to download or install.

diff --git a/tools/initdb.py b/tools/initdb.py index 157687a..40126fb 100644 --- a/tools/initdb.py +++ b/tools/initdb.py @@ -22,6 +22,7 @@ class Initializer( object ): ( u"advanced browser features.html", False ), ( u"supported browsers.html", False ), ( u"support.html", False ), + ( u"enable JavaScript.html", False ), ] def __init__( self, database, nuke = False ): diff --git a/tools/updatedb.py b/tools/updatedb.py index 23ee1da..f20626f 100755 --- a/tools/updatedb.py +++ b/tools/updatedb.py @@ -23,6 +23,7 @@ class Updater( object ): ( u"advanced browser features.html", False ), ( u"supported browsers.html", False ), ( u"support.html", False ), + ( u"enable JavaScript.html", False ), ] def __init__( self, database ):