## Config file for a simple gallery
## Released to the public domain
## Ian Wienand (ianw@ieee.org)
## http://www.wienand.org

class Config:
    # list photos here.  Each photo should be an 
    # element in a list consiting of
    # ( filename, alt tag description, short photo description )
    photos = (
        ("testimages/image1.jpg", "alt 1", "descr 1"),
        ("testimages/image2.jpg", "alt 2", "descr 2"),
        ("testimages/image3.jpg", "alt 3", "descr 3"),
        ("testimages/image4.jpg", "alt 4", "descr 4"),
        ("testimages/image5.jpg", "alt 5", "descr 5"),
        ("testimages/image6.jpg", "alt 6", "descr 6"),
        ("testimages/image7.jpg", "alt 7", "descr 7"),
        )

    # misc information -- all values must be 
    # present
    stylesheet = "gallery.css"
    title = "a test gallery"
    page_title = "website name - " + title
    extra_text = "extra text"
    photographer = "name"
    date = "date"
    location = "location"
	
    # the maximum sizes for thumbnails.
    # images will be proportionally scaled to this
    thumbnail_x = 128
    thumbnail_y = 128
    # same for gallery photos
    constrain_x = 640
    constrain_y = 480

    # number of columns in the thumbnail menu
    menu_column_limit = 4

