Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-28 | Status_network had wrong ini file | Evan Prodromou | |
2009-08-28 | used standard SQL that mysql and pgsql both like | Brenda Wallace | |
2009-08-28 | used standard SQL that mysql and pgsql both like | Brenda Wallace | |
2009-08-28 | make use of common_database_tablename() | Brenda Wallace | |
2009-08-28 | fix for SQL error: ERROR: syntax error at or near ")" at character 45 | Brenda Wallace | |
http://laconi.ca/trac/ticket/1735 | |||
2009-08-28 | fix for SQL error: ERROR: syntax error at or near ")" at character 45 | Brenda Wallace | |
http://laconi.ca/trac/ticket/1735 | |||
2009-08-27 | make URL analyzer save new info on URLs0.8.1rc2 | Evan Prodromou | |
2009-08-27 | remove duplicate save of Notice and streamline attachment detection | Evan Prodromou | |
2009-08-27 | changes to File | Evan Prodromou | |
2009-08-27 | Merge branch '0.9.x' of git@gitorious.org:laconica/mainline into 0.9.x | Evan Prodromou | |
Conflicts: classes/laconica.ini | |||
2009-08-27 | methods on User to grant, check, and revoke roles | Evan Prodromou | |
2009-08-27 | flip executable bit on User_role.php | Evan Prodromou | |
2009-08-27 | add data object class for user_role | Evan Prodromou | |
2009-08-27 | Merge branch '0.8.x' into 0.9.x | Evan Prodromou | |
Conflicts: EVENTS.txt actions/finishremotesubscribe.php actions/postnotice.php actions/public.php actions/remotesubscribe.php actions/showstream.php actions/updateprofile.php actions/userauthorization.php classes/laconica.ini lib/common.php lib/oauthstore.php lib/omb.php | |||
2009-08-27 | Merge branch '0.8.x' into 0.9.x | Evan Prodromou | |
2009-08-26 | Merge commit 'laconica/0.8.x' into 0.9.x | Craig Andrews | |
2009-08-26 | Fix some stupid bugs, such as a mispelling of oembed | Craig Andrews | |
2009-08-26 | Display linked oembed resources as enclosures if they are of non-html mime types | Craig Andrews | |
2009-08-26 | Save the mimetype for oEmbed linked url | Craig Andrews | |
2009-08-26 | define LACONICA and accept LACONICA for backwards compatibility | Evan Prodromou | |
2009-08-25 | global search and replace for laconica -> statusnet | Evan Prodromou | |
2009-08-25 | change LACONICA to STATUSNET | Evan Prodromou | |
2009-08-25 | a distributed -> the distributed | Evan Prodromou | |
2009-08-25 | change Laconica and Control Yourself to StatusNet in PHP files | Evan Prodromou | |
2009-08-25 | Merge branch '0.8.x' into testing | Evan Prodromou | |
2009-08-25 | Rename Laconica to StatusNet | Evan Prodromou | |
2009-08-25 | Take token field out of foreign_link | Zach Copley | |
This undoes patch a49272d448d75a6ab74515352345d8baacb96f1f | |||
2009-08-24 | ftps protocol should be handled the same way as ftp | Craig Andrews | |
Canon urls that have a protocol followed by a host (and no path) automatcally get a trailing slash by the canon function - make the unit test match that | |||
2009-08-24 | Merge branch '0.8.x' into testing | Evan Prodromou | |
Conflicts: actions/twitterauthorization.php lib/oauthclient.php lib/twitter.php lib/twitterapi.php lib/twitteroauthclient.php scripts/twitterstatusfetcher.php | |||
2009-08-24 | Add new Foreign_link col to store OAuth access token | Zach Copley | |
2009-08-21 | Merge branch '0.9.x' into openidplugin | Evan Prodromou | |
Conflicts: actions/login.php actions/register.php | |||
2009-08-21 | Merge branch 'dbconfig' into 0.9.x | Evan Prodromou | |
Conflicts: lib/common.php | |||
2009-08-21 | load configuration options from database at runtime | Evan Prodromou | |
2009-08-21 | Merge branch '0.8.x' into 0.9.x | Evan Prodromou | |
Conflicts: actions/updateprofile.php actions/userauthorization.php classes/User_group.php index.php install.php lib/accountsettingsaction.php lib/logingroupnav.php | |||
2009-08-21 | new class for configuration settings | Evan Prodromou | |
2009-08-21 | validation code in Notice correctly checks length of content | Evan Prodromou | |
2009-08-21 | Notice class has methods to check content length | Evan Prodromou | |
2009-08-21 | check correct setting in Profile bio length | Evan Prodromou | |
2009-08-21 | Profile class has methods to check bio length | Evan Prodromou | |
2009-08-21 | methods for Message to check max content length | Evan Prodromou | |
2009-08-21 | can set group desc limit to unlimited without resetting global limit | Evan Prodromou | |
2009-08-21 | allow configurable length for user group description | Evan Prodromou | |
2009-08-21 | data classes allow >140c in user group descriptions | Evan Prodromou | |
2009-08-21 | data classes allow >140 bios in profiles | Evan Prodromou | |
2009-08-21 | Messages can be >140c in classes | Evan Prodromou | |
2009-08-21 | update data classes for TEXT content in notice | Evan Prodromou | |
2009-08-20 | Change the notice type defines all into class constants and adapt all files. | Marcel van der Boom | |
2009-08-18 | Return null if all columns in the compound primary key aren't specified | Zach Copley | |
2009-08-12 | Prevents redirect URLs that have canonical URLs longer than 255 chars from ↵ | Brett Taylor | |
being written to the database as their canonical. Redirecting URLs will instead be saved to the database as given. The reason for this is that table 'file' column 'url' is a VARCHAR(255) in MySQL and it silently truncates URLs longer than 255 characters, breaking the url. The proper fix for this is to improve this column, making its type TEXT, but there are no database changes for 0.8.x, so this is the next best thing for data integrity. A migration script for 0.9.x could be written to audit the database checking for redirects and updating these urls to their proper canonical url. | |||
2009-08-10 | common_config returns false if the config value is not set. ↵ | Adrian Lang | |
Design::toWebColor checks with is_null. Hence the common_config value should be adjusted. |