photomix/README

61 lines
1.6 KiB
Plaintext
Raw Normal View History

2009-06-09 00:39:36 +02:00
== Welcome to the gallery without a name
2009-05-22 14:13:46 +02:00
2009-06-02 00:08:57 +02:00
Made by Espen Antonsen
2009-05-22 14:13:46 +02:00
2009-06-09 00:39:36 +02:00
== Features
* Stores photos to disk in folders
* Create various thumbnails
* Read and writes EXIF
* Organize in albums (events in iPhoto)
* Combine albums in collections (albums in iPhoto)
* Upload multiple photos
2009-06-09 00:39:36 +02:00
* Tag photos. Can also tag albums (actually all photos in album is tagged)
* User management with roles and permissions.
2009-06-02 00:08:57 +02:00
== Requirements
2009-05-22 14:13:46 +02:00
Rails 2.3
2009-06-03 01:33:39 +02:00
2009-06-02 00:08:57 +02:00
Software
2009-06-03 01:33:39 +02:00
- FreeImage (required for Image_Science)
2009-06-02 00:08:57 +02:00
- ExifTool (required for Mini_EfixTool)
2009-05-22 14:13:46 +02:00
2009-06-02 00:08:57 +02:00
Ruby Gems
- AuthLogic
- Mime-Types
- Image_Science
- RubyInline (required for Image_Science)
2009-06-09 00:39:36 +02:00
- Mini_ExifTool
== Installation
2009-07-06 15:49:03 +02:00
1. git clone git://gitorious.org/gallery-without-a-name/gallery-without-a-name.git
2. install required software listed above
3. create folders for photos outside rails project:
photos/originals
photos/thumbs
4. Web-server must have write access to the photos folders
5. Link up the photo folders
ln -s photos/originals gallery/public/files
ln -s photos/thumbs gallery/public/thumbs
6. Start up the project with your preferred web-server
=== Optinal: add photos directly to disk
The gallery has a web-based upload tool using Flash. Alternatively you can upload files directly by doing this:
2009-06-09 00:39:36 +02:00
Put photos in containing folders(albums) in the specified gallery folder. This format is recommended:
./ski weekend in hemsedal/snow.jpg
./ski weekend in hemsedal/afterski.jpg
./trip to iran/beautiful girls in tehran.jpg
./trip to iran/mosque in yazd.jpg
./trip to iran/powder snow in dizin.jpg
2009-06-09 00:50:25 +02:00
Every time you manually add photos to disk you must run:
require "scan"
ScanFiles.FullScan
2009-07-06 15:49:03 +02:00
In future releases the scan will be automated.