1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/themes/3nids_theme
Bharat Mediratta 139437eb73 Merge branch 'master' of git://github.com/3nids/gallery3-contrib
Conflicts:
	themes/3nids_theme/3nids/css/jquery.fancybox.css
	themes/3nids_theme/README
	themes/3nids_theme/modules/tagsmap/css/tagsmap.css
	themes/3nids_theme/modules/theme_3nids/helpers/theme_3nids_theme.php
2009-11-14 22:46:46 -08:00
..
3nids Merge branch 'master' of git://github.com/3nids/gallery3-contrib 2009-11-14 22:46:46 -08:00
modules Merge branch 'master' of git://github.com/3nids/gallery3-contrib 2009-11-14 22:46:46 -08:00
last_commit.txt Admin config for item title 2009-11-10 08:39:03 +01:00
README Added adim configuration for item description and image size. 2009-10-27 11:31:41 +01:00

This is a theme for gallery3.
It uses jquery lightbox slideshow (fancybox) to display images, and includes a tagsmap module (originally from rWatcher).

*********
Demo @ http://gallery.3nids.ch	

*********
Requirements:
- Gallery 3 last experimental version @ http://github.com/gallery/gallery3 
- Tag module activated (if want to use tagsmap)
- theme_3nids module must be activated to display properly the theme.

*********
Installation:

1. Copy the theme folder (3nids) into gallery3/themes directory.
2. Copy modules folder into gallery3 directory. It includes tagsmap and theme_3nids modules.
3. Activate tagsmap and theme_3nids module.
	
*********
Configuration:
Go to admin -> content -> Theme 3nids settings to configure the theme properly.

*********
Use:
This theme displays full size images. So be carefull to upload not too large images!
The theme uses the tagsmap module which has been enhanced. 

For advanced users:
If you want to separate geotag from others, name those with the "map." prefix., the "map." prefix will not be displayed on the map.
If you want to remove the prefix in the tag cloud sidebar, wou will have to update in gallery3/modules/tag/helpers/tag.php the popular_tags function:
  static function popular_tags($count) {
    return ORM::factory("tag")
      ->orderby("count", "DESC")
      ->notregex("name","map\.")
     ->limit($count)
      ->find_all();
  }