Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
* '1.0.x' of gitorious.org:statusnet/mainline: (24 commits)
Change time format to work with older PHP (before 5.3)
move OMB-specific remote login button to OMB Plugin
use correct redirect on logout of single-user site
disable routes that aren't available in single-user mode
upgrade to beta4
Better error handling when the email subsystem isn't working. The installer was dying trying to send a confirmation email to the initial user.
Store a list of all paths the router knows about (backward compatibility with Net_URL_Mapper)
Upgrade 0.9.x bookmarks to 1.0.x
add hooks for upgrades
include q as param, not arg for search sub menu
exact match for paths
change category on urlmapper.php
Fix undefined variable
don't forget to add qstring to static paths
with new URLMapper, cached router takes more memory, time than re-generating
Deal with default param patterns more effectively
two useful functions for profiling
Remove unused xrds stuff from profile (replace in OMB please)
add default groupdirectory route
new URLMapper without Net_URL_Mapper
...
Merge branch 'testing' of gitorious.org:statusnet/mainline into testing
* 'testing' of gitorious.org:statusnet/mainline:
disable routes that aren't available in single-user mode
upgrade to beta4
Better error handling when the email subsystem isn't working. The installer was dying trying to send a confirmation email to the initial user.
Store a list of all paths the router knows about (backward compatibility with Net_URL_Mapper)
Upgrade 0.9.x bookmarks to 1.0.x
add hooks for upgrades
Merge branch 'testing' of gitorious.org:statusnet/mainline into testing
* 'testing' of gitorious.org:statusnet/mainline:
include q as param, not arg for search sub menu
exact match for paths
change category on urlmapper.php
Fix for schema upgrade issue when primary keys change; fixes upgrade direct from 0.8.x
Previously we were failing to update the primary key during ensureTable(), which could lead to failures when updating some tables (eg queue_item where we changed keys, and the addition of an autoincrement column failed because it conflicted with the old key).
Now if the key is different, we remove the old key at the start and add the new key at the end of the ALTER TABLE.
Not tested on PostgreSQL -- someone please check whether the alter table 'DROP CONSTRAINT PRIMARY KEY' bit works or if it needs to pull a special name for the key.
On MySQL, dropping uses alter table's 'DROP PRIMARY KEY' special case.
Zach Copley [Sun, 28 Aug 2011 01:47:19 +0000 (18:47 -0700)]
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
* '1.0.x' of gitorious.org:statusnet/mainline:
add conversation ID to notice output
For fave count, don't use distinct
Static -> static
allow posting to groups through atompub
Zach Copley [Sat, 27 Aug 2011 21:27:15 +0000 (14:27 -0700)]
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
* '1.0.x' of gitorious.org:statusnet/mainline:
Issue #546: enable case-insensitive searching in MySQL
remove more groupnav
remove group nav
shorter title for tag cloud section on groups
remove group nav
move pending queue to sidebar
Move group logo edit from object nav to block actions
Show blocked users from group in section
Dan Scott [Sat, 27 Aug 2011 20:33:15 +0000 (16:33 -0400)]
Issue #546: enable case-insensitive searching in MySQL
MySQL needs the collation utf8_general_ci to support case-insensitive
searching. lib/mysqlschema.php already supports a 'collate' attribute on
a per-column basis, so we just need to take advantage of that attribute
on the columns we want to search and Bob (and BOB, and bOB) is your
uncle.