witten
/
luminotes
Archived
1
0
Fork 0

Added USB drive support.

This commit is contained in:
Dan Helfman 2008-08-27 13:02:11 -07:00
parent 71c274c24c
commit 95848b752d
5 changed files with 40 additions and 0 deletions

View File

@ -47,6 +47,15 @@ This will run the local Luminotes web server and automatically launch a web
browser so you can use Luminotes. You don't need to create an account or browser so you can use Luminotes. You don't need to create an account or
login. Just start creating a wiki. login. Just start creating a wiki.
In case you're curious, your notes are stored in the ~/.luminotes directory.
If you'd like to run Luminotes from a USB drive, manually copy the entire
Luminotes directory to a USB drive. Then, run usb_luminotes.sh from the USB
drive. Your Luminotes data will be stored on the USB drive instead of on the
computer itself:
tools/usb_luminotes.sh
If you're only interested in Luminotes Desktop, you can stop reading here. The If you're only interested in Luminotes Desktop, you can stop reading here. The
rest of this document describes Luminotes Server. rest of this document describes Luminotes Server.

2
NEWS
View File

@ -2,6 +2,8 @@
* Completed the Luminotes Desktop Windows installer. * Completed the Luminotes Desktop Windows installer.
* Improved logging, so tracebacks in production and desktop mode actually go * Improved logging, so tracebacks in production and desktop mode actually go
to a file. Also removed logs on startup to prevent endless log growth. to a file. Also removed logs on startup to prevent endless log growth.
* Added a usb_luminotes.bat Windows batch file and a usb_luminotes.sh shell
file to run Luminotes from a USB drive.
* Moved "files" directory into ~/.luminotes or %APPDATA%\Luminotes. * Moved "files" directory into ~/.luminotes or %APPDATA%\Luminotes.
* NOTE: After upgrading to this release, you must move your Luminotes * NOTE: After upgrading to this release, you must move your Luminotes
"files" directory into ~/.luminotes/ or you will not be able to access "files" directory into ~/.luminotes/ or you will not be able to access

24
README
View File

@ -3,13 +3,33 @@ ideas. For more information, see:
http://luminotes.com/ http://luminotes.com/
Windows XP
----------
To start Luminotes Desktop on Windows XP, just click the Start button, click To start Luminotes Desktop on Windows XP, just click the Start button, click
on "All Programs", and then click on "Luminotes". If you see a Windows on "All Programs", and then click on "Luminotes". If you see a Windows
Security Alert about blocking Luminotes, click the "Unblock" button. Security Alert about blocking Luminotes, click the "Unblock" button.
In case you're curious, your notes and attached files are stored within the
%APPDATA%\Luminotes folder in a database file.
If you'd like to run Luminotes from a USB drive, install Luminotes Desktop and
then manually copy the whole \Program Files\Luminotes folder to a USB drive.
Then, run usb_luminotes.bat from the USB drive. Your Luminotes data will be
stored on the USB drive instead of on the computer itself.
Linux / Mac OS X / BSD
----------------------
To start Lumintoes Desktop or Server on Linux or Mac OS X, please see the To start Lumintoes Desktop or Server on Linux or Mac OS X, please see the
INSTALL file. INSTALL file.
User Guide
----------
The Luminotes User Guide explains how to use Luminotes and even includes some The Luminotes User Guide explains how to use Luminotes and even includes some
tips on creating your wiki. You can check it out at: tips on creating your wiki. You can check it out at:
@ -17,6 +37,10 @@ tips on creating your wiki. You can check it out at:
Enjoy! Enjoy!
Copyright
---------
Luminotes Copyright (C) 2007-2008 Dan Helfman Luminotes Copyright (C) 2007-2008 Dan Helfman
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify

View File

@ -241,6 +241,7 @@ data_files = [
( "", [ "README%s" % txt_extension, ] ), ( "", [ "README%s" % txt_extension, ] ),
( "", [ "COPYING%s" % txt_extension, ] ), ( "", [ "COPYING%s" % txt_extension, ] ),
( "", [ "luminotes.db", ] ), ( "", [ "luminotes.db", ] ),
( "", [ "tools/usb_luminotes.bat" ] ),
( "static/css", files( "static/css/*.*" ) ), ( "static/css", files( "static/css/*.*" ) ),
( "static/html", files( "static/html/*.*" ) ), ( "static/html", files( "static/html/*.*" ) ),
( "static/images", files( "static/images/*.*", excludes = [ ( "static/images", files( "static/images/*.*", excludes = [

4
tools/usb_luminotes.bat Normal file
View File

@ -0,0 +1,4 @@
@echo off
set APPDATA=.
luminotes.exe -l