Changeset 7337
- Timestamp:
- Oct 22, 2010, 10:03:09 AM (14 years ago)
- Location:
- extensions/gally
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/gally/gally-cuise/admin/maintain.inc.php
r6471 r7337 1 1 <?php 2 3 include_once(PHPWG_THEMES_PATH.'gally-default/admin/Conf.class.inc.php'); 4 2 5 3 6 function theme_activate($id, $version, &$errors) 4 7 { 5 8 $config = new Conf(); 9 $config->setFileName(PHPWG_ROOT_PATH."local/themes/gally-cuise/conf/local.conf"); 10 $config->read(false); 11 $config->setConf(array('menuAnimated'=>'fade'), false); 12 $config->write(); 6 13 } 7 14 -
extensions/gally/gally-default/admin/GallyDefault.class.inc.php
r6752 r7337 52 52 $this->setDirectoryPrivate('templates.local', $templateDirectory); 53 53 54 54 55 $this->setDirectoryPrivate('conf.parent', dirname(dirname(__FILE__)).'/conf'); 55 56 $this->setDirectoryPrivate('conf.local', $confDirectory); … … 89 90 $this->config = new Conf(); 90 91 $this->config->setFileName($this->directories['conf.parent']."/default.conf"); 92 $this->config->read(); 93 $this->config->setFileName($this->directories['conf.local']."/default.conf"); 91 94 $this->config->read(); 92 95 $this->config->setFileName(PHPWG_ROOT_PATH."local/themes/".basename(dirname($this->directories['conf.local']))."/conf/local.conf"); -
extensions/gally/gally-default/js/gallyjs-tpp.js
r6956 r7337 4 4 ------------------------------------------------------------------------------ 5 5 file: gally/gallyjs-tpp.js 6 file release: 1. 2.06 file release: 1.3.4 7 7 ------------------------------------------------------------------------------ 8 8 author: grum at grum.dnsalias.com … … 157 157 $(window).resize( function () { initializeImageMode("resize"); } ); 158 158 159 $(document).data("initialized", 1) ;159 $(document).data("initialized", 1).trigger('gallyInterfaceReady'); 160 160 } 161 161 … … 214 214 deadArea = $("#navThumbPrev").attr("clientWidth")*1.2; 215 215 mouse=Math.max(Math.min(event.clientX-this.offsetLeft, this.clientWidth - deadArea), deadArea); 216 $("#theImg").css("left",Math.round(($("#theImg").attr("scrollWidth")-this.clientWidth) * -(mouse-deadArea)/(this.clientWidth-2*deadArea))+"px"); 216 $("#theImg") 217 .css("left",Math.round(($("#theImg").attr("scrollWidth")-this.clientWidth) * -(mouse-deadArea)/(this.clientWidth-2*deadArea))+"px") 218 .trigger('scrolled'); 217 219 } 218 220 ); -
extensions/gally/gally-default/release_notes.txt
r7329 r7337 107 107 | 1.3.5 | 2010-10-21 | * add IT and DE languages 108 108 | | | 109 | | | 110 | | | 109 | | | * mantis bug:1948 110 | | | . default conf file is not the right conf file 111 111 | | | 112 112 | | | -
extensions/gally/gally-graphite/admin/maintain.inc.php
r6109 r7337 1 1 <?php 2 3 include_once(PHPWG_THEMES_PATH.'gally-default/admin/Conf.class.inc.php'); 2 4 3 5 function theme_activate($id, $version, &$errors) 4 6 { 5 7 $config = new Conf(); 8 $config->setFileName(PHPWG_ROOT_PATH."local/themes/gally-graphite/conf/local.conf"); 9 $config->read(false); 10 $config->setConf(array('menuAnimated'=>'none'), false); 11 $config->write(); 6 12 } 7 13 -
extensions/gally/gally-graphite/themeconf.inc.php
r6109 r7337 2 2 /* 3 3 Theme Name: Gally/Graphite 4 Version: 1.3. 04 Version: 1.3.5 5 5 Description: Grey theme 6 6 Theme URI: http://piwigo.org/ext/extension_view.php?eid=381 … … 10 10 11 11 $themeconf = array( 12 'name' => 'gally-graphite', 12 13 'theme' => 'gally-graphite', 13 14 'parent' => 'gally-default', -
extensions/gally/gally-grum-dark-II/admin/maintain.inc.php
r6109 r7337 1 1 <?php 2 3 include_once(PHPWG_THEMES_PATH.'gally-default/admin/Conf.class.inc.php'); 4 2 5 3 6 function theme_activate($id, $version, &$errors) 4 7 { 5 8 $config = new Conf(); 9 $config->setFileName(PHPWG_ROOT_PATH."local/themes/gally-grum-dark-II/conf/local.conf"); 10 $config->read(false); 11 $config->setConf(array('menuAnimated'=>'fade'), false); 12 $config->write(); 6 13 } 7 14 -
extensions/gally/gally-grum-dark-II/themeconf.inc.php
r6109 r7337 2 2 /* 3 3 Theme Name: Gally/Grum dark II 4 Version: 1.3. 04 Version: 1.3.5 5 5 Description: Dark theme 6 6 Theme URI: http://piwigo.org/ext/extension_view.php?eid=371 … … 10 10 11 11 $themeconf = array( 12 'name' => 'gally-grum-dark-II', 12 13 'theme' => 'gally-grum-dark-II', 13 14 'parent' => 'gally-default', -
extensions/gally/gally-lapis-lazuli/themeconf.inc.php
r6109 r7337 2 2 /* 3 3 Theme Name: Gally/Lapis-lazuli 4 Version: 1.3. 04 Version: 1.3.5 5 5 Description: Blue theme 6 6 Theme URI: http://piwigo.org/ext/extension_view.php?eid=380 … … 12 12 13 13 $themeconf = array( 14 'name' => 'gally-lapis-lazuli', 14 15 'theme' => 'gally-lapis-lazuli', 15 16 'parent' => 'gally-default',
Note: See TracChangeset
for help on using the changeset viewer.