Bug 135709 - [NEW PORT] www/gallery3
Summary: [NEW PORT] www/gallery3
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Philip M. Gollucci
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-06-18 16:00 UTC by Bo-Yi Wu
Modified: 2009-07-08 02:40 UTC (History)
1 user (show)

See Also:


Attachments
gallery3.shar (368.51 KB, text/plain)
2009-06-18 16:00 UTC, Bo-Yi Wu
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Bo-Yi Wu 2009-06-18 16:00:10 UTC
	 add new port www/gallery3
Comment 1 Gavin Atkinson freebsd_committer freebsd_triage 2009-06-18 16:35:43 UTC
Responsible Changed
From-To: freebsd-www->freebsd-ports-bugs

Ports bug
Comment 2 Bo-Yi Wu 2009-06-19 02:37:47 UTC
>Submitter-Id:	current-users
>Originator:	appleboy
>Organization:	 Taiwan
>Confidential:	no 
>Synopsis:	 Re: ports/135709: [NEW PORT] www/gallery3
>Severity:	 non-critical
>Priority:	 medium
>Category:	 ports
>Class:		 change-request
>Release:	FreeBSD 7.1-RELEASE-p4 i386
>Environment:
System: FreeBSD freebsd.ee.ccu.edu.tw 7.1-RELEASE-p4 FreeBSD 7.1-RELEASE-p4 #3: Sat May 2 12:06:43 CST 2009 root@freebsd.ee.ccu.edu.tw:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:
	 I fixed again, please check it again. 
>How-To-Repeat:
	
>Fix:

	

