summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
2009-10-09don't write session if it's unchangedEvan Prodromou
2009-10-02copy-and-paste typo in profile deletionEvan Prodromou
2009-10-02also delete blocksEvan Prodromou
2009-10-02Merge branch '0.8.x' into deleteuserEvan Prodromou
2009-09-24Merge branch 'master' into 0.8.xEvan Prodromou
2009-09-18Blacklist all files and directories in the web root (INSTALLDIR). Much more ↵Craig Andrews
elegant than manually keep tracking of these invalid usernames.
2009-09-15Remove unnecessary Profile::pkeyGetCraig Andrews
Thanks for the info, Evan.
2009-09-13Add missing pkeyGet override to the Profile classCraig Andrews
2009-09-10If there is no mimetype set, the file shouldn't be considered an enclosureCraig Andrews
2009-09-01Check "Files" of type 'application/xhtml+xml' for oEmbed in addition to just ↵Craig Andrews
text/html
2009-08-29remove Notice::gc() for nowEvan Prodromou
2009-08-28Status_network had wrong ini fileEvan Prodromou
2009-08-28Status_network had wrong ini fileEvan Prodromou
2009-08-28fix for SQL error: ERROR: syntax error at or near ")" at character 45Brenda Wallace
http://laconi.ca/trac/ticket/1735
2009-08-27make URL analyzer save new info on URLs0.8.1rc2Evan Prodromou
2009-08-27remove duplicate save of Notice and streamline attachment detectionEvan Prodromou
2009-08-26define LACONICA and accept LACONICA for backwards compatibilityEvan Prodromou
2009-08-25global search and replace for laconica -> statusnetEvan Prodromou
2009-08-25change LACONICA to STATUSNETEvan Prodromou
2009-08-25a distributed -> the distributedEvan Prodromou
2009-08-25change Laconica and Control Yourself to StatusNet in PHP filesEvan Prodromou
2009-08-25Merge branch '0.8.x' into testingEvan Prodromou
2009-08-25Rename Laconica to StatusNetEvan Prodromou
2009-08-25Take token field out of foreign_linkZach Copley
This undoes patch a49272d448d75a6ab74515352345d8baacb96f1f
2009-08-24ftps protocol should be handled the same way as ftpCraig 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-24Merge branch '0.8.x' into testingEvan Prodromou
Conflicts: actions/twitterauthorization.php lib/oauthclient.php lib/twitter.php lib/twitterapi.php lib/twitteroauthclient.php scripts/twitterstatusfetcher.php
2009-08-24Add new Foreign_link col to store OAuth access tokenZach Copley
2009-08-20Change the notice type defines all into class constants and adapt all files.Marcel van der Boom
2009-08-18Return null if all columns in the compound primary key aren't specifiedZach Copley
2009-08-12Prevents 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-10common_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.
2009-08-07Implemented the list_all and list groups API methods as defined at ↵Craig Andrews
http://laconi.ca/trac/wiki/ProposedGroupsAPI Made the Autocomplete plugin also autocomplete groups
2009-08-05Argh, first commit for ages and such a stupid error. Sorry.Adrian Lang
2009-08-04Added correct null check. Created noisey errors on fresh install.Eric Helgeson
$id is not defined, should be $this->id
2009-08-02don't delete during selectEvan Prodromou
2009-08-02GC sessions one by one to make sure memcached gets clearedEvan Prodromou
2009-07-30throw an exception rather than die()Evan Prodromou
2009-07-30remove debugging code about processing a new URLEvan Prodromou
2009-07-30Site-wide design configurationEvan Prodromou
I added some code so that the site-wide design can be set, using the configuration interface. I also moved the configuration option from $config['site']['design']['background'] to just $config['design']['background'], but the old syntax will still work.
2009-07-29New algorithm for reply_to savingEvan Prodromou
I changed the reply-to algorithm so that we only say a notice is in reply to another notice if a) we receive that information from the Web or API or b) it's in a "low bandwidth" (XMPP, SMS) channel, and begins with "@nickname" or "T NICKNAME". The goal is to avoid false-positives and make conversation trees more accurate and useful.
2009-07-27better check for existing DB connection runs SET NAMES UTF8 lessEvan Prodromou
2009-07-26first version of deleting usersEvan Prodromou
2009-07-23Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.xEvan Prodromou
2009-07-23Merge branch 'master' into 0.8.xEvan Prodromou
Conflicts: scripts/twitterstatusfetcher.php
2009-07-23change NOTICE_GATEWAY to Notice::GATEWAY so autoloading worksEvan Prodromou
2009-07-23Merge commit 'br3nda/0.8.x-profile-pgfix' into 0.8.xCraig Andrews
2009-07-23fixed up a limit offset to be ANSI SQL compliantBrenda Wallace
2009-07-22Merge commit 'br3nda/0.8.x-attachmentfix' into 0.8.xCraig Andrews
2009-07-22Merge commit 'br3nda/0.8.x-hashtags' into 0.8.xCraig Andrews
2009-07-22fixed SQL in checking for monthly quota - works in postgres and mysqlBrenda Wallace