Re: UPDATE: www/phpmyadmin

2017-09-01 Thread Giovanni Bechis
On Fri, Sep 01, 2017 at 03:55:11PM +0200, Giovanni Bechis wrote:
> Update to 4.7.4, fix apache2 example and add nginx configuration example.
> Comments ? Ok ?
>  Cheers
>   Giovanni
Now with correct diff.
 Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.128
diff -u -p -r1.128 Makefile
--- Makefile1 Feb 2017 08:52:36 -   1.128
+++ Makefile1 Sep 2017 13:47:17 -
@@ -2,7 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 4.6.6
+V= 4.7.4
 
 PKGNAME=   phpMyAdmin-$V
 DISTNAME=  phpMyAdmin-$V-all-languages
@@ -32,8 +32,10 @@ RUN_DEPENDS= lang/php/${MODPHP_VERSION},
lang/php/${MODPHP_VERSION},-gd
 
 post-extract:
-   ${SUBST_CMD} -m 0644 -c ${FILESDIR}/phpMyAdmin-httpd.conf \
-   ${WRKSRC}/examples/phpMyAdmin-httpd.conf
+   ${SUBST_CMD} -m 0644 -c ${FILESDIR}/phpMyAdmin-apache2.conf \
+   ${WRKSRC}/examples/phpMyAdmin-apache2.conf
+   ${SUBST_CMD} -m 0644 -c ${FILESDIR}/phpMyAdmin-nginx.conf \
+   ${WRKSRC}/examples/phpMyAdmin-nginx.conf
 
 do-install:
@find ${WRKSRC} -type f -name "*.orig" -exec rm -f {} \;
Index: distinfo
===
RCS file: /var/cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.107
diff -u -p -r1.107 distinfo
--- distinfo1 Feb 2017 08:52:36 -   1.107
+++ distinfo1 Sep 2017 13:47:19 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.6.6-all-languages.tar.gz) = 
VAhmAFWGE7McTa3fSuWPvBwlKiuOPm+uEvhR94Z31y4=
-SIZE (phpMyAdmin-4.6.6-all-languages.tar.gz) = 10395934
+SHA256 (phpMyAdmin-4.7.4-all-languages.tar.gz) = 
/RqSlZVT9dh7OiFjomti1jFDCQluHuXolkYFBFdDD9I=
+SIZE (phpMyAdmin-4.7.4-all-languages.tar.gz) = 10126578
Index: files/phpMyAdmin-apache2.conf
===
RCS file: files/phpMyAdmin-apache2.conf
diff -N files/phpMyAdmin-apache2.conf
--- /dev/null   1 Jan 1970 00:00:00 -
+++ files/phpMyAdmin-apache2.conf   1 Sep 2017 13:47:03 -
@@ -0,0 +1,33 @@
+# $OpenBSD: phpMyAdmin-httpd.conf,v 1.2 2013/01/18 15:17:43 giovanni Exp $
+
+Alias /phpMyAdmin ${INSTDIR}
+
+
+   LoadModule rewrite_module /usr/lib/apache/modules/mod_rewrite.so
+
+   RewriteEngine on
+
+   # Allow only GET and POST verbs
+   RewriteCond %{REQUEST_METHOD} !^(GET|POST)$ [NC,OR]
+
+   # Ban Typical Vulnerability Scanners and others
+   # Kick out Script Kiddies
+   RewriteCond %{HTTP_USER_AGENT} ^(java|curl|wget).* [NC,OR]
+   RewriteCond %{HTTP_USER_AGENT} 
^.*(libwww-perl|curl|wget|python|nikto|wkito|pikto|scan|acunetix).* [NC,OR]
+   RewriteCond %{HTTP_USER_AGENT} 
^.*(winhttp|HTTrack|clshttp|archiver|loader|email|harvest|extract|grab|miner).* 
[NC,OR]
+
+   # Ban Search Engines, Crawlers to your administrative panel
+   # No reasons to access from bots
+   # Ultimately Better than the useless robots.txt
+   # Did google respect robots.txt?
+   # Try google: intitle:phpMyAdmin intext:"Welcome to phpMyAdmin *.*.*" 
intext:"Log in" -wiki -forum -forums -questions intext:"Cookies must be enabled"
+   RewriteCond %{HTTP_USER_AGENT} 
^.*(AdsBot-Google|ia_archiver|Scooter|Ask.Jeeves|Baiduspider|Exabot|FAST.Enterprise.Crawler|FAST-WebCrawler|www\.neomo\.de|Gigabot|Mediapartners-Google|Google.Desktop|Feedfetcher-Google|Googlebot|heise-IT-Markt-Crawler|heritrix|ibm.com\cs/crawler|ICCrawler|ichiro|MJ12bot|MetagerBot|msnbot-NewsBlogs|msnbot|msnbot-media|NG-Search|lucene.apache.org|NutchCVS|OmniExplorer_Bot|online.link.validator|psbot0|Seekbot|Sensis.Web.Crawler|SEO.search.Crawler|Seoma.\[SEO.Crawler\]|SEOsearch|Snappy|www.urltrends.com|www.tkl.iis.u-tokyo.ac.jp/~crawler|SynooBot|crawleradmin.t-i...@telekom.de|TurnitinBot|voyager|W3.SiteSearch.Crawler|W3C-checklink|W3C_Validator|www.WISEnutbot.com|yacybot|Yahoo-MMCrawler|Yahoo\!.DE.Slurp|Yahoo\!.Slurp|YahooSeeker).*
 [NC]
+   RewriteRule .* - [F]
+
+
+
+   AllowOverride All
+
+   # Default to only permitting access from localhost.
+   Require local
+
Index: files/phpMyAdmin-httpd.conf
===
RCS file: files/phpMyAdmin-httpd.conf
diff -N files/phpMyAdmin-httpd.conf
--- files/phpMyAdmin-httpd.conf 18 Jan 2013 15:17:43 -  1.2
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,35 +0,0 @@
-# $OpenBSD: phpMyAdmin-httpd.conf,v 1.2 2013/01/18 15:17:43 giovanni Exp $
-
-Alias /phpMyAdmin ${INSTDIR}
-
-
-   LoadModule rewrite_module /usr/lib/apache/modules/mod_rewrite.so
-
-   RewriteEngine on
-
-   # Allow only GET and POST verbs
-   RewriteCond %{REQUEST_METHOD} !^(GET|POST)$ [NC,OR]
-
-   # Ban Typical Vulnerability Scanners and others
-   # Kick out Script Kiddies
-   RewriteCond %{HTTP_USER_AGENT} ^(java|curl|wget).* [NC,OR]
-

UPDATE: www/phpmyadmin

2017-09-01 Thread Giovanni Bechis
Update to 4.7.4, fix apache2 example and add nginx configuration example.
Comments ? Ok ?
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.128
diff -u -p -r1.128 Makefile
--- Makefile	1 Feb 2017 08:52:36 -	1.128
+++ Makefile	1 Sep 2017 13:38:04 -
@@ -2,7 +2,7 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		4.6.6
+V=		4.7.4
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
Index: distinfo
===
RCS file: /var/cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.107
diff -u -p -r1.107 distinfo
--- distinfo	1 Feb 2017 08:52:36 -	1.107
+++ distinfo	1 Sep 2017 13:38:24 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.6.6-all-languages.tar.gz) = VAhmAFWGE7McTa3fSuWPvBwlKiuOPm+uEvhR94Z31y4=
-SIZE (phpMyAdmin-4.6.6-all-languages.tar.gz) = 10395934
+SHA256 (phpMyAdmin-4.7.4-all-languages.tar.gz) = /RqSlZVT9dh7OiFjomti1jFDCQluHuXolkYFBFdDD9I=
+SIZE (phpMyAdmin-4.7.4-all-languages.tar.gz) = 10126578
Index: pkg/PLIST
===
RCS file: /var/cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.63
diff -u -p -r1.63 PLIST
--- pkg/PLIST	1 Feb 2017 08:52:36 -	1.63
+++ pkg/PLIST	1 Sep 2017 13:43:00 -
@@ -10,11 +10,12 @@ phpMyAdmin/DCO
 phpMyAdmin/LICENSE
 phpMyAdmin/README
 phpMyAdmin/RELEASE-DATE-${V}
+phpMyAdmin/ajax.php
 phpMyAdmin/browse_foreigners.php
-phpMyAdmin/build.xml
 phpMyAdmin/changelog.php
 phpMyAdmin/chk_rel.php
 phpMyAdmin/composer.json
+phpMyAdmin/composer.lock
 phpMyAdmin/config.sample.inc.php
 @sample phpMyAdmin/config.inc.php
 phpMyAdmin/db_central_columns.php
@@ -34,40 +35,25 @@ phpMyAdmin/db_structure.php
 phpMyAdmin/db_tracking.php
 phpMyAdmin/db_triggers.php
 phpMyAdmin/doc/
-phpMyAdmin/doc/Makefile
-phpMyAdmin/doc/_ext/
-phpMyAdmin/doc/_ext/configext.py
 @comment phpMyAdmin/doc/_ext/configext.pyc
-phpMyAdmin/doc/conf.py
-phpMyAdmin/doc/config.rst
-phpMyAdmin/doc/copyright.rst
-phpMyAdmin/doc/credits.rst
-phpMyAdmin/doc/developers.rst
-phpMyAdmin/doc/doctrees/
-phpMyAdmin/doc/doctrees/config.doctree
-phpMyAdmin/doc/doctrees/copyright.doctree
-phpMyAdmin/doc/doctrees/credits.doctree
-phpMyAdmin/doc/doctrees/developers.doctree
-phpMyAdmin/doc/doctrees/environment.pickle
-phpMyAdmin/doc/doctrees/faq.doctree
-phpMyAdmin/doc/doctrees/glossary.doctree
-phpMyAdmin/doc/doctrees/import_export.doctree
-phpMyAdmin/doc/doctrees/index.doctree
-phpMyAdmin/doc/doctrees/intro.doctree
-phpMyAdmin/doc/doctrees/other.doctree
-phpMyAdmin/doc/doctrees/privileges.doctree
-phpMyAdmin/doc/doctrees/require.doctree
-phpMyAdmin/doc/doctrees/setup.doctree
-phpMyAdmin/doc/doctrees/transformations.doctree
-phpMyAdmin/doc/doctrees/user.doctree
-phpMyAdmin/doc/doctrees/vendors.doctree
-phpMyAdmin/doc/faq.rst
-phpMyAdmin/doc/glossary.rst
 phpMyAdmin/doc/html/
-phpMyAdmin/doc/html/.buildinfo
 phpMyAdmin/doc/html/_images/
+phpMyAdmin/doc/html/_images/chart.png
+phpMyAdmin/doc/html/_images/column_chart.png
+phpMyAdmin/doc/html/_images/line_chart.png
+phpMyAdmin/doc/html/_images/pie_chart.png
+phpMyAdmin/doc/html/_images/pma-relations-links.png
+phpMyAdmin/doc/html/_images/pma-relations-relation-link.png
+phpMyAdmin/doc/html/_images/pma-relations-relation-name.png
+phpMyAdmin/doc/html/_images/pma-relations-relation-view-link.png
+phpMyAdmin/doc/html/_images/query_result_operations.png
+phpMyAdmin/doc/html/_images/scatter_chart.png
+phpMyAdmin/doc/html/_images/spline_chart.png
+phpMyAdmin/doc/html/_images/timeline_chart.png
 phpMyAdmin/doc/html/_images/usergroups.png
 phpMyAdmin/doc/html/_sources/
+phpMyAdmin/doc/html/_sources/bookmarks.txt
+phpMyAdmin/doc/html/_sources/charts.txt
 phpMyAdmin/doc/html/_sources/config.txt
 phpMyAdmin/doc/html/_sources/copyright.txt
 phpMyAdmin/doc/html/_sources/credits.txt
@@ -79,7 +65,9 @@ phpMyAdmin/doc/html/_sources/index.txt
 phpMyAdmin/doc/html/_sources/intro.txt
 phpMyAdmin/doc/html/_sources/other.txt
 phpMyAdmin/doc/html/_sources/privileges.txt
+phpMyAdmin/doc/html/_sources/relations.txt
 phpMyAdmin/doc/html/_sources/require.txt
+phpMyAdmin/doc/html/_sources/settings.txt
 phpMyAdmin/doc/html/_sources/setup.txt
 phpMyAdmin/doc/html/_sources/transformations.txt
 phpMyAdmin/doc/html/_sources/user.txt
@@ -106,6 +94,8 @@ phpMyAdmin/doc/html/_static/underscore.j
 phpMyAdmin/doc/html/_static/up-pressed.png
 phpMyAdmin/doc/html/_static/up.png
 phpMyAdmin/doc/html/_static/websupport.js
+phpMyAdmin/doc/html/bookmarks.html
+phpMyAdmin/doc/html/charts.html
 phpMyAdmin/doc/html/config.html
 phpMyAdmin/doc/html/copyright.html
 phpMyAdmin/doc/html/credits.html
@@ -116,29 +106,17 @@ phpMyAdmin/doc/html/glossary.html
 phpMyAdmin/doc/html/import_export.html
 phpMyAdmin/doc/html/index.html
 phpMyAdmin/doc/html/intro.html
-phpMyAdmin/doc/html/objects.inv
 phpMyAdmin/doc/html/other.html
 

UPDATE: www/phpmyadmin

2014-08-25 Thread Giovanni Bechis
Security update to 4.2.7.1, I double checked Mysql version requirements, it 
seems that in certain cases phpmyadmin is not able to correctly restore data 
with MySQL  5.5 (http://sourceforge.net/p/phpmyadmin/bugs/4437/);
anyway I think that it would be better to update phpmyadmin to latest version 
that to backport php code to 4.2.2.
Opinions ?
 Cheers
   Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.105
diff -u -p -r1.105 Makefile
--- Makefile	3 Jul 2014 13:13:59 -	1.105
+++ Makefile	25 Aug 2014 16:23:26 -
@@ -2,8 +2,7 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		4.2.2
-REVISION=	1
+V=		4.2.7.1
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
Index: distinfo
===
RCS file: /var/cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.89
diff -u -p -r1.89 distinfo
--- distinfo	13 Jun 2014 17:01:36 -	1.89
+++ distinfo	25 Aug 2014 16:24:09 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.2.2-all-languages.tar.gz) = sn5nEptYo3HLIrCX/aYzT9JaWS0QKfxbPkD92FNaSEU=
-SIZE (phpMyAdmin-4.2.2-all-languages.tar.gz) = 8589833
+SHA256 (phpMyAdmin-4.2.7.1-all-languages.tar.gz) = lYA5HeA9vruqMxYihiY/tjo0ooE1dEKvB+6TBOaaoqU=
+SIZE (phpMyAdmin-4.2.7.1-all-languages.tar.gz) = 8517774
Index: patches/patch-js_error_report_js
===
RCS file: patches/patch-js_error_report_js
diff -N patches/patch-js_error_report_js
--- patches/patch-js_error_report_js	13 Jun 2014 17:01:36 -	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -
@@ -1,15 +0,0 @@
-$OpenBSD: patch-js_error_report_js,v 1.1 2014/06/13 17:01:36 giovanni Exp $
-Error token mismatch when a new user is created on a remote
-database.
-http://sourceforge.net/p/phpmyadmin/bugs/3893/
-
 js/error_report.js.orig	Fri Jun 13 17:45:51 2014
-+++ js/error_report.js	Fri Jun 13 17:47:18 2014
-@@ -21,6 +21,7 @@ var ErrorReport = {
- ErrorReport._last_exception = exception;
- $.get(error_report.php, {
- ajax_request: true,
-+server: PMA_commonParams.get('server'),
- token: PMA_commonParams.get('token'),
- get_settings: true
- }, function (data) {
Index: patches/patch-js_server_privileges_js
===
RCS file: patches/patch-js_server_privileges_js
diff -N patches/patch-js_server_privileges_js
--- patches/patch-js_server_privileges_js	13 Jun 2014 17:01:36 -	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -
@@ -1,15 +0,0 @@
-$OpenBSD: patch-js_server_privileges_js,v 1.1 2014/06/13 17:01:36 giovanni Exp $
-Error token mismatch when a new user is created on a remote
-database.
-http://sourceforge.net/p/phpmyadmin/bugs/3893/
-
 js/server_privileges.js.orig	Fri Jun 13 17:45:36 2014
-+++ js/server_privileges.js	Fri Jun 13 17:46:48 2014
-@@ -192,6 +192,7 @@ AJAX.registerOnload('server_privileges.js', function (
- var href = $(form[name='usersForm']).attr('action');
- var params = {
- 'ajax_request' : true,
-+'server' : PMA_commonParams.get('server'),
- 'token' : PMA_commonParams.get('token'),
- 'validate_username' : true,
- 'username' : username
Index: patches/patch-libraries_RecentFavoriteTable_class_php
===
RCS file: patches/patch-libraries_RecentFavoriteTable_class_php
diff -N patches/patch-libraries_RecentFavoriteTable_class_php
--- patches/patch-libraries_RecentFavoriteTable_class_php	3 Jul 2014 13:13:59 -	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -
@@ -1,67 +0,0 @@
-$OpenBSD: patch-libraries_RecentFavoriteTable_class_php,v 1.1 2014/07/03 13:13:59 giovanni Exp $
-fix for CVE-2014-4348
 libraries/RecentFavoriteTable.class.php.orig	Thu Jun 26 11:22:05 2014
-+++ libraries/RecentFavoriteTable.class.php	Thu Jun 26 11:30:44 2014
-@@ -203,36 +203,46 @@ class PMA_RecentFavoriteTable
- if ($this-_tableType == 'recent') {
- foreach ($this-_tables as $table) {
- $html .= 'li class=warp_link';
--$html .= 'a href=sql.php?server=' . $GLOBALS['server']
--  . 'db=' . $table['db']
--  . 'table=' . $table['table']
--  . 'token=' . $_SESSION[' PMA_token ']
--  . '`' . $table['db'] . '`.`' . $table['table'] . '`/a';
-+$recent_params = array(
-+'db'= $table['db'],
-+'table' = $table['table']
-+);
-+$recent_url = 'sql.php'
-+. PMA_URL_getCommon($recent_params);
-+$html .= 'a href=' . $recent_url . '`'

security update: www/phpmyadmin

2014-06-26 Thread Giovanni Bechis
Fixes for CVE-2014-4348 and CVE-2014-4349 backported from 4.2.4,
comments ? ok ?
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.98
diff -u -p -u -p -r1.98 Makefile
--- Makefile	14 Feb 2014 10:02:52 -	1.98
+++ Makefile	26 Jun 2014 10:03:28 -
@@ -1,9 +1,8 @@
-# $OpenBSD: Makefile,v 1.98 2014/02/14 10:02:52 giovanni Exp $
+# $OpenBSD: Makefile,v 1.104 2014/06/13 17:01:36 giovanni Exp $
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		4.1.6
-REVISION=	0
+V=		4.2.2
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
@@ -35,6 +34,7 @@ post-extract:
 	${WRKSRC}/examples/phpMyAdmin-httpd.conf
 
 do-install:
+	@find ${WRKSRC} -type f -name *.orig -exec rm -f {} \;
 	${INSTALL_DATA_DIR} ${INSTDIR}/
 	cd ${WRKSRC}; pax -rw ./ ${INSTDIR}/
 
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.84
diff -u -p -u -p -r1.84 distinfo
--- distinfo	27 Jan 2014 14:20:01 -	1.84
+++ distinfo	26 Jun 2014 10:03:28 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.1.6-all-languages.tar.gz) = Iuq39pzeiYcrKZd4w9DygHgTn1VTMXRPVZHY1rOXLlQ=
-SIZE (phpMyAdmin-4.1.6-all-languages.tar.gz) = 8063188
+SHA256 (phpMyAdmin-4.2.2-all-languages.tar.gz) = sn5nEptYo3HLIrCX/aYzT9JaWS0QKfxbPkD92FNaSEU=
+SIZE (phpMyAdmin-4.2.2-all-languages.tar.gz) = 8589833
Index: patches/patch-js_error_report_js
===
RCS file: patches/patch-js_error_report_js
diff -N patches/patch-js_error_report_js
--- /dev/null	1 Jan 1970 00:00:00 -
+++ patches/patch-js_error_report_js	26 Jun 2014 10:03:28 -
@@ -0,0 +1,15 @@
+$OpenBSD: patch-js_error_report_js,v 1.1 2014/06/13 17:01:36 giovanni Exp $
+Error token mismatch when a new user is created on a remote
+database.
+http://sourceforge.net/p/phpmyadmin/bugs/3893/
+
+--- js/error_report.js.orig	Fri Jun 13 17:45:51 2014
 js/error_report.js	Fri Jun 13 17:47:18 2014
+@@ -21,6 +21,7 @@ var ErrorReport = {
+ ErrorReport._last_exception = exception;
+ $.get(error_report.php, {
+ ajax_request: true,
++server: PMA_commonParams.get('server'),
+ token: PMA_commonParams.get('token'),
+ get_settings: true
+ }, function (data) {
Index: patches/patch-js_server_privileges_js
===
RCS file: patches/patch-js_server_privileges_js
diff -N patches/patch-js_server_privileges_js
--- /dev/null	1 Jan 1970 00:00:00 -
+++ patches/patch-js_server_privileges_js	26 Jun 2014 10:03:28 -
@@ -0,0 +1,15 @@
+$OpenBSD: patch-js_server_privileges_js,v 1.1 2014/06/13 17:01:36 giovanni Exp $
+Error token mismatch when a new user is created on a remote
+database.
+http://sourceforge.net/p/phpmyadmin/bugs/3893/
+
+--- js/server_privileges.js.orig	Fri Jun 13 17:45:36 2014
 js/server_privileges.js	Fri Jun 13 17:46:48 2014
+@@ -192,6 +192,7 @@ AJAX.registerOnload('server_privileges.js', function (
+ var href = $(form[name='usersForm']).attr('action');
+ var params = {
+ 'ajax_request' : true,
++'server' : PMA_commonParams.get('server'),
+ 'token' : PMA_commonParams.get('token'),
+ 'validate_username' : true,
+ 'username' : username
Index: patches/patch-libraries_RecentFavoriteTable_class_php
===
RCS file: patches/patch-libraries_RecentFavoriteTable_class_php
diff -N patches/patch-libraries_RecentFavoriteTable_class_php
--- /dev/null	1 Jan 1970 00:00:00 -
+++ patches/patch-libraries_RecentFavoriteTable_class_php	26 Jun 2014 10:03:28 -
@@ -0,0 +1,66 @@
+$OpenBSD$
+--- libraries/RecentFavoriteTable.class.php.orig	Thu Jun 26 11:22:05 2014
 libraries/RecentFavoriteTable.class.php	Thu Jun 26 11:30:44 2014
+@@ -203,36 +203,46 @@ class PMA_RecentFavoriteTable
+ if ($this-_tableType == 'recent') {
+ foreach ($this-_tables as $table) {
+ $html .= 'li class=warp_link';
+-$html .= 'a href=sql.php?server=' . $GLOBALS['server']
+-  . 'db=' . $table['db']
+-  . 'table=' . $table['table']
+-  . 'token=' . $_SESSION[' PMA_token ']
+-  . '`' . $table['db'] . '`.`' . $table['table'] . '`/a';
++$recent_params = array(
++'db'= $table['db'],
++'table' = $table['table']
++);
++$recent_url = 'sql.php'
++. PMA_URL_getCommon($recent_params);
++$html .= 'a href=' . $recent_url . '`
++  . 

Re: UPDATE: www/phpmyadmin (hints needed)

2013-12-17 Thread Giovanni Bechis
On 12/14/13 23:31, Stuart Henderson wrote:
 On 2013/12/14 18:14, Giovanni Bechis wrote:
 Hi,
 quiet trivial update to phpmyadmin, when installed on a clean machine, 
 phpmyadmin.conf is installed under www/conf/moduls.sample but there no 
 message to create the link as php does.
 Is it worth to add a [UN]MESSAGE file similar to the php one ?
 
 This is mentioned in README anyway. I would prefer to get rid of the
 MESSAGE files in php rather than add any more ;)
 
ok with the diff as-is then ?
 Cheers
  Giovanni



UPDATE: www/phpmyadmin (hints needed)

2013-12-14 Thread Giovanni Bechis
Hi,
quiet trivial update to phpmyadmin, when installed on a clean machine, 
phpmyadmin.conf is installed under www/conf/moduls.sample but there no message 
to create the link as php does.
Is it worth to add a [UN]MESSAGE file similar to the php one ?
 Cheers
  Giovanni 
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.93
diff -u -p -u -p -r1.93 Makefile
--- Makefile	14 Nov 2013 08:47:21 -	1.93
+++ Makefile	14 Dec 2013 17:12:31 -
@@ -2,7 +2,7 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		4.0.9
+V=		4.1.0
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
@@ -25,8 +25,7 @@ INSTDIR=	${PREFIX}/phpMyAdmin
 SUBST_VARS=	INSTDIR V
 
 MODULES=	lang/php
-RUN_DEPENDS=	lang/php/${MODPHP_VERSION},-mysql \
-		lang/php/${MODPHP_VERSION},-mysqli \
+RUN_DEPENDS=	lang/php/${MODPHP_VERSION},-mysqli \
 		lang/php/${MODPHP_VERSION},-mcrypt \
 		lang/php/${MODPHP_VERSION},-gd
 
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.80
diff -u -p -u -p -r1.80 distinfo
--- distinfo	14 Nov 2013 08:47:21 -	1.80
+++ distinfo	14 Dec 2013 17:12:31 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.0.9-all-languages.tar.gz) = 59IvOvPg42OmMw9GSl8c3XbyC8W88PmAWF1RfB6kqA0=
-SIZE (phpMyAdmin-4.0.9-all-languages.tar.gz) = 8068018
+SHA256 (phpMyAdmin-4.1.0-all-languages.tar.gz) = uu18OrMyWomcIZ+PPeGL1FCqmcqaTxP3EwVkCgXnFys=
+SIZE (phpMyAdmin-4.1.0-all-languages.tar.gz) = 8038672
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.49
diff -u -p -u -p -r1.49 PLIST
--- pkg/PLIST	10 Sep 2013 15:52:03 -	1.49
+++ pkg/PLIST	14 Dec 2013 17:12:31 -
@@ -1,6 +1,8 @@
 @comment $OpenBSD: PLIST,v 1.49 2013/09/10 15:52:03 giovanni Exp $
 @group daemon
 phpMyAdmin/
+@comment phpMyAdmin/.coveralls.yml
+phpMyAdmin/CONTRIBUTING.md
 phpMyAdmin/ChangeLog
 phpMyAdmin/LICENSE
 phpMyAdmin/README
@@ -122,6 +124,7 @@ phpMyAdmin/doc/setup.rst
 phpMyAdmin/doc/transformations.rst
 phpMyAdmin/doc/user.rst
 phpMyAdmin/doc/vendors.rst
+phpMyAdmin/error_report.php
 phpMyAdmin/examples/
 phpMyAdmin/examples/config.manyhosts.inc.php
 phpMyAdmin/examples/create_tables.sql
@@ -151,17 +154,22 @@ phpMyAdmin/js/canvg/flashcanvas.swf
 phpMyAdmin/js/chart.js
 phpMyAdmin/js/codemirror/
 phpMyAdmin/js/codemirror/LICENSE
+phpMyAdmin/js/codemirror/addon/
+phpMyAdmin/js/codemirror/addon/runmode/
+phpMyAdmin/js/codemirror/addon/runmode/runmode.js
 phpMyAdmin/js/codemirror/lib/
 phpMyAdmin/js/codemirror/lib/codemirror.js
 phpMyAdmin/js/codemirror/mode/
-phpMyAdmin/js/codemirror/mode/mysql/
-phpMyAdmin/js/codemirror/mode/mysql/mysql.js
+phpMyAdmin/js/codemirror/mode/sql/
+phpMyAdmin/js/codemirror/mode/sql/sql.js
 phpMyAdmin/js/common.js
 phpMyAdmin/js/config.js
 phpMyAdmin/js/cross_framing_protection.js
 phpMyAdmin/js/db_operations.js
 phpMyAdmin/js/db_search.js
 phpMyAdmin/js/db_structure.js
+phpMyAdmin/js/doclinks.js
+phpMyAdmin/js/error_report.js
 phpMyAdmin/js/export.js
 phpMyAdmin/js/functions.js
 phpMyAdmin/js/get_image.js.php
@@ -184,6 +192,7 @@ phpMyAdmin/js/jqplot/plugins/jqplot.high
 phpMyAdmin/js/jqplot/plugins/jqplot.pieRenderer.js
 phpMyAdmin/js/jqplot/plugins/jqplot.pointLabels.js
 phpMyAdmin/js/jquery/
+phpMyAdmin/js/jquery/MIT-LICENSE.txt
 phpMyAdmin/js/jquery/jquery-1.8.3.min.js
 phpMyAdmin/js/jquery/jquery-ui-1.9.2.custom.min.js
 phpMyAdmin/js/jquery/jquery-ui-timepicker-addon.js
@@ -265,6 +274,7 @@ phpMyAdmin/js/jquery/src/jquery/support.
 phpMyAdmin/js/jquery/src/jquery/traversing.js
 phpMyAdmin/js/jquery/src/jquery/wrap.js
 phpMyAdmin/js/keyhandler.js
+phpMyAdmin/js/line_counts.php
 phpMyAdmin/js/makegrid.js
 phpMyAdmin/js/messages.php
 phpMyAdmin/js/navigation.js
@@ -347,25 +357,29 @@ phpMyAdmin/js/rte.js
 phpMyAdmin/js/server_databases.js
 phpMyAdmin/js/server_plugins.js
 phpMyAdmin/js/server_privileges.js
-phpMyAdmin/js/server_status.js
 phpMyAdmin/js/server_status_advisor.js
 phpMyAdmin/js/server_status_monitor.js
 phpMyAdmin/js/server_status_queries.js
 phpMyAdmin/js/server_status_sorter.js
 phpMyAdmin/js/server_status_variables.js
+phpMyAdmin/js/server_user_groups.js
 phpMyAdmin/js/server_variables.js
 phpMyAdmin/js/sql.js
 phpMyAdmin/js/tbl_change.js
 phpMyAdmin/js/tbl_chart.js
+phpMyAdmin/js/tbl_find_replace.js
 phpMyAdmin/js/tbl_gis_visualization.js
 phpMyAdmin/js/tbl_relation.js
 phpMyAdmin/js/tbl_select.js
 phpMyAdmin/js/tbl_structure.js
 phpMyAdmin/js/tbl_zoom_plot_jqplot.js
+phpMyAdmin/js/tracekit/
+phpMyAdmin/js/tracekit/tracekit.js
 phpMyAdmin/libraries/
 phpMyAdmin/libraries/Advisor.class.php
 phpMyAdmin/libraries/Config.class.php
 phpMyAdmin/libraries/DBQbe.class.php
+phpMyAdmin/libraries/DatabaseInterface.class.php
 phpMyAdmin/libraries/DbSearch.class.php
 

Re: UPDATE: www/phpmyadmin (hints needed)

2013-12-14 Thread Stuart Henderson
On 2013/12/14 18:14, Giovanni Bechis wrote:
 Hi,
 quiet trivial update to phpmyadmin, when installed on a clean machine, 
 phpmyadmin.conf is installed under www/conf/moduls.sample but there no 
 message to create the link as php does.
 Is it worth to add a [UN]MESSAGE file similar to the php one ?

This is mentioned in README anyway. I would prefer to get rid of the
MESSAGE files in php rather than add any more ;)



Security update: www/phpmyadmin

2013-07-29 Thread Giovanni Bechis
Hi,
this is a security update for www/phpmyadmin both for 5.4 (maybe too late) and 
for 5.3;
it fixes PMASA-8, PMASA-9, PMASA-11, PMASA-12, PMASA-13, PMASA-14, PMASA-15.
More info on http://www.phpmyadmin.net/home_page/security/
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.77.2.1
diff -u -p -r1.77.2.1 Makefile
--- Makefile	1 May 2013 07:11:05 -	1.77.2.1
+++ Makefile	29 Jul 2013 10:03:20 -
@@ -2,7 +2,7 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		3.5.8.1
+V=		3.5.8.2
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.68.2.1
diff -u -p -r1.68.2.1 distinfo
--- distinfo	1 May 2013 07:11:05 -	1.68.2.1
+++ distinfo	29 Jul 2013 10:03:20 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-3.5.8.1-all-languages.tar.gz) = furcRU2v+XKpW1RKChm2Av7XmqL0+nh1OBQoWLogqg8=
-SIZE (phpMyAdmin-3.5.8.1-all-languages.tar.gz) = 6367446
+SHA256 (phpMyAdmin-3.5.8.2-all-languages.tar.gz) = /vU3rKUYQv+c8g+ClFf4kWkZfHTfrAQAx7O5s9dUuR4=
+SIZE (phpMyAdmin-3.5.8.2-all-languages.tar.gz) = 6367485
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.42.2.1
diff -u -p -r1.42.2.1 PLIST
--- pkg/PLIST	1 May 2013 07:11:05 -	1.42.2.1
+++ pkg/PLIST	29 Jul 2013 10:03:20 -
@@ -91,7 +91,7 @@ phpMyAdmin/js/jqplot/plugins/jqplot.high
 phpMyAdmin/js/jqplot/plugins/jqplot.pieRenderer.js
 phpMyAdmin/js/jqplot/plugins/jqplot.pointLabels.js
 phpMyAdmin/js/jquery/
-phpMyAdmin/js/jquery/jquery-1.6.2.js
+phpMyAdmin/js/jquery/jquery-1.6.2+fix-9521.js
 phpMyAdmin/js/jquery/jquery-ui-1.8.16.custom.js
 phpMyAdmin/js/jquery/jquery.cookie.js
 phpMyAdmin/js/jquery/jquery.event.drag-2.0.js
@@ -202,7 +202,6 @@ phpMyAdmin/js/tbl_structure.js
 phpMyAdmin/js/tbl_zoom_plot_jqplot.js
 phpMyAdmin/js/update-location.js
 phpMyAdmin/libraries/
-phpMyAdmin/libraries/.htaccess
 phpMyAdmin/libraries/Advisor.class.php
 phpMyAdmin/libraries/Config.class.php
 phpMyAdmin/libraries/Error.class.php
@@ -608,7 +607,6 @@ phpMyAdmin/server_variables.php
 phpMyAdmin/setup/
 phpMyAdmin/setup/config.php
 phpMyAdmin/setup/frames/
-phpMyAdmin/setup/frames/.htaccess
 phpMyAdmin/setup/frames/config.inc.php
 phpMyAdmin/setup/frames/form.inc.php
 phpMyAdmin/setup/frames/index.inc.php
@@ -616,7 +614,6 @@ phpMyAdmin/setup/frames/menu.inc.php
 phpMyAdmin/setup/frames/servers.inc.php
 phpMyAdmin/setup/index.php
 phpMyAdmin/setup/lib/
-phpMyAdmin/setup/lib/.htaccess
 phpMyAdmin/setup/lib/ConfigGenerator.class.php
 phpMyAdmin/setup/lib/common.inc.php
 phpMyAdmin/setup/lib/form_processing.lib.php
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.88
diff -u -p -u -p -r1.88 Makefile
--- Makefile	5 Jul 2013 09:34:35 -	1.88
+++ Makefile	29 Jul 2013 09:58:01 -
@@ -2,7 +2,7 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		4.0.4.1
+V=		4.0.4.2
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.76
diff -u -p -u -p -r1.76 distinfo
--- distinfo	3 Jul 2013 08:00:11 -	1.76
+++ distinfo	29 Jul 2013 09:58:01 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.0.4.1-all-languages.tar.gz) = J1WV4H7sjBfivF93h+mbSIeN4RQe1mCL7UmViJEEu9M=
-SIZE (phpMyAdmin-4.0.4.1-all-languages.tar.gz) = 7457525
+SHA256 (phpMyAdmin-4.0.4.2-all-languages.tar.gz) = iiiMUgRT3nTC2JlJdbzBjpqu9M2ylBly0JciQHTR2mA=
+SIZE (phpMyAdmin-4.0.4.2-all-languages.tar.gz) = 7330905
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.47
diff -u -p -u -p -r1.47 PLIST
--- pkg/PLIST	21 Jun 2013 10:05:32 -	1.47
+++ pkg/PLIST	29 Jul 2013 09:58:02 -
@@ -29,6 +29,7 @@ phpMyAdmin/doc/
 phpMyAdmin/doc/Makefile
 phpMyAdmin/doc/_ext/
 phpMyAdmin/doc/_ext/configext.py
+@comment phpMyAdmin/doc/_ext/configext.pyc
 phpMyAdmin/doc/conf.py
 phpMyAdmin/doc/config.rst
 phpMyAdmin/doc/copyright.rst
@@ -297,7 +298,6 @@ phpMyAdmin/js/tbl_select.js
 phpMyAdmin/js/tbl_structure.js
 phpMyAdmin/js/tbl_zoom_plot_jqplot.js
 phpMyAdmin/libraries/
-phpMyAdmin/libraries/.htaccess
 phpMyAdmin/libraries/Advisor.class.php
 phpMyAdmin/libraries/Config.class.php
 phpMyAdmin/libraries/DBQbe.class.php
@@ -787,7 +787,6 @@ phpMyAdmin/setup/
 phpMyAdmin/setup/ajax.js
 phpMyAdmin/setup/config.php
 phpMyAdmin/setup/frames/
-phpMyAdmin/setup/frames/.htaccess
 phpMyAdmin/setup/frames/config.inc.php
 phpMyAdmin/setup/frames/form.inc.php
 

UPDATE: www/phpmyadmin

2013-06-10 Thread Giovanni Bechis
Security update to 4.0.3 (fixes PMASA-2013-6), ok ?
I will not commit it before 13/06, if anybody wants, just commit as is.
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.84
diff -u -p -u -p -r1.84 Makefile
--- Makefile	27 May 2013 08:05:07 -	1.84
+++ Makefile	10 Jun 2013 13:05:48 -
@@ -2,7 +2,7 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		4.0.2
+V=		4.0.3
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.73
diff -u -p -u -p -r1.73 distinfo
--- distinfo	27 May 2013 08:05:07 -	1.73
+++ distinfo	10 Jun 2013 13:05:48 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.0.2-all-languages.tar.gz) = MOsj3Fp5/tucpQmb542tLS4/TM48QIhwJ4AZFreUjC4=
-SIZE (phpMyAdmin-4.0.2-all-languages.tar.gz) = 7398571
+SHA256 (phpMyAdmin-4.0.3-all-languages.tar.gz) = oGxrfN5SS8T/T0WOdptu88B5GNmVETHW7OP4Q9iq3aM=
+SIZE (phpMyAdmin-4.0.3-all-languages.tar.gz) = 7439730
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.45
diff -u -p -u -p -r1.45 PLIST
--- pkg/PLIST	24 May 2013 15:00:06 -	1.45
+++ pkg/PLIST	10 Jun 2013 13:05:49 -
@@ -730,6 +730,9 @@ phpMyAdmin/locale/sr@latin/LC_MESSAGES/p
 phpMyAdmin/locale/sv/
 phpMyAdmin/locale/sv/LC_MESSAGES/
 phpMyAdmin/locale/sv/LC_MESSAGES/phpmyadmin.mo
+phpMyAdmin/locale/th/
+phpMyAdmin/locale/th/LC_MESSAGES/
+phpMyAdmin/locale/th/LC_MESSAGES/phpmyadmin.mo
 phpMyAdmin/locale/tr/
 phpMyAdmin/locale/tr/LC_MESSAGES/
 phpMyAdmin/locale/tr/LC_MESSAGES/phpmyadmin.mo


Re: UPDATE: www/phpmyadmin

2013-01-15 Thread Kevin Lo
Giovanni Bechis wrote:
 Update to latest major release, a lot of improvements from 3.4.x releases.
  Comments ? ok ?

Ok. Thanks.

   Cheers
Giovanni

Kevin



UPDATE: www/phpmyadmin

2013-01-09 Thread Giovanni Bechis
Update to latest major release, a lot of improvements from 3.4.x releases.
 Comments ? ok ?
  Cheers
   Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.76
diff -u -p -r1.76 Makefile
--- Makefile	31 Aug 2012 16:40:38 -	1.76
+++ Makefile	9 Jan 2013 13:57:54 -
@@ -2,12 +2,10 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		3.4.11.1
-# If updating to 3.5.x, note that contrib/htaccess (@sample'd and
-# mentioned in README) is removed.
+V=		3.5.5
+
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
-REVISION=	0
 CATEGORIES=	www
 HOMEPAGE=	http://www.phpmyadmin.net/
 
@@ -37,7 +35,7 @@ RUN_DEPENDS=	lang/php/${MODPHP_VERSION},
 
 post-extract:
 	${SUBST_CMD} -c ${FILESDIR}/phpMyAdmin-httpd.conf \
-	${WRKSRC}/contrib/phpMyAdmin-httpd.conf
+	${WRKSRC}/examples/phpMyAdmin-httpd.conf
 
 do-install:
 	${INSTALL_DATA_DIR} ${INSTDIR}/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.67
diff -u -p -r1.67 distinfo
--- distinfo	30 Aug 2012 02:47:52 -	1.67
+++ distinfo	9 Jan 2013 13:57:54 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-3.4.11.1-all-languages.tar.gz) = 4pMyECyx+arFg8ceK3PIkW07u4dx+4oopIY+g3vg2uY=
-SIZE (phpMyAdmin-3.4.11.1-all-languages.tar.gz) = 5844325
+SHA256 (phpMyAdmin-3.5.5-all-languages.tar.gz) = GJgZfH8eReXxK8NJGoSOHoJ7Q/MyGYHdC5hIr6RPMBA=
+SIZE (phpMyAdmin-3.5.5-all-languages.tar.gz) = 6224307
Index: files/phpMyAdmin-httpd.conf
===
RCS file: /cvs/ports/www/phpmyadmin/files/phpMyAdmin-httpd.conf,v
retrieving revision 1.1
diff -u -p -r1.1 phpMyAdmin-httpd.conf
--- files/phpMyAdmin-httpd.conf	31 Aug 2012 16:40:38 -	1.1
+++ files/phpMyAdmin-httpd.conf	9 Jan 2013 13:57:54 -
@@ -4,6 +4,25 @@ Alias /phpMyAdmin ${INSTDIR}
 
 IfModule !mod_rewrite.c
 	LoadModule rewrite_module /usr/lib/apache/modules/mod_rewrite.so
+
+	RewriteEngine on
+
+	# Allow only GET and POST verbs
+	RewriteCond %{REQUEST_METHOD} !^(GET|POST)$ [NC,OR]
+
+	# Ban Typical Vulnerability Scanners and others
+	# Kick out Script Kiddies
+	RewriteCond %{HTTP_USER_AGENT} ^(java|curl|wget).* [NC,OR]
+	RewriteCond %{HTTP_USER_AGENT} ^.*(libwww-perl|curl|wget|python|nikto|wkito|pikto|scan|acunetix).* [NC,OR]
+	RewriteCond %{HTTP_USER_AGENT} ^.*(winhttp|HTTrack|clshttp|archiver|loader|email|harvest|extract|grab|miner).* [NC,OR]
+
+	# Ban Search Engines, Crawlers to your administrative panel
+	# No reasons to access from bots
+	# Ultimately Better than the useless robots.txt
+	# Did google respect robots.txt?
+	# Try google: intitle:phpMyAdmin intext:Welcome to phpMyAdmin *.*.* intext:Log in -wiki -forum -forums -questions intext:Cookies must be enabled
+	RewriteCond %{HTTP_USER_AGENT} ^.*(AdsBot-Google|ia_archiver|Scooter|Ask.Jeeves|Baiduspider|Exabot|FAST.Enterprise.Crawler|FAST-WebCrawler|www\.neomo\.de|Gigabot|Mediapartners-Google|Google.Desktop|Feedfetcher-Google|Googlebot|heise-IT-Markt-Crawler|heritrix|ibm.com\cs/crawler|ICCrawler|ichiro|MJ12bot|MetagerBot|msnbot-NewsBlogs|msnbot|msnbot-media|NG-Search|lucene.apache.org|NutchCVS|OmniExplorer_Bot|online.link.validator|psbot0|Seekbot|Sensis.Web.Crawler|SEO.search.Crawler|Seoma.\[SEO.Crawler\]|SEOsearch|Snappy|www.urltrends.com|www.tkl.iis.u-tokyo.ac.jp/~crawler|SynooBot|crawleradmin.t-i...@telekom.de|TurnitinBot|voyager|W3.SiteSearch.Crawler|W3C-checklink|W3C_Validator|www.WISEnutbot.com|yacybot|Yahoo-MMCrawler|Yahoo\!.DE.Slurp|Yahoo\!.Slurp|YahooSeeker).* [NC]
+	RewriteRule .* - [F]
 /IfModule
 
 Directory ${INSTDIR}
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.41
diff -u -p -r1.41 PLIST
--- pkg/PLIST	31 Aug 2012 16:40:38 -	1.41
+++ pkg/PLIST	9 Jan 2013 13:57:55 -
@@ -1,16 +1,14 @@
 @comment $OpenBSD: PLIST,v 1.41 2012/08/31 16:40:38 sthen Exp $
 @group daemon
 phpMyAdmin/
-phpMyAdmin/CREDITS
+@comment phpMyAdmin/.travis.yml
 phpMyAdmin/ChangeLog
 phpMyAdmin/Documentation.html
 phpMyAdmin/Documentation.txt
-phpMyAdmin/INSTALL
 phpMyAdmin/LICENSE
 phpMyAdmin/README
 phpMyAdmin/README.VENDOR
 phpMyAdmin/RELEASE-DATE-${V}
-phpMyAdmin/TODO
 phpMyAdmin/browse_foreigners.php
 phpMyAdmin/bs_disp_as_mime_type.php
 phpMyAdmin/bs_play_media.php
@@ -18,67 +16,195 @@ phpMyAdmin/changelog.php
 phpMyAdmin/chk_rel.php
 phpMyAdmin/config.sample.inc.php
 @sample phpMyAdmin/config.inc.php
-phpMyAdmin/contrib/
-phpMyAdmin/contrib/README
-phpMyAdmin/contrib/htaccess
-@sample phpMyAdmin/.htaccess
-@comment phpMyAdmin/contrib/htaccess.orig
-phpMyAdmin/contrib/phpMyAdmin-httpd.conf
-@sample /var/www/conf/modules.sample/phpmyadmin.conf
-phpMyAdmin/contrib/swekey.sample.conf
 phpMyAdmin/db_create.php
 phpMyAdmin/db_datadict.php
+phpMyAdmin/db_events.php
 

Wip Update: www/phpmyadmin

2012-04-18 Thread Giovanni Bechis
Major update to 3.5.0, in server status the advisor goes in a loop.
Any hints ?
 Cheers
  Giovanni Bechis
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.74
diff -u -p -r1.74 Makefile
--- Makefile2 Apr 2012 09:35:20 -   1.74
+++ Makefile18 Apr 2012 14:18:02 -
@@ -2,7 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.4.10.2
+V= 3.5.0
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
@@ -28,7 +28,7 @@ INSTDIR=  ${PREFIX}/phpMyAdmin
 SUBST_VARS=INSTDIR V
 
 MODULES=   lang/php
-RUN_DEPENDS=   lang/php/${MODPHP_VERSION},-mysql \
+RUN_DEPENDS=   lang/php/${MODPHP_VERSION},-mysqli \
lang/php/${MODPHP_VERSION},-mcrypt \
lang/php/${MODPHP_VERSION},-gd
 
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.66
diff -u -p -r1.66 distinfo
--- distinfo2 Apr 2012 09:35:20 -   1.66
+++ distinfo18 Apr 2012 14:18:02 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = tz7p7MO3xO0lRCH8UQi/ww==
-RMD160 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = 
3degDJPnH+PxB07kaZ69oD1KtHA=
-SHA1 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = r4lYa+13S+UnvBnoi+o8hQqpSOU=
-SHA256 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = 
yFzHi08sZEHqAoQL6rvvt/AaK6L5SNuOO8jQhG6jIVg=
-SIZE (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = 5815647
+MD5 (phpMyAdmin-3.5.0-all-languages.tar.gz) = 92sBKY0zkczdFbu2X5W35A==
+RMD160 (phpMyAdmin-3.5.0-all-languages.tar.gz) = u0Mxc/cLcNoD2GGzoQurN0iXE9k=
+SHA1 (phpMyAdmin-3.5.0-all-languages.tar.gz) = xpZeiVGh8BrNbC0Od7Qp4gWvEpI=
+SHA256 (phpMyAdmin-3.5.0-all-languages.tar.gz) = 
bBiulEUR3V1IhObgFPf2/K2+C1h3OXO2ON4CmuNFyOw=
+SIZE (phpMyAdmin-3.5.0-all-languages.tar.gz) = 5896842
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.39
diff -u -p -r1.39 PLIST
--- pkg/PLIST   17 Feb 2012 14:48:07 -  1.39
+++ pkg/PLIST   18 Apr 2012 14:18:02 -
@@ -1,16 +1,13 @@
 @comment $OpenBSD: PLIST,v 1.39 2012/02/17 14:48:07 giovanni Exp $
 @group daemon
 phpMyAdmin/
-phpMyAdmin/CREDITS
 phpMyAdmin/ChangeLog
 phpMyAdmin/Documentation.html
 phpMyAdmin/Documentation.txt
-phpMyAdmin/INSTALL
 phpMyAdmin/LICENSE
 phpMyAdmin/README
 phpMyAdmin/README.VENDOR
 phpMyAdmin/RELEASE-DATE-${V}
-phpMyAdmin/TODO
 phpMyAdmin/browse_foreigners.php
 phpMyAdmin/bs_disp_as_mime_type.php
 phpMyAdmin/bs_play_media.php
@@ -18,63 +15,183 @@ phpMyAdmin/changelog.php
 phpMyAdmin/chk_rel.php
 phpMyAdmin/config.sample.inc.php
 @sample phpMyAdmin/config.inc.php
-phpMyAdmin/contrib/
-phpMyAdmin/contrib/README
-phpMyAdmin/contrib/htaccess
-phpMyAdmin/contrib/swekey.sample.conf
 phpMyAdmin/db_create.php
 phpMyAdmin/db_datadict.php
+phpMyAdmin/db_events.php
 phpMyAdmin/db_export.php
 phpMyAdmin/db_import.php
 phpMyAdmin/db_operations.php
 phpMyAdmin/db_printview.php
 phpMyAdmin/db_qbe.php
+phpMyAdmin/db_routines.php
 phpMyAdmin/db_search.php
 phpMyAdmin/db_sql.php
 phpMyAdmin/db_structure.php
 phpMyAdmin/db_tracking.php
+phpMyAdmin/db_triggers.php
 phpMyAdmin/docs.css
 phpMyAdmin/enum_editor.php
+phpMyAdmin/examples/
+phpMyAdmin/examples/config.manyhosts.inc.php
+phpMyAdmin/examples/create_tables.sql
+phpMyAdmin/examples/create_tables_drizzle.sql
+phpMyAdmin/examples/openid.php
+phpMyAdmin/examples/signon-script.php
+phpMyAdmin/examples/signon.php
+phpMyAdmin/examples/swekey.sample.conf
+phpMyAdmin/examples/upgrade_tables_mysql_4_1_2+.sql
 phpMyAdmin/export.php
 phpMyAdmin/favicon.ico
+phpMyAdmin/file_echo.php
+phpMyAdmin/gis_data_editor.php
 phpMyAdmin/import.php
 phpMyAdmin/import_status.php
 phpMyAdmin/index.php
 phpMyAdmin/js/
+phpMyAdmin/js/OpenStreetMap.js
+phpMyAdmin/js/canvg/
+phpMyAdmin/js/canvg/MIT-LICENSE.txt
+phpMyAdmin/js/canvg/canvg.js
+phpMyAdmin/js/canvg/flashcanvas.js
+phpMyAdmin/js/canvg/flashcanvas.swf
+phpMyAdmin/js/codemirror/
+phpMyAdmin/js/codemirror/LICENSE
+phpMyAdmin/js/codemirror/lib/
+phpMyAdmin/js/codemirror/lib/codemirror.js
+phpMyAdmin/js/codemirror/mode/
+phpMyAdmin/js/codemirror/mode/mysql/
+phpMyAdmin/js/codemirror/mode/mysql/mysql.js
 phpMyAdmin/js/common.js
 phpMyAdmin/js/config.js
 phpMyAdmin/js/cross_framing_protection.js
+phpMyAdmin/js/date.js
 phpMyAdmin/js/db_operations.js
 phpMyAdmin/js/db_search.js
 phpMyAdmin/js/db_structure.js
 phpMyAdmin/js/dom-drag.js
 phpMyAdmin/js/export.js
 phpMyAdmin/js/functions.js
+phpMyAdmin/js/get_image.js.php
+phpMyAdmin/js/gis_data_editor.js
+phpMyAdmin/js/highcharts/
+phpMyAdmin/js/highcharts/exporting.js
+phpMyAdmin/js/highcharts/highcharts.js
 phpMyAdmin/js/import.js
 phpMyAdmin/js/indexes.js
 phpMyAdmin/js/jquery/
-phpMyAdmin/js/jquery/jquery-1.4.4.js

Re: Wip Update: www/phpmyadmin

2012-04-18 Thread Giovanni Bechis
On 04/18/12 16:25, Giovanni Bechis wrote:
 Major update to 3.5.0, in server status the advisor goes in a loop.
 Any hints ?

The file libraries/sysinfo.lib.php supports only Windows and Linux, no
support available for *BSD.
 Cheers
  Giovanni



UPDATE: www/phpmyadmin

2012-03-30 Thread Giovanni Bechis
Update to 3.4.10.2, fixes local path disclosure vulnerability, see
PMASA-2012-2.
Ok ?
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.73
diff -u -p -r1.73 Makefile
--- Makefile21 Feb 2012 13:50:18 -  1.73
+++ Makefile30 Mar 2012 15:55:54 -
@@ -2,7 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.4.10.1
+V= 3.4.10.2
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.65
diff -u -p -r1.65 distinfo
--- distinfo21 Feb 2012 13:50:18 -  1.65
+++ distinfo30 Mar 2012 15:55:54 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = ePiS1G29Jwc/8bDF6MwrUQ==
-RMD160 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 
TMFtxPaQbZIbAsbeiB2Xfx6XflM=
-SHA1 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = dYVTJtc8OE3g9g5RhD6ttnmUYU8=
-SHA256 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 
SfQaVVYRFPkvpIvK9Z1IS2UXzJh5n2FK6CsZJEPVVq4=
-SIZE (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 5815556
+MD5 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = tz7p7MO3xO0lRCH8UQi/ww==
+RMD160 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = 
3degDJPnH+PxB07kaZ69oD1KtHA=
+SHA1 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = r4lYa+13S+UnvBnoi+o8hQqpSOU=
+SHA256 (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = 
yFzHi08sZEHqAoQL6rvvt/AaK6L5SNuOO8jQhG6jIVg=
+SIZE (phpMyAdmin-3.4.10.2-all-languages.tar.gz) = 5815647


Re: UPDATE: www/phpmyadmin

2012-02-21 Thread Giovanni Bechis
On 02/20/12 17:25, Giovanni Bechis wrote:
 Trivial update fixes XSS in replication setup, see PMASA-2012-1

Committed to 5.1-current, ok for those diff for 5.0 and 5.1 ?
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.61.2.5
diff -u -p -r1.61.2.5 Makefile
--- Makefile5 Dec 2011 10:27:47 -   1.61.2.5
+++ Makefile21 Feb 2012 13:59:10 -
@@ -2,7 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.4.8
+V= 3.4.10.1
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.56.2.5
diff -u -p -r1.56.2.5 distinfo
--- distinfo5 Dec 2011 10:27:47 -   1.56.2.5
+++ distinfo21 Feb 2012 13:59:10 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.8-all-languages.tar.gz) = UkMAEcPrNY2tsptEDo61Gw==
-RMD160 (phpMyAdmin-3.4.8-all-languages.tar.gz) = w+s9pJR/7iqYuOpq8lroTzudkWA=
-SHA1 (phpMyAdmin-3.4.8-all-languages.tar.gz) = u97YWPG/Bi+6NyaMMHXhNGqn2rU=
-SHA256 (phpMyAdmin-3.4.8-all-languages.tar.gz) = 
BLKskWpDKWg6Gt1IvXrpkCVDCs1ejtw8Lw690//nOVU=
-SIZE (phpMyAdmin-3.4.8-all-languages.tar.gz) = 5709848
+MD5 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = ePiS1G29Jwc/8bDF6MwrUQ==
+RMD160 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 
TMFtxPaQbZIbAsbeiB2Xfx6XflM=
+SHA1 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = dYVTJtc8OE3g9g5RhD6ttnmUYU8=
+SHA256 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 
SfQaVVYRFPkvpIvK9Z1IS2UXzJh5n2FK6CsZJEPVVq4=
+SIZE (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 5815556
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.36.2.2
diff -u -p -r1.36.2.2 PLIST
--- pkg/PLIST   5 Dec 2011 10:27:47 -   1.36.2.2
+++ pkg/PLIST   21 Feb 2012 13:59:10 -
@@ -270,71 +270,14 @@ phpMyAdmin/libraries/tbl_properties.inc.
 phpMyAdmin/libraries/tbl_replace_fields.inc.php
 phpMyAdmin/libraries/tbl_triggers.lib.php
 phpMyAdmin/libraries/tcpdf/
-phpMyAdmin/libraries/tcpdf/CHANGELOG.TXT
 phpMyAdmin/libraries/tcpdf/LICENSE.TXT
 phpMyAdmin/libraries/tcpdf/README.TXT
-phpMyAdmin/libraries/tcpdf/cache/
-phpMyAdmin/libraries/tcpdf/cache/chapter_demo_1.txt
-phpMyAdmin/libraries/tcpdf/cache/chapter_demo_2.txt
-phpMyAdmin/libraries/tcpdf/cache/table_data_demo.txt
-phpMyAdmin/libraries/tcpdf/cache/utf8test.txt
 phpMyAdmin/libraries/tcpdf/config/
-phpMyAdmin/libraries/tcpdf/config/lang/
-phpMyAdmin/libraries/tcpdf/config/lang/afr.php
-phpMyAdmin/libraries/tcpdf/config/lang/ara.php
-phpMyAdmin/libraries/tcpdf/config/lang/aze.php
-phpMyAdmin/libraries/tcpdf/config/lang/bel.php
-phpMyAdmin/libraries/tcpdf/config/lang/bra.php
-phpMyAdmin/libraries/tcpdf/config/lang/cat.php
-phpMyAdmin/libraries/tcpdf/config/lang/ces.php
-phpMyAdmin/libraries/tcpdf/config/lang/chi.php
-phpMyAdmin/libraries/tcpdf/config/lang/cym.php
-phpMyAdmin/libraries/tcpdf/config/lang/dan.php
-phpMyAdmin/libraries/tcpdf/config/lang/eng.php
-phpMyAdmin/libraries/tcpdf/config/lang/est.php
-phpMyAdmin/libraries/tcpdf/config/lang/eus.php
-phpMyAdmin/libraries/tcpdf/config/lang/fra.php
-phpMyAdmin/libraries/tcpdf/config/lang/ger.php
-phpMyAdmin/libraries/tcpdf/config/lang/gle.php
-phpMyAdmin/libraries/tcpdf/config/lang/glg.php
-phpMyAdmin/libraries/tcpdf/config/lang/hat.php
-phpMyAdmin/libraries/tcpdf/config/lang/heb.php
-phpMyAdmin/libraries/tcpdf/config/lang/hrv.php
-phpMyAdmin/libraries/tcpdf/config/lang/hun.php
-phpMyAdmin/libraries/tcpdf/config/lang/hye.php
-phpMyAdmin/libraries/tcpdf/config/lang/ind.php
-phpMyAdmin/libraries/tcpdf/config/lang/ita.php
-phpMyAdmin/libraries/tcpdf/config/lang/kat.php
-phpMyAdmin/libraries/tcpdf/config/lang/kor.php
-phpMyAdmin/libraries/tcpdf/config/lang/mkd.php
-phpMyAdmin/libraries/tcpdf/config/lang/mlt.php
-phpMyAdmin/libraries/tcpdf/config/lang/msa.php
-phpMyAdmin/libraries/tcpdf/config/lang/nld.php
-phpMyAdmin/libraries/tcpdf/config/lang/nob.php
-phpMyAdmin/libraries/tcpdf/config/lang/pol.php
-phpMyAdmin/libraries/tcpdf/config/lang/por.php
-phpMyAdmin/libraries/tcpdf/config/lang/ron.php
-phpMyAdmin/libraries/tcpdf/config/lang/rus.php
-phpMyAdmin/libraries/tcpdf/config/lang/slv.php
-phpMyAdmin/libraries/tcpdf/config/lang/spa.php
-phpMyAdmin/libraries/tcpdf/config/lang/sqi.php
-phpMyAdmin/libraries/tcpdf/config/lang/srp.php
-phpMyAdmin/libraries/tcpdf/config/lang/swa.php
-phpMyAdmin/libraries/tcpdf/config/lang/swe.php
-phpMyAdmin/libraries/tcpdf/config/lang/urd.php
-phpMyAdmin/libraries/tcpdf/config/lang/yid.php
-phpMyAdmin/libraries/tcpdf/config/lang/zho.php
 phpMyAdmin/libraries/tcpdf/config/tcpdf_config.php
-phpMyAdmin/libraries/tcpdf/config/tcpdf_config_alt.php
+phpMyAdmin/libraries/tcpdf/encodings_maps.php
 

Re: UPDATE: www/phpmyadmin

2012-02-21 Thread Kevin Lo
Giovanni Bechis wrote:
 On 02/20/12 17:25, Giovanni Bechis wrote:
  Trivial update fixes XSS in replication setup, see PMASA-2012-1
 
 Committed to 5.1-current, ok for those diff for 5.0 and 5.1 ?

Sure. I can't find a reason to say no!

  Cheers
   Giovanni

Kevin



UPDATE: www/phpmyadmin

2012-02-20 Thread Giovanni Bechis
Trivial update fixes XSS in replication setup, see PMASA-2012-1
 Ok ?
  Cheers
   Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.72
diff -u -p -r1.72 Makefile
--- Makefile17 Feb 2012 14:48:07 -  1.72
+++ Makefile20 Feb 2012 16:23:39 -
@@ -2,7 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.4.10
+V= 3.4.10.1
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.64
diff -u -p -r1.64 distinfo
--- distinfo17 Feb 2012 14:48:07 -  1.64
+++ distinfo20 Feb 2012 16:23:39 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.10-all-languages.tar.gz) = qtvpFf2oa8ABhm1lML1o9A==
-RMD160 (phpMyAdmin-3.4.10-all-languages.tar.gz) = dVUY9RnUhSrsfUUt83H2fJYL38w=
-SHA1 (phpMyAdmin-3.4.10-all-languages.tar.gz) = tWQB66TjhkOkPFwh5gsCazHe7n8=
-SHA256 (phpMyAdmin-3.4.10-all-languages.tar.gz) = 
bevJFsKIkSA2qnVUjYk5MdwyZ+M4voCK2/Wn9YwPhkU=
-SIZE (phpMyAdmin-3.4.10-all-languages.tar.gz) = 5815409
+MD5 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = ePiS1G29Jwc/8bDF6MwrUQ==
+RMD160 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 
TMFtxPaQbZIbAsbeiB2Xfx6XflM=
+SHA1 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = dYVTJtc8OE3g9g5RhD6ttnmUYU8=
+SHA256 (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 
SfQaVVYRFPkvpIvK9Z1IS2UXzJh5n2FK6CsZJEPVVq4=
+SIZE (phpMyAdmin-3.4.10.1-all-languages.tar.gz) = 5815556


UPDATE: www/phpmyadmin

2011-12-29 Thread Giovanni Bechis
Update to 3.4.9, fixes PMASA-2011-19 and PMASA-2011-20.
 Ok ?
  Cheers
   Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.70
diff -u -p -r1.70 Makefile
--- Makefile5 Dec 2011 10:29:09 -   1.70
+++ Makefile29 Dec 2011 10:24:00 -
@@ -2,8 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.4.8
-REVISION=  0
+V= 3.4.9
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.62
diff -u -p -r1.62 distinfo
--- distinfo5 Dec 2011 09:55:12 -   1.62
+++ distinfo29 Dec 2011 10:24:00 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.8-all-languages.tar.gz) = UkMAEcPrNY2tsptEDo61Gw==
-RMD160 (phpMyAdmin-3.4.8-all-languages.tar.gz) = w+s9pJR/7iqYuOpq8lroTzudkWA=
-SHA1 (phpMyAdmin-3.4.8-all-languages.tar.gz) = u97YWPG/Bi+6NyaMMHXhNGqn2rU=
-SHA256 (phpMyAdmin-3.4.8-all-languages.tar.gz) = 
BLKskWpDKWg6Gt1IvXrpkCVDCs1ejtw8Lw690//nOVU=
-SIZE (phpMyAdmin-3.4.8-all-languages.tar.gz) = 5709848
+MD5 (phpMyAdmin-3.4.9-all-languages.tar.gz) = F9Lhtky27KTywVHH3D3YLQ==
+RMD160 (phpMyAdmin-3.4.9-all-languages.tar.gz) = ZMI98vjtcFDaCzCOkE8uXGFIYao=
+SHA1 (phpMyAdmin-3.4.9-all-languages.tar.gz) = 4M0SOm8LWPlAFmS9GyRnBByjqsE=
+SHA256 (phpMyAdmin-3.4.9-all-languages.tar.gz) = 
6kFrIj236Cvj/GWnBgfKAueq8+0WhE5ZwSOXYRnzz40=
+SIZE (phpMyAdmin-3.4.9-all-languages.tar.gz) = 5763130
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/phpmyadmin/pkg/PLIST,v
retrieving revision 1.37
diff -u -p -r1.37 PLIST
--- pkg/PLIST   16 Sep 2011 13:30:22 -  1.37
+++ pkg/PLIST   29 Dec 2011 10:24:01 -
@@ -508,6 +508,9 @@ phpMyAdmin/locale/sv/LC_MESSAGES/phpmyad
 phpMyAdmin/locale/tr/
 phpMyAdmin/locale/tr/LC_MESSAGES/
 phpMyAdmin/locale/tr/LC_MESSAGES/phpmyadmin.mo
+phpMyAdmin/locale/uk/
+phpMyAdmin/locale/uk/LC_MESSAGES/
+phpMyAdmin/locale/uk/LC_MESSAGES/phpmyadmin.mo
 phpMyAdmin/locale/uz/
 phpMyAdmin/locale/uz/LC_MESSAGES/
 phpMyAdmin/locale/uz/LC_MESSAGES/phpmyadmin.mo


Re: UPDATE: www/phpmyadmin

2011-12-29 Thread Kevin Lo
Giovanni Bechis wrote:
 Update to 3.4.9, fixes PMASA-2011-19 and PMASA-2011-20.
  Ok ?

Ok. I tested on amd64 and it works for me, thanks!

   Cheers
Giovanni

Kevin



UPDATE: www/phpmyadmin

2011-08-30 Thread Giovanni Bechis
Security and bug update to 3.4.4, fixes PMASA-2011-13; same diff should
go to -stable too.
 Ok ?
  Cheers
   Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.61
diff -u -p -r1.61 Makefile
--- Makefile25 Jul 2011 09:42:17 -  1.61
+++ Makefile30 Aug 2011 11:14:48 -
@@ -2,7 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.4.3.2
+V= 3.4.4
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.56
diff -u -p -r1.56 distinfo
--- distinfo25 Jul 2011 09:42:17 -  1.56
+++ distinfo30 Aug 2011 11:14:48 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = n6vaykhOcvTEzqDthY+ifg==
-RMD160 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = zDQlxSxIbMIlHZy2ur4v05oALzM=
-SHA1 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = ZeG0TxaFdhWEcLk6YIF2+u1jflk=
-SHA256 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = 
6PcmzZ7FvbxKO3ler2nCo3ilThZoJ8bqlO/LqCAOJRE=
-SIZE (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = 6108200
+MD5 (phpMyAdmin-3.4.4-all-languages.tar.gz) = UKSDPpOXUMi2cayyHhEOeA==
+RMD160 (phpMyAdmin-3.4.4-all-languages.tar.gz) = 3MdfddEuXVrwn9RSBTHjk+Akef0=
+SHA1 (phpMyAdmin-3.4.4-all-languages.tar.gz) = CXB8U0IUjsgaE7jazuHWJA4H1Xw=
+SHA256 (phpMyAdmin-3.4.4-all-languages.tar.gz) = 
8m2yTptwcSXmigmBNcETskQ737Ud0xNPNgNRjX1zmOc=
+SIZE (phpMyAdmin-3.4.4-all-languages.tar.gz) = 6149246


Re: UPDATE: www/phpmyadmin

2011-08-30 Thread Kevin Lo
Giovanni Bechis wrote:
 Security and bug update to 3.4.4, fixes PMASA-2011-13; same diff should
 go to -stable too.
  Ok ?

Ok, thanks!

   Cheers
Giovanni

Kevin



UPDATE: www/phpmyadmin

2011-07-25 Thread Giovanni Bechis
Update to latest version, fixes from PMASA-2011-9 to PMASA-2011-12.
 Ok ?
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.59
diff -u -p -r1.59 Makefile
--- Makefile8 Jul 2011 23:04:53 -   1.59
+++ Makefile25 Jul 2011 09:00:02 -
@@ -2,9 +2,8 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.4.3.1
+V= 3.4.3.2
 DISTNAME=  phpMyAdmin-${V}
-REVISION=  0
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
 
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.55
diff -u -p -r1.55 distinfo
--- distinfo6 Jul 2011 14:28:35 -   1.55
+++ distinfo25 Jul 2011 09:00:02 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = yGQPuFzrmOUC0FhtfRNZ6Q==
-RMD160 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = OJdmvJvIgDXmerM8DqIcjkRio9Q=
-SHA1 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = r/jS7mCga4yKYTEZ4MRmpbd6f/k=
-SHA256 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = 
F81TUKeY6pr4Sqqsdu/UrwGfC9Qam/lapsH1Zi1gbiM=
-SIZE (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = 6109877
+MD5 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = n6vaykhOcvTEzqDthY+ifg==
+RMD160 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = zDQlxSxIbMIlHZy2ur4v05oALzM=
+SHA1 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = ZeG0TxaFdhWEcLk6YIF2+u1jflk=
+SHA256 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = 
6PcmzZ7FvbxKO3ler2nCo3ilThZoJ8bqlO/LqCAOJRE=
+SIZE (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = 6108200


Re: UPDATE: www/phpmyadmin

2011-07-25 Thread Giovanni Bechis
On 07/25/11 11:04, Giovanni Bechis wrote:
 Update to latest version, fixes from PMASA-2011-9 to PMASA-2011-12.
  Ok ?
And this one is for 4.9-stable.
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.51.2.5
diff -u -p -r1.51.2.5 Makefile
--- Makefile6 Jul 2011 14:28:38 -   1.51.2.5
+++ Makefile25 Jul 2011 09:12:27 -
@@ -2,7 +2,7 @@

 COMMENT=   tool to handle the administration of MySQL over the web

-V= 3.4.3.1
+V= 3.4.3.2
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.48.2.4
diff -u -p -r1.48.2.4 distinfo
--- distinfo6 Jul 2011 14:28:38 -   1.48.2.4
+++ distinfo25 Jul 2011 09:12:27 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = yGQPuFzrmOUC0FhtfRNZ6Q==
-RMD160 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = OJdmvJvIgDXmerM8DqIcjkRio9Q=
-SHA1 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = r/jS7mCga4yKYTEZ4MRmpbd6f/k=
-SHA256 (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = 
F81TUKeY6pr4Sqqsdu/UrwGfC9Qam/lapsH1Zi1gbiM=
-SIZE (phpMyAdmin-3.4.3.1-all-languages.tar.gz) = 6109877
+MD5 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = n6vaykhOcvTEzqDthY+ifg==
+RMD160 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = zDQlxSxIbMIlHZy2ur4v05oALzM=
+SHA1 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = ZeG0TxaFdhWEcLk6YIF2+u1jflk=
+SHA256 (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = 
6PcmzZ7FvbxKO3ler2nCo3ilThZoJ8bqlO/LqCAOJRE=
+SIZE (phpMyAdmin-3.4.3.2-all-languages.tar.gz) = 6108200


UPDATE: www/phpmyadmin

2011-02-28 Thread Giovanni Bechis
This update fixes CVE-2011-0987.
(To be committed when the tree will be unlocked)
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.51
diff -u -p -r1.51 Makefile
--- Makefile10 Feb 2011 12:55:05 -  1.51
+++ Makefile28 Feb 2011 16:28:56 -
@@ -2,7 +2,7 @@
 
 COMMENT=   tool to handle the administration of MySQL over the web
 
-V= 3.3.9.1
+V= 3.3.9.2
 DISTNAME=  phpMyAdmin-${V}
 CATEGORIES=www
 HOMEPAGE=  http://www.phpmyadmin.net/
Index: distinfo
===
RCS file: /cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.48
diff -u -p -r1.48 distinfo
--- distinfo10 Feb 2011 12:55:05 -  1.48
+++ distinfo28 Feb 2011 16:28:56 -
@@ -1,5 +1,5 @@
-MD5 (phpMyAdmin-3.3.9.1-all-languages.tar.gz) = kVII9Z71vPdX9Zp1bpaT9g==
-RMD160 (phpMyAdmin-3.3.9.1-all-languages.tar.gz) = v5GduVh0bIj6/l7uQ9LNHKjgLTI=
-SHA1 (phpMyAdmin-3.3.9.1-all-languages.tar.gz) = pVzyBsftMQHP5ZV8uPAjRHXgEYk=
-SHA256 (phpMyAdmin-3.3.9.1-all-languages.tar.gz) = 
HmtHEtV7hbEkJex9K9EpImoErvgdRUMU58QnIdXZ3Wc=
-SIZE (phpMyAdmin-3.3.9.1-all-languages.tar.gz) = 4755761
+MD5 (phpMyAdmin-3.3.9.2-all-languages.tar.gz) = mPuLvhRdQxY+UUaBKcmWIA==
+RMD160 (phpMyAdmin-3.3.9.2-all-languages.tar.gz) = rLO4yTvwLZB/JFe1XOTwugN+SBM=
+SHA1 (phpMyAdmin-3.3.9.2-all-languages.tar.gz) = HaP4kqiabi69U5WPd/DvadyGknw=
+SHA256 (phpMyAdmin-3.3.9.2-all-languages.tar.gz) = 
U8hB3rRmizIycUp+B86mwEi4XTDoNACUjcH5dUoBN3A=
+SIZE (phpMyAdmin-3.3.9.2-all-languages.tar.gz) = 4756392