--- gallery3.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	gallery3
#	gallery3/files
#	gallery3/files/pkg-message.in
#	gallery3/Makefile
#	gallery3/distinfo
#	gallery3/pkg-descr
#	gallery3/pkg-plist
#
echo c - gallery3
mkdir -p gallery3 > /dev/null 2>&1
echo c - gallery3/files
mkdir -p gallery3/files > /dev/null 2>&1
echo x - gallery3/files/pkg-message.in
sed 's/^X//' >gallery3/files/pkg-message.in << '35320545cf31f9601b435d2c76b5faa3'
X*****************************************************************
XBefore using Gallery 3, you will need to configure your database.
XFull instructions are available here:
X
X  http://codex.gallery2.org/Gallery3:Tutorials:Installation
X
XIf you are using MySQL, here's the short version of the instructions:
X
X  1. Create a new database:
X  $ mysqladmin -uroot create gallery3 
X
X  2. Grant access to the database:
X  $ mysql -uroot -e"GRANT ALL ON gallery3.* TO USERNAME@localhost IDENTIFIED BY 'PASSWORD'" gallery3
X  (choose your own values for USERNAME and PASSWORD)
X
XYou will also need to configure Apache.  Consider adding the following
Xto your httpd.conf:
X
X     Alias /gallery3 "%%WWWDIR%%"
X
X    <Directory "%%WWWDIR%%">
X        AllowOverride Options FileInfo
X	Allow from all
X    </Directory>
X
XThen restart Apache: 'apachectl graceful'
X
XPlease visit 'http://localhost/gallery3/' in a
Xweb-browser and follow the configuration instructions.
X*****************************************************************
35320545cf31f9601b435d2c76b5faa3
echo x - gallery3/Makefile
sed 's/^X//' >gallery3/Makefile << '5d14ac7b276c2a5e6ed3059c8b7ebe8e'
X# New ports collection makefile for:	gallery3
X# Date created:		16 June 2009
X# Whom:			Bo-Yi Wu <appleboy.tw@gmail.com>
X#
X# $FreeBSD: ports/www/gallery3/Makefile,v 1.62 2009/06/16 15:05:34 tabthorpe Exp $
X#
X
XPORTNAME=	gallery3
XPORTVERSION=	3.0
XCATEGORIES=	www
XMASTER_SITES=	SF
XMASTER_SITE_SUBDIR=	gallery
XDISTNAME=	gallery-${PORTVERSION}-beta-1
X
XMAINTAINER=	appleboy.tw@gmail.com
XCOMMENT=	Web based photo album organizer written in PHP
X
XUSE_ZIP=	yes
X
XUSE_PHP=	pcre session
XWANT_PHP_WEB=	yes
X
XWRKSRC=		${WRKDIR}/${PORTNAME}
XNO_BUILD=	yes
X
XSUB_FILES=	pkg-message
X
XOPTIONS=	NETPBM "Enable netpbm support" off \
X		IMAGEMAGICK "Enable imagemagick support" on \
X		GRAPHMAGICK "Enable graphicsmagick support" off \
X		PGSQL "Use PostgreSQL instead of MySQL" off \
X		JHEAD "Enable jhead support" on \
X		GD "Enable gd support" off \
X		DCRAW "Enable dcraw support" off \
X		FFMPEG "Enable ffmpeg support" off \
X		NLS "Enable National Language Support" on
X
X.include <bsd.port.pre.mk>
X
X.if defined(WITH_PGSQL)
XUSE_PHP+=	pgsql
X.else
XUSE_PHP+=	mysql
X.endif
X.if defined(WITH_GD)
XUSE_PHP+=	gd
XRUN_DEPENDS+=	pngtogd:${PORTSDIR}/graphics/gd
X.endif
X.if defined(WITH_NLS)
XUSE_PHP+=	gettext
XUSE_GETTEXT=	yes	# Pet portlint
X.endif
X
X.if defined(WITH_NETPBM)
XRUN_DEPENDS+=	giftopnm:${PORTSDIR}/graphics/netpbm
X.endif
X
X.if defined(WITH_GRAPHMAGICK)
XRUN_DEPENDS+=	gm:${PORTSDIR}/graphics/GraphicsMagick
X.endif
X
X.if defined(WITH_IMAGEMAGICK)
XRUN_DEPENDS+=	convert:${PORTSDIR}/graphics/ImageMagick
X.endif
X
X.if defined(WITH_JHEAD)
XRUN_DEPENDS+=	jhead:${PORTSDIR}/graphics/jhead
X.endif
X
X.if defined(WITH_UNZIP)
XRUN_DEPENDS+=	unzip:${PORTSDIR}/archivers/unzip
X.endif
X
X.if defined(WITH_FFMPEG)
XLIB_DEPENDS+=	avcodec.1:${PORTSDIR}/multimedia/ffmpeg
X
X.endif
X.if defined(WITH_DCRAW)
XRUN_DEPENDS+=	dcraw:${PORTSDIR}/graphics/dcraw
X.endif
X
X.if defined(GALLERY3DIR)
X# Continue to support legacy GALLERY3DIR variable
XWWWDIR=	${GALLERY3DIR}
X.endif
X
Xdo-install:
X	@cd ${WRKSRC}/&&${COPYTREE_SHARE} . ${WWWDIR}/
X	@ ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/
X	@${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST}
X
X.if !defined(BATCH)
X	@ ${CAT} ${PKGMESSAGE}
X.endif
X
X.include <bsd.port.post.mk>
5d14ac7b276c2a5e6ed3059c8b7ebe8e
echo x - gallery3/distinfo
sed 's/^X//' >gallery3/distinfo << 'b7cc864d2e066fa4c1134c42f0445d54'
XMD5 (gallery-3.0-beta-1.zip) = b1bea38b5973a4f1e10be27b14fd1ceb
XSHA256 (gallery-3.0-beta-1.zip) = d0265235a3534e3a8a1df09178842753c346d0107f6d9e9b0c675d7f3f8d3814
XSIZE (gallery-3.0-beta-1.zip) = 1220650
b7cc864d2e066fa4c1134c42f0445d54
echo x - gallery3/pkg-descr
sed 's/^X//' >gallery3/pkg-descr << '32401262775d23eff936f3fc99b33aa7'
XGallery is a web based software product that lets you manage your
Xphotos on your own website. You must have your own website with PHP
Xsupport in order to install and use it. With Gallery you can easily
Xcreate and maintain albums of photos via an intuitive interface. Photo
Xmanagement includes automatic thumbnail creation, image resizing,
Xrotation, ordering, captioning, searching and more. Albums can have
Xread, write and caption permissions per individual authenticated user
Xfor an additional level of privacy. Give accounts to your friends and
Xfamily and let them upload and manage their own photos on your
Xwebsite!
X
XWWW: http://gallery.sourceforge.net/
32401262775d23eff936f3fc99b33aa7
echo x - gallery3/pkg-plist
sed 's/^X//' >gallery3/pkg-plist << 'c5e2a3f7ddad27f4427272f28fd1d29d'
X%%WWWDIR%%/.htaccess
X%%WWWDIR%%/LICENSE
X%%WWWDIR%%/README
X%%WWWDIR%%/application/config/config.php
X%%WWWDIR%%/index.php
X%%WWWDIR%%/installer/cli.php
X%%WWWDIR%%/installer/database_config.php
X%%WWWDIR%%/installer/index.php
X%%WWWDIR%%/installer/init_var.php
X%%WWWDIR%%/installer/install.css
X%%WWWDIR%%/installer/install.sql
X%%WWWDIR%%/installer/installer.php
X%%WWWDIR%%/installer/views/already_installed.html.php
X%%WWWDIR%%/installer/views/db_not_empty.html.php
X%%WWWDIR%%/installer/views/environment_errors.html.php
X%%WWWDIR%%/installer/views/get_db_info.html.php
X%%WWWDIR%%/installer/views/install.html.php
X%%WWWDIR%%/installer/views/invalid_db_info.html.php
X%%WWWDIR%%/installer/views/missing_db.html.php
X%%WWWDIR%%/installer/views/oops.html.php
X%%WWWDIR%%/installer/views/success.html.php
X%%WWWDIR%%/installer/web.php
X%%WWWDIR%%/lib/flowplayer.controls.swf
X%%WWWDIR%%/lib/flowplayer.h264streaming.swf
X%%WWWDIR%%/lib/flowplayer.js
X%%WWWDIR%%/lib/flowplayer.swf
X%%WWWDIR%%/lib/gallery.common.js
X%%WWWDIR%%/lib/gallery.dialog.js
X%%WWWDIR%%/lib/gallery.form.js
X%%WWWDIR%%/lib/gallery.panel.js
X%%WWWDIR%%/lib/jquery-ui.js
X%%WWWDIR%%/lib/jquery.MultiFile.js
X%%WWWDIR%%/lib/jquery.autocomplete.css
X%%WWWDIR%%/lib/jquery.autocomplete.js
X%%WWWDIR%%/lib/jquery.cookie.js
X%%WWWDIR%%/lib/jquery.form.js
X%%WWWDIR%%/lib/jquery.jeditable.js
X%%WWWDIR%%/lib/jquery.js
X%%WWWDIR%%/lib/superfish/css/superfish.css
X%%WWWDIR%%/lib/superfish/images/arrows-ffffff.png
X%%WWWDIR%%/lib/superfish/images/shadow.png
X%%WWWDIR%%/lib/superfish/js/superfish.js
X%%WWWDIR%%/lib/swfupload/swfupload.js
X%%WWWDIR%%/lib/swfupload/swfupload.queue.js
X%%WWWDIR%%/lib/swfupload/swfupload.swf
X%%WWWDIR%%/lib/themeroller/images/ui-bg_flat_0_aaaaaa_40x100.png
X%%WWWDIR%%/lib/themeroller/images/ui-bg_flat_55_fbec88_40x100.png
X%%WWWDIR%%/lib/themeroller/images/ui-bg_glass_75_d0e5f5_1x400.png
X%%WWWDIR%%/lib/themeroller/images/ui-bg_glass_85_dfeffc_1x400.png
X%%WWWDIR%%/lib/themeroller/images/ui-bg_glass_95_fef1ec_1x400.png
X%%WWWDIR%%/lib/themeroller/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
X%%WWWDIR%%/lib/themeroller/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
X%%WWWDIR%%/lib/themeroller/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
X%%WWWDIR%%/lib/themeroller/images/ui-icons_217bc0_256x240.png
X%%WWWDIR%%/lib/themeroller/images/ui-icons_2e83ff_256x240.png
X%%WWWDIR%%/lib/themeroller/images/ui-icons_469bdd_256x240.png
X%%WWWDIR%%/lib/themeroller/images/ui-icons_6da8d5_256x240.png
X%%WWWDIR%%/lib/themeroller/images/ui-icons_cd0a0a_256x240.png
X%%WWWDIR%%/lib/themeroller/images/ui-icons_d8e7f3_256x240.png
X%%WWWDIR%%/lib/themeroller/images/ui-icons_f9bd01_256x240.png
X%%WWWDIR%%/lib/themeroller/ui.base.css
X%%WWWDIR%%/lib/themeroller/ui.core.css
X%%WWWDIR%%/lib/themeroller/ui.datepicker.css
X%%WWWDIR%%/lib/themeroller/ui.dialog.css
X%%WWWDIR%%/lib/themeroller/ui.progressbar.css
X%%WWWDIR%%/lib/themeroller/ui.resizable.css
X%%WWWDIR%%/lib/themeroller/ui.tabs.css
X%%WWWDIR%%/lib/themeroller/ui.theme.css
X%%WWWDIR%%/lib/yui/base-min.css
X%%WWWDIR%%/lib/yui/reset-fonts-grids.css
X%%WWWDIR%%/modules/akismet/controllers/admin_akismet.php
X%%WWWDIR%%/modules/akismet/helpers/akismet.php
X%%WWWDIR%%/modules/akismet/helpers/akismet_event.php
X%%WWWDIR%%/modules/akismet/helpers/akismet_installer.php
X%%WWWDIR%%/modules/akismet/helpers/akismet_menu.php
X%%WWWDIR%%/modules/akismet/module.info
X%%WWWDIR%%/modules/akismet/views/admin_akismet.html.php
X%%WWWDIR%%/modules/akismet/views/admin_akismet_stats.html.php
X%%WWWDIR%%/modules/comment/controllers/admin_comments.php
X%%WWWDIR%%/modules/comment/controllers/comments.php
X%%WWWDIR%%/modules/comment/helpers/comment.php
X%%WWWDIR%%/modules/comment/helpers/comment_block.php
X%%WWWDIR%%/modules/comment/helpers/comment_event.php
X%%WWWDIR%%/modules/comment/helpers/comment_installer.php
X%%WWWDIR%%/modules/comment/helpers/comment_menu.php
X%%WWWDIR%%/modules/comment/helpers/comment_search.php
X%%WWWDIR%%/modules/comment/helpers/comment_theme.php
X%%WWWDIR%%/modules/comment/js/comment.js
X%%WWWDIR%%/modules/comment/models/comment.php
X%%WWWDIR%%/modules/comment/module.info
X%%WWWDIR%%/modules/comment/views/admin_block_recent_comments.html.php
X%%WWWDIR%%/modules/comment/views/admin_comments.html.php
X%%WWWDIR%%/modules/comment/views/comment.html.php
X%%WWWDIR%%/modules/comment/views/comments.html.php
X%%WWWDIR%%/modules/exif/controllers/exif.php
X%%WWWDIR%%/modules/exif/helpers/exif.php
X%%WWWDIR%%/modules/exif/helpers/exif_event.php
X%%WWWDIR%%/modules/exif/helpers/exif_installer.php
X%%WWWDIR%%/modules/exif/helpers/exif_task.php
X%%WWWDIR%%/modules/exif/helpers/exif_theme.php
X%%WWWDIR%%/modules/exif/lib/exif.php
X%%WWWDIR%%/modules/exif/lib/makers/canon.php
X%%WWWDIR%%/modules/exif/lib/makers/fujifilm.php
X%%WWWDIR%%/modules/exif/lib/makers/gps.php
X%%WWWDIR%%/modules/exif/lib/makers/nikon.php
X%%WWWDIR%%/modules/exif/lib/makers/olympus.php
X%%WWWDIR%%/modules/exif/lib/makers/panasonic.php
X%%WWWDIR%%/modules/exif/lib/makers/sanyo.php
X%%WWWDIR%%/modules/exif/models/exif_key.php
X%%WWWDIR%%/modules/exif/models/exif_record.php
X%%WWWDIR%%/modules/exif/module.info
X%%WWWDIR%%/modules/exif/views/exif_dialog.html.php
X%%WWWDIR%%/modules/exif/views/exif_sidebar.html.php
X%%WWWDIR%%/modules/forge/libraries/Forge.php
X%%WWWDIR%%/modules/forge/libraries/Form_Checkbox.php
X%%WWWDIR%%/modules/forge/libraries/Form_Checklist.php
X%%WWWDIR%%/modules/forge/libraries/Form_Dateselect.php
X%%WWWDIR%%/modules/forge/libraries/Form_Dropdown.php
X%%WWWDIR%%/modules/forge/libraries/Form_Group.php
X%%WWWDIR%%/modules/forge/libraries/Form_Hidden.php
X%%WWWDIR%%/modules/forge/libraries/Form_Input.php
X%%WWWDIR%%/modules/forge/libraries/Form_Password.php
X%%WWWDIR%%/modules/forge/libraries/Form_Phonenumber.php
X%%WWWDIR%%/modules/forge/libraries/Form_Radio.php
X%%WWWDIR%%/modules/forge/libraries/Form_Submit.php
X%%WWWDIR%%/modules/forge/libraries/Form_Textarea.php
X%%WWWDIR%%/modules/forge/libraries/Form_Upload.php
X%%WWWDIR%%/modules/g2_import/controllers/admin_g2_import.php
X%%WWWDIR%%/modules/g2_import/data/broken-image.gif
X%%WWWDIR%%/modules/g2_import/helpers/g2_import.php
X%%WWWDIR%%/modules/g2_import/helpers/g2_import_event.php
X%%WWWDIR%%/modules/g2_import/helpers/g2_import_installer.php
X%%WWWDIR%%/modules/g2_import/helpers/g2_import_menu.php
X%%WWWDIR%%/modules/g2_import/helpers/g2_import_task.php
X%%WWWDIR%%/modules/g2_import/models/g2_map.php
X%%WWWDIR%%/modules/g2_import/module.info
X%%WWWDIR%%/modules/g2_import/views/admin_g2_import.html.php
X%%WWWDIR%%/modules/gallery/config/cookie.php
X%%WWWDIR%%/modules/gallery/config/database.php
X%%WWWDIR%%/modules/gallery/config/locale.php
X%%WWWDIR%%/modules/gallery/config/routes.php
X%%WWWDIR%%/modules/gallery/config/sendmail.php
X%%WWWDIR%%/modules/gallery/config/session.php
X%%WWWDIR%%/modules/gallery/config/upload.php
X%%WWWDIR%%/modules/gallery/controllers/admin.php
X%%WWWDIR%%/modules/gallery/controllers/admin_advanced_settings.php
X%%WWWDIR%%/modules/gallery/controllers/admin_dashboard.php
X%%WWWDIR%%/modules/gallery/controllers/admin_graphics.php
X%%WWWDIR%%/modules/gallery/controllers/admin_languages.php
X%%WWWDIR%%/modules/gallery/controllers/admin_maintenance.php
X%%WWWDIR%%/modules/gallery/controllers/admin_modules.php
X%%WWWDIR%%/modules/gallery/controllers/admin_theme_details.php
X%%WWWDIR%%/modules/gallery/controllers/admin_themes.php
X%%WWWDIR%%/modules/gallery/controllers/after_install.php
X%%WWWDIR%%/modules/gallery/controllers/albums.php
X%%WWWDIR%%/modules/gallery/controllers/file_proxy.php
X%%WWWDIR%%/modules/gallery/controllers/items.php
X%%WWWDIR%%/modules/gallery/controllers/l10n_client.php
X%%WWWDIR%%/modules/gallery/controllers/maintenance.php
X%%WWWDIR%%/modules/gallery/controllers/move.php
X%%WWWDIR%%/modules/gallery/controllers/movies.php
X%%WWWDIR%%/modules/gallery/controllers/package.php
X%%WWWDIR%%/modules/gallery/controllers/permissions.php
X%%WWWDIR%%/modules/gallery/controllers/photos.php
X%%WWWDIR%%/modules/gallery/controllers/quick.php
X%%WWWDIR%%/modules/gallery/controllers/rest.php
X%%WWWDIR%%/modules/gallery/controllers/simple_uploader.php
X%%WWWDIR%%/modules/gallery/css/debug.css
X%%WWWDIR%%/modules/gallery/css/l10n_client.css
X%%WWWDIR%%/modules/gallery/css/quick.css
X%%WWWDIR%%/modules/gallery/helpers/MY_num.php
X%%WWWDIR%%/modules/gallery/helpers/MY_remote.php
X%%WWWDIR%%/modules/gallery/helpers/MY_url.php
X%%WWWDIR%%/modules/gallery/helpers/access.php
X%%WWWDIR%%/modules/gallery/helpers/album.php
X%%WWWDIR%%/modules/gallery/helpers/batch.php
X%%WWWDIR%%/modules/gallery/helpers/block_manager.php
X%%WWWDIR%%/modules/gallery/helpers/dir.php
X%%WWWDIR%%/modules/gallery/helpers/gallery.php
X%%WWWDIR%%/modules/gallery/helpers/gallery_block.php
X%%WWWDIR%%/modules/gallery/helpers/gallery_event.php
X%%WWWDIR%%/modules/gallery/helpers/gallery_installer.php
X%%WWWDIR%%/modules/gallery/helpers/gallery_menu.php
X%%WWWDIR%%/modules/gallery/helpers/gallery_search.php
X%%WWWDIR%%/modules/gallery/helpers/gallery_task.php
X%%WWWDIR%%/modules/gallery/helpers/gallery_theme.php
X%%WWWDIR%%/modules/gallery/helpers/graphics.php
X%%WWWDIR%%/modules/gallery/helpers/item.php
X%%WWWDIR%%/modules/gallery/helpers/l10n_client.php
X%%WWWDIR%%/modules/gallery/helpers/l10n_scanner.php
X%%WWWDIR%%/modules/gallery/helpers/locale.php
X%%WWWDIR%%/modules/gallery/helpers/log.php
X%%WWWDIR%%/modules/gallery/helpers/message.php
X%%WWWDIR%%/modules/gallery/helpers/model_cache.php
X%%WWWDIR%%/modules/gallery/helpers/module.php
X%%WWWDIR%%/modules/gallery/helpers/movie.php
X%%WWWDIR%%/modules/gallery/helpers/p.php
X%%WWWDIR%%/modules/gallery/helpers/photo.php
X%%WWWDIR%%/modules/gallery/helpers/rest.php
X%%WWWDIR%%/modules/gallery/helpers/site_status.php
X%%WWWDIR%%/modules/gallery/helpers/task.php
X%%WWWDIR%%/modules/gallery/helpers/theme.php
X%%WWWDIR%%/modules/gallery/helpers/xml.php
X%%WWWDIR%%/modules/gallery/hooks/init_gallery.php
X%%WWWDIR%%/modules/gallery/images/gallery.png
X%%WWWDIR%%/modules/gallery/images/gd.png
X%%WWWDIR%%/modules/gallery/images/graphicsmagick.png
X%%WWWDIR%%/modules/gallery/images/imagemagick.jpg
X%%WWWDIR%%/modules/gallery/js/albums_form_add.js
X%%WWWDIR%%/modules/gallery/js/fullsize.js
X%%WWWDIR%%/modules/gallery/js/l10n_client.js
X%%WWWDIR%%/modules/gallery/js/quick.js
X%%WWWDIR%%/modules/gallery/libraries/Admin_View.php
X%%WWWDIR%%/modules/gallery/libraries/Block.php
X%%WWWDIR%%/modules/gallery/libraries/I18n.php
X%%WWWDIR%%/modules/gallery/libraries/MY_Database.php
X%%WWWDIR%%/modules/gallery/libraries/MY_Forge.php
X%%WWWDIR%%/modules/gallery/libraries/MY_ORM.php
X%%WWWDIR%%/modules/gallery/libraries/MY_Pagination.php
X%%WWWDIR%%/modules/gallery/libraries/MY_View.php
X%%WWWDIR%%/modules/gallery/libraries/Menu.php
X%%WWWDIR%%/modules/gallery/libraries/ORM_MPTT.php
X%%WWWDIR%%/modules/gallery/libraries/Sendmail.php
X%%WWWDIR%%/modules/gallery/libraries/Task_Definition.php
X%%WWWDIR%%/modules/gallery/libraries/Theme_View.php
X%%WWWDIR%%/modules/gallery/models/access_cache.php
X%%WWWDIR%%/modules/gallery/models/access_intent.php
X%%WWWDIR%%/modules/gallery/models/graphics_rule.php
X%%WWWDIR%%/modules/gallery/models/incoming_translation.php
X%%WWWDIR%%/modules/gallery/models/item.php
X%%WWWDIR%%/modules/gallery/models/log.php
X%%WWWDIR%%/modules/gallery/models/message.php
X%%WWWDIR%%/modules/gallery/models/module.php
X%%WWWDIR%%/modules/gallery/models/outgoing_translation.php
X%%WWWDIR%%/modules/gallery/models/permission.php
X%%WWWDIR%%/modules/gallery/models/task.php
X%%WWWDIR%%/modules/gallery/models/theme.php
X%%WWWDIR%%/modules/gallery/models/var.php
X%%WWWDIR%%/modules/gallery/module.info
X%%WWWDIR%%/modules/gallery/views/admin_advanced_settings.html.php
X%%WWWDIR%%/modules/gallery/views/admin_block_log_entries.html.php
X%%WWWDIR%%/modules/gallery/views/admin_block_news.html.php
X%%WWWDIR%%/modules/gallery/views/admin_block_photo_stream.html.php
X%%WWWDIR%%/modules/gallery/views/admin_block_platform.html.php
X%%WWWDIR%%/modules/gallery/views/admin_block_stats.html.php
X%%WWWDIR%%/modules/gallery/views/admin_block_welcome.html.php
X%%WWWDIR%%/modules/gallery/views/admin_dashboard.html.php
X%%WWWDIR%%/modules/gallery/views/admin_graphics.html.php
X%%WWWDIR%%/modules/gallery/views/admin_graphics_gd.html.php
X%%WWWDIR%%/modules/gallery/views/admin_graphics_graphicsmagick.html.php
X%%WWWDIR%%/modules/gallery/views/admin_graphics_imagemagick.html.php
X%%WWWDIR%%/modules/gallery/views/admin_graphics_none.html.php
X%%WWWDIR%%/modules/gallery/views/admin_languages.html.php
X%%WWWDIR%%/modules/gallery/views/admin_maintenance.html.php
X%%WWWDIR%%/modules/gallery/views/admin_maintenance_task.html.php
X%%WWWDIR%%/modules/gallery/views/admin_modules.html.php
X%%WWWDIR%%/modules/gallery/views/admin_theme_details.html.php
X%%WWWDIR%%/modules/gallery/views/admin_themes.html.php
X%%WWWDIR%%/modules/gallery/views/admin_themes_preview.html.php
X%%WWWDIR%%/modules/gallery/views/after_install.html.php
X%%WWWDIR%%/modules/gallery/views/after_install_loader.html.php
X%%WWWDIR%%/modules/gallery/views/form.html.php
X%%WWWDIR%%/modules/gallery/views/kohana_error_page.php
X%%WWWDIR%%/modules/gallery/views/kohana_profiler.php
X%%WWWDIR%%/modules/gallery/views/l10n_client.html.php
X%%WWWDIR%%/modules/gallery/views/maintenance.html.php
X%%WWWDIR%%/modules/gallery/views/move_browse.html.php
X%%WWWDIR%%/modules/gallery/views/move_tree.html.php
X%%WWWDIR%%/modules/gallery/views/permissions_browse.html.php
X%%WWWDIR%%/modules/gallery/views/permissions_form.html.php
X%%WWWDIR%%/modules/gallery/views/quick_pane.html.php
X%%WWWDIR%%/modules/gallery/views/simple_uploader.html.php
X%%WWWDIR%%/modules/image_block/helpers/image_block_installer.php
X%%WWWDIR%%/modules/image_block/helpers/image_block_theme.php
X%%WWWDIR%%/modules/image_block/module.info
X%%WWWDIR%%/modules/image_block/views/image_block_block.html.php
X%%WWWDIR%%/modules/info/helpers/info_installer.php
X%%WWWDIR%%/modules/info/helpers/info_theme.php
X%%WWWDIR%%/modules/info/module.info
X%%WWWDIR%%/modules/info/views/info_block.html.php
X%%WWWDIR%%/modules/notification/controllers/notification.php
X%%WWWDIR%%/modules/notification/helpers/notification.php
X%%WWWDIR%%/modules/notification/helpers/notification_event.php
X%%WWWDIR%%/modules/notification/helpers/notification_installer.php
X%%WWWDIR%%/modules/notification/helpers/notification_menu.php
X%%WWWDIR%%/modules/notification/models/pending_notification.php
X%%WWWDIR%%/modules/notification/models/subscription.php
X%%WWWDIR%%/modules/notification/module.info
X%%WWWDIR%%/modules/notification/views/comment_published.html.php
X%%WWWDIR%%/modules/notification/views/item_added.html.php
X%%WWWDIR%%/modules/notification/views/item_deleted.html.php
X%%WWWDIR%%/modules/notification/views/item_updated.html.php
X%%WWWDIR%%/modules/organize/controllers/organize.php
X%%WWWDIR%%/modules/organize/css/organize.css
X%%WWWDIR%%/modules/organize/helpers/organize.php
X%%WWWDIR%%/modules/organize/helpers/organize_installer.php
X%%WWWDIR%%/modules/organize/helpers/organize_menu.php
X%%WWWDIR%%/modules/organize/helpers/organize_task.php
X%%WWWDIR%%/modules/organize/helpers/organize_theme.php
X%%WWWDIR%%/modules/organize/js/organize.js
X%%WWWDIR%%/modules/organize/js/organize_init.js
X%%WWWDIR%%/modules/organize/module.info
X%%WWWDIR%%/modules/organize/views/organize.html.php
X%%WWWDIR%%/modules/organize/views/organize_album.html.php
X%%WWWDIR%%/modules/organize/views/organize_button_pane.html.php
X%%WWWDIR%%/modules/organize/views/organize_edit.html.php
X%%WWWDIR%%/modules/organize/views/organize_thumb_grid.html.php
X%%WWWDIR%%/modules/organize/views/organize_tree.html.php
X%%WWWDIR%%/modules/recaptcha/controllers/admin_recaptcha.php
X%%WWWDIR%%/modules/recaptcha/helpers/recaptcha.php
X%%WWWDIR%%/modules/recaptcha/helpers/recaptcha_event.php
X%%WWWDIR%%/modules/recaptcha/helpers/recaptcha_installer.php
X%%WWWDIR%%/modules/recaptcha/helpers/recaptcha_menu.php
X%%WWWDIR%%/modules/recaptcha/libraries/Form_Recaptcha.php
X%%WWWDIR%%/modules/recaptcha/module.info
X%%WWWDIR%%/modules/recaptcha/views/admin_recaptcha.html.php
X%%WWWDIR%%/modules/recaptcha/views/form_recaptcha.html.php
X%%WWWDIR%%/modules/rss/controllers/rss.php
X%%WWWDIR%%/modules/rss/helpers/rss.php
X%%WWWDIR%%/modules/rss/helpers/rss_installer.php
X%%WWWDIR%%/modules/rss/helpers/rss_theme.php
X%%WWWDIR%%/modules/rss/module.info
X%%WWWDIR%%/modules/rss/views/comment.mrss.php
X%%WWWDIR%%/modules/rss/views/feed.mrss.php
X%%WWWDIR%%/modules/rss/views/rss_block.html.php
X%%WWWDIR%%/modules/search/controllers/search.php
X%%WWWDIR%%/modules/search/helpers/search.php
X%%WWWDIR%%/modules/search/helpers/search_event.php
X%%WWWDIR%%/modules/search/helpers/search_installer.php
X%%WWWDIR%%/modules/search/helpers/search_task.php
X%%WWWDIR%%/modules/search/helpers/search_theme.php
X%%WWWDIR%%/modules/search/models/search_record.php
X%%WWWDIR%%/modules/search/module.info
X%%WWWDIR%%/modules/search/views/search.html.php
X%%WWWDIR%%/modules/search/views/search_link.html.php
X%%WWWDIR%%/modules/server_add/controllers/admin_server_add.php
X%%WWWDIR%%/modules/server_add/controllers/server_add.php
X%%WWWDIR%%/modules/server_add/helpers/server_add.php
X%%WWWDIR%%/modules/server_add/helpers/server_add_installer.php
X%%WWWDIR%%/modules/server_add/helpers/server_add_menu.php
X%%WWWDIR%%/modules/server_add/helpers/server_add_task.php
X%%WWWDIR%%/modules/server_add/helpers/server_add_theme.php
X%%WWWDIR%%/modules/server_add/js/admin.js
X%%WWWDIR%%/modules/server_add/js/server_add.js
X%%WWWDIR%%/modules/server_add/module.info
X%%WWWDIR%%/modules/server_add/views/admin_server_add.html.php
X%%WWWDIR%%/modules/server_add/views/server_add_tree.html.php
X%%WWWDIR%%/modules/server_add/views/server_add_tree_dialog.html.php
X%%WWWDIR%%/modules/slideshow/helpers/slideshow_event.php
X%%WWWDIR%%/modules/slideshow/helpers/slideshow_installer.php
X%%WWWDIR%%/modules/slideshow/helpers/slideshow_menu.php
X%%WWWDIR%%/modules/slideshow/helpers/slideshow_theme.php
X%%WWWDIR%%/modules/slideshow/module.info
X%%WWWDIR%%/modules/tag/controllers/admin_tags.php
X%%WWWDIR%%/modules/tag/controllers/tags.php
X%%WWWDIR%%/modules/tag/helpers/tag.php
X%%WWWDIR%%/modules/tag/helpers/tag_event.php
X%%WWWDIR%%/modules/tag/helpers/tag_installer.php
X%%WWWDIR%%/modules/tag/helpers/tag_menu.php
X%%WWWDIR%%/modules/tag/helpers/tag_theme.php
X%%WWWDIR%%/modules/tag/js/tag.js
X%%WWWDIR%%/modules/tag/models/tag.php
X%%WWWDIR%%/modules/tag/module.info
X%%WWWDIR%%/modules/tag/views/admin_tags.html.php
X%%WWWDIR%%/modules/tag/views/tag_block.html.php
X%%WWWDIR%%/modules/tag/views/tag_cloud.html.php
X%%WWWDIR%%/modules/user/controllers/admin_users.php
X%%WWWDIR%%/modules/user/controllers/login.php
X%%WWWDIR%%/modules/user/controllers/logout.php
X%%WWWDIR%%/modules/user/controllers/password.php
X%%WWWDIR%%/modules/user/controllers/users.php
X%%WWWDIR%%/modules/user/helpers/group.php
X%%WWWDIR%%/modules/user/helpers/user.php
X%%WWWDIR%%/modules/user/helpers/user_event.php
X%%WWWDIR%%/modules/user/helpers/user_installer.php
X%%WWWDIR%%/modules/user/helpers/user_menu.php
X%%WWWDIR%%/modules/user/helpers/user_theme.php
X%%WWWDIR%%/modules/user/lib/PasswordHash.php
X%%WWWDIR%%/modules/user/models/group.php
X%%WWWDIR%%/modules/user/models/user.php
X%%WWWDIR%%/modules/user/module.info
X%%WWWDIR%%/modules/user/views/admin_users.html.php
X%%WWWDIR%%/modules/user/views/admin_users_group.html.php
X%%WWWDIR%%/modules/user/views/login.html.php
X%%WWWDIR%%/modules/user/views/login_ajax.html.php
X%%WWWDIR%%/modules/user/views/reset_password.html.php
X%%WWWDIR%%/modules/watermark/controllers/admin_watermarks.php
X%%WWWDIR%%/modules/watermark/helpers/watermark.php
X%%WWWDIR%%/modules/watermark/helpers/watermark_installer.php
X%%WWWDIR%%/modules/watermark/helpers/watermark_menu.php
X%%WWWDIR%%/modules/watermark/module.info
X%%WWWDIR%%/modules/watermark/views/admin_watermarks.html.php
X%%WWWDIR%%/system/KohanaLicense.html
X%%WWWDIR%%/system/config/cache.php
X%%WWWDIR%%/system/config/cache_memcache.php
X%%WWWDIR%%/system/config/cache_sqlite.php
X%%WWWDIR%%/system/config/cache_xcache.php
X%%WWWDIR%%/system/config/cookie.php
X%%WWWDIR%%/system/config/credit_cards.php
X%%WWWDIR%%/system/config/database.php
X%%WWWDIR%%/system/config/email.php
X%%WWWDIR%%/system/config/encryption.php
X%%WWWDIR%%/system/config/http.php
X%%WWWDIR%%/system/config/image.php
X%%WWWDIR%%/system/config/inflector.php
X%%WWWDIR%%/system/config/locale.php
X%%WWWDIR%%/system/config/mimes.php
X%%WWWDIR%%/system/config/pagination.php
X%%WWWDIR%%/system/config/profiler.php
X%%WWWDIR%%/system/config/routes.php
X%%WWWDIR%%/system/config/session.php
X%%WWWDIR%%/system/config/sql_types.php
X%%WWWDIR%%/system/config/upload.php
X%%WWWDIR%%/system/config/user_agents.php
X%%WWWDIR%%/system/config/view.php
X%%WWWDIR%%/system/controllers/template.php
X%%WWWDIR%%/system/core/Benchmark.php
X%%WWWDIR%%/system/core/Bootstrap.php
X%%WWWDIR%%/system/core/Event.php
X%%WWWDIR%%/system/core/Kohana.php
X%%WWWDIR%%/system/core/utf8.php
X%%WWWDIR%%/system/core/utf8/from_unicode.php
X%%WWWDIR%%/system/core/utf8/ltrim.php
X%%WWWDIR%%/system/core/utf8/ord.php
X%%WWWDIR%%/system/core/utf8/rtrim.php
X%%WWWDIR%%/system/core/utf8/str_ireplace.php
X%%WWWDIR%%/system/core/utf8/str_pad.php
X%%WWWDIR%%/system/core/utf8/str_split.php
X%%WWWDIR%%/system/core/utf8/strcasecmp.php
X%%WWWDIR%%/system/core/utf8/strcspn.php
X%%WWWDIR%%/system/core/utf8/stristr.php
X%%WWWDIR%%/system/core/utf8/strlen.php
X%%WWWDIR%%/system/core/utf8/strpos.php
X%%WWWDIR%%/system/core/utf8/strrev.php
X%%WWWDIR%%/system/core/utf8/strrpos.php
X%%WWWDIR%%/system/core/utf8/strspn.php
X%%WWWDIR%%/system/core/utf8/strtolower.php
X%%WWWDIR%%/system/core/utf8/strtoupper.php
X%%WWWDIR%%/system/core/utf8/substr.php
X%%WWWDIR%%/system/core/utf8/substr_replace.php
X%%WWWDIR%%/system/core/utf8/to_unicode.php
X%%WWWDIR%%/system/core/utf8/transliterate_to_ascii.php
X%%WWWDIR%%/system/core/utf8/trim.php
X%%WWWDIR%%/system/core/utf8/ucfirst.php
X%%WWWDIR%%/system/core/utf8/ucwords.php
X%%WWWDIR%%/system/helpers/arr.php
X%%WWWDIR%%/system/helpers/cookie.php
X%%WWWDIR%%/system/helpers/date.php
X%%WWWDIR%%/system/helpers/download.php
X%%WWWDIR%%/system/helpers/email.php
X%%WWWDIR%%/system/helpers/expires.php
X%%WWWDIR%%/system/helpers/feed.php
X%%WWWDIR%%/system/helpers/file.php
X%%WWWDIR%%/system/helpers/form.php
X%%WWWDIR%%/system/helpers/format.php
X%%WWWDIR%%/system/helpers/html.php
X%%WWWDIR%%/system/helpers/inflector.php
X%%WWWDIR%%/system/helpers/num.php
X%%WWWDIR%%/system/helpers/remote.php
X%%WWWDIR%%/system/helpers/request.php
X%%WWWDIR%%/system/helpers/security.php
X%%WWWDIR%%/system/helpers/text.php
X%%WWWDIR%%/system/helpers/upload.php
X%%WWWDIR%%/system/helpers/url.php
X%%WWWDIR%%/system/helpers/valid.php
X%%WWWDIR%%/system/i18n/en_US/cache.php
X%%WWWDIR%%/system/i18n/en_US/calendar.php
X%%WWWDIR%%/system/i18n/en_US/core.php
X%%WWWDIR%%/system/i18n/en_US/database.php
X%%WWWDIR%%/system/i18n/en_US/encrypt.php
X%%WWWDIR%%/system/i18n/en_US/errors.php
X%%WWWDIR%%/system/i18n/en_US/event.php
X%%WWWDIR%%/system/i18n/en_US/image.php
X%%WWWDIR%%/system/i18n/en_US/orm.php
X%%WWWDIR%%/system/i18n/en_US/profiler.php
X%%WWWDIR%%/system/i18n/en_US/session.php
X%%WWWDIR%%/system/i18n/en_US/upload.php
X%%WWWDIR%%/system/i18n/en_US/validation.php
X%%WWWDIR%%/system/libraries/Cache.php
X%%WWWDIR%%/system/libraries/Controller.php
X%%WWWDIR%%/system/libraries/Database.php
X%%WWWDIR%%/system/libraries/Database_Expression.php
X%%WWWDIR%%/system/libraries/Encrypt.php
X%%WWWDIR%%/system/libraries/Event_Observer.php
X%%WWWDIR%%/system/libraries/Event_Subject.php
X%%WWWDIR%%/system/libraries/Image.php
X%%WWWDIR%%/system/libraries/Input.php
X%%WWWDIR%%/system/libraries/Model.php
X%%WWWDIR%%/system/libraries/ORM.php
X%%WWWDIR%%/system/libraries/ORM_Iterator.php
X%%WWWDIR%%/system/libraries/ORM_Tree.php
X%%WWWDIR%%/system/libraries/ORM_Versioned.php
X%%WWWDIR%%/system/libraries/Pagination.php
X%%WWWDIR%%/system/libraries/Profiler.php
X%%WWWDIR%%/system/libraries/Profiler_Table.php
X%%WWWDIR%%/system/libraries/Router.php
X%%WWWDIR%%/system/libraries/Session.php
X%%WWWDIR%%/system/libraries/URI.php
X%%WWWDIR%%/system/libraries/Validation.php
X%%WWWDIR%%/system/libraries/View.php
X%%WWWDIR%%/system/libraries/drivers/Cache.php
X%%WWWDIR%%/system/libraries/drivers/Cache/Apc.php
X%%WWWDIR%%/system/libraries/drivers/Cache/Eaccelerator.php
X%%WWWDIR%%/system/libraries/drivers/Cache/File.php
X%%WWWDIR%%/system/libraries/drivers/Cache/Memcache.php
X%%WWWDIR%%/system/libraries/drivers/Cache/Sqlite.php
X%%WWWDIR%%/system/libraries/drivers/Cache/Xcache.php
X%%WWWDIR%%/system/libraries/drivers/Captcha.php
X%%WWWDIR%%/system/libraries/drivers/Captcha/Alpha.php
X%%WWWDIR%%/system/libraries/drivers/Captcha/Basic.php
X%%WWWDIR%%/system/libraries/drivers/Captcha/Black.php
X%%WWWDIR%%/system/libraries/drivers/Captcha/Math.php
X%%WWWDIR%%/system/libraries/drivers/Captcha/Riddle.php
X%%WWWDIR%%/system/libraries/drivers/Captcha/Word.php
X%%WWWDIR%%/system/libraries/drivers/Database.php
X%%WWWDIR%%/system/libraries/drivers/Database/Mssql.php
X%%WWWDIR%%/system/libraries/drivers/Database/Mysql.php
X%%WWWDIR%%/system/libraries/drivers/Database/Mysqli.php
X%%WWWDIR%%/system/libraries/drivers/Database/Pdosqlite.php
X%%WWWDIR%%/system/libraries/drivers/Database/Pgsql.php
X%%WWWDIR%%/system/libraries/drivers/Image.php
X%%WWWDIR%%/system/libraries/drivers/Image/GD.php
X%%WWWDIR%%/system/libraries/drivers/Image/GraphicsMagick.php
X%%WWWDIR%%/system/libraries/drivers/Image/ImageMagick.php
X%%WWWDIR%%/system/libraries/drivers/Session.php
X%%WWWDIR%%/system/libraries/drivers/Session/Cache.php
X%%WWWDIR%%/system/libraries/drivers/Session/Cookie.php
X%%WWWDIR%%/system/libraries/drivers/Session/Database.php
X%%WWWDIR%%/system/views/kohana/template.php
X%%WWWDIR%%/system/views/kohana_error_disabled.php
X%%WWWDIR%%/system/views/kohana_error_page.php
X%%WWWDIR%%/system/views/kohana_errors.css
X%%WWWDIR%%/system/views/kohana_profiler.php
X%%WWWDIR%%/system/views/kohana_profiler_table.css
X%%WWWDIR%%/system/views/kohana_profiler_table.php
X%%WWWDIR%%/themes/admin_default/css/fix-ie.css
X%%WWWDIR%%/themes/admin_default/css/screen.css
X%%WWWDIR%%/themes/admin_default/images/avatar.jpg
X%%WWWDIR%%/themes/admin_default/js/jquery.dropshadow.js
X%%WWWDIR%%/themes/admin_default/js/ui.init.js
X%%WWWDIR%%/themes/admin_default/theme.info
X%%WWWDIR%%/themes/admin_default/thumbnail.png
X%%WWWDIR%%/themes/admin_default/views/admin.html.php
X%%WWWDIR%%/themes/admin_default/views/block.html.php
X%%WWWDIR%%/themes/admin_default/views/pager.html.php
X%%WWWDIR%%/themes/default/css/fix-ie.css
X%%WWWDIR%%/themes/default/css/screen.css
X%%WWWDIR%%/themes/default/images/avatar.jpg
X%%WWWDIR%%/themes/default/images/favicon.ico
X%%WWWDIR%%/themes/default/images/ico-album.png
X%%WWWDIR%%/themes/default/images/ico-denied-gray.png
X%%WWWDIR%%/themes/default/images/ico-denied-pale.png
X%%WWWDIR%%/themes/default/images/ico-denied.png
X%%WWWDIR%%/themes/default/images/ico-error.png
X%%WWWDIR%%/themes/default/images/ico-help.png
X%%WWWDIR%%/themes/default/images/ico-info.png
X%%WWWDIR%%/themes/default/images/ico-lock.png
X%%WWWDIR%%/themes/default/images/ico-notify-add.png
X%%WWWDIR%%/themes/default/images/ico-notify-remove.png
X%%WWWDIR%%/themes/default/images/ico-separator.gif
X%%WWWDIR%%/themes/default/images/ico-success-gray.png
X%%WWWDIR%%/themes/default/images/ico-success-pale.png
X%%WWWDIR%%/themes/default/images/ico-success.png
X%%WWWDIR%%/themes/default/images/ico-view-album.png
X%%WWWDIR%%/themes/default/images/ico-view-comments.png
X%%WWWDIR%%/themes/default/images/ico-view-fullsize.png
X%%WWWDIR%%/themes/default/images/ico-view-hybrid.png
X%%WWWDIR%%/themes/default/images/ico-view-slideshow.png
X%%WWWDIR%%/themes/default/images/ico-warning.png
X%%WWWDIR%%/themes/default/images/loading-lg.gif
X%%WWWDIR%%/themes/default/images/loading-sm.gif
X%%WWWDIR%%/themes/default/images/logo.png
X%%WWWDIR%%/themes/default/images/select-photos-backg.png
X%%WWWDIR%%/themes/default/js/jquery.localscroll.js
X%%WWWDIR%%/themes/default/js/jquery.scrollTo.js
X%%WWWDIR%%/themes/default/js/ui.init.js
X%%WWWDIR%%/themes/default/theme.info
X%%WWWDIR%%/themes/default/thumbnail.png
X%%WWWDIR%%/themes/default/views/album.html.php
X%%WWWDIR%%/themes/default/views/block.html.php
X%%WWWDIR%%/themes/default/views/dynamic.html.php
X%%WWWDIR%%/themes/default/views/footer.html.php
X%%WWWDIR%%/themes/default/views/header.html.php
X%%WWWDIR%%/themes/default/views/login_page.html.php
X%%WWWDIR%%/themes/default/views/movie.html.php
X%%WWWDIR%%/themes/default/views/page.html.php
X%%WWWDIR%%/themes/default/views/pager.html.php
X%%WWWDIR%%/themes/default/views/photo.html.php
X%%WWWDIR%%/themes/default/views/sidebar.html.php
X@dirrm %%WWWDIR%%/themes/default/views
X@dirrm %%WWWDIR%%/themes/default/js
X@dirrm %%WWWDIR%%/themes/default/images
X@dirrm %%WWWDIR%%/themes/default/css
X@dirrm %%WWWDIR%%/themes/default
X@dirrm %%WWWDIR%%/themes/admin_default/views
X@dirrm %%WWWDIR%%/themes/admin_default/js
X@dirrm %%WWWDIR%%/themes/admin_default/images
X@dirrm %%WWWDIR%%/themes/admin_default/css
X@dirrm %%WWWDIR%%/themes/admin_default
X@dirrm %%WWWDIR%%/themes
X@dirrm %%WWWDIR%%/system/views/kohana
X@dirrm %%WWWDIR%%/system/views
X@dirrm %%WWWDIR%%/system/libraries/drivers/Session
X@dirrm %%WWWDIR%%/system/libraries/drivers/Image
X@dirrm %%WWWDIR%%/system/libraries/drivers/Database
X@dirrm %%WWWDIR%%/system/libraries/drivers/Captcha
X@dirrm %%WWWDIR%%/system/libraries/drivers/Cache
X@dirrm %%WWWDIR%%/system/libraries/drivers
X@dirrm %%WWWDIR%%/system/libraries
X@dirrm %%WWWDIR%%/system/i18n/en_US
X@dirrm %%WWWDIR%%/system/i18n
X@dirrm %%WWWDIR%%/system/helpers
X@dirrm %%WWWDIR%%/system/core/utf8
X@dirrm %%WWWDIR%%/system/core
X@dirrm %%WWWDIR%%/system/controllers
X@dirrm %%WWWDIR%%/system/config
X@dirrm %%WWWDIR%%/system
X@dirrm %%WWWDIR%%/modules/watermark/views
X@dirrm %%WWWDIR%%/modules/watermark/helpers
X@dirrm %%WWWDIR%%/modules/watermark/controllers
X@dirrm %%WWWDIR%%/modules/watermark
X@dirrm %%WWWDIR%%/modules/user/views
X@dirrm %%WWWDIR%%/modules/user/models
X@dirrm %%WWWDIR%%/modules/user/lib
X@dirrm %%WWWDIR%%/modules/user/helpers
X@dirrm %%WWWDIR%%/modules/user/controllers
X@dirrm %%WWWDIR%%/modules/user
X@dirrm %%WWWDIR%%/modules/tag/views
X@dirrm %%WWWDIR%%/modules/tag/models
X@dirrm %%WWWDIR%%/modules/tag/js
X@dirrm %%WWWDIR%%/modules/tag/helpers
X@dirrm %%WWWDIR%%/modules/tag/controllers
X@dirrm %%WWWDIR%%/modules/tag
X@dirrm %%WWWDIR%%/modules/slideshow/helpers
X@dirrm %%WWWDIR%%/modules/slideshow
X@dirrm %%WWWDIR%%/modules/server_add/views
X@dirrm %%WWWDIR%%/modules/server_add/js
X@dirrm %%WWWDIR%%/modules/server_add/helpers
X@dirrm %%WWWDIR%%/modules/server_add/controllers
X@dirrm %%WWWDIR%%/modules/server_add
X@dirrm %%WWWDIR%%/modules/search/views
X@dirrm %%WWWDIR%%/modules/search/models
X@dirrm %%WWWDIR%%/modules/search/helpers
X@dirrm %%WWWDIR%%/modules/search/controllers
X@dirrm %%WWWDIR%%/modules/search
X@dirrm %%WWWDIR%%/modules/rss/views
X@dirrm %%WWWDIR%%/modules/rss/helpers
X@dirrm %%WWWDIR%%/modules/rss/controllers
X@dirrm %%WWWDIR%%/modules/rss
X@dirrm %%WWWDIR%%/modules/recaptcha/views
X@dirrm %%WWWDIR%%/modules/recaptcha/libraries
X@dirrm %%WWWDIR%%/modules/recaptcha/helpers
X@dirrm %%WWWDIR%%/modules/recaptcha/controllers
X@dirrm %%WWWDIR%%/modules/recaptcha
X@dirrm %%WWWDIR%%/modules/organize/views
X@dirrm %%WWWDIR%%/modules/organize/js
X@dirrm %%WWWDIR%%/modules/organize/helpers
X@dirrm %%WWWDIR%%/modules/organize/css
X@dirrm %%WWWDIR%%/modules/organize/controllers
X@dirrm %%WWWDIR%%/modules/organize
X@dirrm %%WWWDIR%%/modules/notification/views
X@dirrm %%WWWDIR%%/modules/notification/models
X@dirrm %%WWWDIR%%/modules/notification/helpers
X@dirrm %%WWWDIR%%/modules/notification/controllers
X@dirrm %%WWWDIR%%/modules/notification
X@dirrm %%WWWDIR%%/modules/info/views
X@dirrm %%WWWDIR%%/modules/info/helpers
X@dirrm %%WWWDIR%%/modules/info
X@dirrm %%WWWDIR%%/modules/image_block/views
X@dirrm %%WWWDIR%%/modules/image_block/helpers
X@dirrm %%WWWDIR%%/modules/image_block
X@dirrm %%WWWDIR%%/modules/gallery/views
X@dirrm %%WWWDIR%%/modules/gallery/models
X@dirrm %%WWWDIR%%/modules/gallery/libraries
X@dirrm %%WWWDIR%%/modules/gallery/js
X@dirrm %%WWWDIR%%/modules/gallery/images
X@dirrm %%WWWDIR%%/modules/gallery/hooks
X@dirrm %%WWWDIR%%/modules/gallery/helpers
X@dirrm %%WWWDIR%%/modules/gallery/css
X@dirrm %%WWWDIR%%/modules/gallery/controllers
X@dirrm %%WWWDIR%%/modules/gallery/config
X@dirrm %%WWWDIR%%/modules/gallery
X@dirrm %%WWWDIR%%/modules/g2_import/views
X@dirrm %%WWWDIR%%/modules/g2_import/models
X@dirrm %%WWWDIR%%/modules/g2_import/helpers
X@dirrm %%WWWDIR%%/modules/g2_import/data
X@dirrm %%WWWDIR%%/modules/g2_import/controllers
X@dirrm %%WWWDIR%%/modules/g2_import
X@dirrm %%WWWDIR%%/modules/forge/libraries
X@dirrm %%WWWDIR%%/modules/forge
X@dirrm %%WWWDIR%%/modules/exif/views
X@dirrm %%WWWDIR%%/modules/exif/models
X@dirrm %%WWWDIR%%/modules/exif/lib/makers
X@dirrm %%WWWDIR%%/modules/exif/lib
X@dirrm %%WWWDIR%%/modules/exif/helpers
X@dirrm %%WWWDIR%%/modules/exif/controllers
X@dirrm %%WWWDIR%%/modules/exif
X@dirrm %%WWWDIR%%/modules/comment/views
X@dirrm %%WWWDIR%%/modules/comment/models
X@dirrm %%WWWDIR%%/modules/comment/js
X@dirrm %%WWWDIR%%/modules/comment/helpers
X@dirrm %%WWWDIR%%/modules/comment/controllers
X@dirrm %%WWWDIR%%/modules/comment
X@dirrm %%WWWDIR%%/modules/akismet/views
X@dirrm %%WWWDIR%%/modules/akismet/helpers
X@dirrm %%WWWDIR%%/modules/akismet/controllers
X@dirrm %%WWWDIR%%/modules/akismet
X@dirrm %%WWWDIR%%/modules
X@dirrm %%WWWDIR%%/lib/yui
X@dirrm %%WWWDIR%%/lib/themeroller/images
X@dirrm %%WWWDIR%%/lib/themeroller
X@dirrm %%WWWDIR%%/lib/swfupload
X@dirrm %%WWWDIR%%/lib/superfish/js
X@dirrm %%WWWDIR%%/lib/superfish/images
X@dirrm %%WWWDIR%%/lib/superfish/css
X@dirrm %%WWWDIR%%/lib/superfish
X@dirrm %%WWWDIR%%/lib
X@dirrm %%WWWDIR%%/installer/views
X@dirrm %%WWWDIR%%/installer
X@dirrm %%WWWDIR%%/application/config
X@dirrm %%WWWDIR%%/application
X@dirrm %%WWWDIR%%
c5e2a3f7ddad27f4427272f28fd1d29d
exit
--- gallery3.shar ends here ---
Comment 3 Philip M. Gollucci freebsd_committer freebsd_triage 2009-06-23 06:23:38 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pgollucci

