From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 5 00:00:40 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B9AC16A4E6 for ; Sat, 5 Aug 2006 00:00:40 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A59FC43D55 for ; Sat, 5 Aug 2006 00:00:38 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7500anY070804 for ; Sat, 5 Aug 2006 00:00:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7500aI6070802; Sat, 5 Aug 2006 00:00:36 GMT (envelope-from gnats) Resent-Date: Sat, 5 Aug 2006 00:00:36 GMT Resent-Message-Id: <200608050000.k7500aI6070802@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kian Mohageri Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD0F516A4DA for ; Fri, 4 Aug 2006 23:57:00 +0000 (UTC) (envelope-from kian@alvis.restek.wwu.edu) Received: from alvis.restek.wwu.edu (alvis.restek.wwu.edu [66.165.31.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4342943D49 for ; Fri, 4 Aug 2006 23:57:00 +0000 (GMT) (envelope-from kian@alvis.restek.wwu.edu) Received: from alvis.restek.wwu.edu (localhost [127.0.0.1]) by alvis.restek.wwu.edu (8.13.6/8.13.6) with ESMTP id k74Nux9S027534; Fri, 4 Aug 2006 16:56:59 -0700 (PDT) (envelope-from kian@alvis.restek.wwu.edu) Received: (from kian@localhost) by alvis.restek.wwu.edu (8.13.6/8.13.6/Submit) id k74Nuxop027533; Fri, 4 Aug 2006 16:56:59 -0700 (PDT) (envelope-from kian) Message-Id: <200608042356.k74Nuxop027533@alvis.restek.wwu.edu> Date: Fri, 4 Aug 2006 16:56:59 -0700 (PDT) From: Kian Mohageri To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/101382: [PATCH] databases/mantis: update to 1.0.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kian Mohageri List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 00:00:40 -0000 >Number: 101382 >Category: ports >Synopsis: [PATCH] databases/mantis: update to 1.0.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Aug 05 00:00:35 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Kian Mohageri >Release: FreeBSD 6.1-RELEASE i386 >Organization: >Environment: System: FreeBSD alvis.restek.wwu.edu 6.1-RELEASE FreeBSD 6.1-RELEASE #1: Mon May 8 23:17:04 PDT 2006 root@alvis.restek.wwu.edu:/usr/obj/usr/src/sys/ALVIS i386 >Description: Current databases/mantis release is 1.0.3, and 1.0.5 is now available. Included patch updates to 1.0.5 and organizes the port a little better, although maintainer/committer might want to double check my work because I'm not good at computers. >How-To-Repeat: >Fix: --- mantis_1.0.5.patch begins here --- diff -urN /usr/ports/databases/mantis/Makefile /tmp/mantis/Makefile --- /usr/ports/databases/mantis/Makefile Sat Jun 10 04:27:48 2006 +++ /tmp/mantis/Makefile Fri Aug 4 16:20:48 2006 @@ -6,10 +6,11 @@ # PORTNAME= mantis -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.5 CATEGORIES= databases www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= mantisbt +DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= dan@langille.org COMMENT= A bug tracking system written in PHP @@ -19,18 +20,20 @@ USE_APACHE= yes USE_PHP= yes +MANTISDIR?= www/${PORTNAME} + SUB_FILES= pkg-message +SUB_LIST= MANTISDIR=${MANTISDIR} -post-patch: - @${RM} ${WRKSRC}/.cvsignore - @${RM} ${WRKSRC}/core/.cvsignore +PLIST_SUB= MANTISDIR=${MANTISDIR} do-install: - @${ECHO} "Installing in ${PREFIX}/www/mantis" - ${MKDIR} ${PREFIX}/www/mantis - ${CP} -R ${WRKSRC}/* ${PREFIX}/www/mantis - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/www/mantis + @${ECHO} "Installing in ${PREFIX}/${MANTISDIR}" + ${MKDIR} ${PREFIX}/${MANTISDIR} + ${CP} -R ${WRKSRC}/* ${PREFIX}/${MANTISDIR} + ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${MANTISDIR} +post-install: @${CAT} ${PKGMESSAGE} .include diff -urN /usr/ports/databases/mantis/distinfo /tmp/mantis/distinfo --- /usr/ports/databases/mantis/distinfo Sat Jun 10 04:27:48 2006 +++ /tmp/mantis/distinfo Fri Aug 4 13:18:56 2006 @@ -1,3 +1,3 @@ -MD5 (mantis-1.0.3.tar.gz) = 6c70d00da4cad5da2e0df387f474d3e4 -SHA256 (mantis-1.0.3.tar.gz) = fa96e3ea7e0a8435ecfbe135a6d2f64272a69477166d1ebb0c2855c6e538545e -SIZE (mantis-1.0.3.tar.gz) = 1426811 +MD5 (mantis_1.0.5.tar.gz) = 01c5fb87e5ac161a681471573711bcf6 +SHA256 (mantis_1.0.5.tar.gz) = ea86269bb9a572b958ac34dfcf25e9778bac9be6d19f1ccb07fa6d8ceef85a67 +SIZE (mantis_1.0.5.tar.gz) = 1487729 diff -urN /usr/ports/databases/mantis/files/pkg-message.in /tmp/mantis/files/pkg-message.in --- /usr/ports/databases/mantis/files/pkg-message.in Sat Jun 10 04:27:48 2006 +++ /tmp/mantis/files/pkg-message.in Fri Aug 4 16:12:50 2006 @@ -1,10 +1,22 @@ -*********************************************************************** -* INSTALL PROCEDURE * -*********************************************************************** +============================================================= +Everything has been installed to: + + %%PREFIX%%/%%MANTISDIR%% -Please note that everything has been installed in %%PREFIX%%/www/mantis. +To make Mantis available through your web site, I suggest +that you add something like the following to httpd.conf: + Alias /mantis/ "%%PREFIX%%/%%MANTISDIR%%/" -Read %%PREFIX%%/www/mantis/doc/INSTALL + + Options None + AllowOverride None + + Order Allow,Deny + Allow from all + + +Also be sure to read %%PREFIX%%/%%MANTISDIR%%/doc/INSTALL +============================================================= diff -urN /usr/ports/databases/mantis/pkg-plist /tmp/mantis/pkg-plist --- /usr/ports/databases/mantis/pkg-plist Sat Jun 10 04:27:48 2006 +++ /tmp/mantis/pkg-plist Fri Aug 4 16:18:35 2006 @@ -1,551 +1,554 @@ -www/mantis/account_delete.php -www/mantis/account_page.php -www/mantis/account_prefs_inc.php -www/mantis/account_prefs_page.php -www/mantis/account_prefs_reset.php -www/mantis/account_prefs_update.php -www/mantis/account_prof_add.php -www/mantis/account_prof_delete.php -www/mantis/account_prof_edit_page.php -www/mantis/account_prof_make_default.php -www/mantis/account_prof_menu_page.php -www/mantis/account_prof_update.php -www/mantis/account_sponsor_page.php -www/mantis/account_sponsor_update.php -www/mantis/account_update.php -www/mantis/adm_permissions_report.php -www/mantis/admin/admin.css -www/mantis/admin/check.php -www/mantis/admin/copy_field.php -www/mantis/admin/css/core.php -www/mantis/admin/css/css_download.php -www/mantis/admin/css/css_inc.php -www/mantis/admin/css/css_view.php -www/mantis/admin/css/index.php -www/mantis/admin/css/view_inc.php -www/mantis/admin/db_stats.php -www/mantis/admin/db_table_names_inc.php -www/mantis/admin/index.php -www/mantis/admin/install.php -www/mantis/admin/move_db2disk.php -www/mantis/admin/schema.php -www/mantis/admin/system_utils.php -www/mantis/admin/test_langs.php -www/mantis/admin/upgrade.php -www/mantis/admin/upgrade_advanced.php -www/mantis/admin/upgrade_escaping.php -www/mantis/admin/upgrade_inc.php -www/mantis/admin/upgrade_list.php -www/mantis/admin/upgrade_warning.php -www/mantis/admin/upgrades/0_13_inc.php -www/mantis/admin/upgrades/0_14_inc.php -www/mantis/admin/upgrades/0_15_inc.php -www/mantis/admin/upgrades/0_16_inc.php -www/mantis/admin/upgrades/0_17_escaping_fixes_inc.php -www/mantis/admin/upgrades/0_17_inc.php -www/mantis/admin/upgrades/0_18_inc.php -www/mantis/admin/upgrades/0_19_inc.php -www/mantis/admin/upgrades/1_00_inc.php -www/mantis/bug_actiongroup.php -www/mantis/bug_actiongroup_page.php -www/mantis/bug_assign.php -www/mantis/bug_assign_reporter.php -www/mantis/bug_change_status_page.php -www/mantis/bug_delete.php -www/mantis/bug_file_add.php -www/mantis/bug_file_delete.php -www/mantis/bug_file_upload_inc.php -www/mantis/bug_monitor.php -www/mantis/bug_monitor_list_view_inc.php -www/mantis/bug_relationship_add.php -www/mantis/bug_relationship_delete.php -www/mantis/bug_relationship_graph.php -www/mantis/bug_relationship_graph_img.php -www/mantis/bug_reminder.php -www/mantis/bug_reminder_page.php -www/mantis/bug_report.php -www/mantis/bug_report_advanced_page.php -www/mantis/bug_report_page.php -www/mantis/bug_set_sponsorship.php -www/mantis/bug_sponsorship_list_view_inc.php -www/mantis/bug_update.php -www/mantis/bug_update_advanced_page.php -www/mantis/bug_update_page.php -www/mantis/bug_view_advanced_page.php -www/mantis/bug_view_inc.php -www/mantis/bug_view_page.php -www/mantis/bugnote_add.php -www/mantis/bugnote_add_inc.php -www/mantis/bugnote_delete.php -www/mantis/bugnote_edit_page.php -www/mantis/bugnote_set_view_state.php -www/mantis/bugnote_update.php -www/mantis/bugnote_view_inc.php -www/mantis/changelog_page.php -www/mantis/config_defaults_inc.php -www/mantis/config_inc.php.sample -www/mantis/core.php -www/mantis/core/access_api.php -www/mantis/core/adodb/adodb-csvlib.inc.php -www/mantis/core/adodb/adodb-datadict.inc.php -www/mantis/core/adodb/adodb-error.inc.php -www/mantis/core/adodb/adodb-errorhandler.inc.php -www/mantis/core/adodb/adodb-errorpear.inc.php -www/mantis/core/adodb/adodb-exceptions.inc.php -www/mantis/core/adodb/adodb-iterator.inc.php -www/mantis/core/adodb/adodb-lib.inc.php -www/mantis/core/adodb/adodb-pager.inc.php -www/mantis/core/adodb/adodb-pear.inc.php -www/mantis/core/adodb/adodb-perf.inc.php -www/mantis/core/adodb/adodb-php4.inc.php -www/mantis/core/adodb/adodb-time.inc.php -www/mantis/core/adodb/adodb-time.zip -www/mantis/core/adodb/adodb-xmlschema.inc.php -www/mantis/core/adodb/adodb.inc.php -www/mantis/core/adodb/contrib/toxmlrpc.inc.php -www/mantis/core/adodb/cute_icons_for_site/adodb.gif -www/mantis/core/adodb/cute_icons_for_site/adodb2.gif -www/mantis/core/adodb/datadict/datadict-access.inc.php -www/mantis/core/adodb/datadict/datadict-db2.inc.php -www/mantis/core/adodb/datadict/datadict-firebird.inc.php -www/mantis/core/adodb/datadict/datadict-generic.inc.php -www/mantis/core/adodb/datadict/datadict-ibase.inc.php -www/mantis/core/adodb/datadict/datadict-informix.inc.php -www/mantis/core/adodb/datadict/datadict-mssql.inc.php -www/mantis/core/adodb/datadict/datadict-mysql.inc.php -www/mantis/core/adodb/datadict/datadict-oci8.inc.php -www/mantis/core/adodb/datadict/datadict-postgres.inc.php -www/mantis/core/adodb/datadict/datadict-sapdb.inc.php -www/mantis/core/adodb/datadict/datadict-sybase.inc.php -www/mantis/core/adodb/docs/docs-adodb.htm -www/mantis/core/adodb/docs/docs-datadict.htm -www/mantis/core/adodb/docs/docs-oracle.htm -www/mantis/core/adodb/docs/docs-perf.htm -www/mantis/core/adodb/docs/docs-session.htm -www/mantis/core/adodb/docs/old-changelog.htm -www/mantis/core/adodb/docs/readme.htm -www/mantis/core/adodb/docs/tips_portable_sql.htm -www/mantis/core/adodb/docs/tute.htm -www/mantis/core/adodb/drivers/adodb-access.inc.php -www/mantis/core/adodb/drivers/adodb-ado.inc.php -www/mantis/core/adodb/drivers/adodb-ado5.inc.php -www/mantis/core/adodb/drivers/adodb-ado_access.inc.php -www/mantis/core/adodb/drivers/adodb-ado_mssql.inc.php -www/mantis/core/adodb/drivers/adodb-borland_ibase.inc.php -www/mantis/core/adodb/drivers/adodb-csv.inc.php -www/mantis/core/adodb/drivers/adodb-db2.inc.php -www/mantis/core/adodb/drivers/adodb-fbsql.inc.php -www/mantis/core/adodb/drivers/adodb-firebird.inc.php -www/mantis/core/adodb/drivers/adodb-ibase.inc.php -www/mantis/core/adodb/drivers/adodb-informix.inc.php -www/mantis/core/adodb/drivers/adodb-informix72.inc.php -www/mantis/core/adodb/drivers/adodb-ldap.inc.php -www/mantis/core/adodb/drivers/adodb-mssql.inc.php -www/mantis/core/adodb/drivers/adodb-mssqlpo.inc.php -www/mantis/core/adodb/drivers/adodb-mysql.inc.php -www/mantis/core/adodb/drivers/adodb-mysqli.inc.php -www/mantis/core/adodb/drivers/adodb-mysqlt.inc.php -www/mantis/core/adodb/drivers/adodb-netezza.inc.php -www/mantis/core/adodb/drivers/adodb-oci8.inc.php -www/mantis/core/adodb/drivers/adodb-oci805.inc.php -www/mantis/core/adodb/drivers/adodb-oci8po.inc.php -www/mantis/core/adodb/drivers/adodb-odbc.inc.php -www/mantis/core/adodb/drivers/adodb-odbc_mssql.inc.php -www/mantis/core/adodb/drivers/adodb-odbc_oracle.inc.php -www/mantis/core/adodb/drivers/adodb-odbtp.inc.php -www/mantis/core/adodb/drivers/adodb-odbtp_unicode.inc.php -www/mantis/core/adodb/drivers/adodb-oracle.inc.php -www/mantis/core/adodb/drivers/adodb-pdo.inc.php -www/mantis/core/adodb/drivers/adodb-postgres.inc.php -www/mantis/core/adodb/drivers/adodb-postgres64.inc.php -www/mantis/core/adodb/drivers/adodb-postgres7.inc.php -www/mantis/core/adodb/drivers/adodb-proxy.inc.php -www/mantis/core/adodb/drivers/adodb-sapdb.inc.php -www/mantis/core/adodb/drivers/adodb-sqlanywhere.inc.php -www/mantis/core/adodb/drivers/adodb-sqlite.inc.php -www/mantis/core/adodb/drivers/adodb-sqlite.inc.php.bak -www/mantis/core/adodb/drivers/adodb-sqlitepo.inc.php -www/mantis/core/adodb/drivers/adodb-sybase.inc.php -www/mantis/core/adodb/drivers/adodb-vfp.inc.php -www/mantis/core/adodb/lang/adodb-ar.inc.php -www/mantis/core/adodb/lang/adodb-bg.inc.php -www/mantis/core/adodb/lang/adodb-bgutf8.inc.php -www/mantis/core/adodb/lang/adodb-ca.inc.php -www/mantis/core/adodb/lang/adodb-cn.inc.php -www/mantis/core/adodb/lang/adodb-cz.inc.php -www/mantis/core/adodb/lang/adodb-da.inc.php -www/mantis/core/adodb/lang/adodb-de.inc.php -www/mantis/core/adodb/lang/adodb-en.inc.php -www/mantis/core/adodb/lang/adodb-es.inc.php -www/mantis/core/adodb/lang/adodb-esperanto.inc.php -www/mantis/core/adodb/lang/adodb-fr.inc.php -www/mantis/core/adodb/lang/adodb-hu.inc.php -www/mantis/core/adodb/lang/adodb-it.inc.php -www/mantis/core/adodb/lang/adodb-nl.inc.php -www/mantis/core/adodb/lang/adodb-pl.inc.php -www/mantis/core/adodb/lang/adodb-pt-br.inc.php -www/mantis/core/adodb/lang/adodb-ro.inc.php -www/mantis/core/adodb/lang/adodb-ru1251.inc.php -www/mantis/core/adodb/lang/adodb-sv.inc.php -www/mantis/core/adodb/license.txt -www/mantis/core/adodb/pear/Auth/Container/ADOdb.php -www/mantis/core/adodb/pear/readme.Auth.txt -www/mantis/core/adodb/perf/perf-db2.inc.php -www/mantis/core/adodb/perf/perf-informix.inc.php -www/mantis/core/adodb/perf/perf-mssql.inc.php -www/mantis/core/adodb/perf/perf-mysql.inc.php -www/mantis/core/adodb/perf/perf-oci8.inc.php -www/mantis/core/adodb/perf/perf-postgres.inc.php -www/mantis/core/adodb/pivottable.inc.php -www/mantis/core/adodb/readme.txt -www/mantis/core/adodb/rsfilter.inc.php -www/mantis/core/adodb/server.php -www/mantis/core/adodb/session/adodb-compress-bzip2.php -www/mantis/core/adodb/session/adodb-compress-gzip.php -www/mantis/core/adodb/session/adodb-cryptsession.php -www/mantis/core/adodb/session/adodb-encrypt-mcrypt.php -www/mantis/core/adodb/session/adodb-encrypt-md5.php -www/mantis/core/adodb/session/adodb-encrypt-secret.php -www/mantis/core/adodb/session/adodb-sess.txt -www/mantis/core/adodb/session/adodb-session-clob.php -www/mantis/core/adodb/session/adodb-session.php -www/mantis/core/adodb/session/adodb-sessions.mysql.sql -www/mantis/core/adodb/session/adodb-sessions.oracle.clob.sql -www/mantis/core/adodb/session/adodb-sessions.oracle.sql -www/mantis/core/adodb/session/crypt.inc.php -www/mantis/core/adodb/session/old/adodb-cryptsession.php -www/mantis/core/adodb/session/old/adodb-session-clob.php -www/mantis/core/adodb/session/old/adodb-session.php -www/mantis/core/adodb/session/old/crypt.inc.php -www/mantis/core/adodb/toexport.inc.php -www/mantis/core/adodb/tohtml.inc.php -www/mantis/core/adodb/xmlschema.dtd -www/mantis/core/adodb/xsl/convert-0.1-0.2.xsl -www/mantis/core/adodb/xsl/convert-0.2-0.1.xsl -www/mantis/core/adodb/xsl/remove-0.2.xsl -www/mantis/core/authentication_api.php -www/mantis/core/bug_api.php -www/mantis/core/bug_group_action_api.php -www/mantis/core/bugnote_api.php -www/mantis/core/category_api.php -www/mantis/core/checkin.php -www/mantis/core/class.RSSBuilder.inc.php -www/mantis/core/class.urlmatch.php -www/mantis/core/collapse_api.php -www/mantis/core/columns_api.php -www/mantis/core/compress_api.php -www/mantis/core/config_api.php -www/mantis/core/constant_inc.php -www/mantis/core/csv_api.php -www/mantis/core/current_user_api.php -www/mantis/core/custom_field_api.php -www/mantis/core/custom_function_api.php -www/mantis/core/database_api.php -www/mantis/core/date_api.php -www/mantis/core/email_api.php -www/mantis/core/error_api.php -www/mantis/core/file_api.php -www/mantis/core/filter_api.php -www/mantis/core/gpc_api.php -www/mantis/core/graph_api.php -www/mantis/core/graphviz_api.php -www/mantis/core/helper_api.php -www/mantis/core/history_api.php -www/mantis/core/html_api.php -www/mantis/core/icon_api.php -www/mantis/core/lang_api.php -www/mantis/core/ldap_api.php -www/mantis/core/logging_api.php -www/mantis/core/my_view_inc.php -www/mantis/core/news_api.php -www/mantis/core/obsolete.php -www/mantis/core/php_api.php -www/mantis/core/phpmailer/ChangeLog.txt -www/mantis/core/phpmailer/LICENSE -www/mantis/core/phpmailer/README -www/mantis/core/phpmailer/class.phpmailer.php -www/mantis/core/phpmailer/class.smtp.php -www/mantis/core/phpmailer/language/phpmailer.lang-br.php -www/mantis/core/phpmailer/language/phpmailer.lang-cz.php -www/mantis/core/phpmailer/language/phpmailer.lang-de.php -www/mantis/core/phpmailer/language/phpmailer.lang-en.php -www/mantis/core/phpmailer/language/phpmailer.lang-es.php -www/mantis/core/phpmailer/language/phpmailer.lang-fr.php -www/mantis/core/phpmailer/language/phpmailer.lang-it.php -www/mantis/core/phpmailer/language/phpmailer.lang-nl.php -www/mantis/core/phpmailer/language/phpmailer.lang-no.php -www/mantis/core/phpmailer/language/phpmailer.lang-se.php -www/mantis/core/phpmailer/language/phpmailer.lang-tr.php -www/mantis/core/prepare_api.php -www/mantis/core/print_api.php -www/mantis/core/profile_api.php -www/mantis/core/project_api.php -www/mantis/core/project_hierarchy_api.php -www/mantis/core/relationship_api.php -www/mantis/core/relationship_graph_api.php -www/mantis/core/sponsorship_api.php -www/mantis/core/string_api.php -www/mantis/core/summary_api.php -www/mantis/core/timer_api.php -www/mantis/core/tokens_api.php -www/mantis/core/user_api.php -www/mantis/core/user_pref_api.php -www/mantis/core/utility_api.php -www/mantis/core/version_api.php -www/mantis/css/default.css -www/mantis/csv_export.php -www/mantis/doc/CREDITS -www/mantis/doc/CUSTOMIZATION -www/mantis/doc/ChangeLog -www/mantis/doc/INSTALL -www/mantis/doc/LICENSE -www/mantis/doc/README -www/mantis/doc/UPGRADING -www/mantis/file_download.php -www/mantis/graphs/graph_assigned_to_me.php -www/mantis/graphs/graph_by_category.php -www/mantis/graphs/graph_by_cumulative.php -www/mantis/graphs/graph_by_daily_delta.php -www/mantis/graphs/graph_by_release_delta.php -www/mantis/graphs/graph_by_severity.php -www/mantis/graphs/graph_by_severity_status.php -www/mantis/graphs/graph_reported_by_me.php -www/mantis/history_inc.php -www/mantis/images/attachment.png -www/mantis/images/blank.gif -www/mantis/images/dollars.gif -www/mantis/images/down.gif -www/mantis/images/excel2icon.gif -www/mantis/images/excelicon.gif -www/mantis/images/fileicon.gif -www/mantis/images/gificon.gif -www/mantis/images/htmlicon.gif -www/mantis/images/ieicon.gif -www/mantis/images/jpgicon.gif -www/mantis/images/mailicon.gif -www/mantis/images/mantis_logo.gif -www/mantis/images/mantis_logo_button.gif -www/mantis/images/mantis_space.gif -www/mantis/images/minus.png -www/mantis/images/notice.gif -www/mantis/images/ok.gif -www/mantis/images/pdf2icon.gif -www/mantis/images/pdficon.gif -www/mantis/images/plus.png -www/mantis/images/pngicon.gif -www/mantis/images/ppticon.gif -www/mantis/images/priority_1.gif -www/mantis/images/priority_2.gif -www/mantis/images/priority_3.gif -www/mantis/images/priority_low_1.gif -www/mantis/images/priority_low_2.gif -www/mantis/images/priority_low_3.gif -www/mantis/images/protected.gif -www/mantis/images/rel_dependant.png -www/mantis/images/rel_duplicate.png -www/mantis/images/rel_related.png -www/mantis/images/rss.gif -www/mantis/images/synthese.gif -www/mantis/images/synthgraph.gif -www/mantis/images/texticon.gif -www/mantis/images/unknownicon.gif -www/mantis/images/unread.gif -www/mantis/images/up.gif -www/mantis/images/update.png -www/mantis/images/word2icon.gif -www/mantis/images/wordicon.gif -www/mantis/images/zipicon.gif -www/mantis/index.php -www/mantis/issues_rss.php -www/mantis/javascript/addLoadEvent.js -www/mantis/javascript/common.js -www/mantis/javascript/dynamic_filters.js -www/mantis/javascript/xmlhttprequest.js -www/mantis/jump_to_bug.php -www/mantis/lang/strings_chinese_simplified.txt -www/mantis/lang/strings_chinese_simplified_utf8.txt -www/mantis/lang/strings_chinese_traditional.txt -www/mantis/lang/strings_chinese_traditional_utf8.txt -www/mantis/lang/strings_croatian.txt -www/mantis/lang/strings_czech.txt -www/mantis/lang/strings_danish.txt -www/mantis/lang/strings_dutch.txt -www/mantis/lang/strings_english.txt -www/mantis/lang/strings_estonian.txt -www/mantis/lang/strings_finnish.txt -www/mantis/lang/strings_french.txt -www/mantis/lang/strings_french_canadian.txt -www/mantis/lang/strings_german.txt -www/mantis/lang/strings_hungarian.txt -www/mantis/lang/strings_icelandic.txt -www/mantis/lang/strings_italian.txt -www/mantis/lang/strings_japanese_euc.txt -www/mantis/lang/strings_japanese_sjis.txt -www/mantis/lang/strings_japanese_utf8.txt -www/mantis/lang/strings_korean.txt -www/mantis/lang/strings_korean_utf8.txt -www/mantis/lang/strings_latvian.txt -www/mantis/lang/strings_lithuanian.txt -www/mantis/lang/strings_norwegian.txt -www/mantis/lang/strings_polish.txt -www/mantis/lang/strings_portuguese_brazil.txt -www/mantis/lang/strings_portuguese_standard.txt -www/mantis/lang/strings_romanian.txt -www/mantis/lang/strings_russian.txt -www/mantis/lang/strings_russian_koi8.txt -www/mantis/lang/strings_serbian.txt -www/mantis/lang/strings_slovak.txt -www/mantis/lang/strings_slovene.txt -www/mantis/lang/strings_spanish.txt -www/mantis/lang/strings_swedish.txt -www/mantis/lang/strings_turkish.txt -www/mantis/lang/strings_ukrainian.txt -www/mantis/login.php -www/mantis/login_anon.php -www/mantis/login_cookie_test.php -www/mantis/login_page.php -www/mantis/login_select_proj_page.php -www/mantis/logout_page.php -www/mantis/lost_pwd.php -www/mantis/lost_pwd_page.php -www/mantis/main_page.php -www/mantis/make_captcha_img.php -www/mantis/manage_config_email_page.php -www/mantis/manage_config_email_set.php -www/mantis/manage_config_revert.php -www/mantis/manage_config_work_threshold_page.php -www/mantis/manage_config_work_threshold_set.php -www/mantis/manage_config_workflow_page.php -www/mantis/manage_config_workflow_set.php -www/mantis/manage_custom_field_create.php -www/mantis/manage_custom_field_delete.php -www/mantis/manage_custom_field_edit_page.php -www/mantis/manage_custom_field_page.php -www/mantis/manage_custom_field_update.php -www/mantis/manage_prof_menu_page.php -www/mantis/manage_proj_cat_add.php -www/mantis/manage_proj_cat_copy.php -www/mantis/manage_proj_cat_delete.php -www/mantis/manage_proj_cat_edit_page.php -www/mantis/manage_proj_cat_update.php -www/mantis/manage_proj_create.php -www/mantis/manage_proj_create_page.php -www/mantis/manage_proj_custom_field_add_existing.php -www/mantis/manage_proj_custom_field_remove.php -www/mantis/manage_proj_custom_field_update.php -www/mantis/manage_proj_delete.php -www/mantis/manage_proj_edit_page.php -www/mantis/manage_proj_page.php -www/mantis/manage_proj_subproj_add.php -www/mantis/manage_proj_subproj_delete.php -www/mantis/manage_proj_update.php -www/mantis/manage_proj_user_add.php -www/mantis/manage_proj_user_copy.php -www/mantis/manage_proj_user_remove.php -www/mantis/manage_proj_ver_add.php -www/mantis/manage_proj_ver_delete.php -www/mantis/manage_proj_ver_edit_page.php -www/mantis/manage_proj_ver_update.php -www/mantis/manage_user_create.php -www/mantis/manage_user_create_page.php -www/mantis/manage_user_delete.php -www/mantis/manage_user_edit_page.php -www/mantis/manage_user_page.php -www/mantis/manage_user_proj_add.php -www/mantis/manage_user_proj_delete.php -www/mantis/manage_user_prune.php -www/mantis/manage_user_reset.php -www/mantis/manage_user_update.php -www/mantis/mantis_offline.php.sample -www/mantis/meta_inc.php -www/mantis/my_view_page.php -www/mantis/news_add.php -www/mantis/news_delete.php -www/mantis/news_edit_page.php -www/mantis/news_list_page.php -www/mantis/news_menu_page.php -www/mantis/news_rss.php -www/mantis/news_update.php -www/mantis/news_view_page.php -www/mantis/packages/mantis.spec -www/mantis/print_all_bug_options_inc.php -www/mantis/print_all_bug_options_page.php -www/mantis/print_all_bug_options_reset.php -www/mantis/print_all_bug_options_update.php -www/mantis/print_all_bug_page.php -www/mantis/print_all_bug_page_excel.php -www/mantis/print_all_bug_page_word.php -www/mantis/print_bug_page.php -www/mantis/print_bugnote_inc.php -www/mantis/proj_doc_add.php -www/mantis/proj_doc_add_page.php -www/mantis/proj_doc_delete.php -www/mantis/proj_doc_edit_page.php -www/mantis/proj_doc_page.php -www/mantis/proj_doc_update.php -www/mantis/query_delete.php -www/mantis/query_delete_page.php -www/mantis/query_store.php -www/mantis/query_store_page.php -www/mantis/query_view_page.php -www/mantis/return_dynamic_filters.php -www/mantis/set_project.php -www/mantis/signup.php -www/mantis/signup_page.php -www/mantis/summary_graph_bycategory.php -www/mantis/summary_graph_bycategory_pct.php -www/mantis/summary_graph_bydeveloper.php -www/mantis/summary_graph_bypriority.php -www/mantis/summary_graph_bypriority_mix.php -www/mantis/summary_graph_bypriority_pct.php -www/mantis/summary_graph_byreporter.php -www/mantis/summary_graph_byresolution.php -www/mantis/summary_graph_byresolution_mix.php -www/mantis/summary_graph_byresolution_pct.php -www/mantis/summary_graph_byseverity.php -www/mantis/summary_graph_byseverity_mix.php -www/mantis/summary_graph_byseverity_pct.php -www/mantis/summary_graph_bystatus.php -www/mantis/summary_graph_bystatus_pct.php -www/mantis/summary_graph_cumulative_bydate.php -www/mantis/summary_graph_imp_category.php -www/mantis/summary_graph_imp_priority.php -www/mantis/summary_graph_imp_resolution.php -www/mantis/summary_graph_imp_severity.php -www/mantis/summary_graph_imp_status.php -www/mantis/summary_jpgraph_page.php -www/mantis/summary_page.php -www/mantis/verify.php -www/mantis/view.php -www/mantis/view_all_bug_page.php -www/mantis/view_all_inc.php -www/mantis/view_all_set.php -www/mantis/view_filters_page.php -@dirrm www/mantis/packages -@dirrm www/mantis/lang -@dirrm www/mantis/javascript -@dirrm www/mantis/images -@dirrm www/mantis/graphs -@dirrm www/mantis/doc -@dirrm www/mantis/css -@dirrm www/mantis/core/phpmailer/language -@dirrm www/mantis/core/phpmailer -@dirrm www/mantis/core/adodb/xsl -@dirrm www/mantis/core/adodb/session/old -@dirrm www/mantis/core/adodb/session -@dirrm www/mantis/core/adodb/perf -@dirrm www/mantis/core/adodb/pear/Auth/Container -@dirrm www/mantis/core/adodb/pear/Auth -@dirrm www/mantis/core/adodb/pear -@dirrm www/mantis/core/adodb/lang -@dirrm www/mantis/core/adodb/drivers -@dirrm www/mantis/core/adodb/docs -@dirrm www/mantis/core/adodb/datadict -@dirrm www/mantis/core/adodb/cute_icons_for_site -@dirrm www/mantis/core/adodb/contrib -@dirrm www/mantis/core/adodb -@dirrm www/mantis/core -@dirrm www/mantis/admin/upgrades -@dirrm www/mantis/admin/css -@dirrm www/mantis/admin -@dirrm www/mantis +%%MANTISDIR%%/account_delete.php +%%MANTISDIR%%/account_page.php +%%MANTISDIR%%/account_prefs_inc.php +%%MANTISDIR%%/account_prefs_page.php +%%MANTISDIR%%/account_prefs_reset.php +%%MANTISDIR%%/account_prefs_update.php +%%MANTISDIR%%/account_prof_add.php +%%MANTISDIR%%/account_prof_delete.php +%%MANTISDIR%%/account_prof_edit_page.php +%%MANTISDIR%%/account_prof_make_default.php +%%MANTISDIR%%/account_prof_menu_page.php +%%MANTISDIR%%/account_prof_update.php +%%MANTISDIR%%/account_sponsor_page.php +%%MANTISDIR%%/account_sponsor_update.php +%%MANTISDIR%%/account_update.php +%%MANTISDIR%%/adm_permissions_report.php +%%MANTISDIR%%/admin/admin.css +%%MANTISDIR%%/admin/check.php +%%MANTISDIR%%/admin/copy_field.php +%%MANTISDIR%%/admin/css/core.php +%%MANTISDIR%%/admin/css/css_download.php +%%MANTISDIR%%/admin/css/css_inc.php +%%MANTISDIR%%/admin/css/css_view.php +%%MANTISDIR%%/admin/css/index.php +%%MANTISDIR%%/admin/css/view_inc.php +%%MANTISDIR%%/admin/db_stats.php +%%MANTISDIR%%/admin/db_table_names_inc.php +%%MANTISDIR%%/admin/index.php +%%MANTISDIR%%/admin/install.php +%%MANTISDIR%%/admin/move_db2disk.php +%%MANTISDIR%%/admin/schema.php +%%MANTISDIR%%/admin/system_utils.php +%%MANTISDIR%%/admin/test_langs.php +%%MANTISDIR%%/admin/upgrade.php +%%MANTISDIR%%/admin/upgrade_advanced.php +%%MANTISDIR%%/admin/upgrade_escaping.php +%%MANTISDIR%%/admin/upgrade_inc.php +%%MANTISDIR%%/admin/upgrade_list.php +%%MANTISDIR%%/admin/upgrade_warning.php +%%MANTISDIR%%/admin/upgrades/0_13_inc.php +%%MANTISDIR%%/admin/upgrades/0_14_inc.php +%%MANTISDIR%%/admin/upgrades/0_15_inc.php +%%MANTISDIR%%/admin/upgrades/0_16_inc.php +%%MANTISDIR%%/admin/upgrades/0_17_escaping_fixes_inc.php +%%MANTISDIR%%/admin/upgrades/0_17_inc.php +%%MANTISDIR%%/admin/upgrades/0_18_inc.php +%%MANTISDIR%%/admin/upgrades/0_19_inc.php +%%MANTISDIR%%/admin/upgrades/1_00_inc.php +%%MANTISDIR%%/bug_actiongroup.php +%%MANTISDIR%%/bug_actiongroup_page.php +%%MANTISDIR%%/bug_assign.php +%%MANTISDIR%%/bug_assign_reporter.php +%%MANTISDIR%%/bug_change_status_page.php +%%MANTISDIR%%/bug_delete.php +%%MANTISDIR%%/bug_file_add.php +%%MANTISDIR%%/bug_file_delete.php +%%MANTISDIR%%/bug_file_upload_inc.php +%%MANTISDIR%%/bug_monitor.php +%%MANTISDIR%%/bug_monitor_list_view_inc.php +%%MANTISDIR%%/bug_relationship_add.php +%%MANTISDIR%%/bug_relationship_delete.php +%%MANTISDIR%%/bug_relationship_graph.php +%%MANTISDIR%%/bug_relationship_graph_img.php +%%MANTISDIR%%/bug_reminder.php +%%MANTISDIR%%/bug_reminder_page.php +%%MANTISDIR%%/bug_report.php +%%MANTISDIR%%/bug_report_advanced_page.php +%%MANTISDIR%%/bug_report_page.php +%%MANTISDIR%%/bug_set_sponsorship.php +%%MANTISDIR%%/bug_sponsorship_list_view_inc.php +%%MANTISDIR%%/bug_update.php +%%MANTISDIR%%/bug_update_advanced_page.php +%%MANTISDIR%%/bug_update_page.php +%%MANTISDIR%%/bug_view_advanced_page.php +%%MANTISDIR%%/bug_view_inc.php +%%MANTISDIR%%/bug_view_page.php +%%MANTISDIR%%/bugnote_add.php +%%MANTISDIR%%/bugnote_add_inc.php +%%MANTISDIR%%/bugnote_delete.php +%%MANTISDIR%%/bugnote_edit_page.php +%%MANTISDIR%%/bugnote_set_view_state.php +%%MANTISDIR%%/bugnote_update.php +%%MANTISDIR%%/bugnote_view_inc.php +%%MANTISDIR%%/changelog_page.php +%%MANTISDIR%%/config_defaults_inc.php +%%MANTISDIR%%/config_inc.php.sample +%%MANTISDIR%%/core.php +%%MANTISDIR%%/core/access_api.php +%%MANTISDIR%%/core/adodb/adodb-csvlib.inc.php +%%MANTISDIR%%/core/adodb/adodb-datadict.inc.php +%%MANTISDIR%%/core/adodb/adodb-error.inc.php +%%MANTISDIR%%/core/adodb/adodb-errorhandler.inc.php +%%MANTISDIR%%/core/adodb/adodb-errorpear.inc.php +%%MANTISDIR%%/core/adodb/adodb-exceptions.inc.php +%%MANTISDIR%%/core/adodb/adodb-iterator.inc.php +%%MANTISDIR%%/core/adodb/adodb-lib.inc.php +%%MANTISDIR%%/core/adodb/adodb-pager.inc.php +%%MANTISDIR%%/core/adodb/adodb-pear.inc.php +%%MANTISDIR%%/core/adodb/adodb-perf.inc.php +%%MANTISDIR%%/core/adodb/adodb-php4.inc.php +%%MANTISDIR%%/core/adodb/adodb-time.inc.php +%%MANTISDIR%%/core/adodb/adodb-time.zip +%%MANTISDIR%%/core/adodb/adodb-xmlschema.inc.php +%%MANTISDIR%%/core/adodb/adodb.inc.php +%%MANTISDIR%%/core/adodb/contrib/toxmlrpc.inc.php +%%MANTISDIR%%/core/adodb/cute_icons_for_site/adodb.gif +%%MANTISDIR%%/core/adodb/cute_icons_for_site/adodb2.gif +%%MANTISDIR%%/core/adodb/datadict/datadict-access.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-db2.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-firebird.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-generic.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-ibase.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-informix.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-mssql.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-mysql.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-oci8.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-postgres.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-sapdb.inc.php +%%MANTISDIR%%/core/adodb/datadict/datadict-sybase.inc.php +%%MANTISDIR%%/core/adodb/docs/docs-adodb.htm +%%MANTISDIR%%/core/adodb/docs/docs-datadict.htm +%%MANTISDIR%%/core/adodb/docs/docs-oracle.htm +%%MANTISDIR%%/core/adodb/docs/docs-perf.htm +%%MANTISDIR%%/core/adodb/docs/docs-session.htm +%%MANTISDIR%%/core/adodb/docs/old-changelog.htm +%%MANTISDIR%%/core/adodb/docs/readme.htm +%%MANTISDIR%%/core/adodb/docs/tips_portable_sql.htm +%%MANTISDIR%%/core/adodb/docs/tute.htm +%%MANTISDIR%%/core/adodb/drivers/adodb-access.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-ado.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-ado5.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-ado_access.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-ado_mssql.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-borland_ibase.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-csv.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-db2.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-fbsql.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-firebird.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-ibase.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-informix.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-informix72.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-ldap.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-mssql.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-mssqlpo.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-mysql.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-mysqli.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-mysqlt.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-netezza.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-oci8.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-oci805.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-oci8po.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-odbc.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-odbc_mssql.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-odbc_oracle.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-odbtp.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-odbtp_unicode.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-oracle.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-pdo.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-postgres.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-postgres64.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-postgres7.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-proxy.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-sapdb.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-sqlanywhere.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-sqlite.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-sqlite.inc.php.bak +%%MANTISDIR%%/core/adodb/drivers/adodb-sqlitepo.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-sybase.inc.php +%%MANTISDIR%%/core/adodb/drivers/adodb-vfp.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-ar.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-bg.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-bgutf8.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-ca.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-cn.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-cz.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-da.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-de.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-en.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-es.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-esperanto.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-fr.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-hu.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-it.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-nl.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-pl.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-pt-br.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-ro.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-ru1251.inc.php +%%MANTISDIR%%/core/adodb/lang/adodb-sv.inc.php +%%MANTISDIR%%/core/adodb/license.txt +%%MANTISDIR%%/core/adodb/pear/Auth/Container/ADOdb.php +%%MANTISDIR%%/core/adodb/pear/readme.Auth.txt +%%MANTISDIR%%/core/adodb/perf/perf-db2.inc.php +%%MANTISDIR%%/core/adodb/perf/perf-informix.inc.php +%%MANTISDIR%%/core/adodb/perf/perf-mssql.inc.php +%%MANTISDIR%%/core/adodb/perf/perf-mysql.inc.php +%%MANTISDIR%%/core/adodb/perf/perf-oci8.inc.php +%%MANTISDIR%%/core/adodb/perf/perf-postgres.inc.php +%%MANTISDIR%%/core/adodb/pivottable.inc.php +%%MANTISDIR%%/core/adodb/readme.txt +%%MANTISDIR%%/core/adodb/rsfilter.inc.php +%%MANTISDIR%%/core/adodb/server.php +%%MANTISDIR%%/core/adodb/session/adodb-compress-bzip2.php +%%MANTISDIR%%/core/adodb/session/adodb-compress-gzip.php +%%MANTISDIR%%/core/adodb/session/adodb-cryptsession.php +%%MANTISDIR%%/core/adodb/session/adodb-encrypt-mcrypt.php +%%MANTISDIR%%/core/adodb/session/adodb-encrypt-md5.php +%%MANTISDIR%%/core/adodb/session/adodb-encrypt-secret.php +%%MANTISDIR%%/core/adodb/session/adodb-sess.txt +%%MANTISDIR%%/core/adodb/session/adodb-session-clob.php +%%MANTISDIR%%/core/adodb/session/adodb-session.php +%%MANTISDIR%%/core/adodb/session/adodb-sessions.mysql.sql +%%MANTISDIR%%/core/adodb/session/adodb-sessions.oracle.clob.sql +%%MANTISDIR%%/core/adodb/session/adodb-sessions.oracle.sql +%%MANTISDIR%%/core/adodb/session/crypt.inc.php +%%MANTISDIR%%/core/adodb/session/old/adodb-cryptsession.php +%%MANTISDIR%%/core/adodb/session/old/adodb-session-clob.php +%%MANTISDIR%%/core/adodb/session/old/adodb-session.php +%%MANTISDIR%%/core/adodb/session/old/crypt.inc.php +%%MANTISDIR%%/core/adodb/toexport.inc.php +%%MANTISDIR%%/core/adodb/tohtml.inc.php +%%MANTISDIR%%/core/adodb/xmlschema.dtd +%%MANTISDIR%%/core/adodb/xsl/convert-0.1-0.2.xsl +%%MANTISDIR%%/core/adodb/xsl/convert-0.2-0.1.xsl +%%MANTISDIR%%/core/adodb/xsl/remove-0.2.xsl +%%MANTISDIR%%/core/authentication_api.php +%%MANTISDIR%%/core/bug_api.php +%%MANTISDIR%%/core/bug_group_action_api.php +%%MANTISDIR%%/core/bugnote_api.php +%%MANTISDIR%%/core/category_api.php +%%MANTISDIR%%/core/checkin.php +%%MANTISDIR%%/core/class.RSSBuilder.inc.php +%%MANTISDIR%%/core/class.urlmatch.php +%%MANTISDIR%%/core/collapse_api.php +%%MANTISDIR%%/core/columns_api.php +%%MANTISDIR%%/core/compress_api.php +%%MANTISDIR%%/core/config_api.php +%%MANTISDIR%%/core/constant_inc.php +%%MANTISDIR%%/core/csv_api.php +%%MANTISDIR%%/core/current_user_api.php +%%MANTISDIR%%/core/custom_field_api.php +%%MANTISDIR%%/core/custom_function_api.php +%%MANTISDIR%%/core/database_api.php +%%MANTISDIR%%/core/date_api.php +%%MANTISDIR%%/core/email_api.php +%%MANTISDIR%%/core/error_api.php +%%MANTISDIR%%/core/file_api.php +%%MANTISDIR%%/core/filter_api.php +%%MANTISDIR%%/core/gpc_api.php +%%MANTISDIR%%/core/graph_api.php +%%MANTISDIR%%/core/graphviz_api.php +%%MANTISDIR%%/core/helper_api.php +%%MANTISDIR%%/core/history_api.php +%%MANTISDIR%%/core/html_api.php +%%MANTISDIR%%/core/icon_api.php +%%MANTISDIR%%/core/lang_api.php +%%MANTISDIR%%/core/ldap_api.php +%%MANTISDIR%%/core/logging_api.php +%%MANTISDIR%%/core/my_view_inc.php +%%MANTISDIR%%/core/news_api.php +%%MANTISDIR%%/core/obsolete.php +%%MANTISDIR%%/core/php_api.php +%%MANTISDIR%%/core/phpmailer/ChangeLog.txt +%%MANTISDIR%%/core/phpmailer/LICENSE +%%MANTISDIR%%/core/phpmailer/README +%%MANTISDIR%%/core/phpmailer/class.phpmailer.php +%%MANTISDIR%%/core/phpmailer/class.smtp.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-br.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-cz.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-de.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-en.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-es.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-fr.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-it.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-nl.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-no.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-se.php +%%MANTISDIR%%/core/phpmailer/language/phpmailer.lang-tr.php +%%MANTISDIR%%/core/prepare_api.php +%%MANTISDIR%%/core/print_api.php +%%MANTISDIR%%/core/profile_api.php +%%MANTISDIR%%/core/project_api.php +%%MANTISDIR%%/core/project_hierarchy_api.php +%%MANTISDIR%%/core/relationship_api.php +%%MANTISDIR%%/core/relationship_graph_api.php +%%MANTISDIR%%/core/sponsorship_api.php +%%MANTISDIR%%/core/string_api.php +%%MANTISDIR%%/core/summary_api.php +%%MANTISDIR%%/core/timer_api.php +%%MANTISDIR%%/core/tokens_api.php +%%MANTISDIR%%/core/user_api.php +%%MANTISDIR%%/core/user_pref_api.php +%%MANTISDIR%%/core/utility_api.php +%%MANTISDIR%%/core/version_api.php +%%MANTISDIR%%/css/default.css +%%MANTISDIR%%/csv_export.php +%%MANTISDIR%%/doc/CREDITS +%%MANTISDIR%%/doc/CUSTOMIZATION +%%MANTISDIR%%/doc/ChangeLog +%%MANTISDIR%%/doc/INSTALL +%%MANTISDIR%%/doc/LICENSE +%%MANTISDIR%%/doc/README +%%MANTISDIR%%/doc/UPGRADING +%%MANTISDIR%%/file_download.php +%%MANTISDIR%%/graphs/graph_assigned_to_me.php +%%MANTISDIR%%/graphs/graph_by_category.php +%%MANTISDIR%%/graphs/graph_by_cumulative.php +%%MANTISDIR%%/graphs/graph_by_daily_delta.php +%%MANTISDIR%%/graphs/graph_by_release_delta.php +%%MANTISDIR%%/graphs/graph_by_severity.php +%%MANTISDIR%%/graphs/graph_by_severity_status.php +%%MANTISDIR%%/graphs/graph_reported_by_me.php +%%MANTISDIR%%/history_inc.php +%%MANTISDIR%%/images/attachment.png +%%MANTISDIR%%/images/blank.gif +%%MANTISDIR%%/images/dollars.gif +%%MANTISDIR%%/images/down.gif +%%MANTISDIR%%/images/excel2icon.gif +%%MANTISDIR%%/images/excelicon.gif +%%MANTISDIR%%/images/fileicon.gif +%%MANTISDIR%%/images/gificon.gif +%%MANTISDIR%%/images/htmlicon.gif +%%MANTISDIR%%/images/ieicon.gif +%%MANTISDIR%%/images/jpgicon.gif +%%MANTISDIR%%/images/mailicon.gif +%%MANTISDIR%%/images/mantis_logo.gif +%%MANTISDIR%%/images/mantis_logo_button.gif +%%MANTISDIR%%/images/mantis_space.gif +%%MANTISDIR%%/images/minus.png +%%MANTISDIR%%/images/notice.gif +%%MANTISDIR%%/images/ok.gif +%%MANTISDIR%%/images/pdf2icon.gif +%%MANTISDIR%%/images/pdficon.gif +%%MANTISDIR%%/images/plus.png +%%MANTISDIR%%/images/pngicon.gif +%%MANTISDIR%%/images/ppticon.gif +%%MANTISDIR%%/images/priority_1.gif +%%MANTISDIR%%/images/priority_2.gif +%%MANTISDIR%%/images/priority_3.gif +%%MANTISDIR%%/images/priority_low_1.gif +%%MANTISDIR%%/images/priority_low_2.gif +%%MANTISDIR%%/images/priority_low_3.gif +%%MANTISDIR%%/images/protected.gif +%%MANTISDIR%%/images/rel_dependant.png +%%MANTISDIR%%/images/rel_duplicate.png +%%MANTISDIR%%/images/rel_related.png +%%MANTISDIR%%/images/rss.gif +%%MANTISDIR%%/images/synthese.gif +%%MANTISDIR%%/images/synthgraph.gif +%%MANTISDIR%%/images/texticon.gif +%%MANTISDIR%%/images/unknownicon.gif +%%MANTISDIR%%/images/unread.gif +%%MANTISDIR%%/images/up.gif +%%MANTISDIR%%/images/update.png +%%MANTISDIR%%/images/word2icon.gif +%%MANTISDIR%%/images/wordicon.gif +%%MANTISDIR%%/images/zipicon.gif +%%MANTISDIR%%/index.php +%%MANTISDIR%%/issues_rss.php +%%MANTISDIR%%/javascript/addLoadEvent.js +%%MANTISDIR%%/javascript/common.js +%%MANTISDIR%%/javascript/dynamic_filters.js +%%MANTISDIR%%/javascript/xmlhttprequest.js +%%MANTISDIR%%/jump_to_bug.php +%%MANTISDIR%%/lang/strings_chinese_simplified.txt +%%MANTISDIR%%/lang/strings_chinese_simplified_utf8.txt +%%MANTISDIR%%/lang/strings_chinese_traditional.txt +%%MANTISDIR%%/lang/strings_chinese_traditional_utf8.txt +%%MANTISDIR%%/lang/strings_croatian.txt +%%MANTISDIR%%/lang/strings_czech.txt +%%MANTISDIR%%/lang/strings_danish.txt +%%MANTISDIR%%/lang/strings_dutch.txt +%%MANTISDIR%%/lang/strings_english.txt +%%MANTISDIR%%/lang/strings_estonian.txt +%%MANTISDIR%%/lang/strings_finnish.txt +%%MANTISDIR%%/lang/strings_french.txt +%%MANTISDIR%%/lang/strings_french_canadian.txt +%%MANTISDIR%%/lang/strings_german.txt +%%MANTISDIR%%/lang/strings_hungarian.txt +%%MANTISDIR%%/lang/strings_icelandic.txt +%%MANTISDIR%%/lang/strings_italian.txt +%%MANTISDIR%%/lang/strings_japanese_euc.txt +%%MANTISDIR%%/lang/strings_japanese_sjis.txt +%%MANTISDIR%%/lang/strings_japanese_utf8.txt +%%MANTISDIR%%/lang/strings_korean.txt +%%MANTISDIR%%/lang/strings_korean_utf8.txt +%%MANTISDIR%%/lang/strings_latvian.txt +%%MANTISDIR%%/lang/strings_lithuanian.txt +%%MANTISDIR%%/lang/strings_norwegian.txt +%%MANTISDIR%%/lang/strings_polish.txt +%%MANTISDIR%%/lang/strings_portuguese_brazil.txt +%%MANTISDIR%%/lang/strings_portuguese_standard.txt +%%MANTISDIR%%/lang/strings_romanian.txt +%%MANTISDIR%%/lang/strings_russian.txt +%%MANTISDIR%%/lang/strings_russian_koi8.txt +%%MANTISDIR%%/lang/strings_serbian.txt +%%MANTISDIR%%/lang/strings_slovak.txt +%%MANTISDIR%%/lang/strings_slovene.txt +%%MANTISDIR%%/lang/strings_spanish.txt +%%MANTISDIR%%/lang/strings_swedish.txt +%%MANTISDIR%%/lang/strings_turkish.txt +%%MANTISDIR%%/lang/strings_ukrainian.txt +%%MANTISDIR%%/login.php +%%MANTISDIR%%/login_anon.php +%%MANTISDIR%%/login_cookie_test.php +%%MANTISDIR%%/login_page.php +%%MANTISDIR%%/login_select_proj_page.php +%%MANTISDIR%%/logout_page.php +%%MANTISDIR%%/lost_pwd.php +%%MANTISDIR%%/lost_pwd_page.php +%%MANTISDIR%%/main_page.php +%%MANTISDIR%%/make_captcha_img.php +%%MANTISDIR%%/manage_config_email_page.php +%%MANTISDIR%%/manage_config_email_set.php +%%MANTISDIR%%/manage_config_revert.php +%%MANTISDIR%%/manage_config_work_threshold_page.php +%%MANTISDIR%%/manage_config_work_threshold_set.php +%%MANTISDIR%%/manage_config_workflow_page.php +%%MANTISDIR%%/manage_config_workflow_set.php +%%MANTISDIR%%/manage_custom_field_create.php +%%MANTISDIR%%/manage_custom_field_delete.php +%%MANTISDIR%%/manage_custom_field_edit_page.php +%%MANTISDIR%%/manage_custom_field_page.php +%%MANTISDIR%%/manage_custom_field_update.php +%%MANTISDIR%%/manage_prof_menu_page.php +%%MANTISDIR%%/manage_proj_cat_add.php +%%MANTISDIR%%/manage_proj_cat_copy.php +%%MANTISDIR%%/manage_proj_cat_delete.php +%%MANTISDIR%%/manage_proj_cat_edit_page.php +%%MANTISDIR%%/manage_proj_cat_update.php +%%MANTISDIR%%/manage_proj_create.php +%%MANTISDIR%%/manage_proj_create_page.php +%%MANTISDIR%%/manage_proj_custom_field_add_existing.php +%%MANTISDIR%%/manage_proj_custom_field_remove.php +%%MANTISDIR%%/manage_proj_custom_field_update.php +%%MANTISDIR%%/manage_proj_delete.php +%%MANTISDIR%%/manage_proj_edit_page.php +%%MANTISDIR%%/manage_proj_page.php +%%MANTISDIR%%/manage_proj_subproj_add.php +%%MANTISDIR%%/manage_proj_subproj_delete.php +%%MANTISDIR%%/manage_proj_update.php +%%MANTISDIR%%/manage_proj_user_add.php +%%MANTISDIR%%/manage_proj_user_copy.php +%%MANTISDIR%%/manage_proj_user_remove.php +%%MANTISDIR%%/manage_proj_ver_add.php +%%MANTISDIR%%/manage_proj_ver_delete.php +%%MANTISDIR%%/manage_proj_ver_edit_page.php +%%MANTISDIR%%/manage_proj_ver_update.php +%%MANTISDIR%%/manage_user_create.php +%%MANTISDIR%%/manage_user_create_page.php +%%MANTISDIR%%/manage_user_delete.php +%%MANTISDIR%%/manage_user_edit_page.php +%%MANTISDIR%%/manage_user_page.php +%%MANTISDIR%%/manage_user_proj_add.php +%%MANTISDIR%%/manage_user_proj_delete.php +%%MANTISDIR%%/manage_user_prune.php +%%MANTISDIR%%/manage_user_reset.php +%%MANTISDIR%%/manage_user_update.php +%%MANTISDIR%%/mantis_offline.php.sample +%%MANTISDIR%%/meta_inc.php +%%MANTISDIR%%/my_view_page.php +%%MANTISDIR%%/news_add.php +%%MANTISDIR%%/news_delete.php +%%MANTISDIR%%/news_edit_page.php +%%MANTISDIR%%/news_list_page.php +%%MANTISDIR%%/news_menu_page.php +%%MANTISDIR%%/news_rss.php +%%MANTISDIR%%/news_update.php +%%MANTISDIR%%/news_view_page.php +%%MANTISDIR%%/packages/mantis.spec +%%MANTISDIR%%/print_all_bug_options_inc.php +%%MANTISDIR%%/print_all_bug_options_page.php +%%MANTISDIR%%/print_all_bug_options_reset.php +%%MANTISDIR%%/print_all_bug_options_update.php +%%MANTISDIR%%/print_all_bug_page.php +%%MANTISDIR%%/print_all_bug_page_excel.php +%%MANTISDIR%%/print_all_bug_page_word.php +%%MANTISDIR%%/print_bug_page.php +%%MANTISDIR%%/print_bugnote_inc.php +%%MANTISDIR%%/proj_doc_add.php +%%MANTISDIR%%/proj_doc_add_page.php +%%MANTISDIR%%/proj_doc_delete.php +%%MANTISDIR%%/proj_doc_edit_page.php +%%MANTISDIR%%/proj_doc_page.php +%%MANTISDIR%%/proj_doc_update.php +%%MANTISDIR%%/query_delete.php +%%MANTISDIR%%/query_delete_page.php +%%MANTISDIR%%/query_store.php +%%MANTISDIR%%/query_store_page.php +%%MANTISDIR%%/query_view_page.php +%%MANTISDIR%%/return_dynamic_filters.php +%%MANTISDIR%%/set_project.php +%%MANTISDIR%%/signup.php +%%MANTISDIR%%/signup_page.php +%%MANTISDIR%%/summary_graph_bycategory.php +%%MANTISDIR%%/summary_graph_bycategory_pct.php +%%MANTISDIR%%/summary_graph_bydeveloper.php +%%MANTISDIR%%/summary_graph_bypriority.php +%%MANTISDIR%%/summary_graph_bypriority_mix.php +%%MANTISDIR%%/summary_graph_bypriority_pct.php +%%MANTISDIR%%/summary_graph_byreporter.php +%%MANTISDIR%%/summary_graph_byresolution.php +%%MANTISDIR%%/summary_graph_byresolution_mix.php +%%MANTISDIR%%/summary_graph_byresolution_pct.php +%%MANTISDIR%%/summary_graph_byseverity.php +%%MANTISDIR%%/summary_graph_byseverity_mix.php +%%MANTISDIR%%/summary_graph_byseverity_pct.php +%%MANTISDIR%%/summary_graph_bystatus.php +%%MANTISDIR%%/summary_graph_bystatus_pct.php +%%MANTISDIR%%/summary_graph_cumulative_bydate.php +%%MANTISDIR%%/summary_graph_imp_category.php +%%MANTISDIR%%/summary_graph_imp_priority.php +%%MANTISDIR%%/summary_graph_imp_resolution.php +%%MANTISDIR%%/summary_graph_imp_severity.php +%%MANTISDIR%%/summary_graph_imp_status.php +%%MANTISDIR%%/summary_jpgraph_page.php +%%MANTISDIR%%/summary_page.php +%%MANTISDIR%%/verify.php +%%MANTISDIR%%/view.php +%%MANTISDIR%%/view_all_bug_page.php +%%MANTISDIR%%/view_all_inc.php +%%MANTISDIR%%/view_all_set.php +%%MANTISDIR%%/view_filters_page.php +@dirrm %%MANTISDIR%%/packages +@dirrm %%MANTISDIR%%/lang +@dirrm %%MANTISDIR%%/javascript +@dirrm %%MANTISDIR%%/images +@dirrm %%MANTISDIR%%/graphs +@dirrm %%MANTISDIR%%/doc +@dirrm %%MANTISDIR%%/css +@dirrm %%MANTISDIR%%/core/phpmailer/language +@dirrm %%MANTISDIR%%/core/phpmailer +@dirrm %%MANTISDIR%%/core/adodb/xsl +@dirrm %%MANTISDIR%%/core/adodb/session/old +@dirrm %%MANTISDIR%%/core/adodb/session +@dirrm %%MANTISDIR%%/core/adodb/perf +@dirrm %%MANTISDIR%%/core/adodb/pear/Auth/Container +@dirrm %%MANTISDIR%%/core/adodb/pear/Auth +@dirrm %%MANTISDIR%%/core/adodb/pear +@dirrm %%MANTISDIR%%/core/adodb/lang +@dirrm %%MANTISDIR%%/core/adodb/drivers +@dirrm %%MANTISDIR%%/core/adodb/docs +@dirrm %%MANTISDIR%%/core/adodb/datadict +@dirrm %%MANTISDIR%%/core/adodb/cute_icons_for_site +@dirrm %%MANTISDIR%%/core/adodb/contrib +@dirrm %%MANTISDIR%%/core/adodb +@dirrm %%MANTISDIR%%/core +@dirrm %%MANTISDIR%%/admin/upgrades +@dirrm %%MANTISDIR%%/admin/css +@dirrm %%MANTISDIR%%/admin +@dirrmtry %%MANTISDIR%% +@unexec (test -d %D/%%MANTISDIR%% && (echo && echo "Configuration information saved." && echo && echo "If you don't plan to use this package any longer," && echo "please remove %D/%%MANTISDIR%% and its contents manually.")) || true +@dirrm share/nls/en_US.US-ASCII +@dirrm share/nls/POSIX --- mantis_1.0.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: