Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-12-17 | Merge branch '0.9.x' into 1.0.x | Brion Vibber | |
Conflicts: classes/Memcached_DataObject.php | |||
2010-12-17 | Sort indexing fix for profile sidebar: add ↵ | Brion Vibber | |
group_member_profile_id_created_idx to group_member table, streamlines sorting of your group memberships in the sidebar | |||
2010-12-17 | Sorting index fix for role lookups: adds ↵ | Brion Vibber | |
profile_role_role_created_profile_id_idx index on profile_role | |||
2010-12-17 | Update sorting for conversation views: adds ↵ | Brion Vibber | |
notice_conversation_created_id_idx index on notice, replacing more limited notice_conversation_idx | |||
2010-12-17 | Update sorting on api/statuses/retweets: adds ↵ | Brion Vibber | |
notice_repeat_of_created_id_idx index to replace notice_repeatof_idx | |||
2010-12-17 | Update sorting for group inbox timelines; adds ↵ | Brion Vibber | |
group_inbox_group_id_created_notice_id_idx index to group_inbox table | |||
2010-12-17 | Update sorting on reply/mentions timeline: added ↵ | Brion Vibber | |
reply_profile_id_modified_notice_id_idx index to reply table | |||
2010-12-17 | Update sorting for tag-filtered public timeline: needs ↵ | Brion Vibber | |
notice_tag_tag_created_notice_id_idx index added to notice_tag | |||
2010-12-17 | Switch public timeline to new sorting; new index notice_created_id_is_local_idx | Brion Vibber | |
http://status.net/wiki/Sorting_changes | |||
2010-12-07 | Merge branch '0.9.x' into merge | Brion Vibber | |
Conflicts: README actions/hostmeta.php classes/File_redirection.php lib/common.php lib/designsettings.php lib/router.php lib/util.php lib/xmppmanager.php plugins/OStatus/OStatusPlugin.php | |||
2010-11-09 | session table was missing from upgrade scripts | Evan Prodromou | |
2010-10-29 | tweaks for the installer whee | Brion Vibber | |
2010-10-29 | some sorta vaguely working bits | Brion Vibber | |
2010-10-28 | Merge branch '1.0.x' into schema-x | Brion Vibber | |
Conflicts: plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po | |||
2010-10-28 | Merge branch '0.9.x' into 1.0.x | Brion Vibber | |
2010-10-25 | Merge commit 'refs/merge-requests/2223' of ↵ | Zach Copley | |
git://gitorious.org/statusnet/mainline into integration | |||
2010-10-25 | Updated mustard description and link | Michele macno Azzolari | |
2010-10-25 | Merge branch '1.0.x' into schema-x | Brion Vibber | |
Conflicts: plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po | |||
2010-10-25 | Merge branch '0.9.x' into 1.0.x | Brion Vibber | |
Conflicts: actions/subscriptions.php lib/router.php lib/xmppmanager.php lib/xmppoutqueuehandler.php | |||
2010-10-20 | Use a new table (oauth_token_association) to associate authorized | Zach Copley | |
request tokins with OAuth client applications and profiles. | |||
2010-10-20 | Revert DB change for OAuth. Change compound key for oauth_application_user | Zach Copley | |
back to (profile_id, application_id). I think we can get away without a DB change by only issuing one anonymous access token per user. | |||
2010-10-19 | Add support for an anonymous OAuth consumer. Note: this requires a | Zach Copley | |
small DB tweak. Oauth_application_user needs to have the primary compound key: (profile_id, application_id, token). http://status.net/open-source/issues/2761 This should also make it possible to have multiple access tokens per application. http://status.net/open-source/issues/2788 | |||
2010-10-19 | Add stub schema_version table | Brion Vibber | |
2010-10-19 | Initial foreign key setup support | Brion Vibber | |
2010-10-19 | Fix unique & foreign constraints on foreign_* tables. Reference info copied ↵ | Brion Vibber | |
from old schema wasn't correctly taking into account that (id, service) must be treated together as a unit to identify a foreign_user uniquely. | |||
2010-10-18 | Fix misnamed unique constraint | Brion Vibber | |
2010-10-18 | Normalize the 'modified' vs 'created' field definitions to not-null ↵ | Brion Vibber | |
timestamps. We can't rely on database DEFAULT or ON UPDATE values, since they don't play well with our insert-time caching. | |||
2010-10-15 | some more tweaking to do the mappings during filterDef; not totally sure I ↵ | Brion Vibber | |
like it | |||
2010-10-13 | Cleanup unique & foreign key defs | Brion Vibber | |
2010-10-11 | fix for column prefixes in table/index building | Brion Vibber | |
2010-10-07 | fix up some more 'not null's and such | Brion Vibber | |
2010-10-07 | some more cleanup on table defs | Brion Vibber | |
2010-10-07 | output tweak hack for primary keys on single line | Brion Vibber | |
2010-10-07 | Finish patching up the index fetching in new schema stuff for mysql | Brion Vibber | |
2010-10-06 | Merge branch '1.0.x' into schema-x | Brion Vibber | |
Conflicts: plugins/OStatus/classes/Ostatus_profile.php | |||
2010-10-04 | Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.x | Brion Vibber | |
Conflicts: actions/hostmeta.php actions/imsettings.php classes/User.php lib/adminpanelaction.php lib/channel.php lib/default.php lib/router.php lib/util.php | |||
2010-09-16 | Ticket #2725 - add StatusNet Mobile & platform variants to default notice ↵ | Brion Vibber | |
sources lists. To add just these to an existing table: INSERT INTO notice_source (code, name, url, created) VALUES ('StatusNet Mobile', 'StatusNet Mobile', 'http://status.net/mobile', now()), ('StatusNet iPhone', 'iPhone', 'http://status.net/iphone', now()), ('StatusNet Android', 'Android', 'http://status.net/android', now()), ('StatusNet Blackberry', 'Blackberry', 'http://status.net/blackberry', now()); | |||
2010-08-16 | Merge branch '0.9.x' into 1.0.x | Brion Vibber | |
2010-08-16 | Managed_DataObject initial sketches (pulling Drupal-style schema def into ↵ | Brion Vibber | |
the data that DB_DataObject and Memcached_DataObject use; not yet functional. Converted OStatus_profile for demo.) | |||
2010-08-16 | Syntax fixes to defs file | Brion Vibber | |
2010-08-16 | Merge remote branch 'shiny/0.9.x' into 0.9.x | Brenda Wallace | |
2010-08-16 | Merge commit 'origin/0.9.x' into 0.9.x | Brenda Wallace | |
2010-08-16 | removed the notice.location column from postgres def -- snuck in on a git ↵ | Brenda Wallace | |
commit by Patrick G | |||
2010-08-13 | work in progress | Brion Vibber | |
2010-08-13 | starting redoing core schema defs in variant of drupal format (can switch it ↵ | Brion Vibber | |
to any way we like once done, if prefer to use a different syntax based on what we're using now for plugins) | |||
2010-08-03 | Merge branch '0.9.x' into 1.0.x | Evan Prodromou | |
2010-07-28 | SQL script to update status_network table | James Walker | |
2010-07-28 | leaving tags column in (for now) | James Walker | |
2010-07-20 | normalizing tags for status_network | James Walker | |
2010-06-28 | Merge branch 'master' into 0.9.x | Brion Vibber | |