Skip to content
forked from danactive/history

Your personal history storyboarded with photo and video albums. Associate photos with their meta data including geocode, caption, friends (characters)... in XML albums.

Notifications You must be signed in to change notification settings

kotaron8/history

 
 

Repository files navigation

history

Your personal history storyboarded with photo and video albums. Associate photos with their meta data including geocode, caption, friends (characters)... in XML albums.

  • Plot thumbnails on a map
  • Code runs on static web hosts
  • Includes administration tools for XML generation
  • Free & open source (dependant on other open source projects see indiviual licenses)

Demo site 0.12.2

Technologies

####Viewing

  • XML databases for photo/video galleries
  • XSLT to transform XML to HTML/CSS/JavaScript/jQuery
  • JavaScript/jQuery for the pagination & lightbox

####Administration

  • Node.js to support AJAX & image manipulation
  • AJAX to read the XML gallery data

Changelog

####0.12.0 - 2013-Jan-21 - Upgrade admin map to mapstraction

####0.11.0 - 2012-Jun-09 - Simplify webserver

####0.10.0 - 2012-May-22 - Documentation improvements

####0.9.0 - 2012-May-21 - Support multiple galleries (Major update)

  • This structure change makes it easier to seperate the history application from the personal content
  • Demo gallery moved to the gallery-demo folder
  • Album XML schema updated (1.8) to reflect folder name

####0.8.0 - 2012-May-20 - New admin page: Image manipulation to produce thumbnails 185x45 and move images to photos folder

####0.7.0 - 2012-May-07 - New admin page: edit existing albums (XML generation)

####0.6.0 - 2012-May-06 - added ability for viewing of HTML5 videos

####0.5.0 - 2012-May-06 - added Node.js for admin section

  • (Fix) Character association
  • (Add) Node.js modules Express & GraphicsMagick
  • (Add) Admin: Get getcode from map

####0.4.0 - 2012-May-03 - viewing of photos

  • Sample album with three Vancouver markers on map
  • jQuery v1.7.2
  • Mapstraction Build 2.0.18 - pre-release using Google Maps v3
  • ColorBox v1.3.19

Dependancies

Included in this project

To use the administration tools

Folder structures

  • admin/ - administration files for generating XML. Copy and paste the XML structure into the albums
  • gallery-demo/ - demonstration of a gallery with the sample album inside
  • inc/ - CSS, JS, XSLT, and images for application
  • node_modules/ - Backup of installed modules for Node.js
  • .gitignore - blacklist files/folders for GitHub
  • README.md - this file
  • index.htm - Home page when avoiding Node.js
  • video.htm - Reads a query string and generates the HTML5 video tags
  • server.js - Node.js code for creating a web host
  • webserver_node START.bat - Executes the Node.js web server for localhost viewing and administration image manipulation
  • webserver_node VIEW.url - Opens http://localhost in default browser

Photo/video album XML schemas

Current schema (1.8)

Example

<album gallery="demo"> <!-- gallery directory name excluding 'gallery-'; new in schema 1.8 -->
	<album_meta>
		<album_name>sample</album_name> <!--Filename is album_sample.xml-->
		<album_version>1.8</album_version> <!--Reference schema version-->
		<geo>
			<google_zoom>11</google_zoom> <!-- Initial zoom level when viewing Google map via Mapstraction -->
		</geo>
	</album_meta>
	<photo id="1"> <!-- id attribute must be unique for this album; used by JavaScript & for character association -->
		<filename>2001-03-21-01.jpg</filename> <!-- must start with YYYY year; photos and thumbs must be places in this folder too -->
		<geo> <!-- geocode -->
			<lat>49.25</lat> <!-- latitude -->
			<lon>-123.1</lon> <!-- longitude -->
		</geo>
		<photo_city>Vancouver, BC</photo_city> <!-- Political location name often City, Province/State -->
		<photo_loc>Granville Island</photo_loc> <!-- General location name often neighourhood or building -->
		<photo_desc>An oversized avocado</photo_desc> <!-- The photo description only viewable in the lightbox view -->
		<thumb_caption>Lunch</thumb_caption> <!-- Less than three words to descibe the thumbnail in gallery view -->
	</photo>
	<video id="4">
		<filename>2012-fireplace.mp4</filename> <!-- History supports both HTML5 video formats for best browser support; must start with YYYY year; photos and thumbs must be places in this folder too -->
		<filename>2012-fireplace.webm</filename>
		<photo_city>Vancouver, BC</photo_city>
		<photo_loc>Home</photo_loc>
		<thumb_caption>Video: Fireplace</thumb_caption>
		<photo_desc>A sample HTML5 video in both MP4 and WebM formats</photo_desc>
		<size><w>1280</w><h>720</h></size> <!-- Dimensions for opening the popup window and enlarging the HTML5 video -->
		<geo>
			<lat>49.25</lat>
			<lon>-123.1</lon>
		</geo>
	</video>
</album>

License

History is open-source and released under the BSD License.

Versioning

http://semver.org/

About

Your personal history storyboarded with photo and video albums. Associate photos with their meta data including geocode, caption, friends (characters)... in XML albums.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 88.5%
  • CSS 8.9%
  • XSLT 2.6%