do not try to display a tab that was not built
This commit is contained in:
@@ -155,15 +155,6 @@ echo "------"
|
||||
|
||||
ls -la *.gz *.zip *.bz2 *.7z
|
||||
|
||||
echo
|
||||
echo "MD5 sums:"
|
||||
echo "--------"
|
||||
|
||||
md5sum *.{gz,zip,bz2,7z} | sed "s/\([^ ]*\)[ ]*\([^ ]*\)/md5sum['\2'] = '\1'/"
|
||||
|
||||
echo
|
||||
echo "Add these to website/data/md5sums.py in SVN"
|
||||
|
||||
cat <<END
|
||||
|
||||
|
||||
@@ -177,10 +168,8 @@ Todo now:
|
||||
2. upload the files to SF (procedure explained on the sf.net Admin/File Releases page)
|
||||
3. add files to SF files page (cut and paste changelog since last release)
|
||||
4. add SF news item to phpMyAdmin project
|
||||
5. update web page:
|
||||
- add MD5s to website/data/md5sums.py in SVN
|
||||
6. announce release on freshmeat (http://freshmeat.net/projects/phpmyadmin/)
|
||||
7. send a short mail (with list of major changes) to
|
||||
5. announce release on freshmeat (http://freshmeat.net/projects/phpmyadmin/)
|
||||
6. send a short mail (with list of major changes) to
|
||||
phpmyadmin-devel@lists.sourceforge.net
|
||||
phpmyadmin-news@lists.sourceforge.net
|
||||
phpmyadmin-users@lists.sourceforge.net
|
||||
@@ -188,7 +177,7 @@ Todo now:
|
||||
Don't forget to update the Description section in the announcement,
|
||||
based on Documentation.html.
|
||||
|
||||
8. increment rc count or version in subversion :
|
||||
7. increment rc count or version in subversion :
|
||||
- in libraries/Config.class.php PMA_Config::__constructor() the line
|
||||
" $this->set( 'PMA_VERSION', '2.7.1-dev' ); "
|
||||
- in Documentation.html the 2 lines
|
||||
@@ -196,17 +185,11 @@ Todo now:
|
||||
" <h1>phpMyAdmin 2.2.2-rc1 Documentation</h1> "
|
||||
- in translators.html
|
||||
|
||||
9. add a group for bug tracking this new version, at
|
||||
8. add a group for bug tracking this new version, at
|
||||
https://sourceforge.net/tracker/admin/index.php?group_id=23067&atid=377408&add_group=1
|
||||
|
||||
10. the end :-)
|
||||
9. the end :-)
|
||||
|
||||
END
|
||||
|
||||
fi
|
||||
|
||||
# Removed due to not needed thanks to clever scripting by Robbat2
|
||||
# 9. update the demo subdirectory:
|
||||
# - in htdocs, cvs update phpMyAdmin
|
||||
# - and don't forget to give write rights for the updated scripts to the
|
||||
# whole group
|
||||
|
@@ -172,3 +172,21 @@ CREATE TABLE IF NOT EXISTS `pma_designer_coords` (
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Table coordinates for Designer'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
--
|
||||
-- Table structure for table `pma_tracking`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `pma_tracking` (
|
||||
`db_name` varchar(64) collate utf8_bin NOT NULL,
|
||||
`table_name` varchar(64) collate utf8_bin NOT NULL,
|
||||
`version` int(10) unsigned NOT NULL,
|
||||
`date_created` datetime NOT NULL,
|
||||
`date_updated` datetime NOT NULL,
|
||||
`schema_snapshot` text collate utf8_bin NOT NULL,
|
||||
`schema_sql` text collate utf8_bin,
|
||||
`data_sql` text collate utf8_bin,
|
||||
`tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') collate utf8_bin default NULL,
|
||||
`tracking_active` int(1) unsigned NOT NULL default '1',
|
||||
PRIMARY KEY (`db_name`,`table_name`,`version`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=COMPACT;
|
||||
|
Reference in New Issue
Block a user