├── .gitattributes ├── installer ├── .gitignore ├── views │ ├── already_installed.html.php │ ├── invalid_db_version.html.php │ ├── invalid_db_info.html.php │ ├── oops.html.php │ ├── db_not_empty.html.php │ ├── environment_errors.html.php │ ├── missing_db.html.php │ ├── success.html.php │ └── install.html.php └── init_var.php ├── lib ├── images │ ├── logo.png │ ├── favicon.ico │ └── apple-touch-icon.png ├── uploadify │ ├── cancel.png │ └── uploadify.fla ├── mediaelementjs │ ├── bigplay.png │ ├── controls.png │ ├── loading.gif │ ├── background.png │ └── silverlightmediaelement.xap ├── superfish │ └── images │ │ └── arrows-ffffff.png ├── gallery.ajax.js ├── yui │ └── base-min.css └── jquery.cookie.js ├── themes ├── wind │ ├── thumbnail.png │ ├── images │ │ ├── avatar.jpg │ │ ├── ico-album.png │ │ ├── ico-error.png │ │ ├── ico-help.png │ │ ├── ico-info.png │ │ ├── ico-lock.png │ │ ├── ico-print.png │ │ ├── ico-denied.png │ │ ├── ico-success.png │ │ ├── ico-warning.png │ │ ├── ico-separator.gif │ │ ├── loading-large.gif │ │ ├── loading-small.gif │ │ ├── ico-denied-inactive.png │ │ ├── ico-denied-passive.png │ │ ├── ico-separator-rtl.gif │ │ ├── ico-success-passive.png │ │ ├── ico-view-comments.png │ │ ├── ico-view-fullsize.png │ │ ├── ico-view-slideshow.png │ │ ├── select-photos-backg.png │ │ ├── ico-success-inactive.png │ │ └── ico-view-slideshow-rtl.png │ ├── css │ │ ├── themeroller │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ ├── ui-icons_f9bd01_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ └── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ └── fix-ie.css │ ├── views │ │ ├── block.html.php │ │ ├── no_sidebar.html.php │ │ ├── sidebar.html.php │ │ ├── movie.html.php │ │ └── dynamic.html.php │ └── theme.info └── admin_wind │ ├── thumbnail.png │ ├── images │ ├── avatar.jpg │ ├── ico-info.png │ ├── ico-lock.png │ ├── ico-denied.png │ ├── ico-error.png │ ├── ico-separator.gif │ ├── ico-success.png │ ├── ico-warning.png │ ├── loading-large.gif │ ├── loading-small.gif │ ├── ico-denied-passive.png │ ├── ico-separator-rtl.gif │ ├── ico-denied-inactive.png │ ├── ico-success-inactive.png │ └── ico-success-passive.png │ ├── css │ ├── themeroller │ │ └── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ ├── ui-icons_f9bd01_256x240.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png │ └── fix-ie.css │ ├── theme.info │ └── views │ └── block.html.php ├── modules ├── gallery │ ├── images │ │ ├── gd.png │ │ ├── ffmpeg.png │ │ ├── gallery.png │ │ ├── imagemagick.jpg │ │ ├── graphicsmagick.png │ │ ├── loading-small.gif │ │ ├── missing_movie.jpg │ │ ├── missing_photo.jpg │ │ └── missing_album_cover.jpg │ ├── tests │ │ ├── test.flv │ │ ├── test.jpg │ │ ├── Input_Library_Test.php │ │ ├── Valid_Test.php │ │ └── System_Helper_Test.php │ ├── views │ │ ├── error_cli.txt.php │ │ ├── admin_sidebar_blocks.html.php │ │ ├── admin_theme_options.html.php │ │ ├── user_profile_info.html.php │ │ ├── menu_dialog.html.php │ │ ├── menu_link.html.php │ │ ├── admin_block_news.html.php │ │ ├── error.html.php │ │ ├── login_current_user.html.php │ │ ├── admin_graphics_none.html.php │ │ ├── welcome_message_loader.html.php │ │ ├── admin_block_stats.html.php │ │ ├── menu_ajax_link.html.php │ │ ├── admin_themes_preview.html.php │ │ ├── quick_delete_confirm.html.php │ │ ├── reauthenticate.html.php │ │ ├── admin_block_photo_stream.html.php │ │ ├── admin_block_log_entries.html.php │ │ ├── form_uploadify_buttons.html.php │ │ ├── user_languages_block.html.php │ │ ├── menu.html.php │ │ ├── movieplayer.html.php │ │ ├── in_place_edit.html.php │ │ ├── admin_maintenance_show_log.html.php │ │ ├── error_404.html.php │ │ ├── admin_modules_confirm.html.php │ │ ├── kohana_profiler.php │ │ ├── admin_block_platform.html.php │ │ ├── admin_graphics_imagemagick.html.php │ │ ├── admin_graphics_graphicsmagick.html.php │ │ ├── admin_block_welcome.html.php │ │ └── admin_graphics_gd.html.php │ ├── js │ │ ├── item_form_delete.js │ │ └── albums_form_add.js │ ├── module.info │ ├── css │ │ └── debug.css │ ├── models │ │ ├── cache.php │ │ ├── theme.php │ │ ├── var.php │ │ ├── message.php │ │ ├── module.php │ │ ├── failed_auth.php │ │ ├── permission.php │ │ ├── access_cache.php │ │ ├── access_intent.php │ │ ├── graphics_rule.php │ │ ├── incoming_translation.php │ │ └── outgoing_translation.php │ ├── config │ │ ├── database.php │ │ ├── log_file.php │ │ ├── user_agents.php │ │ └── upload.php │ ├── libraries │ │ ├── Form_Uploadify_buttons.php │ │ ├── Block.php │ │ └── MY_Input.php │ ├── helpers │ │ ├── MY_valid.php │ │ ├── gallery_error.php │ │ ├── ajax.php │ │ └── json.php │ └── controllers │ │ ├── logout.php │ │ └── welcome_message.php ├── exif │ ├── tests │ │ └── data │ │ │ └── image.jpg │ ├── module.info │ ├── views │ │ ├── exif_sidebar.html.php │ │ └── exif_dialog.html.php │ ├── models │ │ ├── exif_key.php │ │ └── exif_record.php │ └── controllers │ │ └── exif.php ├── user │ ├── images │ │ └── progressImg1.png │ ├── module.info │ ├── views │ │ ├── admin_users_delete_user.html.php │ │ └── reset_password.html.php │ ├── helpers │ │ ├── user_theme.php │ │ └── user_event.php │ └── tests │ │ └── User_Groups_Test.php ├── g2_import │ ├── data │ │ └── broken-image.gif │ ├── module.info │ └── models │ │ └── g2_map.php ├── organize │ ├── vendor │ │ └── ext │ │ │ └── images │ │ │ ├── default │ │ │ ├── s.gif │ │ │ ├── qtip │ │ │ │ └── bg.gif │ │ │ ├── shadow.png │ │ │ ├── button │ │ │ │ └── btn.gif │ │ │ ├── dd │ │ │ │ ├── drop-no.gif │ │ │ │ └── drop-yes.gif │ │ │ ├── shadow-c.png │ │ │ ├── shadow-lr.png │ │ │ ├── toolbar │ │ │ │ └── bg.gif │ │ │ ├── box │ │ │ │ └── tb-blue.gif │ │ │ ├── form │ │ │ │ ├── text-bg.gif │ │ │ │ └── trigger.gif │ │ │ ├── grid │ │ │ │ ├── loading.gif │ │ │ │ └── invalid_line.gif │ │ │ ├── tree │ │ │ │ ├── arrows.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── drop-add.gif │ │ │ │ ├── drop-over.gif │ │ │ │ ├── drop-between.gif │ │ │ │ └── folder-open.gif │ │ │ ├── window │ │ │ │ ├── left-right.png │ │ │ │ ├── top-bottom.png │ │ │ │ ├── left-corners.png │ │ │ │ └── right-corners.png │ │ │ ├── panel │ │ │ │ ├── tool-sprites.gif │ │ │ │ └── white-top-bottom.gif │ │ │ └── progress │ │ │ │ └── progress-bg.gif │ │ │ └── fam │ │ │ └── delete.gif │ ├── module.info │ ├── css │ │ └── organize_dialog.css │ ├── views │ │ └── organize_dialog.html.php │ └── helpers │ │ └── organize_installer.php ├── recaptcha │ ├── css │ │ └── recaptcha.css │ ├── module.info │ ├── views │ │ └── form_recaptcha.html.php │ └── helpers │ │ ├── recaptcha_installer.php │ │ └── recaptcha_theme.php ├── gallery_unit_test │ ├── views │ │ └── kohana │ │ │ └── error.php │ └── helpers │ │ └── MY_request.php ├── comment │ ├── views │ │ ├── admin_comments.html.php │ │ ├── user_profile_comments.html.php │ │ ├── admin_block_recent_comments.html.php │ │ └── comment.html.php │ ├── module.info │ ├── css │ │ └── comment.css │ └── js │ │ └── comment.js ├── rest │ ├── views │ │ ├── error_rest.json.php │ │ ├── reset_api_key_confirm.html.php │ │ └── user_profile_rest.html.php │ ├── module.info │ ├── models │ │ └── user_access_key.php │ └── helpers │ │ └── registry_rest.php ├── info │ ├── views │ │ └── info_block.html.php │ └── module.info ├── rss │ ├── module.info │ ├── views │ │ └── rss_block.html.php │ └── helpers │ │ └── rss.php ├── tag │ ├── module.info │ ├── views │ │ ├── tag_cloud.html.php │ │ └── tag_block.html.php │ └── helpers │ │ └── tag_theme.php ├── search │ ├── module.info │ ├── views │ │ └── search_link.html.php │ ├── models │ │ └── search_record.php │ └── helpers │ │ └── search_theme.php ├── image_block │ ├── views │ │ └── image_block_block.html.php │ ├── module.info │ └── controllers │ │ └── image_block.php ├── slideshow │ ├── module.info │ └── helpers │ │ └── slideshow_theme.php ├── watermark │ ├── module.info │ └── helpers │ │ └── watermark_event.php ├── server_add │ ├── module.info │ ├── css │ │ └── server_add.css │ ├── models │ │ └── server_add_entry.php │ ├── helpers │ │ └── server_add_theme.php │ └── views │ │ ├── admin_server_add.html.php │ │ └── server_add_tree.html.php ├── notification │ ├── module.info │ ├── views │ │ ├── user_profile_notification.html.php │ │ ├── item_deleted.html.php │ │ ├── item_added.html.php │ │ ├── comment_published.html.php │ │ └── item_updated.html.php │ └── models │ │ ├── subscription.php │ │ └── pending_notification.php ├── unit_test │ ├── config │ │ └── unit_test.php │ └── controllers │ │ └── unit_test.php ├── akismet │ ├── module.info │ ├── views │ │ ├── admin_akismet_stats.html.php │ │ └── admin_akismet.html.php │ └── helpers │ │ └── akismet_installer.php ├── forge │ └── libraries │ │ ├── Form_Radio.php │ │ ├── Form_Password.php │ │ ├── Form_Hidden.php │ │ ├── Form_Submit.php │ │ └── Form_Textarea.php └── kohana23_compat │ └── config │ └── pagination.php ├── bin ├── .htaccess └── README ├── .build_number ├── .gitignore ├── robots.txt ├── system ├── libraries │ ├── Cache_Exception.php │ ├── Database_Exception.php │ ├── Database_Expression.php │ ├── drivers │ │ ├── Log.php │ │ ├── Cache.php │ │ └── Log │ │ │ ├── Syslog.php │ │ │ ├── Database.php │ │ │ └── File.php │ ├── ORM_Validation_Exception.php │ ├── Kohana_User_Exception.php │ ├── Controller.php │ └── Kohana_404_Exception.php ├── config │ ├── image.php │ ├── profiler.php │ ├── view.php │ ├── upload.php │ ├── http.php │ ├── log.php │ └── locale.php ├── helpers │ ├── num.php │ ├── security.php │ └── db.php ├── views │ ├── profiler │ │ ├── profiler.php │ │ ├── table.php │ │ └── table.css │ └── kohana │ │ └── error_disabled.php └── messages │ ├── kohana │ └── core.php │ └── validation │ └── default.php ├── php.ini └── .travis.yml /.gitattributes: -------------------------------------------------------------------------------- 1 | .build_number merge=merge-keep-ours 2 | 3 | -------------------------------------------------------------------------------- /installer/.gitignore: -------------------------------------------------------------------------------- 1 | # ignore the tmp directory if it is present 2 | tmp 3 | -------------------------------------------------------------------------------- /lib/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/images/logo.png -------------------------------------------------------------------------------- /lib/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/images/favicon.ico -------------------------------------------------------------------------------- /lib/uploadify/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/uploadify/cancel.png -------------------------------------------------------------------------------- /lib/uploadify/uploadify.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/uploadify/uploadify.fla -------------------------------------------------------------------------------- /themes/wind/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/thumbnail.png -------------------------------------------------------------------------------- /modules/gallery/images/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/gd.png -------------------------------------------------------------------------------- /themes/wind/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/avatar.jpg -------------------------------------------------------------------------------- /lib/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/images/apple-touch-icon.png -------------------------------------------------------------------------------- /lib/mediaelementjs/bigplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/mediaelementjs/bigplay.png -------------------------------------------------------------------------------- /lib/mediaelementjs/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/mediaelementjs/controls.png -------------------------------------------------------------------------------- /lib/mediaelementjs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/mediaelementjs/loading.gif -------------------------------------------------------------------------------- /modules/gallery/tests/test.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/tests/test.flv -------------------------------------------------------------------------------- /modules/gallery/tests/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/tests/test.jpg -------------------------------------------------------------------------------- /themes/admin_wind/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/thumbnail.png -------------------------------------------------------------------------------- /themes/wind/images/ico-album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-album.png -------------------------------------------------------------------------------- /themes/wind/images/ico-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-error.png -------------------------------------------------------------------------------- /themes/wind/images/ico-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-help.png -------------------------------------------------------------------------------- /themes/wind/images/ico-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-info.png -------------------------------------------------------------------------------- /themes/wind/images/ico-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-lock.png -------------------------------------------------------------------------------- /themes/wind/images/ico-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-print.png -------------------------------------------------------------------------------- /lib/mediaelementjs/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/mediaelementjs/background.png -------------------------------------------------------------------------------- /modules/exif/tests/data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/exif/tests/data/image.jpg -------------------------------------------------------------------------------- /modules/gallery/images/ffmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/ffmpeg.png -------------------------------------------------------------------------------- /modules/gallery/images/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/gallery.png -------------------------------------------------------------------------------- /themes/wind/images/ico-denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-denied.png -------------------------------------------------------------------------------- /themes/wind/images/ico-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-success.png -------------------------------------------------------------------------------- /themes/wind/images/ico-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-warning.png -------------------------------------------------------------------------------- /modules/user/images/progressImg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/user/images/progressImg1.png -------------------------------------------------------------------------------- /themes/admin_wind/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/avatar.jpg -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-info.png -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-lock.png -------------------------------------------------------------------------------- /themes/wind/images/ico-separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-separator.gif -------------------------------------------------------------------------------- /themes/wind/images/loading-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/loading-large.gif -------------------------------------------------------------------------------- /themes/wind/images/loading-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/loading-small.gif -------------------------------------------------------------------------------- /lib/superfish/images/arrows-ffffff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/superfish/images/arrows-ffffff.png -------------------------------------------------------------------------------- /modules/g2_import/data/broken-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/g2_import/data/broken-image.gif -------------------------------------------------------------------------------- /modules/gallery/images/imagemagick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/imagemagick.jpg -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-denied.png -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-error.png -------------------------------------------------------------------------------- /modules/gallery/images/graphicsmagick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/graphicsmagick.png -------------------------------------------------------------------------------- /modules/gallery/images/loading-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/loading-small.gif -------------------------------------------------------------------------------- /modules/gallery/images/missing_movie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/missing_movie.jpg -------------------------------------------------------------------------------- /modules/gallery/images/missing_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/missing_photo.jpg -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-separator.gif -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-success.png -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-warning.png -------------------------------------------------------------------------------- /themes/admin_wind/images/loading-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/loading-large.gif -------------------------------------------------------------------------------- /themes/admin_wind/images/loading-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/loading-small.gif -------------------------------------------------------------------------------- /themes/wind/images/ico-denied-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-denied-inactive.png -------------------------------------------------------------------------------- /themes/wind/images/ico-denied-passive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-denied-passive.png -------------------------------------------------------------------------------- /themes/wind/images/ico-separator-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-separator-rtl.gif -------------------------------------------------------------------------------- /themes/wind/images/ico-success-passive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-success-passive.png -------------------------------------------------------------------------------- /themes/wind/images/ico-view-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-view-comments.png -------------------------------------------------------------------------------- /themes/wind/images/ico-view-fullsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-view-fullsize.png -------------------------------------------------------------------------------- /themes/wind/images/ico-view-slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-view-slideshow.png -------------------------------------------------------------------------------- /themes/wind/images/select-photos-backg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/select-photos-backg.png -------------------------------------------------------------------------------- /themes/wind/images/ico-success-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-success-inactive.png -------------------------------------------------------------------------------- /lib/mediaelementjs/silverlightmediaelement.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/lib/mediaelementjs/silverlightmediaelement.xap -------------------------------------------------------------------------------- /modules/gallery/images/missing_album_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/gallery/images/missing_album_cover.jpg -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-denied-passive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-denied-passive.png -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-separator-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-separator-rtl.gif -------------------------------------------------------------------------------- /themes/wind/images/ico-view-slideshow-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/images/ico-view-slideshow-rtl.png -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/s.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/fam/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/fam/delete.gif -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-denied-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-denied-inactive.png -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-success-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-success-inactive.png -------------------------------------------------------------------------------- /themes/admin_wind/images/ico-success-passive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/images/ico-success-passive.png -------------------------------------------------------------------------------- /modules/gallery/views/error_cli.txt.php: -------------------------------------------------------------------------------- 1 | 2 | echo Kohana_Exception::text($e), "\n"; 3 | 4 | -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/qtip/bg.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/shadow.png -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/button/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/button/btn.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/dd/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/dd/drop-no.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/shadow-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/shadow-c.png -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/shadow-lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/shadow-lr.png -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/toolbar/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/toolbar/bg.gif -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/animated-overlay.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/box/tb-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/box/tb-blue.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/dd/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/dd/drop-yes.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/form/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/form/text-bg.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/form/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/form/trigger.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/grid/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/grid/loading.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/tree/arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/tree/arrows.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/tree/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/tree/folder.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/tree/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/tree/loading.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/tree/drop-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/tree/drop-add.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/tree/drop-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/tree/drop-over.gif -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/animated-overlay.gif -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /modules/gallery/js/item_form_delete.js: -------------------------------------------------------------------------------- 1 | $("#g-confirm-delete").submit( 2 | function() { 3 | $("#g-confirm-delete input[type=submit]").gallery_show_loading(); 4 | } 5 | ); 6 | -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/grid/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/grid/invalid_line.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/tree/drop-between.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/tree/drop-between.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/tree/folder-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/tree/folder-open.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/window/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/window/left-right.png -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/window/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/window/top-bottom.png -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/panel/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/panel/tool-sprites.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/progress/progress-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/progress/progress-bg.gif -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/window/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/window/left-corners.png -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/window/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/window/right-corners.png -------------------------------------------------------------------------------- /modules/recaptcha/css/recaptcha.css: -------------------------------------------------------------------------------- 1 | #g-content #g-comments ul li #g-recaptcha { 2 | padding: 0; 3 | } 4 | 5 | #g-content #g-comments ul li #g-recaptcha div { 6 | padding: 0; 7 | } 8 | -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /installer/views/already_installed.html.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | Your Gallery 3 install is complete. 4 |
5 | 6 | -------------------------------------------------------------------------------- /modules/organize/vendor/ext/images/default/panel/white-top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/modules/organize/vendor/ext/images/default/panel/white-top-bottom.gif -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /themes/admin_wind/css/themeroller/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/admin_wind/css/themeroller/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /themes/wind/css/themeroller/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallery/gallery3/master/themes/wind/css/themeroller/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /bin/.htaccess: -------------------------------------------------------------------------------- 1 | DirectoryIndex .htaccess 2 | SetHandler Gallery_Security_Do_Not_Remove 3 | Options None 4 |4 | Gallery requires at least MySQL version 5.0.0. You're using version = installer::mysql_version($config) ?> 5 |
6 | -------------------------------------------------------------------------------- /installer/views/invalid_db_info.html.php: -------------------------------------------------------------------------------- 1 | 2 |4 | We were unable to connect to your MySQL server with the username and 5 | password that you provided. Please go back and try again! 6 |
7 | -------------------------------------------------------------------------------- /bin/README: -------------------------------------------------------------------------------- 1 | This directory contains utility software that Gallery uses to perform 2 | image manipulation and other useful functions. It should not be 3 | accessible from a web browser, and by default it's empty. Gallery 4 | will instruct you when it's appropriate to download software and 5 | install it here. 6 | -------------------------------------------------------------------------------- /modules/info/views/info_block.html.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /modules/rss/module.info: -------------------------------------------------------------------------------- 1 | name = "RSS" 2 | description = "Provides RSS feeds" 3 | version = 1 4 | author_name = "Gallery Team" 5 | author_url = "http://codex.galleryproject.org/Gallery:Team" 6 | info_url = "http://codex.galleryproject.org/Gallery3:Modules:rss" 7 | discuss_url = "http://galleryproject.org/forum_module_rss" 8 | -------------------------------------------------------------------------------- /themes/wind/views/block.html.php: -------------------------------------------------------------------------------- 1 | 2 | if ($anchor): ?> 3 | 4 | endif ?> 5 || = html::clean($label) ?> | 6 |= html::purify($value) ?> | 7 |
|---|
4 | Something unexpected happened and we can't finish your install. 5 | We'll try to provide some details about the specific problem below. 6 |
7 |8 | 9 |
10 | 11 | -------------------------------------------------------------------------------- /modules/gallery/module.info: -------------------------------------------------------------------------------- 1 | name = "Gallery 3" 2 | description = "Gallery core application" 3 | version = 58 4 | author_name = "Gallery Team" 5 | author_url = "http://codex.galleryproject.org/Gallery:Team" 6 | info_url = "http://codex.galleryproject.org/Gallery3:Modules:gallery" 7 | discuss_url = "http://galleryproject.org/forum_module_gallery" 8 | -------------------------------------------------------------------------------- /modules/search/module.info: -------------------------------------------------------------------------------- 1 | name = "Search" 2 | description = "Allows users to search their Gallery" 3 | version = 1 4 | author_name = "Gallery Team" 5 | author_url = "http://codex.galleryproject.org/Gallery:Team" 6 | info_url = "http://codex.galleryproject.org/Gallery3:Modules:search" 7 | discuss_url = "http://galleryproject.org/forum_module_search" 8 | -------------------------------------------------------------------------------- /modules/info/module.info: -------------------------------------------------------------------------------- 1 | name = "Info" 2 | description = "Display extra information about photos and albums" 3 | version = 3 4 | author_name = "Gallery Team" 5 | author_url = "http://codex.galleryproject.org/Gallery:Team" 6 | info_url = "http://codex.galleryproject.org/Gallery3:Modules:info" 7 | discuss_url = "http://galleryproject.org/forum_module_info" 8 | -------------------------------------------------------------------------------- /modules/user/module.info: -------------------------------------------------------------------------------- 1 | name = "Users and Groups" 2 | description = "Gallery 3 user and group management" 3 | version = 4 4 | 5 | author_name = "Gallery Team" 6 | author_url = "http://codex.galleryproject.org/Gallery:Team" 7 | info_url = "http://codex.galleryproject.org/Gallery3:Modules:user" 8 | discuss_url = "http://galleryproject.org/forum_module_user" 9 | -------------------------------------------------------------------------------- /themes/admin_wind/css/fix-ie.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Fix display in IE 6 and 7 3 | */ 4 | 5 | .g-unavailable { 6 | filter: alpha(opacity=40); 7 | } 8 | 9 | .g-unavailable:hover { 10 | filter: alpha(opacity=100); 11 | } 12 | 13 | tr.g-error td, 14 | tr.g-info td, 15 | tr.g-success td, 16 | tr.g-warning td { 17 | background: none !important; 18 | } 19 | -------------------------------------------------------------------------------- /modules/exif/module.info: -------------------------------------------------------------------------------- 1 | name = "Exif Data" 2 | description = "Extract Exif data and display it on photo pages." 3 | version = 1 4 | author_name = "Gallery Team" 5 | author_url = "http://codex.galleryproject.org/Gallery:Team" 6 | info_url = "http://codex.galleryproject.org/Gallery3:Modules:exif" 7 | discuss_url = "http://galleryproject.org/forum_module_exif" 8 | -------------------------------------------------------------------------------- /modules/image_block/views/image_block_block.html.php: -------------------------------------------------------------------------------- 1 | 2 | foreach ($items as $item): ?> 3 | 8 | endforeach ?> 9 | -------------------------------------------------------------------------------- /modules/rest/views/reset_api_key_confirm.html.php: -------------------------------------------------------------------------------- 1 | 2 |4 | = t("Do you really want to reset your REST API key? Any clients that use this key will need to be updated with the new value.") ?> 5 |
6 | = $form ?> 7 |7 | = text::limit_words(strip_tags($entry["description"]), 25); ?> 8 |
9 |10 | = t("Talk to your Gallery administrator for help fixing this!") ?> 11 |
12 |4 | The database you provided already has Gallery 3 tables in it. 5 | Continuing with the install would overwrite your existing install. 6 | Please either use a different database, delete the old tables, 7 | or choose a different table prefix. 8 |
9 | -------------------------------------------------------------------------------- /modules/gallery/views/admin_graphics_none.html.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |6 | = t("We were unable to detect a graphics program. You must install one of the toolkits below in order to use many Gallery features.") ?> 7 |
8 |4 | = t("Really delete %name? Any photos, movies or albums owned by this user will transfer ownership to %new_owner.", array("name" => $user->display_name(), "new_owner" => identity::active_user()->display_name())) ?> 5 |
6 | = $form ?> 7 |4 | "> 5 | = t("Activate %theme_name", array("theme_name" => $info->name)) ?> 6 | 7 |
8 | 9 | -------------------------------------------------------------------------------- /themes/wind/theme.info: -------------------------------------------------------------------------------- 1 | name = "Gallery Wind" 2 | description = "A crisp and distinctive theme that uses large fonts and icons for easy navigation and an enjoyable browsing experience." 3 | version = 1 4 | author = "Gallery Team" 5 | site = 1 6 | admin = 0 7 | author_name = "Gallery Team" 8 | author_url = "http://codex.galleryproject.org/Gallery:Team" 9 | info_url = "http://codex.galleryproject.org/Gallery3:Themes:wind" 10 | discuss_url = "http://galleryproject.org/forum_theme_wind" 11 | -------------------------------------------------------------------------------- /modules/recaptcha/module.info: -------------------------------------------------------------------------------- 1 | name = "reCAPTCHA" 2 | description = "reCAPTCHA displays a graphical verification that protects the input form from abuse from 'bots,' or automated programs usually written to generate spam (http://recaptcha.net)." 3 | version = 1 4 | author_name = "Gallery Team" 5 | author_url = "http://codex.galleryproject.org/Gallery:Team" 6 | info_url = "http://codex.galleryproject.org/Gallery3:Modules:recaptcha" 7 | discuss_url = "http://galleryproject.org/forum_module_recaptcha" 8 | -------------------------------------------------------------------------------- /modules/rest/views/user_profile_rest.html.php: -------------------------------------------------------------------------------- 1 | 2 |6 | = t("Key: %key", array("key" => $rest_key)) ?> 7 | "> 8 | = t("reset") ?> 9 | 10 |
11 |5 | There are some problems with your web hosting environment 6 | that need to be fixed before you can successfully install 7 | Gallery 3. 8 |
9 | 10 |19 | Check again 20 |
21 | -------------------------------------------------------------------------------- /modules/gallery/views/quick_delete_confirm.html.php: -------------------------------------------------------------------------------- 1 | 2 |4 | if ($item->is_album()): ?> 5 | = t("Delete the album %title? All photos and movies in the album will also be deleted.", 6 | array("title" => html::purify($item->title))) ?> 7 | else: ?> 8 | = t("Are you sure you want to delete %title?", array("title" => html::purify($item->title))) ?> 9 | endif ?> 10 |
11 | = $form ?> 12 |4 | = t("The administration session has expired, please re-authenticate to access the administration area.") ?> 5 |
6 |7 | = t("You are currently logged in as %user_name.", array("user_name" => $user_name)) ?> 8 |
9 | = $form ?> 10 | 15 |4 | We were able to connect to your MySQL server, yay! But the database 5 | name you gave us doesn't exist and we don't have permissions to 6 | create it for you. Please create the database manually, then go 7 | back and try again. 8 |
9 | 10 |11 | If you're having trouble creating the database, please contact your 12 | web host or system administrator for assistance. 13 |
14 | -------------------------------------------------------------------------------- /system/config/image.php: -------------------------------------------------------------------------------- 1 | expression = $expression; 17 | } 18 | 19 | public function __toString() 20 | { 21 | return $this->expression; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /system/libraries/drivers/Log.php: -------------------------------------------------------------------------------- 1 | config = $config; 19 | } 20 | 21 | abstract public function save(array $messages); 22 | } -------------------------------------------------------------------------------- /modules/unit_test/controllers/unit_test.php: -------------------------------------------------------------------------------- 1 | 'radio', 17 | 'class' => 'radio', 18 | 'value' => '1', 19 | 'checked' => FALSE, 20 | ); 21 | 22 | } // End Form_Radio -------------------------------------------------------------------------------- /modules/gallery/views/admin_block_photo_stream.html.php: -------------------------------------------------------------------------------- 1 | 2 |13 | = t("Recent photos added to your Gallery") ?> 14 |
15 | -------------------------------------------------------------------------------- /system/config/view.php: -------------------------------------------------------------------------------- 1 | 2 | = $theme->sidebar_top() ?> 3 | 14 | 15 | = $theme->sidebar_blocks() ?> 16 | = $theme->sidebar_bottom() ?> 17 | -------------------------------------------------------------------------------- /system/helpers/num.php: -------------------------------------------------------------------------------- 1 | 'password', 17 | 'class' => 'password', 18 | 'value' => '', 19 | ); 20 | 21 | protected $protect = array('type'); 22 | 23 | } // End Form Password -------------------------------------------------------------------------------- /themes/wind/views/movie.html.php: -------------------------------------------------------------------------------- 1 | 2 |4 | Your Gallery 3 install is complete! 5 |
6 | 7 | 8 |
10 | We've created an account for you to use:
11 |
12 | username:
13 |
14 | password:
15 |
16 |
17 | Save this information in a safe place, or change your admin password
18 | right away!
19 |
| 11 | = t("To view the changed album %title use the link below.", 12 | array("title" => html::purify($item->parent()->title))) ?> 13 | | 14 ||
| = t("Url:") ?> | 17 |18 | 19 | = $item->parent()->abs_url() ?> 20 | 21 | | 22 |
10 | = $errors["input"] ?>
15 || = t("Title:") ?> | 11 |= html::purify($item->title) ?> | 12 |
| = t("Url:") ?> | 15 |16 | 17 | = $item->abs_url() ?> 18 | 19 | | 20 |
| = t("Description:") ?> | 24 |= nl2br(html::purify($item->description)) ?> | 25 |
= html::purify($task->get_log()) ?>16 |
11 | = t("Maybe the page exists, but is only visible to authorized users.") ?> 12 | = t("Please sign in to find out.") ?> 13 |
14 | = $login_form ?> 15 | 20 | else: ?> 21 |22 | = t("Maybe the page exists, but is only visible to authorized users.") ?> 23 | = t("If you think this is an error, talk to your Gallery administrator!") ?> 24 |
25 | endif; ?> 26 |4 | = t("The following issue(s) have been identified:") ?> 5 |
6 | 7 |9 | = t("Hello, %name,", array("name" => $user->full_name ? $user->full_name : $user->name)) ?> 10 |
11 |12 | = t("We received a request to reset your password for %base_url. If you made this request, you can confirm it by clicking this link. If you didn't request this password reset, it's ok to ignore this mail.", 13 | array("site_url" => html::mark_clean(url::abs_site("/")), 14 | "base_url" => html::mark_clean(url::base(false)), 15 | "confirm_url" => $confirm_url)) ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /lib/yui/base-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2010, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.com/yui/license.html 5 | version: 2.8.1 6 | */ 7 | body{margin:10px;}h1{font-size:138.5%;}h2{font-size:123.1%;}h3{font-size:108%;}h1,h2,h3{margin:1em 0;}h1,h2,h3,h4,h5,h6,strong,dt{font-weight:bold;}optgroup{font-weight:normal;}abbr,acronym{border-bottom:1px dotted #000;cursor:help;}em{font-style:italic;}del{text-decoration:line-through;}blockquote,ul,ol,dl{margin:1em;}ol,ul,dl{margin-left:2em;}ol li{list-style:decimal outside;}ul li{list-style:disc outside;}dl dd{margin-left:1em;}th,td{border:1px solid #000;padding:.5em;}th{font-weight:bold;text-align:center;}caption{margin-bottom:.5em;text-align:center;}sup{vertical-align:super;}sub{vertical-align:sub;}p,fieldset,table,pre{margin-bottom:1em;}button,input[type="checkbox"],input[type="radio"],input[type="reset"],input[type="submit"]{padding:1px;} -------------------------------------------------------------------------------- /system/libraries/Kohana_User_Exception.php: -------------------------------------------------------------------------------- 1 | code = $title; 28 | } 29 | 30 | } // End Kohana User Exception 31 | -------------------------------------------------------------------------------- /modules/comment/css/comment.css: -------------------------------------------------------------------------------- 1 | #g-content #g-comment-form { 2 | margin-top: 2em; 3 | } 4 | 5 | #g-content #g-comments { 6 | margin-top: 2em; 7 | position: relative; 8 | } 9 | 10 | #g-content #g-comments ul li { 11 | margin: 1em 0; 12 | } 13 | 14 | #g-content #g-comments .g-author { 15 | border-bottom: 1px solid #ccc; 16 | color: #999; 17 | height: 32px; 18 | line-height: 32px; 19 | } 20 | 21 | #g-content #g-comments ul li div { 22 | padding: 0 8px 8px 43px; 23 | } 24 | 25 | #g-content #g-comments .g-avatar { 26 | height: 32px; 27 | margin-right: .4em; 28 | width: 32px; 29 | } 30 | 31 | #g-add-comment { 32 | position: absolute; 33 | right: 0; 34 | top: 2px; 35 | } 36 | 37 | #g-admin-comments-menu { 38 | margin: 1em 0; 39 | } 40 | 41 | #g-admin-comments-menu a { 42 | margin: 0; 43 | padding: .2em .6em; 44 | } 45 | 46 | .g-comment-state-unpublished { 47 | font-style: italic; 48 | color: #999; 49 | } 50 | -------------------------------------------------------------------------------- /modules/search/views/search_link.html.php: -------------------------------------------------------------------------------- 1 | 2 | 23 | -------------------------------------------------------------------------------- /system/views/profiler/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 29 || ' . wordwrap($value, 100, ' ', true) . ' | ';
18 | }
19 | ?>
20 |
12 | home page or try again.', 14 | array('%site%' => htmlspecialchars(url::site(), ENT_QUOTES, Kohana::CHARSET), '%uri%' => htmlspecialchars(url::site(Router::$current_uri), ENT_QUOTES, Kohana::CHARSET))); 15 | ?> 16 |
17 || 14 | = $details[$i]["caption"] ?> 15 | | 16 |17 | = html::clean($details[$i]["value"]) ?> 18 | | 19 | if (!empty($details[++$i])): ?> 20 |21 | = $details[$i]["caption"] ?> 22 | | 23 |24 | = html::clean($details[$i]["value"]) ?> 25 | | 26 | else: ?> 27 |28 | endif ?> 29 | |
| = t("Comment:") ?> | 11 |= nl2br(html::purify($comment->text)) ?> | 12 |
| = t("Author name:") ?> | 15 |= html::clean($comment->author_name()) ?> | 16 |
| = t("Author email:") ?> | 19 |= html::clean($comment->author_email()) ?> | 20 |
| = t("Author URL:") ?> | 23 |= html::clean($comment->author_url()) ?> | 24 |
| = t("Url:") ?> | 27 |28 | 29 | = $comment->item()->abs_url() ?>#comments 30 | 31 | | 32 |
6 | = t("ImageMagick is a standalone graphics program available on most Linux systems. Please refer to the ImageMagick website for more information.", 7 | array("url" => "http://www.imagemagick.org")) ?> 8 |
9 | if ($tk->installed): ?> 10 |14 | = t("Activate ImageMagick") ?> 15 |
16 | elseif ($tk->error): ?> 17 |6 | = t("GraphicsMagick is a standalone graphics program available on most Linux systems. Please refer to the GraphicsMagick website for more information.", 7 | array("url" => "http://www.graphicsmagick.org")) ?> 8 |
9 | if ($tk->installed): ?> 10 |14 | = t("Activate Graphics Magic") ?> 15 |
16 | else: ?> 17 || = t("New title:") ?> | 12 |= html::clean($item->title) ?> | 13 | else: ?> 14 |= t("Title:") ?> | 15 |= html::clean($item->title) ?> | 16 | endif ?> 17 |
| = t("Url:") ?> | 20 |= $item->abs_url() ?> | 21 |||
| = t("New description:") ?> | 25 |= html::clean($item->description) ?> | 26 |||
| = t("Description:") ?> | 30 |= html::clean($item->description) ?> | 31 |
3 | = t("This is your administration dashboard and it provides a quick overview of status messages, recent updates, and frequently used options. Add or remove blocks and rearrange them to tailor to your needs. The admin menu provides quick access to all of Gallery 3's options and settings. Here are a few of the most used options to get you started.") ?> 4 |
5 |6 | = t("The GD graphics library is an extension to PHP commonly installed most webservers. Please refer to the GD website for more information.", 7 | array("url" => "http://www.boutell.com/gd")) ?> 8 |
9 | if ($tk->installed && $tk->rotate): ?> 10 |14 | = t("Activate GD") ?> 15 |
16 | elseif ($tk->installed): ?> 17 | if ($tk->error): ?> 18 |19 | = $tk->error ?> 20 |
21 | endif ?> 22 |23 | = t("Activate GD") ?> 24 |
25 | else: ?> 26 |