Skip to content

Commit

Permalink
2.7.0 add exif info, styles and single album gallery view
Browse files Browse the repository at this point in the history
  • Loading branch information
garmoncheg committed Jul 22, 2011
1 parent e6b0576 commit 4c0a3f8
Show file tree
Hide file tree
Showing 12 changed files with 1,997 additions and 27 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
@@ -1,11 +1,23 @@
Changelog for Gphblog (Garmoncheg's Photo Blog)

gphblog 2.7.0 22.07.2011
==============================================================
- add date taken (from photo Exif info) to single image view
- add photo exif parser module
- add EXIF.py library for processing exif image info
(http://sourceforge.net/projects/exif-py/)
- add main style like design to albums view
- add album gallery view (to display images in album with pagination)
- add views switcher style

gphblog 2.6.0 20.07.2011
==============================================================
- add facebook like button to single image
- add google +1 button to single photo page
- add photo description to a model
- add views switcher
- add photo albums view
- added albums support (now only can be edited through admin)

gphblog 2.5.0 06.07.2011
==============================================================
Expand Down
Binary file added media/site_graphics/albums/albums_right.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 81 additions & 0 deletions media/styles/main_style.css
Expand Up @@ -191,3 +191,84 @@ div#rotation_buttons {
span.photo_rotator_title {
font-size: 1.7em;
}
/* --------------------------- Views selector styles --------------------------- */
.view_selector {
text-align: right;
font-size: 1.5em;
background: #ECF1EF;
}

.view_selector a{
color: #000000;
background: #FFEC8B;
}

.view_selector a:hover, .view_selector a:visited {
color: #8C8C8C;
}

/* --------------------------- Albums view styles --------------------------- */
div.photo_albums_list {
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
border-right: 1px solid #ccc;
border-left: 1px solid #ccc;
background: #FEF0C9;
}

div.album_title, div.album_title a, div.album_title a:hover, div.album_title a:visited {
font-size: 1.8em;
color: #000000;
}

div.album_title a:hover{
color: #8C8C8C;
}


div.album_images {
border-color: gray;
border-style: solid;
border-width: thin;
background: white;
margin: 0 auto;
}

#album_photo_thumbnail {
width: 157px;
height: 157px;
float: left;
margin: auto;
}

.albums_clearBoth { clear:both; }



/* ----- Box shadow effects ----- */

.dropshadowclass {
border: solid 1px #CCC;
-moz-box-shadow: 5px 5px 0px #999;
-webkit-box-shadow: 5px 5px 0px #999;
box-shadow: 5px 5px 0px #999;
}

.anotherboxshadowclass {
border: solid 2px #CCC;
-moz-box-shadow: 0px 2px 0px #69C;
-webkit-box-shadow: 0px 2px 0px #69C;
box-shadow: 0px 2px 0px #69C;
}

.imagedropshadow {
padding: 5px;
border: solid 1px #EFEFEF;
}

a:hover img.imagedropshadow {
border: solid 1px #CCC;
-moz-box-shadow: 1px 1px 5px #999;
-webkit-box-shadow: 1px 1px 5px #999;
box-shadow: 1px 1px 5px #999;
}
2 changes: 1 addition & 1 deletion media/styles/tagcloud.css
@@ -1,5 +1,5 @@
.tagbox {
width: 795px;
width: 790px;
background-color: #FCF8DC;
padding: 5px;
overflow: auto;
Expand Down

0 comments on commit 4c0a3f8

Please sign in to comment.