I'll take it.
Comment 4 Philip M. Gollucci freebsd_committer freebsd_triage 2009-06-23 06:45:49 UTC
State Changed
From-To: open->feedback

does this need to be a seperate port from www/gallery, www/gallery2 ?
Comment 5 Bo-Yi Wu 2009-06-24 02:54:15 UTC
>Submitter-Id:	current-users
>Originator:	Bo-Yi Wu
>Organization:	 CCU University Of Taiwan
>Confidential:	no 
>Synopsis:	 Re: ports/135709: [NEW PORT] www/gallery3
>Severity:	 non-critical
>Priority:	 low
>Category:	 ports
>Class:		 update
>Release:	FreeBSD 7.1-RELEASE-p6 i386
>Environment:
System: FreeBSD freebsd.ee.ccu.edu.tw 7.1-RELEASE-p6 FreeBSD 7.1-RELEASE-p6 #4: Wed Jun 17 12:28:27 CST 2009 root@freebsd.ee.ccu.edu.tw:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:
	
	Gallery3 use Kohana PHP MVC Framework to develop all program, it is different from gallery2. Gallery don't support gallery2 upgrade to galler3, so I make new ports which people can choose it or gallery2 to develop program. Please see that http://codex.gallery2.org/Gallery3:FAQ#Development , thank you.
