From 49833a6c031debe6fec7b9fb29cf2166d1ba9626 Mon Sep 17 00:00:00 2001 From: ryoon Date: Thu, 3 Jan 2013 13:49:43 +0000 Subject: Import php54-piwigo-2.4.6 as www/php-piwigo. Piwigo is photo gallery software for the web, built by an active community of users and developers. --- www/php-piwigo/DESCR | 2 + www/php-piwigo/INSTALL | 14 + www/php-piwigo/MESSAGE | 72 ++ www/php-piwigo/Makefile | 54 ++ www/php-piwigo/PLIST | 2289 +++++++++++++++++++++++++++++++++++++++++++++++ www/php-piwigo/distinfo | 5 + 6 files changed, 2436 insertions(+) create mode 100644 www/php-piwigo/DESCR create mode 100644 www/php-piwigo/INSTALL create mode 100644 www/php-piwigo/MESSAGE create mode 100644 www/php-piwigo/Makefile create mode 100644 www/php-piwigo/PLIST create mode 100644 www/php-piwigo/distinfo (limited to 'www/php-piwigo') diff --git a/www/php-piwigo/DESCR b/www/php-piwigo/DESCR new file mode 100644 index 00000000000..51169ca49e7 --- /dev/null +++ b/www/php-piwigo/DESCR @@ -0,0 +1,2 @@ +Piwigo is photo gallery software for the web, built by an active +community of users and developers. diff --git a/www/php-piwigo/INSTALL b/www/php-piwigo/INSTALL new file mode 100644 index 00000000000..85284b1295f --- /dev/null +++ b/www/php-piwigo/INSTALL @@ -0,0 +1,14 @@ +#!@SH@ +# +# $NetBSD: INSTALL,v 1.1 2013/01/03 13:49:43 ryoon Exp $ + +WWWGRP="@WWWGRP@" +WWWOWN="@WWWOWN@" +PW_DIR="@PREFIX@/@PW_DIR@" + +case "${STAGE}" in +POST-INSTALL) + ${CHOWN} -R ${WWWOWN} ${PW_DIR} && + ${CHGRP} -R ${WWWGRP} ${PW_DIR} + ;; +esac diff --git a/www/php-piwigo/MESSAGE b/www/php-piwigo/MESSAGE new file mode 100644 index 00000000000..9832257d50a --- /dev/null +++ b/www/php-piwigo/MESSAGE @@ -0,0 +1,72 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2013/01/03 13:49:43 ryoon Exp $ + +To use concrete5 with Apache 2.4, you will need to perform the following steps. + +1. Install www/apache24 and www/ap-php + +2. Setup PHP. At least, ${PREFIX}/etc/php.ini should have date.timezone line. + If your machine are located in Tokyo, Japan, you should get the following. + + # cat ${PREFIX}/etc/php.ini | grep date.timezone + date.timezone ="Asia/Tokyo" + +2. Install MySQL database server. + + # cd databases/mysql51-server + # make install + +3. Start MySQL server, and setup MySQL server + + # ${RCD_SCRIPTS_DIR}/mysqld start + And see messages. + +4. Add MySQL user, piwigo + + $ mysql -u root -p + Enter password: YOUR_MYSQL_ROOT_PASSWORD + > create user piwigo identified by 'piwigo_password'; + > quit + +6. Create database for concrete5 + + $ mysql -u root -p + Enter password: YOUR_MYSQL_ROOT_PASSWORD + > create database piwigo_db; + > grant SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER + on piwigo_db.* to piwigo@localhost identified by 'piwigo_password'; + > quit + +7. Be sure to have the following lines in ${PREFIX}/etc/php.ini. + + extension=gd.so + extension=exif.so + extension=mysql.so + +8. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf + + DocumentRoot "${PREFIX}/share/piwigo" + LoadModule php5_module lib/httpd/mod_php5.so + AddType application/x-httpd-php .php + + DirectoryIndex index.php + Options All + Allow from All + AllowOverride All + Require all granted + + +9. Start Apache httpd 2.2 + # ${RCD_SCRIPTS_DIR}/apache start + +10. Access http://localhost/index.php + And setup with the following information. + + database name: piwigo_db + user name: piwigo + password: piwigo_password + +XXX Your authentication information is stored with permission allows to +XXX read, write by others. Do not share it with another service, +XXX for example, login of terminal and so on. +=========================================================================== diff --git a/www/php-piwigo/Makefile b/www/php-piwigo/Makefile new file mode 100644 index 00000000000..ed947cb82b7 --- /dev/null +++ b/www/php-piwigo/Makefile @@ -0,0 +1,54 @@ +# $NetBSD: Makefile,v 1.1 2013/01/03 13:49:43 ryoon Exp $ +# + +PWVER= 2.4.6 +DISTNAME= piwigo-${PWVER} +PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} +CATEGORIES= www +MASTER_SITES= -http://piwigo.org/download/dlcounter.php?code=${PWVER} +EXTRACT_SUFX= .zip + +MAINTAINER= ryoon@NetBSD.org +HOMEPAGE= http://piwigo.org/ +COMMENT= Piwigo is photo gallery software for the web +LICENSE= gnu-gpl-v2 + +DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd +DEPENDS+= ${PHP_PKG_PREFIX}-exif>=5.2.0:../../graphics/php-exif +DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=5.2.0:../../databases/php-mysql + + +WRKSRC= ${WRKDIR}/piwigo +USE_LANGUAGES= # none + +NO_BUILD= yes +USE_TOOLS+= pax + +PW_DIR= share/piwigo +INSTALLATION_DIRS= ${PW_DIR} ${PW_DIR}/upload + +.include "../../mk/bsd.prefs.mk" + +APACHE_USER?= www +APACHE_GROUP?= www +PKG_GROUPS= ${APACHE_GROUP} +PKG_USERS= ${APACHE_USER}:${APACHE_GROUP} + +PKG_USERS_VARS= APACHE_USER +PKG_GROUPS_VARS= APACHE_GROUP + +BUILD_DEFS+= APACHE_GROUP APACHE_USER +FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \ + PW_DIR=${PW_DIR} + +post-extract: + cd ${WRKSRC} && ${FIND} ${WRKSRC} -type f -exec ${CHMOD} -x {} \; + +do-install: + cd ${WRKSRC} && ${FIND} . -type f \! -name '*.orig' -print | \ + pax -rw ${DESTDIR}${PREFIX}/${PW_DIR} + + touch ${DESTDIR}${PREFIX}/${PW_DIR}/upload/.empty + +.include "../../lang/php/phpversion.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/www/php-piwigo/PLIST b/www/php-piwigo/PLIST new file mode 100644 index 00000000000..8da24578b2f --- /dev/null +++ b/www/php-piwigo/PLIST @@ -0,0 +1,2289 @@ +@comment $NetBSD: PLIST,v 1.1 2013/01/03 13:49:43 ryoon Exp $ +share/piwigo/_data/dummy.txt +share/piwigo/about.php +share/piwigo/action.php +share/piwigo/admin.php +share/piwigo/admin/album.php +share/piwigo/admin/album_notification.php +share/piwigo/admin/batch_manager.php +share/piwigo/admin/batch_manager_global.php +share/piwigo/admin/batch_manager_unit.php +share/piwigo/admin/cat_list.php +share/piwigo/admin/cat_modify.php +share/piwigo/admin/cat_move.php +share/piwigo/admin/cat_options.php +share/piwigo/admin/cat_perm.php +share/piwigo/admin/comments.php +share/piwigo/admin/configuration.php +share/piwigo/admin/element_set_ranks.php +share/piwigo/admin/extend_for_templates.php +share/piwigo/admin/group_list.php +share/piwigo/admin/group_perm.php +share/piwigo/admin/help.php +share/piwigo/admin/history.php +share/piwigo/admin/include/add_core_tabs.inc.php +share/piwigo/admin/include/albums_tab.inc.php +share/piwigo/admin/include/c13y_internal.class.php +share/piwigo/admin/include/check_integrity.class.php +share/piwigo/admin/include/configuration_sizes_process.inc.php +share/piwigo/admin/include/configuration_watermark_process.inc.php +share/piwigo/admin/include/functions.php +share/piwigo/admin/include/functions_history.inc.php +share/piwigo/admin/include/functions_install.inc.php +share/piwigo/admin/include/functions_metadata.php +share/piwigo/admin/include/functions_notification_by_mail.inc.php +share/piwigo/admin/include/functions_permalinks.php +share/piwigo/admin/include/functions_plugins.inc.php +share/piwigo/admin/include/functions_upgrade.php +share/piwigo/admin/include/functions_upload.inc.php +share/piwigo/admin/include/image.class.php +share/piwigo/admin/include/index.php +share/piwigo/admin/include/languages.class.php +share/piwigo/admin/include/mysqldump.php +share/piwigo/admin/include/pclzip.lib.php +share/piwigo/admin/include/photos_add_direct_prepare.inc.php +share/piwigo/admin/include/photos_add_direct_process.inc.php +share/piwigo/admin/include/plugins.class.php +share/piwigo/admin/include/tabsheet.class.php +share/piwigo/admin/include/themes.class.php +share/piwigo/admin/include/updates.class.php +share/piwigo/admin/include/uploadify/cancel.png +share/piwigo/admin/include/uploadify/jquery.uploadify.v3.0.0.min.js +share/piwigo/admin/include/uploadify/uploadify.css +share/piwigo/admin/include/uploadify/uploadify.php +share/piwigo/admin/include/uploadify/uploadify.swf +share/piwigo/admin/include/uploadify/uploadifyLang_en.js +share/piwigo/admin/index.php +share/piwigo/admin/intro.php +share/piwigo/admin/languages.php +share/piwigo/admin/languages_installed.php +share/piwigo/admin/languages_new.php +share/piwigo/admin/maintenance.php +share/piwigo/admin/menubar.php +share/piwigo/admin/notification_by_mail.php +share/piwigo/admin/permalinks.php +share/piwigo/admin/photo.php +share/piwigo/admin/photos_add.php +share/piwigo/admin/photos_add_applications.php +share/piwigo/admin/photos_add_direct.php +share/piwigo/admin/photos_add_ftp.php +share/piwigo/admin/picture_coi.php +share/piwigo/admin/picture_modify.php +share/piwigo/admin/plugin.php +share/piwigo/admin/plugins.php +share/piwigo/admin/plugins_installed.php +share/piwigo/admin/plugins_new.php +share/piwigo/admin/popuphelp.php +share/piwigo/admin/profile.php +share/piwigo/admin/rating.php +share/piwigo/admin/rating_user.php +share/piwigo/admin/site_manager.php +share/piwigo/admin/site_reader_local.php +share/piwigo/admin/site_update.php +share/piwigo/admin/stats.php +share/piwigo/admin/tags.php +share/piwigo/admin/theme.php +share/piwigo/admin/themes.php +share/piwigo/admin/themes/clear/icon/cat_move.png +share/piwigo/admin/themes/clear/icon/category_children.png +share/piwigo/admin/themes/clear/icon/category_delete.png +share/piwigo/admin/themes/clear/icon/category_edit.png +share/piwigo/admin/themes/clear/icon/category_elements.png +share/piwigo/admin/themes/clear/icon/category_jump-to.png +share/piwigo/admin/themes/clear/icon/category_permissions.png +share/piwigo/admin/themes/clear/icon/category_representant_random.png +share/piwigo/admin/themes/clear/icon/check.png +share/piwigo/admin/themes/clear/icon/datepicker.png +share/piwigo/admin/themes/clear/icon/delete.png +share/piwigo/admin/themes/clear/icon/edit_s.png +share/piwigo/admin/themes/clear/icon/exit.png +share/piwigo/admin/themes/clear/icon/help.png +share/piwigo/admin/themes/clear/icon/home.png +share/piwigo/admin/themes/clear/icon/index.php +share/piwigo/admin/themes/clear/icon/infos.png +share/piwigo/admin/themes/clear/icon/minus.gif +share/piwigo/admin/themes/clear/icon/next.png +share/piwigo/admin/themes/clear/icon/page_end.png +share/piwigo/admin/themes/clear/icon/page_top.png +share/piwigo/admin/themes/clear/icon/permissions.png +share/piwigo/admin/themes/clear/icon/plug_activate.png +share/piwigo/admin/themes/clear/icon/plug_activate_grey.png +share/piwigo/admin/themes/clear/icon/plug_deactivate.png +share/piwigo/admin/themes/clear/icon/plug_deactivate_grey.png +share/piwigo/admin/themes/clear/icon/plug_delete.png +share/piwigo/admin/themes/clear/icon/plug_delete_grey.png +share/piwigo/admin/themes/clear/icon/plug_install.png +share/piwigo/admin/themes/clear/icon/plug_install_grey.png +share/piwigo/admin/themes/clear/icon/plug_uninstall.png +share/piwigo/admin/themes/clear/icon/plug_uninstall_grey.png +share/piwigo/admin/themes/clear/icon/plus.gif +share/piwigo/admin/themes/clear/icon/preferences.png +share/piwigo/admin/themes/clear/icon/prev.png +share/piwigo/admin/themes/clear/icon/ranks.png +share/piwigo/admin/themes/clear/icon/ranks_grey.png +share/piwigo/admin/themes/clear/icon/remove_filter.png +share/piwigo/admin/themes/clear/icon/remove_filter_hover.png +share/piwigo/admin/themes/clear/icon/sync_metadata.png +share/piwigo/admin/themes/clear/icon/sync_metadata_pink.png +share/piwigo/admin/themes/clear/icon/synchronize.png +share/piwigo/admin/themes/clear/icon/toggle_is_default_group.png +share/piwigo/admin/themes/clear/icon/uncheck.png +share/piwigo/admin/themes/clear/icon/validate_s.png +share/piwigo/admin/themes/clear/icon/virt_category.png +share/piwigo/admin/themes/clear/icon/warning.png +share/piwigo/admin/themes/clear/images/external_active.png +share/piwigo/admin/themes/clear/images/external_inactive.png +share/piwigo/admin/themes/clear/images/missing_screenshot.png +share/piwigo/admin/themes/clear/images/piwigo_logo_big.png +share/piwigo/admin/themes/clear/images/piwigo_logo_small.png +share/piwigo/admin/themes/clear/images/quickLocalSync.png +share/piwigo/admin/themes/clear/images/resizable-e.gif +share/piwigo/admin/themes/clear/images/resizable-n.gif +share/piwigo/admin/themes/clear/images/resizable-ne.gif +share/piwigo/admin/themes/clear/images/resizable-nw.gif +share/piwigo/admin/themes/clear/images/resizable-s.gif +share/piwigo/admin/themes/clear/images/resizable-se.gif +share/piwigo/admin/themes/clear/images/resizable-sw.gif +share/piwigo/admin/themes/clear/images/resizable-w.gif +share/piwigo/admin/themes/clear/images/transparent.gif +share/piwigo/admin/themes/clear/index.php +share/piwigo/admin/themes/clear/mail-css.tpl +share/piwigo/admin/themes/clear/theme.css +share/piwigo/admin/themes/clear/themeconf.inc.php +share/piwigo/admin/themes/default/fix-ie5-ie6.css +share/piwigo/admin/themes/default/fix-ie7.css +share/piwigo/admin/themes/default/icon/cat_move.png +share/piwigo/admin/themes/default/icon/category_children.png +share/piwigo/admin/themes/default/icon/category_delete.png +share/piwigo/admin/themes/default/icon/category_edit.png +share/piwigo/admin/themes/default/icon/category_elements.png +share/piwigo/admin/themes/default/icon/category_jump-to.png +share/piwigo/admin/themes/default/icon/category_permissions.png +share/piwigo/admin/themes/default/icon/category_representant_random.png +share/piwigo/admin/themes/default/icon/check.png +share/piwigo/admin/themes/default/icon/datepicker.png +share/piwigo/admin/themes/default/icon/delete.png +share/piwigo/admin/themes/default/icon/edit_s.png +share/piwigo/admin/themes/default/icon/errors.png +share/piwigo/admin/themes/default/icon/exit.png +share/piwigo/admin/themes/default/icon/fcbkcomplete_close.gif +share/piwigo/admin/themes/default/icon/help-min.png +share/piwigo/admin/themes/default/icon/help.png +share/piwigo/admin/themes/default/icon/home.png +share/piwigo/admin/themes/default/icon/index.php +share/piwigo/admin/themes/default/icon/infos.png +share/piwigo/admin/themes/default/icon/minus.gif +share/piwigo/admin/themes/default/icon/note.png +share/piwigo/admin/themes/default/icon/page_end.png +share/piwigo/admin/themes/default/icon/page_top.png +share/piwigo/admin/themes/default/icon/permissions.png +share/piwigo/admin/themes/default/icon/plug_activate.png +share/piwigo/admin/themes/default/icon/plug_activate_grey.png +share/piwigo/admin/themes/default/icon/plug_deactivate.png +share/piwigo/admin/themes/default/icon/plug_deactivate_grey.png +share/piwigo/admin/themes/default/icon/plug_delete.png +share/piwigo/admin/themes/default/icon/plug_delete_grey.png +share/piwigo/admin/themes/default/icon/plug_install.png +share/piwigo/admin/themes/default/icon/plug_install_grey.png +share/piwigo/admin/themes/default/icon/plug_uninstall.png +share/piwigo/admin/themes/default/icon/plug_uninstall_grey.png +share/piwigo/admin/themes/default/icon/plus.gif +share/piwigo/admin/themes/default/icon/preferences.png +share/piwigo/admin/themes/default/icon/ranks.png +share/piwigo/admin/themes/default/icon/ranks_grey.png +share/piwigo/admin/themes/default/icon/remove_filter.png +share/piwigo/admin/themes/default/icon/remove_filter_hover.png +share/piwigo/admin/themes/default/icon/sync_metadata.png +share/piwigo/admin/themes/default/icon/sync_metadata_pink.png +share/piwigo/admin/themes/default/icon/synchronize.png +share/piwigo/admin/themes/default/icon/toggle_is_default_group.png +share/piwigo/admin/themes/default/icon/uncheck.png +share/piwigo/admin/themes/default/icon/validate_s.png +share/piwigo/admin/themes/default/icon/virt_category.png +share/piwigo/admin/themes/default/icon/warning.png +share/piwigo/admin/themes/default/icon/warnings.png +share/piwigo/admin/themes/default/images/ajax-loader-bar.gif +share/piwigo/admin/themes/default/images/ajax-loader.gif +share/piwigo/admin/themes/default/images/jgrowl-alert.png +share/piwigo/admin/themes/default/images/jgrowl-check.png +share/piwigo/admin/themes/default/images/jgrowl-error.png +share/piwigo/admin/themes/default/images/logo.png +share/piwigo/admin/themes/default/images/pbar-ani.gif +share/piwigo/admin/themes/default/index.php +share/piwigo/admin/themes/default/local_head.tpl +share/piwigo/admin/themes/default/print.css +share/piwigo/admin/themes/default/template/admin.tpl +share/piwigo/admin/themes/default/template/album_notification.tpl +share/piwigo/admin/themes/default/template/batch_manager_global.tpl +share/piwigo/admin/themes/default/template/batch_manager_unit.tpl +share/piwigo/admin/themes/default/template/cat_list.tpl +share/piwigo/admin/themes/default/template/cat_modify.tpl +share/piwigo/admin/themes/default/template/cat_move.tpl +share/piwigo/admin/themes/default/template/cat_options.tpl +share/piwigo/admin/themes/default/template/cat_perm.tpl +share/piwigo/admin/themes/default/template/check_integrity.tpl +share/piwigo/admin/themes/default/template/comments.tpl +share/piwigo/admin/themes/default/template/configuration.tpl +share/piwigo/admin/themes/default/template/double_select.tpl +share/piwigo/admin/themes/default/template/element_set_ranks.tpl +share/piwigo/admin/themes/default/template/extend_for_templates.tpl +share/piwigo/admin/themes/default/template/footer.tpl +share/piwigo/admin/themes/default/template/group_list.tpl +share/piwigo/admin/themes/default/template/group_perm.tpl +share/piwigo/admin/themes/default/template/header.tpl +share/piwigo/admin/themes/default/template/help.tpl +share/piwigo/admin/themes/default/template/history.tpl +share/piwigo/admin/themes/default/template/include/add_album.inc.tpl +share/piwigo/admin/themes/default/template/include/autosize.inc.tpl +share/piwigo/admin/themes/default/template/include/colorbox.inc.tpl +share/piwigo/admin/themes/default/template/include/datepicker.inc.tpl +share/piwigo/admin/themes/default/template/include/dbselect.inc.tpl +share/piwigo/admin/themes/default/template/include/install.inc.tpl +share/piwigo/admin/themes/default/template/include/resize.inc.tpl +share/piwigo/admin/themes/default/template/include/tag_selection.inc.tpl +share/piwigo/admin/themes/default/template/install.tpl +share/piwigo/admin/themes/default/template/intro.tpl +share/piwigo/admin/themes/default/template/languages_installed.tpl +share/piwigo/admin/themes/default/template/languages_new.tpl +share/piwigo/admin/themes/default/template/maintenance.tpl +share/piwigo/admin/themes/default/template/menubar.tpl +share/piwigo/admin/themes/default/template/navigation_bar.tpl +share/piwigo/admin/themes/default/template/notification_by_mail.tpl +share/piwigo/admin/themes/default/template/permalinks.tpl +share/piwigo/admin/themes/default/template/photos_add_applications.tpl +share/piwigo/admin/themes/default/template/photos_add_direct.tpl +share/piwigo/admin/themes/default/template/photos_add_ftp.tpl +share/piwigo/admin/themes/default/template/picture_coi.tpl +share/piwigo/admin/themes/default/template/picture_modify.tpl +share/piwigo/admin/themes/default/template/plugins_installed.tpl +share/piwigo/admin/themes/default/template/plugins_new.tpl +share/piwigo/admin/themes/default/template/popuphelp.tpl +share/piwigo/admin/themes/default/template/profile.tpl +share/piwigo/admin/themes/default/template/profile_content.tpl +share/piwigo/admin/themes/default/template/rating.tpl +share/piwigo/admin/themes/default/template/rating_user.tpl +share/piwigo/admin/themes/default/template/site_manager.tpl +share/piwigo/admin/themes/default/template/site_update.tpl +share/piwigo/admin/themes/default/template/stats.tpl +share/piwigo/admin/themes/default/template/tabsheet.tpl +share/piwigo/admin/themes/default/template/tags.tpl +share/piwigo/admin/themes/default/template/themes_installed.tpl +share/piwigo/admin/themes/default/template/themes_new.tpl +share/piwigo/admin/themes/default/template/updates_ext.tpl +share/piwigo/admin/themes/default/template/updates_pwg.tpl +share/piwigo/admin/themes/default/template/upgrade.tpl +share/piwigo/admin/themes/default/template/user_list.tpl +share/piwigo/admin/themes/default/template/user_perm.tpl +share/piwigo/admin/themes/default/theme.css +share/piwigo/admin/themes/default/themeconf.inc.php +share/piwigo/admin/themes/default/uploadify.jGrowl.css +share/piwigo/admin/themes/roma/icon/home.png +share/piwigo/admin/themes/roma/icon/next.png +share/piwigo/admin/themes/roma/icon/prev.png +share/piwigo/admin/themes/roma/images/active_tab.png +share/piwigo/admin/themes/roma/images/active_tab2.png +share/piwigo/admin/themes/roma/images/active_tab3.png +share/piwigo/admin/themes/roma/images/external_active.png +share/piwigo/admin/themes/roma/images/external_inactive.png +share/piwigo/admin/themes/roma/images/fillet.png +share/piwigo/admin/themes/roma/images/header_msgs-bg.gif +share/piwigo/admin/themes/roma/images/inactive_tab.png +share/piwigo/admin/themes/roma/images/inactive_tab2.png +share/piwigo/admin/themes/roma/images/inactive_tab3.png +share/piwigo/admin/themes/roma/images/menuBoxBottom_new.png +share/piwigo/admin/themes/roma/images/menuBoxTop_new.png +share/piwigo/admin/themes/roma/images/menubar-detail.png +share/piwigo/admin/themes/roma/images/menubar-top.png +share/piwigo/admin/themes/roma/images/missing_screenshot.png +share/piwigo/admin/themes/roma/images/piwigo_logo_small.png +share/piwigo/admin/themes/roma/images/quickLocalSync_hover.png +share/piwigo/admin/themes/roma/images/quickLocalSync_inactiv.png +share/piwigo/admin/themes/roma/images/resizable-e.gif +share/piwigo/admin/themes/roma/images/resizable-n.gif +share/piwigo/admin/themes/roma/images/resizable-ne.gif +share/piwigo/admin/themes/roma/images/resizable-nw.gif +share/piwigo/admin/themes/roma/images/resizable-s.gif +share/piwigo/admin/themes/roma/images/resizable-se.gif +share/piwigo/admin/themes/roma/images/resizable-sw.gif +share/piwigo/admin/themes/roma/images/resizable-w.gif +share/piwigo/admin/themes/roma/images/transparent.gif +share/piwigo/admin/themes/roma/index.php +share/piwigo/admin/themes/roma/mail-css.tpl +share/piwigo/admin/themes/roma/theme.css +share/piwigo/admin/themes/roma/themeconf.inc.php +share/piwigo/admin/themes_installed.php +share/piwigo/admin/themes_new.php +share/piwigo/admin/updates.php +share/piwigo/admin/updates_ext.php +share/piwigo/admin/updates_pwg.php +share/piwigo/admin/user_list.php +share/piwigo/admin/user_perm.php +share/piwigo/category.php +share/piwigo/comments.php +share/piwigo/doc/COPYING +share/piwigo/doc/README_ca.txt +share/piwigo/doc/README_en.txt +share/piwigo/doc/README_fr.txt +share/piwigo/doc/index.php +share/piwigo/feed.php +share/piwigo/galleries/index.php +share/piwigo/i.php +share/piwigo/identification.php +share/piwigo/include/block.class.php +share/piwigo/include/calendar_base.class.php +share/piwigo/include/calendar_monthly.class.php +share/piwigo/include/calendar_weekly.class.php +share/piwigo/include/category_cats.inc.php +share/piwigo/include/category_default.inc.php +share/piwigo/include/class_smtp_mail.inc.php +share/piwigo/include/common.inc.php +share/piwigo/include/config_default.inc.php +share/piwigo/include/constants.php +share/piwigo/include/cssmin.class.php +share/piwigo/include/dblayer/dblayers.inc.php +share/piwigo/include/dblayer/functions_mysql.inc.php +share/piwigo/include/derivative.inc.php +share/piwigo/include/derivative_params.inc.php +share/piwigo/include/derivative_std_params.inc.php +share/piwigo/include/feedcreator.class.php +share/piwigo/include/filter.inc.php +share/piwigo/include/functions.inc.php +share/piwigo/include/functions_calendar.inc.php +share/piwigo/include/functions_category.inc.php +share/piwigo/include/functions_comment.inc.php +share/piwigo/include/functions_cookie.inc.php +share/piwigo/include/functions_filter.inc.php +share/piwigo/include/functions_html.inc.php +share/piwigo/include/functions_mail.inc.php +share/piwigo/include/functions_metadata.inc.php +share/piwigo/include/functions_notification.inc.php +share/piwigo/include/functions_picture.inc.php +share/piwigo/include/functions_plugins.inc.php +share/piwigo/include/functions_rate.inc.php +share/piwigo/include/functions_search.inc.php +share/piwigo/include/functions_session.inc.php +share/piwigo/include/functions_tag.inc.php +share/piwigo/include/functions_url.inc.php +share/piwigo/include/functions_user.inc.php +share/piwigo/include/index.php +share/piwigo/include/jsmin.class.php +share/piwigo/include/mdetect.php +share/piwigo/include/menubar.inc.php +share/piwigo/include/no_photo_yet.inc.php +share/piwigo/include/page_header.php +share/piwigo/include/page_messages.php +share/piwigo/include/page_tail.php +share/piwigo/include/php_compat/array_intersect_key.php +share/piwigo/include/php_compat/hash_hmac.php +share/piwigo/include/php_compat/index.php +share/piwigo/include/php_compat/json_encode.php +share/piwigo/include/php_compat/preg_last_error.php +share/piwigo/include/picture_comment.inc.php +share/piwigo/include/picture_metadata.inc.php +share/piwigo/include/picture_rate.inc.php +share/piwigo/include/section_init.inc.php +share/piwigo/include/smarty/COPYING.lib +share/piwigo/include/smarty/NEWS +share/piwigo/include/smarty/README +share/piwigo/include/smarty/libs/Config_File.class.php +share/piwigo/include/smarty/libs/Smarty.class.php +share/piwigo/include/smarty/libs/Smarty_Compiler.class.php +share/piwigo/include/smarty/libs/debug.tpl +share/piwigo/include/smarty/libs/internals/core.assemble_plugin_filepath.php +share/piwigo/include/smarty/libs/internals/core.assign_smarty_interface.php +share/piwigo/include/smarty/libs/internals/core.create_dir_structure.php +share/piwigo/include/smarty/libs/internals/core.display_debug_console.php +share/piwigo/include/smarty/libs/internals/core.get_include_path.php +share/piwigo/include/smarty/libs/internals/core.get_microtime.php +share/piwigo/include/smarty/libs/internals/core.get_php_resource.php +share/piwigo/include/smarty/libs/internals/core.is_secure.php +share/piwigo/include/smarty/libs/internals/core.is_trusted.php +share/piwigo/include/smarty/libs/internals/core.load_plugins.php +share/piwigo/include/smarty/libs/internals/core.load_resource_plugin.php +share/piwigo/include/smarty/libs/internals/core.process_cached_inserts.php +share/piwigo/include/smarty/libs/internals/core.process_compiled_include.php +share/piwigo/include/smarty/libs/internals/core.read_cache_file.php +share/piwigo/include/smarty/libs/internals/core.rm_auto.php +share/piwigo/include/smarty/libs/internals/core.rmdir.php +share/piwigo/include/smarty/libs/internals/core.run_insert_handler.php +share/piwigo/include/smarty/libs/internals/core.smarty_include_php.php +share/piwigo/include/smarty/libs/internals/core.write_cache_file.php +share/piwigo/include/smarty/libs/internals/core.write_compiled_include.php +share/piwigo/include/smarty/libs/internals/core.write_compiled_resource.php +share/piwigo/include/smarty/libs/internals/core.write_file.php +share/piwigo/include/smarty/libs/plugins/block.textformat.php +share/piwigo/include/smarty/libs/plugins/compiler.assign.php +share/piwigo/include/smarty/libs/plugins/function.assign_debug_info.php +share/piwigo/include/smarty/libs/plugins/function.config_load.php +share/piwigo/include/smarty/libs/plugins/function.counter.php +share/piwigo/include/smarty/libs/plugins/function.cycle.php +share/piwigo/include/smarty/libs/plugins/function.debug.php +share/piwigo/include/smarty/libs/plugins/function.eval.php +share/piwigo/include/smarty/libs/plugins/function.fetch.php +share/piwigo/include/smarty/libs/plugins/function.html_checkboxes.php +share/piwigo/include/smarty/libs/plugins/function.html_image.php +share/piwigo/include/smarty/libs/plugins/function.html_options.php +share/piwigo/include/smarty/libs/plugins/function.html_radios.php +share/piwigo/include/smarty/libs/plugins/function.html_select_date.php +share/piwigo/include/smarty/libs/plugins/function.html_select_time.php +share/piwigo/include/smarty/libs/plugins/function.html_table.php +share/piwigo/include/smarty/libs/plugins/function.mailto.php +share/piwigo/include/smarty/libs/plugins/function.math.php +share/piwigo/include/smarty/libs/plugins/function.popup.php +share/piwigo/include/smarty/libs/plugins/function.popup_init.php +share/piwigo/include/smarty/libs/plugins/modifier.capitalize.php +share/piwigo/include/smarty/libs/plugins/modifier.cat.php +share/piwigo/include/smarty/libs/plugins/modifier.count_characters.php +share/piwigo/include/smarty/libs/plugins/modifier.count_paragraphs.php +share/piwigo/include/smarty/libs/plugins/modifier.count_sentences.php +share/piwigo/include/smarty/libs/plugins/modifier.count_words.php +share/piwigo/include/smarty/libs/plugins/modifier.date_format.php +share/piwigo/include/smarty/libs/plugins/modifier.debug_print_var.php +share/piwigo/include/smarty/libs/plugins/modifier.default.php +share/piwigo/include/smarty/libs/plugins/modifier.escape.php +share/piwigo/include/smarty/libs/plugins/modifier.indent.php +share/piwigo/include/smarty/libs/plugins/modifier.lower.php +share/piwigo/include/smarty/libs/plugins/modifier.nl2br.php +share/piwigo/include/smarty/libs/plugins/modifier.regex_replace.php +share/piwigo/include/smarty/libs/plugins/modifier.replace.php +share/piwigo/include/smarty/libs/plugins/modifier.spacify.php +share/piwigo/include/smarty/libs/plugins/modifier.string_format.php +share/piwigo/include/smarty/libs/plugins/modifier.strip.php +share/piwigo/include/smarty/libs/plugins/modifier.strip_tags.php +share/piwigo/include/smarty/libs/plugins/modifier.truncate.php +share/piwigo/include/smarty/libs/plugins/modifier.upper.php +share/piwigo/include/smarty/libs/plugins/modifier.wordwrap.php +share/piwigo/include/smarty/libs/plugins/outputfilter.trimwhitespace.php +share/piwigo/include/smarty/libs/plugins/shared.escape_special_chars.php +share/piwigo/include/smarty/libs/plugins/shared.make_timestamp.php +share/piwigo/include/template.class.php +share/piwigo/include/user.inc.php +share/piwigo/include/ws_core.inc.php +share/piwigo/include/ws_functions.inc.php +share/piwigo/include/ws_protocols/index.php +share/piwigo/include/ws_protocols/json_encoder.php +share/piwigo/include/ws_protocols/php_encoder.php +share/piwigo/include/ws_protocols/rest_encoder.php +share/piwigo/include/ws_protocols/rest_handler.php +share/piwigo/include/ws_protocols/xmlrpc_encoder.php +share/piwigo/index.php +share/piwigo/install.php +share/piwigo/install/config.sql +share/piwigo/install/db/100-database.php +share/piwigo/install/db/101-database.php +share/piwigo/install/db/102-database.php +share/piwigo/install/db/103-database.php +share/piwigo/install/db/104-database.php +share/piwigo/install/db/105-database.php +share/piwigo/install/db/106-database.php +share/piwigo/install/db/107-database.php +share/piwigo/install/db/108-database.php +share/piwigo/install/db/109-database.php +share/piwigo/install/db/110-database.php +share/piwigo/install/db/111-database.php +share/piwigo/install/db/112-database.php +share/piwigo/install/db/113-database.php +share/piwigo/install/db/114-database.php +share/piwigo/install/db/115-database.php +share/piwigo/install/db/116-database.php +share/piwigo/install/db/117-database.php +share/piwigo/install/db/118-database.php +share/piwigo/install/db/119-database.php +share/piwigo/install/db/120-database.php +share/piwigo/install/db/121-database.php +share/piwigo/install/db/122-database.php +share/piwigo/install/db/123-database.php +share/piwigo/install/db/124-database.php +share/piwigo/install/db/125-database.php +share/piwigo/install/db/126-database.php +share/piwigo/install/db/127-database.php +share/piwigo/install/db/61-database.php +share/piwigo/install/db/62-database.php +share/piwigo/install/db/63-database.php +share/piwigo/install/db/64-database.php +share/piwigo/install/db/65-database.php +share/piwigo/install/db/66-database.php +share/piwigo/install/db/67-database.php +share/piwigo/install/db/68-database.php +share/piwigo/install/db/69-database.php +share/piwigo/install/db/70-database.php +share/piwigo/install/db/71-database.php +share/piwigo/install/db/72-database.php +share/piwigo/install/db/73-database.php +share/piwigo/install/db/74-database.php +share/piwigo/install/db/75-database.php +share/piwigo/install/db/76-database.php +share/piwigo/install/db/77-database.php +share/piwigo/install/db/78-database.php +share/piwigo/install/db/79-database.php +share/piwigo/install/db/80-database.php +share/piwigo/install/db/81-database.php +share/piwigo/install/db/82-database.php +share/piwigo/install/db/83-database.php +share/piwigo/install/db/84-database.php +share/piwigo/install/db/85-database.php +share/piwigo/install/db/86-database.php +share/piwigo/install/db/87-database.php +share/piwigo/install/db/88-database.php +share/piwigo/install/db/89-database.php +share/piwigo/install/db/90-database.php +share/piwigo/install/db/91-database.php +share/piwigo/install/db/92-database.php +share/piwigo/install/db/93-database.php +share/piwigo/install/db/94-database.php +share/piwigo/install/db/95-database.php +share/piwigo/install/db/96-database.php +share/piwigo/install/db/97-database.php +share/piwigo/install/db/98-database.php +share/piwigo/install/db/99-database.php +share/piwigo/install/db/index.php +share/piwigo/install/hosting.php +share/piwigo/install/index.php +share/piwigo/install/obsolete.list +share/piwigo/install/obsolete_extensions.list +share/piwigo/install/php5_apache_configuration.php +share/piwigo/install/piwigo_structure-mysql.sql +share/piwigo/install/upgrade_1.3.0.php +share/piwigo/install/upgrade_1.3.1.php +share/piwigo/install/upgrade_1.4.0.php +share/piwigo/install/upgrade_1.5.0.php +share/piwigo/install/upgrade_1.6.0.php +share/piwigo/install/upgrade_1.6.2.php +share/piwigo/install/upgrade_1.7.0.php +share/piwigo/install/upgrade_2.0.0.php +share/piwigo/install/upgrade_2.1.0.php +share/piwigo/install/upgrade_2.2.0.php +share/piwigo/install/upgrade_2.3.0.php +share/piwigo/language/af_ZA/about.html +share/piwigo/language/af_ZA/admin.lang.php +share/piwigo/language/af_ZA/af_ZA.jpg +share/piwigo/language/af_ZA/common.lang.php +share/piwigo/language/af_ZA/index.php +share/piwigo/language/af_ZA/install.lang.php +share/piwigo/language/af_ZA/iso.txt +share/piwigo/language/af_ZA/upgrade.lang.php +share/piwigo/language/ar_SA/Translator.txt +share/piwigo/language/ar_SA/about.html +share/piwigo/language/ar_SA/admin.lang.php +share/piwigo/language/ar_SA/ar_SA.jpg +share/piwigo/language/ar_SA/common.lang.php +share/piwigo/language/ar_SA/help/cat_modify.html +share/piwigo/language/ar_SA/help/cat_move.html +share/piwigo/language/ar_SA/help/cat_options.html +share/piwigo/language/ar_SA/help/cat_perm.html +share/piwigo/language/ar_SA/help/configuration.html +share/piwigo/language/ar_SA/help/extend_for_templates.html +share/piwigo/language/ar_SA/help/group_list.html +share/piwigo/language/ar_SA/help/help_add_photos.html +share/piwigo/language/ar_SA/help/help_groups.html +share/piwigo/language/ar_SA/help/help_misc.html +share/piwigo/language/ar_SA/help/help_permissions.html +share/piwigo/language/ar_SA/help/help_virtual_links.html +share/piwigo/language/ar_SA/help/history.html +share/piwigo/language/ar_SA/help/maintenance.html +share/piwigo/language/ar_SA/help/notification_by_mail.html +share/piwigo/language/ar_SA/help/permalinks.html +share/piwigo/language/ar_SA/help/photos_add_ftp.html +share/piwigo/language/ar_SA/help/search.html +share/piwigo/language/ar_SA/help/synchronize.html +share/piwigo/language/ar_SA/help/user_list.html +share/piwigo/language/ar_SA/index.php +share/piwigo/language/ar_SA/install.lang.php +share/piwigo/language/ar_SA/iso.txt +share/piwigo/language/ar_SA/upgrade.lang.php +share/piwigo/language/bg_BG/about.html +share/piwigo/language/bg_BG/admin.lang.php +share/piwigo/language/bg_BG/bg_BG.jpg +share/piwigo/language/bg_BG/common.lang.php +share/piwigo/language/bg_BG/index.php +share/piwigo/language/bg_BG/install.lang.php +share/piwigo/language/bg_BG/iso.txt +share/piwigo/language/bg_BG/upgrade.lang.php +share/piwigo/language/ca_ES/about.html +share/piwigo/language/ca_ES/admin.lang.php +share/piwigo/language/ca_ES/ca_ES.jpg +share/piwigo/language/ca_ES/common.lang.php +share/piwigo/language/ca_ES/help/cat_modify.html +share/piwigo/language/ca_ES/help/cat_move.html +share/piwigo/language/ca_ES/help/cat_options.html +share/piwigo/language/ca_ES/help/cat_perm.html +share/piwigo/language/ca_ES/help/configuration.html +share/piwigo/language/ca_ES/help/extend_for_templates.html +share/piwigo/language/ca_ES/help/group_list.html +share/piwigo/language/ca_ES/help/help_add_photos.html +share/piwigo/language/ca_ES/help/help_groups.html +share/piwigo/language/ca_ES/help/help_misc.html +share/piwigo/language/ca_ES/help/help_permissions.html +share/piwigo/language/ca_ES/help/help_virtual_links.html +share/piwigo/language/ca_ES/help/history.html +share/piwigo/language/ca_ES/help/maintenance.html +share/piwigo/language/ca_ES/help/notification_by_mail.html +share/piwigo/language/ca_ES/help/permalinks.html +share/piwigo/language/ca_ES/help/photos_add_ftp.html +share/piwigo/language/ca_ES/help/search.html +share/piwigo/language/ca_ES/help/synchronize.html +share/piwigo/language/ca_ES/help/user_list.html +share/piwigo/language/ca_ES/install.lang.php +share/piwigo/language/ca_ES/iso.txt +share/piwigo/language/ca_ES/upgrade.lang.php +share/piwigo/language/cs_CZ/about.html +share/piwigo/language/cs_CZ/admin.lang.php +share/piwigo/language/cs_CZ/common.lang.php +share/piwigo/language/cs_CZ/cs_CZ.jpg +share/piwigo/language/cs_CZ/help/cat_modify.html +share/piwigo/language/cs_CZ/help/cat_move.html +share/piwigo/language/cs_CZ/help/cat_options.html +share/piwigo/language/cs_CZ/help/cat_perm.html +share/piwigo/language/cs_CZ/help/configuration.html +share/piwigo/language/cs_CZ/help/extend_for_templates.html +share/piwigo/language/cs_CZ/help/group_list.html +share/piwigo/language/cs_CZ/help/help_add_photos.html +share/piwigo/language/cs_CZ/help/help_groups.html +share/piwigo/language/cs_CZ/help/help_misc.html +share/piwigo/language/cs_CZ/help/help_permissions.html +share/piwigo/language/cs_CZ/help/help_virtual_links.html +share/piwigo/language/cs_CZ/help/history.html +share/piwigo/language/cs_CZ/help/index.php +share/piwigo/language/cs_CZ/help/maintenance.html +share/piwigo/language/cs_CZ/help/notification_by_mail.html +share/piwigo/language/cs_CZ/help/permalinks.html +share/piwigo/language/cs_CZ/help/photos_add_ftp.html +share/piwigo/language/cs_CZ/help/search.html +share/piwigo/language/cs_CZ/help/synchronize.html +share/piwigo/language/cs_CZ/help/user_list.html +share/piwigo/language/cs_CZ/index.php +share/piwigo/language/cs_CZ/install.lang.php +share/piwigo/language/cs_CZ/iso.txt +share/piwigo/language/cs_CZ/upgrade.lang.php +share/piwigo/language/da_DK/about.html +share/piwigo/language/da_DK/admin.lang.php +share/piwigo/language/da_DK/common.lang.php +share/piwigo/language/da_DK/da_DK.jpg +share/piwigo/language/da_DK/help/cat_modify.html +share/piwigo/language/da_DK/help/cat_move.html +share/piwigo/language/da_DK/help/cat_options.html +share/piwigo/language/da_DK/help/cat_perm.html +share/piwigo/language/da_DK/help/configuration.html +share/piwigo/language/da_DK/help/extend_for_templates.html +share/piwigo/language/da_DK/help/group_list.html +share/piwigo/language/da_DK/help/help_add_photos.html +share/piwigo/language/da_DK/help/help_groups.html +share/piwigo/language/da_DK/help/help_misc.html +share/piwigo/language/da_DK/help/help_permissions.html +share/piwigo/language/da_DK/help/help_virtual_links.html +share/piwigo/language/da_DK/help/history.html +share/piwigo/language/da_DK/help/maintenance.html +share/piwigo/language/da_DK/help/notification_by_mail.html +share/piwigo/language/da_DK/help/permalinks.html +share/piwigo/language/da_DK/help/photos_add_ftp.html +share/piwigo/language/da_DK/help/search.html +share/piwigo/language/da_DK/help/synchronize.html +share/piwigo/language/da_DK/help/user_list.html +share/piwigo/language/da_DK/index.php +share/piwigo/language/da_DK/install.lang.php +share/piwigo/language/da_DK/iso.txt +share/piwigo/language/da_DK/upgrade.lang.php +share/piwigo/language/de_DE/about.html +share/piwigo/language/de_DE/admin.lang.php +share/piwigo/language/de_DE/common.lang.php +share/piwigo/language/de_DE/de_DE.jpg +share/piwigo/language/de_DE/help/cat_modify.html +share/piwigo/language/de_DE/help/cat_move.html +share/piwigo/language/de_DE/help/cat_options.html +share/piwigo/language/de_DE/help/cat_perm.html +share/piwigo/language/de_DE/help/configuration.html +share/piwigo/language/de_DE/help/extend_for_templates.html +share/piwigo/language/de_DE/help/group_list.html +share/piwigo/language/de_DE/help/help_add_photos.html +share/piwigo/language/de_DE/help/help_groups.html +share/piwigo/language/de_DE/help/help_misc.html +share/piwigo/language/de_DE/help/help_permissions.html +share/piwigo/language/de_DE/help/help_virtual_links.html +share/piwigo/language/de_DE/help/history.html +share/piwigo/language/de_DE/help/index.php +share/piwigo/language/de_DE/help/maintenance.html +share/piwigo/language/de_DE/help/notification_by_mail.html +share/piwigo/language/de_DE/help/permalinks.html +share/piwigo/language/de_DE/help/photos_add_ftp.html +share/piwigo/language/de_DE/help/search.html +share/piwigo/language/de_DE/help/synchronize.html +share/piwigo/language/de_DE/help/user_list.html +share/piwigo/language/de_DE/index.php +share/piwigo/language/de_DE/install.lang.php +share/piwigo/language/de_DE/iso.txt +share/piwigo/language/de_DE/upgrade.lang.php +share/piwigo/language/dv_MV/common.lang.php +share/piwigo/language/dv_MV/dv_MV.jpg +share/piwigo/language/dv_MV/index.php +share/piwigo/language/dv_MV/iso.txt +share/piwigo/language/el_GR/about.html +share/piwigo/language/el_GR/admin.lang.php +share/piwigo/language/el_GR/common.lang.php +share/piwigo/language/el_GR/el_GR.jpg +share/piwigo/language/el_GR/help/cat_modify.html +share/piwigo/language/el_GR/help/cat_move.html +share/piwigo/language/el_GR/help/cat_options.html +share/piwigo/language/el_GR/help/cat_perm.html +share/piwigo/language/el_GR/help/configuration.html +share/piwigo/language/el_GR/help/extend_for_templates.html +share/piwigo/language/el_GR/help/group_list.html +share/piwigo/language/el_GR/help/help_add_photos.html +share/piwigo/language/el_GR/help/help_groups.html +share/piwigo/language/el_GR/help/help_misc.html +share/piwigo/language/el_GR/help/help_permissions.html +share/piwigo/language/el_GR/help/help_virtual_links.html +share/piwigo/language/el_GR/help/history.html +share/piwigo/language/el_GR/help/maintenance.html +share/piwigo/language/el_GR/help/notification_by_mail.html +share/piwigo/language/el_GR/help/permalinks.html +share/piwigo/language/el_GR/help/photos_add_ftp.html +share/piwigo/language/el_GR/help/search.html +share/piwigo/language/el_GR/help/synchronize.html +share/piwigo/language/el_GR/help/user_list.html +share/piwigo/language/el_GR/index.php +share/piwigo/language/el_GR/install.lang.php +share/piwigo/language/el_GR/iso.txt +share/piwigo/language/el_GR/upgrade.lang.php +share/piwigo/language/en_UK/about.html +share/piwigo/language/en_UK/admin.lang.php +share/piwigo/language/en_UK/common.lang.php +share/piwigo/language/en_UK/en_UK.jpg +share/piwigo/language/en_UK/help/cat_modify.html +share/piwigo/language/en_UK/help/cat_move.html +share/piwigo/language/en_UK/help/cat_options.html +share/piwigo/language/en_UK/help/cat_perm.html +share/piwigo/language/en_UK/help/configuration.html +share/piwigo/language/en_UK/help/extend_for_templates.html +share/piwigo/language/en_UK/help/group_list.html +share/piwigo/language/en_UK/help/help_add_photos.html +share/piwigo/language/en_UK/help/help_groups.html +share/piwigo/language/en_UK/help/help_misc.html +share/piwigo/language/en_UK/help/help_permissions.html +share/piwigo/language/en_UK/help/help_virtual_links.html +share/piwigo/language/en_UK/help/history.html +share/piwigo/language/en_UK/help/index.php +share/piwigo/language/en_UK/help/maintenance.html +share/piwigo/language/en_UK/help/notification_by_mail.html +share/piwigo/language/en_UK/help/permalinks.html +share/piwigo/language/en_UK/help/photos_add_ftp.html +share/piwigo/language/en_UK/help/search.html +share/piwigo/language/en_UK/help/synchronize.html +share/piwigo/language/en_UK/help/user_list.html +share/piwigo/language/en_UK/index.php +share/piwigo/language/en_UK/install.lang.php +share/piwigo/language/en_UK/iso.txt +share/piwigo/language/en_UK/upgrade.lang.php +share/piwigo/language/eo_EO/about.html +share/piwigo/language/eo_EO/admin.lang.php +share/piwigo/language/eo_EO/common.lang.php +share/piwigo/language/eo_EO/eo_EO.jpg +share/piwigo/language/eo_EO/iso.txt +share/piwigo/language/es_AR/about.html +share/piwigo/language/es_AR/common.lang.php +share/piwigo/language/es_AR/es_AR.jpg +share/piwigo/language/es_AR/index.php +share/piwigo/language/es_AR/iso.txt +share/piwigo/language/es_ES/about.html +share/piwigo/language/es_ES/admin.lang.php +share/piwigo/language/es_ES/common.lang.php +share/piwigo/language/es_ES/es_ES.jpg +share/piwigo/language/es_ES/help/cat_modify.html +share/piwigo/language/es_ES/help/cat_move.html +share/piwigo/language/es_ES/help/cat_options.html +share/piwigo/language/es_ES/help/cat_perm.html +share/piwigo/language/es_ES/help/configuration.html +share/piwigo/language/es_ES/help/extend_for_templates.html +share/piwigo/language/es_ES/help/group_list.html +share/piwigo/language/es_ES/help/help_add_photos.html +share/piwigo/language/es_ES/help/help_groups.html +share/piwigo/language/es_ES/help/help_misc.html +share/piwigo/language/es_ES/help/help_permissions.html +share/piwigo/language/es_ES/help/help_virtual_links.html +share/piwigo/language/es_ES/help/history.html +share/piwigo/language/es_ES/help/index.php +share/piwigo/language/es_ES/help/maintenance.html +share/piwigo/language/es_ES/help/notification_by_mail.html +share/piwigo/language/es_ES/help/permalinks.html +share/piwigo/language/es_ES/help/photos_add_ftp.html +share/piwigo/language/es_ES/help/search.html +share/piwigo/language/es_ES/help/synchronize.html +share/piwigo/language/es_ES/help/user_list.html +share/piwigo/language/es_ES/index.php +share/piwigo/language/es_ES/install.lang.php +share/piwigo/language/es_ES/iso.txt +share/piwigo/language/es_ES/upgrade.lang.php +share/piwigo/language/et_EE/about.html +share/piwigo/language/et_EE/admin.lang.php +share/piwigo/language/et_EE/common.lang.php +share/piwigo/language/et_EE/et_EE.jpg +share/piwigo/language/et_EE/install.lang.php +share/piwigo/language/et_EE/iso.txt +share/piwigo/language/et_EE/upgrade.lang.php +share/piwigo/language/fa_IR/about.html +share/piwigo/language/fa_IR/admin.lang.php +share/piwigo/language/fa_IR/common.lang.php +share/piwigo/language/fa_IR/fa_IR.jpg +share/piwigo/language/fa_IR/help/help_add_photos.html +share/piwigo/language/fa_IR/help/help_groups.html +share/piwigo/language/fa_IR/help/help_misc.html +share/piwigo/language/fa_IR/help/index.php +share/piwigo/language/fa_IR/help/user_list.html +share/piwigo/language/fa_IR/index.php +share/piwigo/language/fa_IR/install.lang.php +share/piwigo/language/fa_IR/iso.txt +share/piwigo/language/fa_IR/upgrade.lang.php +share/piwigo/language/fi_FI/about.html +share/piwigo/language/fi_FI/admin.lang.php +share/piwigo/language/fi_FI/common.lang.php +share/piwigo/language/fi_FI/fi_FI.jpg +share/piwigo/language/fi_FI/install.lang.php +share/piwigo/language/fi_FI/iso.txt +share/piwigo/language/fi_FI/upgrade.lang.php +share/piwigo/language/fr_CA/about.html +share/piwigo/language/fr_CA/admin.lang.php +share/piwigo/language/fr_CA/common.lang.php +share/piwigo/language/fr_CA/fr_CA.jpg +share/piwigo/language/fr_CA/help/cat_modify.html +share/piwigo/language/fr_CA/help/cat_move.html +share/piwigo/language/fr_CA/help/cat_options.html +share/piwigo/language/fr_CA/help/cat_perm.html +share/piwigo/language/fr_CA/help/configuration.html +share/piwigo/language/fr_CA/help/extend_for_templates.html +share/piwigo/language/fr_CA/help/group_list.html +share/piwigo/language/fr_CA/help/help_add_photos.html +share/piwigo/language/fr_CA/help/help_groups.html +share/piwigo/language/fr_CA/help/help_misc.html +share/piwigo/language/fr_CA/help/help_permissions.html +share/piwigo/language/fr_CA/help/help_virtual_links.html +share/piwigo/language/fr_CA/help/history.html +share/piwigo/language/fr_CA/help/index.php +share/piwigo/language/fr_CA/help/maintenance.html +share/piwigo/language/fr_CA/help/notification_by_mail.html +share/piwigo/language/fr_CA/help/permalinks.html +share/piwigo/language/fr_CA/help/photos_add_ftp.html +share/piwigo/language/fr_CA/help/search.html +share/piwigo/language/fr_CA/help/synchronize.html +share/piwigo/language/fr_CA/help/user_list.html +share/piwigo/language/fr_CA/index.php +share/piwigo/language/fr_CA/install.lang.php +share/piwigo/language/fr_CA/iso.txt +share/piwigo/language/fr_CA/upgrade.lang.php +share/piwigo/language/fr_FR/about.html +share/piwigo/language/fr_FR/admin.lang.php +share/piwigo/language/fr_FR/common.lang.php +share/piwigo/language/fr_FR/fr_FR.jpg +share/piwigo/language/fr_FR/help/cat_modify.html +share/piwigo/language/fr_FR/help/cat_move.html +share/piwigo/language/fr_FR/help/cat_options.html +share/piwigo/language/fr_FR/help/cat_perm.html +share/piwigo/language/fr_FR/help/configuration.html +share/piwigo/language/fr_FR/help/extend_for_templates.html +share/piwigo/language/fr_FR/help/group_list.html +share/piwigo/language/fr_FR/help/help_add_photos.html +share/piwigo/language/fr_FR/help/help_groups.html +share/piwigo/language/fr_FR/help/help_misc.html +share/piwigo/language/fr_FR/help/help_permissions.html +share/piwigo/language/fr_FR/help/help_virtual_links.html +share/piwigo/language/fr_FR/help/history.html +share/piwigo/language/fr_FR/help/index.php +share/piwigo/language/fr_FR/help/maintenance.html +share/piwigo/language/fr_FR/help/notification_by_mail.html +share/piwigo/language/fr_FR/help/permalinks.html +share/piwigo/language/fr_FR/help/photos_add_ftp.html +share/piwigo/language/fr_FR/help/search.html +share/piwigo/language/fr_FR/help/synchronize.html +share/piwigo/language/fr_FR/help/user_list.html +share/piwigo/language/fr_FR/index.php +share/piwigo/language/fr_FR/install.lang.php +share/piwigo/language/fr_FR/iso.txt +share/piwigo/language/fr_FR/upgrade.lang.php +share/piwigo/language/he_IL/about.html +share/piwigo/language/he_IL/admin.lang.php +share/piwigo/language/he_IL/common.lang.php +share/piwigo/language/he_IL/he_IL.jpg +share/piwigo/language/he_IL/help/cat_move.html +share/piwigo/language/he_IL/help/help_add_photos.html +share/piwigo/language/he_IL/install.lang.php +share/piwigo/language/he_IL/iso.txt +share/piwigo/language/he_IL/upgrade.lang.php +share/piwigo/language/hr_HR/about.html +share/piwigo/language/hr_HR/admin.lang.php +share/piwigo/language/hr_HR/common.lang.php +share/piwigo/language/hr_HR/help/cat_modify.html +share/piwigo/language/hr_HR/help/cat_move.html +share/piwigo/language/hr_HR/help/cat_options.html +share/piwigo/language/hr_HR/help/cat_perm.html +share/piwigo/language/hr_HR/help/configuration.html +share/piwigo/language/hr_HR/help/extend_for_templates.html +share/piwigo/language/hr_HR/help/group_list.html +share/piwigo/language/hr_HR/help/help_add_photos.html +share/piwigo/language/hr_HR/help/history.html +share/piwigo/language/hr_HR/help/index.php +share/piwigo/language/hr_HR/help/maintenance.html +share/piwigo/language/hr_HR/help/notification_by_mail.html +share/piwigo/language/hr_HR/help/permalinks.html +share/piwigo/language/hr_HR/help/search.html +share/piwigo/language/hr_HR/help/synchronize.html +share/piwigo/language/hr_HR/help/user_list.html +share/piwigo/language/hr_HR/hr_HR.jpg +share/piwigo/language/hr_HR/index.php +share/piwigo/language/hr_HR/install.lang.php +share/piwigo/language/hr_HR/iso.txt +share/piwigo/language/hr_HR/upgrade.lang.php +share/piwigo/language/hu_HU/README.txt +share/piwigo/language/hu_HU/about.html +share/piwigo/language/hu_HU/admin.lang.php +share/piwigo/language/hu_HU/common.lang.php +share/piwigo/language/hu_HU/help/cat_move.html +share/piwigo/language/hu_HU/help/cat_options.html +share/piwigo/language/hu_HU/help/configuration.html +share/piwigo/language/hu_HU/help/group_list.html +share/piwigo/language/hu_HU/help/help_add_photos.html +share/piwigo/language/hu_HU/help/help_groups.html +share/piwigo/language/hu_HU/help/help_misc.html +share/piwigo/language/hu_HU/help/help_permissions.html +share/piwigo/language/hu_HU/help/help_virtual_links.html +share/piwigo/language/hu_HU/help/history.html +share/piwigo/language/hu_HU/help/index.php +share/piwigo/language/hu_HU/help/maintenance.html +share/piwigo/language/hu_HU/help/notification_by_mail.html +share/piwigo/language/hu_HU/help/permalinks.html +share/piwigo/language/hu_HU/help/photos_add_ftp.html +share/piwigo/language/hu_HU/help/search.html +share/piwigo/language/hu_HU/help/synchronize.html +share/piwigo/language/hu_HU/help/user_list.html +share/piwigo/language/hu_HU/hu_HU.jpg +share/piwigo/language/hu_HU/index.php +share/piwigo/language/hu_HU/install.lang.php +share/piwigo/language/hu_HU/iso.txt +share/piwigo/language/hu_HU/upgrade.lang.php +share/piwigo/language/index.php +share/piwigo/language/is_IS/about.html +share/piwigo/language/is_IS/common.lang.php +share/piwigo/language/is_IS/index.php +share/piwigo/language/is_IS/is_IS.jpg +share/piwigo/language/is_IS/iso.txt +share/piwigo/language/it_IT/about.html +share/piwigo/language/it_IT/admin.lang.php +share/piwigo/language/it_IT/common.lang.php +share/piwigo/language/it_IT/help/cat_modify.html +share/piwigo/language/it_IT/help/cat_move.html +share/piwigo/language/it_IT/help/cat_options.html +share/piwigo/language/it_IT/help/cat_perm.html +share/piwigo/language/it_IT/help/configuration.html +share/piwigo/language/it_IT/help/extend_for_templates.html +share/piwigo/language/it_IT/help/group_list.html +share/piwigo/language/it_IT/help/help_add_photos.html +share/piwigo/language/it_IT/help/help_groups.html +share/piwigo/language/it_IT/help/help_misc.html +share/piwigo/language/it_IT/help/help_permissions.html +share/piwigo/language/it_IT/help/help_virtual_links.html +share/piwigo/language/it_IT/help/history.html +share/piwigo/language/it_IT/help/index.php +share/piwigo/language/it_IT/help/maintenance.html +share/piwigo/language/it_IT/help/notification_by_mail.html +share/piwigo/language/it_IT/help/permalinks.html +share/piwigo/language/it_IT/help/photos_add_ftp.html +share/piwigo/language/it_IT/help/search.html +share/piwigo/language/it_IT/help/synchronize.html +share/piwigo/language/it_IT/help/user_list.html +share/piwigo/language/it_IT/index.php +share/piwigo/language/it_IT/install.lang.php +share/piwigo/language/it_IT/iso.txt +share/piwigo/language/it_IT/it_IT.jpg +share/piwigo/language/it_IT/upgrade.lang.php +share/piwigo/language/ja_JP/README.txt +share/piwigo/language/ja_JP/about.html +share/piwigo/language/ja_JP/admin.lang.php +share/piwigo/language/ja_JP/common.lang.php +share/piwigo/language/ja_JP/help/cat_modify.html +share/piwigo/language/ja_JP/help/cat_move.html +share/piwigo/language/ja_JP/help/cat_options.html +share/piwigo/language/ja_JP/help/cat_perm.html +share/piwigo/language/ja_JP/help/configuration.html +share/piwigo/language/ja_JP/help/extend_for_templates.html +share/piwigo/language/ja_JP/help/group_list.html +share/piwigo/language/ja_JP/help/help_add_photos.html +share/piwigo/language/ja_JP/help/help_groups.html +share/piwigo/language/ja_JP/help/help_misc.html +share/piwigo/language/ja_JP/help/help_permissions.html +share/piwigo/language/ja_JP/help/help_virtual_links.html +share/piwigo/language/ja_JP/help/history.html +share/piwigo/language/ja_JP/help/index.php +share/piwigo/language/ja_JP/help/maintenance.html +share/piwigo/language/ja_JP/help/notification_by_mail.html +share/piwigo/language/ja_JP/help/permalinks.html +share/piwigo/language/ja_JP/help/photos_add_ftp.html +share/piwigo/language/ja_JP/help/search.html +share/piwigo/language/ja_JP/help/synchronize.html +share/piwigo/language/ja_JP/help/user_list.html +share/piwigo/language/ja_JP/index.php +share/piwigo/language/ja_JP/install.lang.php +share/piwigo/language/ja_JP/iso.txt +share/piwigo/language/ja_JP/ja_JP.jpg +share/piwigo/language/ja_JP/upgrade.lang.php +share/piwigo/language/ka_GE/about.html +share/piwigo/language/ka_GE/admin.lang.php +share/piwigo/language/ka_GE/common.lang.php +share/piwigo/language/ka_GE/help/cat_modify.html +share/piwigo/language/ka_GE/help/cat_move.html +share/piwigo/language/ka_GE/help/cat_options.html +share/piwigo/language/ka_GE/help/cat_perm.html +share/piwigo/language/ka_GE/help/configuration.html +share/piwigo/language/ka_GE/help/extend_for_templates.html +share/piwigo/language/ka_GE/help/group_list.html +share/piwigo/language/ka_GE/help/help_add_photos.html +share/piwigo/language/ka_GE/help/help_groups.html +share/piwigo/language/ka_GE/help/help_misc.html +share/piwigo/language/ka_GE/help/help_permissions.html +share/piwigo/language/ka_GE/help/help_virtual_links.html +share/piwigo/language/ka_GE/help/history.html +share/piwigo/language/ka_GE/help/index.php +share/piwigo/language/ka_GE/help/maintenance.html +share/piwigo/language/ka_GE/help/notification_by_mail.html +share/piwigo/language/ka_GE/help/permalinks.html +share/piwigo/language/ka_GE/help/photos_add_ftp.html +share/piwigo/language/ka_GE/help/search.html +share/piwigo/language/ka_GE/help/synchronize.html +share/piwigo/language/ka_GE/help/user_list.html +share/piwigo/language/ka_GE/index.php +share/piwigo/language/ka_GE/install.lang.php +share/piwigo/language/ka_GE/iso.txt +share/piwigo/language/ka_GE/ka_GE.jpg +share/piwigo/language/ka_GE/upgrade.lang.php +share/piwigo/language/km_KH/about.html +share/piwigo/language/km_KH/admin.lang.php +share/piwigo/language/km_KH/common.lang.php +share/piwigo/language/km_KH/index.php +share/piwigo/language/km_KH/iso.txt +share/piwigo/language/km_KH/km_KH.jpg +share/piwigo/language/ko_KR/common.lang.php +share/piwigo/language/ko_KR/index.php +share/piwigo/language/ko_KR/iso.txt +share/piwigo/language/ko_KR/ko_KR.jpg +share/piwigo/language/lt_LT/about.html +share/piwigo/language/lt_LT/common.lang.php +share/piwigo/language/lt_LT/iso.txt +share/piwigo/language/lt_LT/lt_LT.jpg +share/piwigo/language/lv_LV/about.html +share/piwigo/language/lv_LV/admin.lang.php +share/piwigo/language/lv_LV/common.lang.php +share/piwigo/language/lv_LV/help/cat_modify.html +share/piwigo/language/lv_LV/help/cat_move.html +share/piwigo/language/lv_LV/help/cat_options.html +share/piwigo/language/lv_LV/help/cat_perm.html +share/piwigo/language/lv_LV/help/configuration.html +share/piwigo/language/lv_LV/help/extend_for_templates.html +share/piwigo/language/lv_LV/help/group_list.html +share/piwigo/language/lv_LV/help/help_add_photos.html +share/piwigo/language/lv_LV/help/help_groups.html +share/piwigo/language/lv_LV/help/help_misc.html +share/piwigo/language/lv_LV/help/help_permissions.html +share/piwigo/language/lv_LV/help/help_virtual_links.html +share/piwigo/language/lv_LV/help/history.html +share/piwigo/language/lv_LV/help/maintenance.html +share/piwigo/language/lv_LV/help/notification_by_mail.html +share/piwigo/language/lv_LV/help/permalinks.html +share/piwigo/language/lv_LV/help/photos_add_ftp.html +share/piwigo/language/lv_LV/help/search.html +share/piwigo/language/lv_LV/help/synchronize.html +share/piwigo/language/lv_LV/help/user_list.html +share/piwigo/language/lv_LV/index.php +share/piwigo/language/lv_LV/install.lang.php +share/piwigo/language/lv_LV/iso.txt +share/piwigo/language/lv_LV/lv_LV.jpg +share/piwigo/language/lv_LV/upgrade.lang.php +share/piwigo/language/mk_MK/admin.lang.php +share/piwigo/language/mk_MK/common.lang.php +share/piwigo/language/mk_MK/index.php +share/piwigo/language/mk_MK/install.lang.php +share/piwigo/language/mk_MK/iso.txt +share/piwigo/language/mk_MK/mk_MK.jpg +share/piwigo/language/nb_NO/about.html +share/piwigo/language/nb_NO/admin.lang.php +share/piwigo/language/nb_NO/common.lang.php +share/piwigo/language/nb_NO/help/cat_modify.html +share/piwigo/language/nb_NO/help/cat_move.html +share/piwigo/language/nb_NO/help/cat_options.html +share/piwigo/language/nb_NO/help/cat_perm.html +share/piwigo/language/nb_NO/help/configuration.html +share/piwigo/language/nb_NO/help/extend_for_templates.html +share/piwigo/language/nb_NO/help/group_list.html +share/piwigo/language/nb_NO/help/help_add_photos.html +share/piwigo/language/nb_NO/help/help_groups.html +share/piwigo/language/nb_NO/help/help_misc.html +share/piwigo/language/nb_NO/help/help_permissions.html +share/piwigo/language/nb_NO/help/help_virtual_links.html +share/piwigo/language/nb_NO/help/history.html +share/piwigo/language/nb_NO/help/maintenance.html +share/piwigo/language/nb_NO/help/notification_by_mail.html +share/piwigo/language/nb_NO/help/permalinks.html +share/piwigo/language/nb_NO/help/photos_add_ftp.html +share/piwigo/language/nb_NO/help/search.html +share/piwigo/language/nb_NO/help/synchronize.html +share/piwigo/language/nb_NO/help/user_list.html +share/piwigo/language/nb_NO/index.php +share/piwigo/language/nb_NO/install.lang.php +share/piwigo/language/nb_NO/iso.txt +share/piwigo/language/nb_NO/nb_NO.jpg +share/piwigo/language/nb_NO/upgrade.lang.php +share/piwigo/language/nl_NL/about.html +share/piwigo/language/nl_NL/admin.lang.php +share/piwigo/language/nl_NL/common.lang.php +share/piwigo/language/nl_NL/help/cat_modify.html +share/piwigo/language/nl_NL/help/cat_move.html +share/piwigo/language/nl_NL/help/cat_options.html +share/piwigo/language/nl_NL/help/cat_perm.html +share/piwigo/language/nl_NL/help/configuration.html +share/piwigo/language/nl_NL/help/extend_for_templates.html +share/piwigo/language/nl_NL/help/group_list.html +share/piwigo/language/nl_NL/help/help_add_photos.html +share/piwigo/language/nl_NL/help/help_groups.html +share/piwigo/language/nl_NL/help/help_misc.html +share/piwigo/language/nl_NL/help/help_permissions.html +share/piwigo/language/nl_NL/help/help_virtual_links.html +share/piwigo/language/nl_NL/help/history.html +share/piwigo/language/nl_NL/help/index.php +share/piwigo/language/nl_NL/help/maintenance.html +share/piwigo/language/nl_NL/help/notification_by_mail.html +share/piwigo/language/nl_NL/help/permalinks.html +share/piwigo/language/nl_NL/help/photos_add_ftp.html +share/piwigo/language/nl_NL/help/search.html +share/piwigo/language/nl_NL/help/synchronize.html +share/piwigo/language/nl_NL/help/user_list.html +share/piwigo/language/nl_NL/index.php +share/piwigo/language/nl_NL/install.lang.php +share/piwigo/language/nl_NL/iso.txt +share/piwigo/language/nl_NL/nl_NL.jpg +share/piwigo/language/nl_NL/upgrade.lang.php +share/piwigo/language/pl_PL/about.html +share/piwigo/language/pl_PL/admin.lang.php +share/piwigo/language/pl_PL/common.lang.php +share/piwigo/language/pl_PL/help/cat_modify.html +share/piwigo/language/pl_PL/help/cat_move.html +share/piwigo/language/pl_PL/help/cat_options.html +share/piwigo/language/pl_PL/help/cat_perm.html +share/piwigo/language/pl_PL/help/configuration.html +share/piwigo/language/pl_PL/help/extend_for_templates.html +share/piwigo/language/pl_PL/help/group_list.html +share/piwigo/language/pl_PL/help/help_add_photos.html +share/piwigo/language/pl_PL/help/help_groups.html +share/piwigo/language/pl_PL/help/help_misc.html +share/piwigo/language/pl_PL/help/help_permissions.html +share/piwigo/language/pl_PL/help/help_virtual_links.html +share/piwigo/language/pl_PL/help/history.html +share/piwigo/language/pl_PL/help/index.php +share/piwigo/language/pl_PL/help/maintenance.html +share/piwigo/language/pl_PL/help/notification_by_mail.html +share/piwigo/language/pl_PL/help/permalinks.html +share/piwigo/language/pl_PL/help/photos_add_ftp.html +share/piwigo/language/pl_PL/help/search.html +share/piwigo/language/pl_PL/help/synchronize.html +share/piwigo/language/pl_PL/help/user_list.html +share/piwigo/language/pl_PL/index.php +share/piwigo/language/pl_PL/install.lang.php +share/piwigo/language/pl_PL/iso.txt +share/piwigo/language/pl_PL/pl_PL.jpg +share/piwigo/language/pl_PL/upgrade.lang.php +share/piwigo/language/pt_BR/about.html +share/piwigo/language/pt_BR/admin.lang.php +share/piwigo/language/pt_BR/common.lang.php +share/piwigo/language/pt_BR/help/cat_modify.html +share/piwigo/language/pt_BR/help/cat_move.html +share/piwigo/language/pt_BR/help/cat_options.html +share/piwigo/language/pt_BR/help/cat_perm.html +share/piwigo/language/pt_BR/help/help_groups.html +share/piwigo/language/pt_BR/help/help_misc.html +share/piwigo/language/pt_BR/help/help_permissions.html +share/piwigo/language/pt_BR/help/help_virtual_links.html +share/piwigo/language/pt_BR/help/photos_add_ftp.html +share/piwigo/language/pt_BR/help/search.html +share/piwigo/language/pt_BR/help/synchronize.html +share/piwigo/language/pt_BR/index.php +share/piwigo/language/pt_BR/install.lang.php +share/piwigo/language/pt_BR/iso.txt +share/piwigo/language/pt_BR/pt_BR.jpg +share/piwigo/language/pt_BR/upgrade.lang.php +share/piwigo/language/pt_PT/about.html +share/piwigo/language/pt_PT/admin.lang.php +share/piwigo/language/pt_PT/common.lang.php +share/piwigo/language/pt_PT/help/cat_modify.html +share/piwigo/language/pt_PT/help/cat_move.html +share/piwigo/language/pt_PT/help/configuration.html +share/piwigo/language/pt_PT/help/extend_for_templates.html +share/piwigo/language/pt_PT/help/group_list.html +share/piwigo/language/pt_PT/help/help_add_photos.html +share/piwigo/language/pt_PT/help/help_groups.html +share/piwigo/language/pt_PT/help/help_misc.html +share/piwigo/language/pt_PT/help/help_permissions.html +share/piwigo/language/pt_PT/help/help_virtual_links.html +share/piwigo/language/pt_PT/help/history.html +share/piwigo/language/pt_PT/help/maintenance.html +share/piwigo/language/pt_PT/help/notification_by_mail.html +share/piwigo/language/pt_PT/help/photos_add_ftp.html +share/piwigo/language/pt_PT/help/search.html +share/piwigo/language/pt_PT/help/synchronize.html +share/piwigo/language/pt_PT/help/user_list.html +share/piwigo/language/pt_PT/index.php +share/piwigo/language/pt_PT/install.lang.php +share/piwigo/language/pt_PT/iso.txt +share/piwigo/language/pt_PT/pt_PT.jpg +share/piwigo/language/pt_PT/upgrade.lang.php +share/piwigo/language/ro_RO/about.html +share/piwigo/language/ro_RO/admin.lang.php +share/piwigo/language/ro_RO/common.lang.php +share/piwigo/language/ro_RO/help/cat_move.html +share/piwigo/language/ro_RO/index.php +share/piwigo/language/ro_RO/install.lang.php +share/piwigo/language/ro_RO/iso.txt +share/piwigo/language/ro_RO/ro_RO.jpg +share/piwigo/language/ro_RO/upgrade.lang.php +share/piwigo/language/ru_RU/about.html +share/piwigo/language/ru_RU/admin.lang.php +share/piwigo/language/ru_RU/common.lang.php +share/piwigo/language/ru_RU/help/cat_modify.html +share/piwigo/language/ru_RU/help/cat_move.html +share/piwigo/language/ru_RU/help/cat_options.html +share/piwigo/language/ru_RU/help/cat_perm.html +share/piwigo/language/ru_RU/help/configuration.html +share/piwigo/language/ru_RU/help/extend_for_templates.html +share/piwigo/language/ru_RU/help/group_list.html +share/piwigo/language/ru_RU/help/help_add_photos.html +share/piwigo/language/ru_RU/help/help_groups.html +share/piwigo/language/ru_RU/help/help_misc.html +share/piwigo/language/ru_RU/help/help_permissions.html +share/piwigo/language/ru_RU/help/help_virtual_links.html +share/piwigo/language/ru_RU/help/history.html +share/piwigo/language/ru_RU/help/index.php +share/piwigo/language/ru_RU/help/maintenance.html +share/piwigo/language/ru_RU/help/notification_by_mail.html +share/piwigo/language/ru_RU/help/permalinks.html +share/piwigo/language/ru_RU/help/photos_add_ftp.html +share/piwigo/language/ru_RU/help/search.html +share/piwigo/language/ru_RU/help/synchronize.html +share/piwigo/language/ru_RU/help/user_list.html +share/piwigo/language/ru_RU/index.php +share/piwigo/language/ru_RU/install.lang.php +share/piwigo/language/ru_RU/iso.txt +share/piwigo/language/ru_RU/ru_RU.jpg +share/piwigo/language/ru_RU/upgrade.lang.php +share/piwigo/language/sh_RS/about.html +share/piwigo/language/sh_RS/admin.lang.php +share/piwigo/language/sh_RS/common.lang.php +share/piwigo/language/sh_RS/help/cat_modify.html +share/piwigo/language/sh_RS/help/help_add_photos.html +share/piwigo/language/sh_RS/help/index.php +share/piwigo/language/sh_RS/index.php +share/piwigo/language/sh_RS/install.lang.php +share/piwigo/language/sh_RS/iso.txt +share/piwigo/language/sh_RS/sh_RS.jpg +share/piwigo/language/sh_RS/sr_RS.jpg +share/piwigo/language/sh_RS/upgrade.lang.php +share/piwigo/language/sk_SK/about.html +share/piwigo/language/sk_SK/admin.lang.php +share/piwigo/language/sk_SK/common.lang.php +share/piwigo/language/sk_SK/help/help_add_photos.html +share/piwigo/language/sk_SK/help/help_groups.html +share/piwigo/language/sk_SK/help/help_misc.html +share/piwigo/language/sk_SK/help/help_permissions.html +share/piwigo/language/sk_SK/help/help_virtual_links.html +share/piwigo/language/sk_SK/help/index.php +share/piwigo/language/sk_SK/help/photos_add_ftp.html +share/piwigo/language/sk_SK/index.php +share/piwigo/language/sk_SK/install.lang.php +share/piwigo/language/sk_SK/iso.txt +share/piwigo/language/sk_SK/sk_SK.jpg +share/piwigo/language/sk_SK/upgrade.lang.php +share/piwigo/language/sl_SI/about.html +share/piwigo/language/sl_SI/admin.lang.php +share/piwigo/language/sl_SI/common.lang.php +share/piwigo/language/sl_SI/index.php +share/piwigo/language/sl_SI/iso.txt +share/piwigo/language/sl_SI/sl_SI.jpg +share/piwigo/language/sr_RS/about.html +share/piwigo/language/sr_RS/admin.lang.php +share/piwigo/language/sr_RS/common.lang.php +share/piwigo/language/sr_RS/index.php +share/piwigo/language/sr_RS/install.lang.php +share/piwigo/language/sr_RS/iso.txt +share/piwigo/language/sr_RS/sr_RS.jpg +share/piwigo/language/sr_RS/upgrade.lang.php +share/piwigo/language/sv_SE/about.html +share/piwigo/language/sv_SE/admin.lang.php +share/piwigo/language/sv_SE/common.lang.php +share/piwigo/language/sv_SE/help/cat_modify.html +share/piwigo/language/sv_SE/help/cat_move.html +share/piwigo/language/sv_SE/help/cat_options.html +share/piwigo/language/sv_SE/help/cat_perm.html +share/piwigo/language/sv_SE/help/configuration.html +share/piwigo/language/sv_SE/help/extend_for_templates.html +share/piwigo/language/sv_SE/help/group_list.html +share/piwigo/language/sv_SE/help/help_add_photos.html +share/piwigo/language/sv_SE/help/help_groups.html +share/piwigo/language/sv_SE/help/help_misc.html +share/piwigo/language/sv_SE/help/help_permissions.html +share/piwigo/language/sv_SE/help/help_virtual_links.html +share/piwigo/language/sv_SE/help/index.php +share/piwigo/language/sv_SE/help/user_list.html +share/piwigo/language/sv_SE/install.lang.php +share/piwigo/language/sv_SE/iso.txt +share/piwigo/language/sv_SE/sv_SE.jpg +share/piwigo/language/sv_SE/upgrade.lang.php +share/piwigo/language/ta_IN/common.lang.php +share/piwigo/language/ta_IN/iso.txt +share/piwigo/language/ta_IN/ta_IN.jpg +share/piwigo/language/th_TH/about.html +share/piwigo/language/th_TH/admin.lang.php +share/piwigo/language/th_TH/common.lang.php +share/piwigo/language/th_TH/help/index.php +share/piwigo/language/th_TH/help/user_list.html +share/piwigo/language/th_TH/install.lang.php +share/piwigo/language/th_TH/iso.txt +share/piwigo/language/th_TH/th_TH.jpg +share/piwigo/language/th_TH/upgrade.lang.php +share/piwigo/language/tr_TR/about.html +share/piwigo/language/tr_TR/admin.lang.php +share/piwigo/language/tr_TR/common.lang.php +share/piwigo/language/tr_TR/help/cat_move.html +share/piwigo/language/tr_TR/help/cat_options.html +share/piwigo/language/tr_TR/help/cat_perm.html +share/piwigo/language/tr_TR/help/configuration.html +share/piwigo/language/tr_TR/help/group_list.html +share/piwigo/language/tr_TR/help/help_add_photos.html +share/piwigo/language/tr_TR/help/help_groups.html +share/piwigo/language/tr_TR/help/help_misc.html +share/piwigo/language/tr_TR/help/help_permissions.html +share/piwigo/language/tr_TR/help/notification_by_mail.html +share/piwigo/language/tr_TR/help/search.html +share/piwigo/language/tr_TR/help/synchronize.html +share/piwigo/language/tr_TR/help/user_list.html +share/piwigo/language/tr_TR/install.lang.php +share/piwigo/language/tr_TR/iso.txt +share/piwigo/language/tr_TR/tr_TR.jpg +share/piwigo/language/tr_TR/upgrade.lang.php +share/piwigo/language/uk_UA/about.html +share/piwigo/language/uk_UA/admin.lang.php +share/piwigo/language/uk_UA/common.lang.php +share/piwigo/language/uk_UA/help/cat_modify.html +share/piwigo/language/uk_UA/help/cat_move.html +share/piwigo/language/uk_UA/help/cat_options.html +share/piwigo/language/uk_UA/help/cat_perm.html +share/piwigo/language/uk_UA/help/configuration.html +share/piwigo/language/uk_UA/help/extend_for_templates.html +share/piwigo/language/uk_UA/help/group_list.html +share/piwigo/language/uk_UA/help/help_add_photos.html +share/piwigo/language/uk_UA/help/help_groups.html +share/piwigo/language/uk_UA/help/help_misc.html +share/piwigo/language/uk_UA/help/help_permissions.html +share/piwigo/language/uk_UA/help/help_virtual_links.html +share/piwigo/language/uk_UA/help/history.html +share/piwigo/language/uk_UA/help/maintenance.html +share/piwigo/language/uk_UA/help/notification_by_mail.html +share/piwigo/language/uk_UA/help/permalinks.html +share/piwigo/language/uk_UA/help/photos_add_ftp.html +share/piwigo/language/uk_UA/help/search.html +share/piwigo/language/uk_UA/help/synchronize.html +share/piwigo/language/uk_UA/help/user_list.html +share/piwigo/language/uk_UA/install.lang.php +share/piwigo/language/uk_UA/iso.txt +share/piwigo/language/uk_UA/uk_UA.jpg +share/piwigo/language/uk_UA/upgrade.lang.php +share/piwigo/language/vi_VN/README.txt +share/piwigo/language/vi_VN/about.html +share/piwigo/language/vi_VN/admin.lang.php +share/piwigo/language/vi_VN/common.lang.php +share/piwigo/language/vi_VN/help/help_add_photos.html +share/piwigo/language/vi_VN/help/index.php +share/piwigo/language/vi_VN/install.lang.php +share/piwigo/language/vi_VN/iso.txt +share/piwigo/language/vi_VN/upgrade.lang.php +share/piwigo/language/vi_VN/vi_VN.jpg +share/piwigo/language/zh_CN/about.html +share/piwigo/language/zh_CN/admin.lang.php +share/piwigo/language/zh_CN/common.lang.php +share/piwigo/language/zh_CN/help/cat_modify.html +share/piwigo/language/zh_CN/help/cat_move.html +share/piwigo/language/zh_CN/help/cat_options.html +share/piwigo/language/zh_CN/help/cat_perm.html +share/piwigo/language/zh_CN/help/configuration.html +share/piwigo/language/zh_CN/help/extend_for_templates.html +share/piwigo/language/zh_CN/help/group_list.html +share/piwigo/language/zh_CN/help/help_add_photos.html +share/piwigo/language/zh_CN/help/help_groups.html +share/piwigo/language/zh_CN/help/help_misc.html +share/piwigo/language/zh_CN/help/help_permissions.html +share/piwigo/language/zh_CN/help/help_virtual_links.html +share/piwigo/language/zh_CN/help/history.html +share/piwigo/language/zh_CN/help/maintenance.html +share/piwigo/language/zh_CN/help/notification_by_mail.html +share/piwigo/language/zh_CN/help/permalinks.html +share/piwigo/language/zh_CN/help/photos_add_ftp.html +share/piwigo/language/zh_CN/help/search.html +share/piwigo/language/zh_CN/help/synchronize.html +share/piwigo/language/zh_CN/help/user_list.html +share/piwigo/language/zh_CN/install.lang.php +share/piwigo/language/zh_CN/iso.txt +share/piwigo/language/zh_CN/upgrade.lang.php +share/piwigo/language/zh_CN/zh_CN.jpg +share/piwigo/language/zh_HK/about.html +share/piwigo/language/zh_HK/common.lang.php +share/piwigo/language/zh_HK/index.php +share/piwigo/language/zh_HK/iso.txt +share/piwigo/language/zh_HK/zh_HK.jpg +share/piwigo/language/zh_TW/about.html +share/piwigo/language/zh_TW/admin.lang.php +share/piwigo/language/zh_TW/common.lang.php +share/piwigo/language/zh_TW/install.lang.php +share/piwigo/language/zh_TW/iso.txt +share/piwigo/language/zh_TW/upgrade.lang.php +share/piwigo/language/zh_TW/zh_TW.jpg +share/piwigo/local/config/index.php +share/piwigo/local/css/index.php +share/piwigo/local/index.php +share/piwigo/local/language/index.php +share/piwigo/nbm.php +share/piwigo/notification.php +share/piwigo/password.php +share/piwigo/picture.php +share/piwigo/plugins/LocalFilesEditor/admin.php +share/piwigo/plugins/LocalFilesEditor/codemirror/lib/codemirror.css +share/piwigo/plugins/LocalFilesEditor/codemirror/lib/codemirror.js +share/piwigo/plugins/LocalFilesEditor/codemirror/lib/overlay.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/clike/clike.css +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/clike/clike.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/clike/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/css/css.css +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/css/css.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/css/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/diff/diff.css +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/diff/diff.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/diff/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/haskell/haskell.css +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/haskell/haskell.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/haskell/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/htmlmixed/htmlmixed.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/htmlmixed/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/javascript/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.css +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/php/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/php/php.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/stex/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/stex/stex.css +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/stex/stex.js +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/xml/index.html +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/xml/xml.css +share/piwigo/plugins/LocalFilesEditor/codemirror/mode/xml/xml.js +share/piwigo/plugins/LocalFilesEditor/include/css.inc.php +share/piwigo/plugins/LocalFilesEditor/include/functions.inc.php +share/piwigo/plugins/LocalFilesEditor/include/lang.inc.php +share/piwigo/plugins/LocalFilesEditor/include/localconf.inc.php +share/piwigo/plugins/LocalFilesEditor/include/plug.inc.php +share/piwigo/plugins/LocalFilesEditor/include/tpl.inc.php +share/piwigo/plugins/LocalFilesEditor/index.php +share/piwigo/plugins/LocalFilesEditor/language/af_ZA/description.txt +share/piwigo/plugins/LocalFilesEditor/language/af_ZA/index.php +share/piwigo/plugins/LocalFilesEditor/language/af_ZA/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/ar_SA/description.txt +share/piwigo/plugins/LocalFilesEditor/language/ar_SA/index.php +share/piwigo/plugins/LocalFilesEditor/language/ar_SA/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/bg_BG/description.txt +share/piwigo/plugins/LocalFilesEditor/language/bg_BG/index.php +share/piwigo/plugins/LocalFilesEditor/language/bg_BG/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/ca_ES/description.txt +share/piwigo/plugins/LocalFilesEditor/language/ca_ES/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/cs_CZ/description.txt +share/piwigo/plugins/LocalFilesEditor/language/cs_CZ/index.php +share/piwigo/plugins/LocalFilesEditor/language/cs_CZ/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/da_DK/description.txt +share/piwigo/plugins/LocalFilesEditor/language/da_DK/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/de_DE/description.txt +share/piwigo/plugins/LocalFilesEditor/language/de_DE/index.php +share/piwigo/plugins/LocalFilesEditor/language/de_DE/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/el_GR/description.txt +share/piwigo/plugins/LocalFilesEditor/language/el_GR/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/en_UK/description.txt +share/piwigo/plugins/LocalFilesEditor/language/en_UK/index.php +share/piwigo/plugins/LocalFilesEditor/language/en_UK/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/es_ES/description.txt +share/piwigo/plugins/LocalFilesEditor/language/es_ES/index.php +share/piwigo/plugins/LocalFilesEditor/language/es_ES/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/fa_IR/description.txt +share/piwigo/plugins/LocalFilesEditor/language/fa_IR/index.php +share/piwigo/plugins/LocalFilesEditor/language/fa_IR/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/fr_CA/description.txt +share/piwigo/plugins/LocalFilesEditor/language/fr_CA/index.php +share/piwigo/plugins/LocalFilesEditor/language/fr_CA/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/fr_FR/description.txt +share/piwigo/plugins/LocalFilesEditor/language/fr_FR/index.php +share/piwigo/plugins/LocalFilesEditor/language/fr_FR/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/he_IL/description.txt +share/piwigo/plugins/LocalFilesEditor/language/he_IL/index.php +share/piwigo/plugins/LocalFilesEditor/language/he_IL/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/hr_HR/description.txt +share/piwigo/plugins/LocalFilesEditor/language/hr_HR/index.php +share/piwigo/plugins/LocalFilesEditor/language/hr_HR/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/hu_HU/description.txt +share/piwigo/plugins/LocalFilesEditor/language/hu_HU/index.php +share/piwigo/plugins/LocalFilesEditor/language/hu_HU/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/index.php +share/piwigo/plugins/LocalFilesEditor/language/it_IT/description.txt +share/piwigo/plugins/LocalFilesEditor/language/it_IT/index.php +share/piwigo/plugins/LocalFilesEditor/language/it_IT/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/ja_JP/description.txt +share/piwigo/plugins/LocalFilesEditor/language/ja_JP/index.php +share/piwigo/plugins/LocalFilesEditor/language/ja_JP/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/ka_GE/description.txt +share/piwigo/plugins/LocalFilesEditor/language/ka_GE/index.php +share/piwigo/plugins/LocalFilesEditor/language/ka_GE/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/lv_LV/description.txt +share/piwigo/plugins/LocalFilesEditor/language/lv_LV/index.php +share/piwigo/plugins/LocalFilesEditor/language/lv_LV/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/nb_NO/description.txt +share/piwigo/plugins/LocalFilesEditor/language/nb_NO/index.php +share/piwigo/plugins/LocalFilesEditor/language/nb_NO/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/nl_NL/description.txt +share/piwigo/plugins/LocalFilesEditor/language/nl_NL/index.php +share/piwigo/plugins/LocalFilesEditor/language/nl_NL/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/pl_PL/description.txt +share/piwigo/plugins/LocalFilesEditor/language/pl_PL/index.php +share/piwigo/plugins/LocalFilesEditor/language/pl_PL/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/pt_BR/index.php +share/piwigo/plugins/LocalFilesEditor/language/pt_BR/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/pt_PT/description.txt +share/piwigo/plugins/LocalFilesEditor/language/pt_PT/index.php +share/piwigo/plugins/LocalFilesEditor/language/pt_PT/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/ru_RU/description.txt +share/piwigo/plugins/LocalFilesEditor/language/ru_RU/index.php +share/piwigo/plugins/LocalFilesEditor/language/ru_RU/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/sh_RS/description.txt +share/piwigo/plugins/LocalFilesEditor/language/sh_RS/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/sk_SK/description.txt +share/piwigo/plugins/LocalFilesEditor/language/sk_SK/index.php +share/piwigo/plugins/LocalFilesEditor/language/sk_SK/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/sr_RS/description.txt +share/piwigo/plugins/LocalFilesEditor/language/sr_RS/index.php +share/piwigo/plugins/LocalFilesEditor/language/sr_RS/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/sv_SE/description.txt +share/piwigo/plugins/LocalFilesEditor/language/sv_SE/index.php +share/piwigo/plugins/LocalFilesEditor/language/sv_SE/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/th_TH/description.txt +share/piwigo/plugins/LocalFilesEditor/language/th_TH/index.php +share/piwigo/plugins/LocalFilesEditor/language/th_TH/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/tr_TR/description.txt +share/piwigo/plugins/LocalFilesEditor/language/tr_TR/index.php +share/piwigo/plugins/LocalFilesEditor/language/tr_TR/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/uk_UA/description.txt +share/piwigo/plugins/LocalFilesEditor/language/uk_UA/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/vi_VN/description.txt +share/piwigo/plugins/LocalFilesEditor/language/vi_VN/index.php +share/piwigo/plugins/LocalFilesEditor/language/vi_VN/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/zh_CN/description.txt +share/piwigo/plugins/LocalFilesEditor/language/zh_CN/index.php +share/piwigo/plugins/LocalFilesEditor/language/zh_CN/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/language/zh_TW/description.txt +share/piwigo/plugins/LocalFilesEditor/language/zh_TW/index.php +share/piwigo/plugins/LocalFilesEditor/language/zh_TW/plugin.lang.php +share/piwigo/plugins/LocalFilesEditor/main.inc.php +share/piwigo/plugins/LocalFilesEditor/maintain.inc.php +share/piwigo/plugins/LocalFilesEditor/show_default.php +share/piwigo/plugins/LocalFilesEditor/template/admin.tpl +share/piwigo/plugins/LocalFilesEditor/template/locfiledit.css +share/piwigo/plugins/LocalFilesEditor/template/show_default.tpl +share/piwigo/plugins/admin_multi_view/controller.php +share/piwigo/plugins/admin_multi_view/index.php +share/piwigo/plugins/admin_multi_view/is_admin.inc.php +share/piwigo/plugins/admin_multi_view/is_admin_template.inc.php +share/piwigo/plugins/admin_multi_view/language/af_ZA/description.txt +share/piwigo/plugins/admin_multi_view/language/af_ZA/index.php +share/piwigo/plugins/admin_multi_view/language/ar_SA/description.txt +share/piwigo/plugins/admin_multi_view/language/ar_SA/index.php +share/piwigo/plugins/admin_multi_view/language/bg_BG/description.txt +share/piwigo/plugins/admin_multi_view/language/bg_BG/index.php +share/piwigo/plugins/admin_multi_view/language/ca_ES/description.txt +share/piwigo/plugins/admin_multi_view/language/cs_CZ/description.txt +share/piwigo/plugins/admin_multi_view/language/cs_CZ/index.php +share/piwigo/plugins/admin_multi_view/language/da_DK/description.txt +share/piwigo/plugins/admin_multi_view/language/de_DE/description.txt +share/piwigo/plugins/admin_multi_view/language/de_DE/index.php +share/piwigo/plugins/admin_multi_view/language/el_GR/description.txt +share/piwigo/plugins/admin_multi_view/language/en_UK/description.txt +share/piwigo/plugins/admin_multi_view/language/en_UK/index.php +share/piwigo/plugins/admin_multi_view/language/es_ES/description.txt +share/piwigo/plugins/admin_multi_view/language/es_ES/index.php +share/piwigo/plugins/admin_multi_view/language/et_EE/description.txt +share/piwigo/plugins/admin_multi_view/language/et_EE/index.php +share/piwigo/plugins/admin_multi_view/language/fa_IR/description.txt +share/piwigo/plugins/admin_multi_view/language/fa_IR/index.php +share/piwigo/plugins/admin_multi_view/language/fr_CA/description.txt +share/piwigo/plugins/admin_multi_view/language/fr_CA/index.php +share/piwigo/plugins/admin_multi_view/language/fr_FR/description.txt +share/piwigo/plugins/admin_multi_view/language/fr_FR/index.php +share/piwigo/plugins/admin_multi_view/language/he_IL/description.txt +share/piwigo/plugins/admin_multi_view/language/he_IL/index.php +share/piwigo/plugins/admin_multi_view/language/hr_HR/description.txt +share/piwigo/plugins/admin_multi_view/language/hr_HR/index.php +share/piwigo/plugins/admin_multi_view/language/hu_HU/description.txt +share/piwigo/plugins/admin_multi_view/language/hu_HU/index.php +share/piwigo/plugins/admin_multi_view/language/index.php +share/piwigo/plugins/admin_multi_view/language/it_IT/description.txt +share/piwigo/plugins/admin_multi_view/language/it_IT/index.php +share/piwigo/plugins/admin_multi_view/language/ja_JP/description.txt +share/piwigo/plugins/admin_multi_view/language/ja_JP/index.php +share/piwigo/plugins/admin_multi_view/language/ka_GE/description.txt +share/piwigo/plugins/admin_multi_view/language/ka_GE/index.php +share/piwigo/plugins/admin_multi_view/language/lv_LV/description.txt +share/piwigo/plugins/admin_multi_view/language/lv_LV/index.php +share/piwigo/plugins/admin_multi_view/language/nb_NO/description.txt +share/piwigo/plugins/admin_multi_view/language/nb_NO/index.php +share/piwigo/plugins/admin_multi_view/language/nl_NL/description.txt +share/piwigo/plugins/admin_multi_view/language/nl_NL/index.php +share/piwigo/plugins/admin_multi_view/language/pl_PL/description.txt +share/piwigo/plugins/admin_multi_view/language/pl_PL/index.php +share/piwigo/plugins/admin_multi_view/language/pt_PT/description.txt +share/piwigo/plugins/admin_multi_view/language/pt_PT/index.php +share/piwigo/plugins/admin_multi_view/language/ro_RO/description.txt +share/piwigo/plugins/admin_multi_view/language/ru_RU/description.txt +share/piwigo/plugins/admin_multi_view/language/ru_RU/index.php +share/piwigo/plugins/admin_multi_view/language/sk_SK/description.txt +share/piwigo/plugins/admin_multi_view/language/sk_SK/index.php +share/piwigo/plugins/admin_multi_view/language/sr_RS/description.txt +share/piwigo/plugins/admin_multi_view/language/sr_RS/index.php +share/piwigo/plugins/admin_multi_view/language/sv_SE/description.txt +share/piwigo/plugins/admin_multi_view/language/sv_SE/index.php +share/piwigo/plugins/admin_multi_view/language/tr_TR/description.txt +share/piwigo/plugins/admin_multi_view/language/tr_TR/index.php +share/piwigo/plugins/admin_multi_view/language/uk_UA/description.txt +share/piwigo/plugins/admin_multi_view/language/vi_VN/description.txt +share/piwigo/plugins/admin_multi_view/language/vi_VN/index.php +share/piwigo/plugins/admin_multi_view/language/zh_CN/description.txt +share/piwigo/plugins/admin_multi_view/language/zh_CN/index.php +share/piwigo/plugins/admin_multi_view/language/zh_TW/description.txt +share/piwigo/plugins/admin_multi_view/language/zh_TW/index.php +share/piwigo/plugins/admin_multi_view/main.inc.php +share/piwigo/plugins/c13y_upgrade/index.php +share/piwigo/plugins/c13y_upgrade/initialize.inc.php +share/piwigo/plugins/c13y_upgrade/language/ar_SA/description.txt +share/piwigo/plugins/c13y_upgrade/language/ar_SA/index.php +share/piwigo/plugins/c13y_upgrade/language/ar_SA/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/ca_ES/description.txt +share/piwigo/plugins/c13y_upgrade/language/ca_ES/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/cs_CZ/description.txt +share/piwigo/plugins/c13y_upgrade/language/cs_CZ/index.php +share/piwigo/plugins/c13y_upgrade/language/cs_CZ/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/da_DK/description.txt +share/piwigo/plugins/c13y_upgrade/language/da_DK/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/de_DE/description.txt +share/piwigo/plugins/c13y_upgrade/language/de_DE/index.php +share/piwigo/plugins/c13y_upgrade/language/de_DE/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/el_GR/description.txt +share/piwigo/plugins/c13y_upgrade/language/el_GR/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/en_UK/description.txt +share/piwigo/plugins/c13y_upgrade/language/en_UK/index.php +share/piwigo/plugins/c13y_upgrade/language/en_UK/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/es_ES/description.txt +share/piwigo/plugins/c13y_upgrade/language/es_ES/index.php +share/piwigo/plugins/c13y_upgrade/language/es_ES/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/fa_IR/description.txt +share/piwigo/plugins/c13y_upgrade/language/fa_IR/index.php +share/piwigo/plugins/c13y_upgrade/language/fa_IR/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/fr_CA/description.txt +share/piwigo/plugins/c13y_upgrade/language/fr_CA/index.php +share/piwigo/plugins/c13y_upgrade/language/fr_CA/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/fr_FR/description.txt +share/piwigo/plugins/c13y_upgrade/language/fr_FR/index.php +share/piwigo/plugins/c13y_upgrade/language/fr_FR/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/he_IL/description.txt +share/piwigo/plugins/c13y_upgrade/language/he_IL/index.php +share/piwigo/plugins/c13y_upgrade/language/he_IL/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/hr_HR/description.txt +share/piwigo/plugins/c13y_upgrade/language/hr_HR/index.php +share/piwigo/plugins/c13y_upgrade/language/hr_HR/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/hu_HU/description.txt +share/piwigo/plugins/c13y_upgrade/language/hu_HU/index.php +share/piwigo/plugins/c13y_upgrade/language/hu_HU/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/index.php +share/piwigo/plugins/c13y_upgrade/language/it_IT/description.txt +share/piwigo/plugins/c13y_upgrade/language/it_IT/index.php +share/piwigo/plugins/c13y_upgrade/language/it_IT/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/ja_JP/description.txt +share/piwigo/plugins/c13y_upgrade/language/ja_JP/index.php +share/piwigo/plugins/c13y_upgrade/language/ja_JP/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/ka_GE/description.txt +share/piwigo/plugins/c13y_upgrade/language/ka_GE/index.php +share/piwigo/plugins/c13y_upgrade/language/ka_GE/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/lv_LV/description.txt +share/piwigo/plugins/c13y_upgrade/language/lv_LV/index.php +share/piwigo/plugins/c13y_upgrade/language/lv_LV/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/nb_NO/description.txt +share/piwigo/plugins/c13y_upgrade/language/nb_NO/index.php +share/piwigo/plugins/c13y_upgrade/language/nb_NO/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/nl_NL/description.txt +share/piwigo/plugins/c13y_upgrade/language/nl_NL/index.php +share/piwigo/plugins/c13y_upgrade/language/nl_NL/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/pl_PL/description.txt +share/piwigo/plugins/c13y_upgrade/language/pl_PL/index.php +share/piwigo/plugins/c13y_upgrade/language/pl_PL/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/pt_PT/description.txt +share/piwigo/plugins/c13y_upgrade/language/pt_PT/index.php +share/piwigo/plugins/c13y_upgrade/language/pt_PT/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/ru_RU/description.txt +share/piwigo/plugins/c13y_upgrade/language/ru_RU/index.php +share/piwigo/plugins/c13y_upgrade/language/ru_RU/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/sk_SK/description.txt +share/piwigo/plugins/c13y_upgrade/language/sk_SK/index.php +share/piwigo/plugins/c13y_upgrade/language/sk_SK/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/sr_RS/description.txt +share/piwigo/plugins/c13y_upgrade/language/sr_RS/index.php +share/piwigo/plugins/c13y_upgrade/language/sr_RS/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/sv_SE/description.txt +share/piwigo/plugins/c13y_upgrade/language/sv_SE/index.php +share/piwigo/plugins/c13y_upgrade/language/sv_SE/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/tr_TR/description.txt +share/piwigo/plugins/c13y_upgrade/language/tr_TR/index.php +share/piwigo/plugins/c13y_upgrade/language/tr_TR/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/uk_UA/description.txt +share/piwigo/plugins/c13y_upgrade/language/uk_UA/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/vi_VN/description.txt +share/piwigo/plugins/c13y_upgrade/language/vi_VN/index.php +share/piwigo/plugins/c13y_upgrade/language/vi_VN/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/zh_CN/description.txt +share/piwigo/plugins/c13y_upgrade/language/zh_CN/index.php +share/piwigo/plugins/c13y_upgrade/language/zh_CN/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/language/zh_TW/description.txt +share/piwigo/plugins/c13y_upgrade/language/zh_TW/index.php +share/piwigo/plugins/c13y_upgrade/language/zh_TW/plugin.lang.php +share/piwigo/plugins/c13y_upgrade/main.inc.php +share/piwigo/plugins/index.php +share/piwigo/plugins/language_switch/default.css +share/piwigo/plugins/language_switch/flags.tpl +share/piwigo/plugins/language_switch/index.php +share/piwigo/plugins/language_switch/language/af_ZA/description.txt +share/piwigo/plugins/language_switch/language/af_ZA/index.php +share/piwigo/plugins/language_switch/language/ar_SA/description.txt +share/piwigo/plugins/language_switch/language/ar_SA/index.php +share/piwigo/plugins/language_switch/language/bg_BG/description.txt +share/piwigo/plugins/language_switch/language/bg_BG/index.php +share/piwigo/plugins/language_switch/language/ca_ES/description.txt +share/piwigo/plugins/language_switch/language/cs_CZ/description.txt +share/piwigo/plugins/language_switch/language/cs_CZ/index.php +share/piwigo/plugins/language_switch/language/da_DK/description.txt +share/piwigo/plugins/language_switch/language/de_DE/description.txt +share/piwigo/plugins/language_switch/language/de_DE/index.php +share/piwigo/plugins/language_switch/language/el_GR/description.txt +share/piwigo/plugins/language_switch/language/en_UK/description.txt +share/piwigo/plugins/language_switch/language/en_UK/index.php +share/piwigo/plugins/language_switch/language/es_ES/description.txt +share/piwigo/plugins/language_switch/language/es_ES/index.php +share/piwigo/plugins/language_switch/language/et_EE/description.txt +share/piwigo/plugins/language_switch/language/et_EE/index.php +share/piwigo/plugins/language_switch/language/fa_IR/description.txt +share/piwigo/plugins/language_switch/language/fa_IR/index.php +share/piwigo/plugins/language_switch/language/fi_FI/description.txt +share/piwigo/plugins/language_switch/language/fr_CA/description.txt +share/piwigo/plugins/language_switch/language/fr_CA/index.php +share/piwigo/plugins/language_switch/language/fr_FR/description.txt +share/piwigo/plugins/language_switch/language/fr_FR/index.php +share/piwigo/plugins/language_switch/language/he_IL/description.txt +share/piwigo/plugins/language_switch/language/he_IL/index.php +share/piwigo/plugins/language_switch/language/hr_HR/description.txt +share/piwigo/plugins/language_switch/language/hr_HR/index.php +share/piwigo/plugins/language_switch/language/hu_HU/description.txt +share/piwigo/plugins/language_switch/language/hu_HU/index.php +share/piwigo/plugins/language_switch/language/index.php +share/piwigo/plugins/language_switch/language/it_IT/description.txt +share/piwigo/plugins/language_switch/language/it_IT/index.php +share/piwigo/plugins/language_switch/language/ja_JP/description.txt +share/piwigo/plugins/language_switch/language/ja_JP/index.php +share/piwigo/plugins/language_switch/language/ka_GE/description.txt +share/piwigo/plugins/language_switch/language/ka_GE/index.php +share/piwigo/plugins/language_switch/language/lv_LV/description.txt +share/piwigo/plugins/language_switch/language/lv_LV/index.php +share/piwigo/plugins/language_switch/language/nb_NO/description.txt +share/piwigo/plugins/language_switch/language/nb_NO/index.php +share/piwigo/plugins/language_switch/language/nl_NL/description.txt +share/piwigo/plugins/language_switch/language/nl_NL/index.php +share/piwigo/plugins/language_switch/language/pl_PL/description.txt +share/piwigo/plugins/language_switch/language/pl_PL/index.php +share/piwigo/plugins/language_switch/language/pt_PT/description.txt +share/piwigo/plugins/language_switch/language/pt_PT/index.php +share/piwigo/plugins/language_switch/language/ro_RO/description.txt +share/piwigo/plugins/language_switch/language/ru_RU/description.txt +share/piwigo/plugins/language_switch/language/ru_RU/index.php +share/piwigo/plugins/language_switch/language/sh_RS/description.txt +share/piwigo/plugins/language_switch/language/sk_SK/description.txt +share/piwigo/plugins/language_switch/language/sk_SK/index.php +share/piwigo/plugins/language_switch/language/sr_RS/description.txt +share/piwigo/plugins/language_switch/language/sr_RS/index.php +share/piwigo/plugins/language_switch/language/sv_SE/description.txt +share/piwigo/plugins/language_switch/language/sv_SE/index.php +share/piwigo/plugins/language_switch/language/th_TH/description.txt +share/piwigo/plugins/language_switch/language/th_TH/index.php +share/piwigo/plugins/language_switch/language/tr_TR/description.txt +share/piwigo/plugins/language_switch/language/tr_TR/index.php +share/piwigo/plugins/language_switch/language/uk_UA/description.txt +share/piwigo/plugins/language_switch/language/vi_VN/description.txt +share/piwigo/plugins/language_switch/language/vi_VN/index.php +share/piwigo/plugins/language_switch/language/zh_CN/description.txt +share/piwigo/plugins/language_switch/language/zh_CN/index.php +share/piwigo/plugins/language_switch/language/zh_TW/description.txt +share/piwigo/plugins/language_switch/language/zh_TW/index.php +share/piwigo/plugins/language_switch/language_switch.css +share/piwigo/plugins/language_switch/language_switch.inc.php +share/piwigo/plugins/language_switch/main.inc.php +share/piwigo/plugins/language_switch/style.css +share/piwigo/popuphelp.php +share/piwigo/profile.php +share/piwigo/qsearch.php +share/piwigo/random.php +share/piwigo/register.php +share/piwigo/search.php +share/piwigo/search_rules.php +share/piwigo/tags.php +share/piwigo/template-extension/distributed/samples/my-picture.tpl +share/piwigo/template-extension/distributed/samples/my-thumbnails.tpl +share/piwigo/template-extension/distributed/samples/my-thumbnails2.css +share/piwigo/template-extension/distributed/samples/my-thumbnails2.tpl +share/piwigo/template-extension/distributed/samples/titling_categories.tpl +share/piwigo/template-extension/index.php +share/piwigo/template-extension/yoga/index.php +share/piwigo/template-extension/yoga/local/README +share/piwigo/template-extension/yoga/local/index.php +share/piwigo/themes/Sylvia/icon/datepicker.png +share/piwigo/themes/Sylvia/icon/delete.png +share/piwigo/themes/Sylvia/icon/edit.png +share/piwigo/themes/Sylvia/icon/errors.png +share/piwigo/themes/Sylvia/icon/favicon.ico +share/piwigo/themes/Sylvia/icon/index.php +share/piwigo/themes/Sylvia/icon/infos.png +share/piwigo/themes/Sylvia/icon/mimetypes/avi.png +share/piwigo/themes/Sylvia/icon/mimetypes/index.php +share/piwigo/themes/Sylvia/icon/mimetypes/mp3.png +share/piwigo/themes/Sylvia/icon/mimetypes/mpg.png +share/piwigo/themes/Sylvia/icon/mimetypes/ogg.png +share/piwigo/themes/Sylvia/icon/mimetypes/zip.png +share/piwigo/themes/Sylvia/icon/note.png +share/piwigo/themes/Sylvia/icon/rating-stars.gif +share/piwigo/themes/Sylvia/icon/rating-stars.png +share/piwigo/themes/Sylvia/icon/recent.png +share/piwigo/themes/Sylvia/icon/recent_by_child.png +share/piwigo/themes/Sylvia/icon/recent_s.png +share/piwigo/themes/Sylvia/icon/recent_s_by_child.png +share/piwigo/themes/Sylvia/icon/remove_s.png +share/piwigo/themes/Sylvia/icon/start_filter.png +share/piwigo/themes/Sylvia/icon/stop_filter.png +share/piwigo/themes/Sylvia/icon/validate_s.png +share/piwigo/themes/Sylvia/images/bottom-left-bg.jpg +share/piwigo/themes/Sylvia/images/cat_bottom-left.gif +share/piwigo/themes/Sylvia/images/cat_bottom-right.gif +share/piwigo/themes/Sylvia/images/cat_top-left.gif +share/piwigo/themes/Sylvia/images/cat_top-right.gif +share/piwigo/themes/Sylvia/images/fillet.gif +share/piwigo/themes/Sylvia/images/header_msgs-bg.gif +share/piwigo/themes/Sylvia/images/menuBox_bottom.gif +share/piwigo/themes/Sylvia/images/menuBox_sides.gif +share/piwigo/themes/Sylvia/images/menuBox_top.gif +share/piwigo/themes/Sylvia/images/menuId_bottom.gif +share/piwigo/themes/Sylvia/images/menuId_sides.gif +share/piwigo/themes/Sylvia/images/menuId_top.gif +share/piwigo/themes/Sylvia/images/top-left-bg.jpg +share/piwigo/themes/Sylvia/images/transparent.gif +share/piwigo/themes/Sylvia/index.php +share/piwigo/themes/Sylvia/local_head.tpl +share/piwigo/themes/Sylvia/mail-css.tpl +share/piwigo/themes/Sylvia/screenshot.png +share/piwigo/themes/Sylvia/theme-ie.css +share/piwigo/themes/Sylvia/theme.css +share/piwigo/themes/Sylvia/themeconf.inc.php +share/piwigo/themes/clear/index.php +share/piwigo/themes/clear/mail-css.tpl +share/piwigo/themes/clear/screenshot.png +share/piwigo/themes/clear/theme.css +share/piwigo/themes/clear/themeconf.inc.php +share/piwigo/themes/dark/images/index.php +share/piwigo/themes/dark/images/tableh1_bg.png +share/piwigo/themes/dark/index.php +share/piwigo/themes/dark/mail-css.tpl +share/piwigo/themes/dark/screenshot.png +share/piwigo/themes/dark/theme.css +share/piwigo/themes/dark/themeconf.inc.php +share/piwigo/themes/default/fix-ie5-ie6.css +share/piwigo/themes/default/fix-ie7.css +share/piwigo/themes/default/fix-khtml.css +share/piwigo/themes/default/icon/datepicker.png +share/piwigo/themes/default/icon/delete.png +share/piwigo/themes/default/icon/edit.png +share/piwigo/themes/default/icon/errors.png +share/piwigo/themes/default/icon/favicon.ico +share/piwigo/themes/default/icon/index.php +share/piwigo/themes/default/icon/infos.png +share/piwigo/themes/default/icon/mimetypes/avi.png +share/piwigo/themes/default/icon/mimetypes/index.php +share/piwigo/themes/default/icon/mimetypes/mp3.png +share/piwigo/themes/default/icon/mimetypes/mpg.png +share/piwigo/themes/default/icon/mimetypes/ogg.png +share/piwigo/themes/default/icon/mimetypes/unknown.png +share/piwigo/themes/default/icon/mimetypes/zip.png +share/piwigo/themes/default/icon/note.png +share/piwigo/themes/default/icon/rating-stars.gif +share/piwigo/themes/default/icon/recent.png +share/piwigo/themes/default/icon/recent_by_child.png +share/piwigo/themes/default/icon/remove_s.png +share/piwigo/themes/default/icon/start_filter.png +share/piwigo/themes/default/icon/stop_filter.png +share/piwigo/themes/default/icon/validate_s.png +share/piwigo/themes/default/iconset.css +share/piwigo/themes/default/images/ajax-loader-big.gif +share/piwigo/themes/default/images/ajax-loader-small.gif +share/piwigo/themes/default/images/index.php +share/piwigo/themes/default/images/progressbar.gif +share/piwigo/themes/default/images/progressbg_black.gif +share/piwigo/themes/default/images/progressbg_green.gif +share/piwigo/themes/default/images/progressbg_orange.gif +share/piwigo/themes/default/images/progressbg_red.gif +share/piwigo/themes/default/images/progressbg_yellow.gif +share/piwigo/themes/default/index.php +share/piwigo/themes/default/js/datepicker.js +share/piwigo/themes/default/js/image.loader.js +share/piwigo/themes/default/js/jquery.js +share/piwigo/themes/default/js/jquery.min.js +share/piwigo/themes/default/js/plugins/Jcrop.gif +share/piwigo/themes/default/js/plugins/chosen-sprite.png +share/piwigo/themes/default/js/plugins/chosen.css +share/piwigo/themes/default/js/plugins/chosen.jquery.min.js +share/piwigo/themes/default/js/plugins/colorbox/style1/colorbox.css +share/piwigo/themes/default/js/plugins/colorbox/style1/images/border.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/controls.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderBottomCenter.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderBottomLeft.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderBottomRight.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderMiddleLeft.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderMiddleRight.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderTopCenter.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderTopLeft.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/ie6/borderTopRight.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/loading.gif +share/piwigo/themes/default/js/plugins/colorbox/style1/images/loading_background.png +share/piwigo/themes/default/js/plugins/colorbox/style1/images/overlay.png +share/piwigo/themes/default/js/plugins/colorbox/style1/index.html +share/piwigo/themes/default/js/plugins/colorbox/style2/colorbox.css +share/piwigo/themes/default/js/plugins/colorbox/style2/images/controls.png +share/piwigo/themes/default/js/plugins/colorbox/style2/images/controls.png.old +share/piwigo/themes/default/js/plugins/colorbox/style2/images/loading.gif +share/piwigo/themes/default/js/plugins/colorbox/style2/index.html +share/piwigo/themes/default/js/plugins/jquery.Jcrop.css +share/piwigo/themes/default/js/plugins/jquery.Jcrop.js +share/piwigo/themes/default/js/plugins/jquery.Jcrop.min.js +share/piwigo/themes/default/js/plugins/jquery.ajaxmanager.js +share/piwigo/themes/default/js/plugins/jquery.autogrow-textarea.js +share/piwigo/themes/default/js/plugins/jquery.cluetip.js +share/piwigo/themes/default/js/plugins/jquery.colorbox.min.js +share/piwigo/themes/default/js/plugins/jquery.jgrowl_minimized.js +share/piwigo/themes/default/js/plugins/jquery.progressbar.js +share/piwigo/themes/default/js/plugins/jquery.progressbar.min.js +share/piwigo/themes/default/js/plugins/jquery.sort.js +share/piwigo/themes/default/js/plugins/jquery.tipTip.minified.js +share/piwigo/themes/default/js/plugins/jquery.tokeninput.js +share/piwigo/themes/default/js/pngfix.js +share/piwigo/themes/default/js/raphael.js +share/piwigo/themes/default/js/rating.js +share/piwigo/themes/default/js/scripts.js +share/piwigo/themes/default/js/thumbnails.loader.js +share/piwigo/themes/default/js/ui/i18n/jquery-ui-i18n.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-af.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ar-DZ.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ar.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-az.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-bg.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-bs.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ca.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-cs.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-da.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-de.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-el.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-en-AU.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-en-GB.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-en-NZ.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-eo.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-es.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-et.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-eu.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-fa.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-fi.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-fo.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-fr-CH.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-fr.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-gl.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-he.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-hr.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-hu.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-hy.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-id.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-is.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-it.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ja.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ko.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-kz.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-lt.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-lv.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ml.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ms.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-nl.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-no.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-pl.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-pt-BR.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-pt.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-rm.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ro.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ru.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-sk.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-sl.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-sq.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-sr-SR.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-sr.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-sv.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-ta.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-th.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-tj.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-tr.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-uk.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-vi.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-zh-CN.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-zh-HK.js +share/piwigo/themes/default/js/ui/i18n/jquery.ui.datepicker-zh-TW.js +share/piwigo/themes/default/js/ui/jquery.effects.blind.js +share/piwigo/themes/default/js/ui/jquery.effects.bounce.js +share/piwigo/themes/default/js/ui/jquery.effects.clip.js +share/piwigo/themes/default/js/ui/jquery.effects.core.js +share/piwigo/themes/default/js/ui/jquery.effects.drop.js +share/piwigo/themes/default/js/ui/jquery.effects.explode.js +share/piwigo/themes/default/js/ui/jquery.effects.fade.js +share/piwigo/themes/default/js/ui/jquery.effects.fold.js +share/piwigo/themes/default/js/ui/jquery.effects.highlight.js +share/piwigo/themes/default/js/ui/jquery.effects.pulsate.js +share/piwigo/themes/default/js/ui/jquery.effects.scale.js +share/piwigo/themes/default/js/ui/jquery.effects.shake.js +share/piwigo/themes/default/js/ui/jquery.effects.slide.js +share/piwigo/themes/default/js/ui/jquery.effects.transfer.js +share/piwigo/themes/default/js/ui/jquery.ui.accordion.js +share/piwigo/themes/default/js/ui/jquery.ui.autocomplete.js +share/piwigo/themes/default/js/ui/jquery.ui.button.js +share/piwigo/themes/default/js/ui/jquery.ui.core.js +share/piwigo/themes/default/js/ui/jquery.ui.datepicker.js +share/piwigo/themes/default/js/ui/jquery.ui.dialog.js +share/piwigo/themes/default/js/ui/jquery.ui.draggable.js +share/piwigo/themes/default/js/ui/jquery.ui.droppable.js +share/piwigo/themes/default/js/ui/jquery.ui.mouse.js +share/piwigo/themes/default/js/ui/jquery.ui.position.js +share/piwigo/themes/default/js/ui/jquery.ui.progressbar.js +share/piwigo/themes/default/js/ui/jquery.ui.resizable.js +share/piwigo/themes/default/js/ui/jquery.ui.selectable.js +share/piwigo/themes/default/js/ui/jquery.ui.slider.js +share/piwigo/themes/default/js/ui/jquery.ui.sortable.js +share/piwigo/themes/default/js/ui/jquery.ui.tabs.js +share/piwigo/themes/default/js/ui/jquery.ui.widget.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.blind.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.bounce.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.clip.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.core.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.drop.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.explode.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.fade.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.fold.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.highlight.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.pulsate.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.scale.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.shake.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.slide.min.js +share/piwigo/themes/default/js/ui/minified/jquery.effects.transfer.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.accordion.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.autocomplete.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.button.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.core.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.datepicker.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.dialog.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.draggable.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.droppable.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.mouse.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.position.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.progressbar.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.resizable.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.selectable.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.slider.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.sortable.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.tabs.min.js +share/piwigo/themes/default/js/ui/minified/jquery.ui.widget.min.js +share/piwigo/themes/default/js/ui/theme/images/ui-bg_flat_0_aaaaaa_40x100.png +share/piwigo/themes/default/js/ui/theme/images/ui-bg_flat_75_ffffff_40x100.png +share/piwigo/themes/default/js/ui/theme/images/ui-bg_glass_55_fbf9ee_1x400.png +share/piwigo/themes/default/js/ui/theme/images/ui-bg_glass_65_ffffff_1x400.png +share/piwigo/themes/default/js/ui/theme/images/ui-bg_glass_75_dadada_1x400.png +share/piwigo/themes/default/js/ui/theme/images/ui-bg_glass_75_e6e6e6_1x400.png +share/piwigo/themes/default/js/ui/theme/images/ui-bg_glass_95_fef1ec_1x400.png +share/piwigo/themes/default/js/ui/theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png +share/piwigo/themes/default/js/ui/theme/images/ui-icons_222222_256x240.png +share/piwigo/themes/default/js/ui/theme/images/ui-icons_2e83ff_256x240.png +share/piwigo/themes/default/js/ui/theme/images/ui-icons_454545_256x240.png +share/piwigo/themes/default/js/ui/theme/images/ui-icons_888888_256x240.png +share/piwigo/themes/default/js/ui/theme/images/ui-icons_cd0a0a_256x240.png +share/piwigo/themes/default/js/ui/theme/jquery.ui.accordion.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.all.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.autocomplete.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.base.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.button.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.core.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.datepicker.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.dialog.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.progressbar.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.resizable.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.selectable.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.slider.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.tabs.css +share/piwigo/themes/default/js/ui/theme/jquery.ui.theme.css +share/piwigo/themes/default/local_head.tpl +share/piwigo/themes/default/print.css +share/piwigo/themes/default/s26/index.htm +share/piwigo/themes/default/s26/outline_005e89.png +share/piwigo/themes/default/s26/outline_808060.png +share/piwigo/themes/default/s26/outline_808080.png +share/piwigo/themes/default/s26/outline_ff3363.png +share/piwigo/themes/default/s26/outline_ff7700.png +share/piwigo/themes/default/s26/outline_ffff80.png +share/piwigo/themes/default/s26/outline_ffffff.png +share/piwigo/themes/default/template/about.tpl +share/piwigo/themes/default/template/comment_list.tpl +share/piwigo/themes/default/template/comments.tpl +share/piwigo/themes/default/template/footer.tpl +share/piwigo/themes/default/template/header.tpl +share/piwigo/themes/default/template/identification.tpl +share/piwigo/themes/default/template/include/autosize.inc.tpl +share/piwigo/themes/default/template/include/colorbox.inc.tpl +share/piwigo/themes/default/template/include/datepicker.inc.tpl +share/piwigo/themes/default/template/include/resize.inc.tpl +share/piwigo/themes/default/template/index.tpl +share/piwigo/themes/default/template/infos_errors.tpl +share/piwigo/themes/default/template/mail/index.php +share/piwigo/themes/default/template/mail/text/html/cat_group_info.tpl +share/piwigo/themes/default/template/mail/text/html/footer.tpl +share/piwigo/themes/default/template/mail/text/html/global-mail-css.tpl +share/piwigo/themes/default/template/mail/text/html/header.tpl +share/piwigo/themes/default/template/mail/text/html/index.php +share/piwigo/themes/default/template/mail/text/html/notification_by_mail.tpl +share/piwigo/themes/default/template/mail/text/index.php +share/piwigo/themes/default/template/mail/text/plain/cat_group_info.tpl +share/piwigo/themes/default/template/mail/text/plain/footer.tpl +share/piwigo/themes/default/template/mail/text/plain/header.tpl +share/piwigo/themes/default/template/mail/text/plain/index.php +share/piwigo/themes/default/template/mail/text/plain/notification_by_mail.tpl +share/piwigo/themes/default/template/mainpage_categories.tpl +share/piwigo/themes/default/template/menubar.tpl +share/piwigo/themes/default/template/menubar_categories.tpl +share/piwigo/themes/default/template/menubar_identification.tpl +share/piwigo/themes/default/template/menubar_links.tpl +share/piwigo/themes/default/template/menubar_menu.tpl +share/piwigo/themes/default/template/menubar_specials.tpl +share/piwigo/themes/default/template/menubar_tags.tpl +share/piwigo/themes/default/template/month_calendar.tpl +share/piwigo/themes/default/template/navigation_bar.tpl +share/piwigo/themes/default/template/nbm.tpl +share/piwigo/themes/default/template/no_photo_yet.tpl +share/piwigo/themes/default/template/notification.tpl +share/piwigo/themes/default/template/password.tpl +share/piwigo/themes/default/template/picture.tpl +share/piwigo/themes/default/template/picture_content.tpl +share/piwigo/themes/default/template/picture_nav_buttons.tpl +share/piwigo/themes/default/template/popuphelp.tpl +share/piwigo/themes/default/template/profile.tpl +share/piwigo/themes/default/template/profile_content.tpl +share/piwigo/themes/default/template/redirect.tpl +share/piwigo/themes/default/template/register.tpl +share/piwigo/themes/default/template/search.tpl +share/piwigo/themes/default/template/search_rules.tpl +share/piwigo/themes/default/template/slideshow.tpl +share/piwigo/themes/default/template/tags.tpl +share/piwigo/themes/default/template/thumbnails.tpl +share/piwigo/themes/default/theme.css +share/piwigo/themes/default/themeconf.inc.php +share/piwigo/themes/default/watermarks/Owned_Stamp.png +share/piwigo/themes/default/watermarks/Sample.png +share/piwigo/themes/default/watermarks/copyright.png +share/piwigo/themes/elegant/fix-ie7.css +share/piwigo/themes/elegant/icon/arrows_ccc.png +share/piwigo/themes/elegant/icon/arrows_fff.png +share/piwigo/themes/elegant/icon/img_next.png +share/piwigo/themes/elegant/icon/img_prev.png +share/piwigo/themes/elegant/icon/none.png +share/piwigo/themes/elegant/icon/rating-stars.png +share/piwigo/themes/elegant/index.php +share/piwigo/themes/elegant/local_head.tpl +share/piwigo/themes/elegant/mail-css.tpl +share/piwigo/themes/elegant/screenshot.png +share/piwigo/themes/elegant/scripts.js +share/piwigo/themes/elegant/scripts_pp.js +share/piwigo/themes/elegant/theme.css +share/piwigo/themes/elegant/themeconf.inc.php +share/piwigo/themes/index.php +share/piwigo/themes/smartpocket/images/ajax-loader.png +share/piwigo/themes/smartpocket/images/error.gif +share/piwigo/themes/smartpocket/images/icons-18-black.png +share/piwigo/themes/smartpocket/images/icons-18-white.png +share/piwigo/themes/smartpocket/images/icons-36-black.png +share/piwigo/themes/smartpocket/images/icons-36-white.png +share/piwigo/themes/smartpocket/images/icons.png +share/piwigo/themes/smartpocket/images/icons@2x.png +share/piwigo/themes/smartpocket/images/loader.gif +share/piwigo/themes/smartpocket/jquery.mobile.css +share/piwigo/themes/smartpocket/js/code.photoswipe.jquery.min.js +share/piwigo/themes/smartpocket/js/code.photoswipe.min.js +share/piwigo/themes/smartpocket/js/config.js +share/piwigo/themes/smartpocket/js/jquery-1.6.4.min.js +share/piwigo/themes/smartpocket/js/jquery.mobile.min.js +share/piwigo/themes/smartpocket/js/klass.min.js +share/piwigo/themes/smartpocket/js/smartpocket.js +share/piwigo/themes/smartpocket/photoswipe.css +share/piwigo/themes/smartpocket/screenshot.png +share/piwigo/themes/smartpocket/template/footer.tpl +share/piwigo/themes/smartpocket/template/header.tpl +share/piwigo/themes/smartpocket/template/identification.tpl +share/piwigo/themes/smartpocket/template/index.tpl +share/piwigo/themes/smartpocket/template/infos_errors.tpl +share/piwigo/themes/smartpocket/template/mainpage_categories.tpl +share/piwigo/themes/smartpocket/template/menubar.tpl +share/piwigo/themes/smartpocket/template/navigation_bar.tpl +share/piwigo/themes/smartpocket/template/profile.tpl +share/piwigo/themes/smartpocket/template/profile_content.tpl +share/piwigo/themes/smartpocket/template/register.tpl +share/piwigo/themes/smartpocket/template/thumbnails.tpl +share/piwigo/themes/smartpocket/theme.css +share/piwigo/themes/smartpocket/themeconf.inc.php +share/piwigo/tools/albums.lang.php +share/piwigo/tools/config.inc.php +share/piwigo/tools/convert_language_to_2.1.pl +share/piwigo/tools/convert_template_to_2.1.pl +share/piwigo/tools/fill_history.pl +share/piwigo/tools/index.php +share/piwigo/tools/key2value.php +share/piwigo/tools/language/translation_validated.inc.php +share/piwigo/tools/local-layout.css +share/piwigo/tools/metadata.php +share/piwigo/tools/missing_keys.pl +share/piwigo/tools/photos.lang.php +share/piwigo/tools/piwigo_remote.pl +share/piwigo/tools/prototype.js +share/piwigo/tools/pwg_rel_create.sh +share/piwigo/tools/release_creation.readme +share/piwigo/tools/replace.php +share/piwigo/tools/replace_language_keys.pl +share/piwigo/tools/replace_language_values.pl +share/piwigo/tools/tablesorter/asc.gif +share/piwigo/tools/tablesorter/bg.gif +share/piwigo/tools/tablesorter/desc.gif +share/piwigo/tools/tablesorter/jquery.tablesorter.css +share/piwigo/tools/tablesorter/jquery.tablesorter.min.js +share/piwigo/tools/translation_analysis.php +share/piwigo/tools/triggers_list.php +share/piwigo/tools/ws.htm +share/piwigo/upgrade.php +share/piwigo/upgrade_feed.php +share/piwigo/upload/.empty +share/piwigo/ws.php diff --git a/www/php-piwigo/distinfo b/www/php-piwigo/distinfo new file mode 100644 index 00000000000..c0f16567e66 --- /dev/null +++ b/www/php-piwigo/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2013/01/03 13:49:43 ryoon Exp $ + +SHA1 (piwigo-2.4.6.zip) = 33605ff0564ca8a7211e8583e40270521dafb78f +RMD160 (piwigo-2.4.6.zip) = f6f4e5b8787fb1054a6f708261d4492f628ef5f0 +Size (piwigo-2.4.6.zip) = 4903557 bytes -- cgit v1.2.3