>How-To-Repeat:
	
>Fix:
Comment 6 Philip M. Gollucci freebsd_committer freebsd_triage 2009-06-24 04:09:19 UTC
State Changed
From-To: feedback->open

feedback received
Comment 7 Philip M. Gollucci freebsd_committer freebsd_triage 2009-06-24 06:15:33 UTC
State Changed
From-To: open->repocopy

Request Repo copy 


Comment 8 Philip M. Gollucci freebsd_committer freebsd_triage 2009-06-24 06:15:33 UTC
Responsible Changed
From-To: pgollucci->portmgr

Request Repo copy 

www/gallery2 -> www/gallery3
http://www.freebsd.org/cgi/query-pr.cgi?pr=135709 
Comment 9 Joe Marcus Clarke freebsd_committer freebsd_triage 2009-06-28 19:19:30 UTC
State Changed
From-To: repocopy->open

Repocopy complete. 


Comment 10 Joe Marcus Clarke freebsd_committer freebsd_triage 2009-06-28 19:19:30 UTC
Responsible Changed
From-To: portmgr->pgollucci

Repocopy complete.
Comment 11 dfilter service freebsd_committer freebsd_triage 2009-07-08 02:38:45 UTC
pgollucci    2009-07-08 01:38:30 UTC

  FreeBSD ports repository

  Modified files:
    www                  Makefile 
    www/gallery3         Makefile distinfo pkg-plist 
    www/gallery3/files   pkg-message.in 
  Log:
  The 3.x series of gallery
  
  Gallery is a web based software product that lets you manage your
  photos on your own website. You must have your own website with PHP
  support in order to install and use it. With Gallery you can easily
  create and maintain albums of photos via an intuitive interface. Photo
  management includes automatic thumbnail creation, image resizing,
  rotation, ordering, captioning, searching and more. Albums can have
  read, write and caption permissions per individual authenticated user
  for an additional level of privacy. Give accounts to your friends and
  family and let them upload and manage their own photos on your
  website!
  
  WWW: http://gallery.sourceforge.net/
  
  PR:             ports/135709
  Submitted by:   appleboy <appleboy.tw@gmail.com>
  
  Revision  Changes     Path
  1.2395    +1 -0       ports/www/Makefile
  1.64      +12 -12     ports/www/gallery3/Makefile
  1.46      +3 -3       ports/www/gallery3/distinfo
  1.3       +6 -6       ports/www/gallery3/files/pkg-message.in
  1.40      +708 -8573  ports/www/gallery3/pkg-plist
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 12 Philip M. Gollucci freebsd_committer freebsd_triage 2009-07-08 02:39:58 UTC
State Changed
From-To: open->closed

Committed. Thanks!