summaryrefslogtreecommitdiff
path: root/classes/User.php
AgeCommit message (Collapse)Author
2009-11-01Revert "Blacklist all files and directories in the web root (INSTALLDIR). ↵Evan Prodromou
Much more elegant than manually keep tracking of these invalid usernames." This reverts commit 15f9c80c28042a5f9d51ec8444e3c9c475360481. So, so, elegant! And so, so, incorrect! We can't have a user named 'notice' because that would interfere with URLs like /notice/1234. However, there is no file named 'notice' in the Web root. If there were a way to automatically pull out the virtual paths in the root dir, this may make sense. Until then, we keep track here.
2009-10-02also delete blocksEvan Prodromou
2009-10-02Merge branch '0.8.x' into deleteuserEvan 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-08-26define LACONICA and accept LACONICA for backwards compatibilityEvan 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-07-26first version of deleting usersEvan Prodromou
2009-07-23change NOTICE_GATEWAY to Notice::GATEWAY so autoloading worksEvan Prodromou
2009-07-09cache frequently-used subscriber, subscription, notice and fave count valuesEvan Prodromou
2009-07-05fix caching of faves by own, otherEvan Prodromou
2009-06-25break up big inbox queries into lots of small onesEvan Prodromou
2009-06-23Stop Twitter gateway notices from leaking via user faves pagesZach Copley
2009-06-18Only show twitter msgs in your own inboxEvan Prodromou
2009-06-09Merge branch '0.8.x' into userdesignEvan Prodromou
Conflicts: actions/designsettings.php
2009-06-08Merge branch '0.7.x' into 0.8.xEvan Prodromou
Conflicts: classes/Notice.php classes/Profile.php lib/common.php lib/util.php scripts/getvaliddaemons.php scripts/stopdaemons.sh
2009-05-30remove debug code from repliesEvan Prodromou
2009-05-23add getDesign to UserEvan Prodromou
2009-05-23update User.php with new design-related fieldsEvan Prodromou
2009-05-18Added personal tag page: http://example.com/MY_NICK/tag/A_TAGRobin Millette
2009-05-01make faves work with idsEvan Prodromou
2009-04-29make replies use new query formatEvan Prodromou
2009-04-28Change to avoid a join in notice inboxEvan Prodromou
The join in notice_inbox is causing temp-table sorting on identi.ca, so I'm trying a finer-tuned approach.
2009-04-16start of querybyidEvan Prodromou
2009-03-28some phpcs fixupsEvan Prodromou
2009-03-28welcome notice, default sub for new usersEvan Prodromou
2009-03-07Add local directory for plugins, themes, etc.Evan Prodromou
Added a local directory for locally-installed software. This is where you should put any code you write, themes, plugins, etc. so they don't get stomped by upgrades.
2009-03-05PostgreSQL - fixed a couple more quoting issuesCiaranG
2009-02-20Fixing a bunch of undefined variable warnings in OpenID signup processLeslie Michael Orchard
2009-02-16add email notify flag for @-repliesEvan Prodromou
2009-02-05Allow re-authentication with OpenIDEvan Prodromou
"Rememberme" logins aren't allowed to make changes to an account (since cookie-stealing is too easy). Users have to re-authenticate. Previously, it was impossible to do so without having a username and password; this change lets you do it with OpenID, too.
2009-01-30PostgreSQL - code changes to avoid problems where user table is referenced ↵Ciaran Gultnieks
in ad-hoc queries
2009-01-23Merge branch 'master' of /var/www/mublogEvan Prodromou
Conflicts: actions/api.php actions/deletenotice.php actions/recoverpassword.php actions/remotesubscribe.php actions/tag.php actions/tagrss.php actions/twitapiaccount.php actions/twitapiusers.php classes/Notice.php classes/User.php lib/common.php lib/language.php lib/subs.php lib/twitterapi.php lib/util.php scripts/inbox_users.php scripts/update_translations.php Merged development trunk into laconica head. woohoo!
2009-01-22Debug some of the subscriptions+tags problemsEvan Prodromou
2009-01-21move membership/adminship tests to profileEvan Prodromou
2009-01-21user subscriptions methodsEvan Prodromou
2009-01-21Add group and groups to list of forbidden user namesEvan Prodromou
2009-01-21A method on User for getting groupsEvan Prodromou
2009-01-21First pass at a group home pageEvan Prodromou
This is the first pass at a group home page.
2009-01-19Don't override ORDER for inboxes; it messes up cachingEvan Prodromou
2008-12-11whitespace conflicts in User.phpEvan Prodromou
darcs-hash:20081211163434-5ed1f-38d9bf093db72d27837cbfe76d46fd518adc3bb6.gz
2008-12-23TRUEEvan Prodromou
More PEAR coding standards global changes. Here, I've changed all instances of TRUE to true and FALSE to false. darcs-hash:20081223194428-84dde-cb1a1e6f679acd68e864545c4d4dd8752d6a6257.gz
2008-12-23change function headers to K&R styleEvan Prodromou
Another huge change, for PEAR code standards compliance. Function headers have to be in K&R style (opening brace on its own line), instead of having the opening brace on the same line as the function and parameters. So, a little perl magic found all the function definitions and move the opening brace to the next line (properly indented... usually). darcs-hash:20081223193323-84dde-a28e36ecc66672c783c2842d12fc11043c13ab28.gz
2008-12-23replace NULL with nullEvan Prodromou
Another global search-and-replace update. Here, I've replaced the PHP keyword 'NULL' with its lowercase version. This is another PEAR code standards change. darcs-hash:20081223192129-84dde-4a0182e0ec16a01ad88745ad3e08f7cb501aee0b.gz
2008-12-23replace all tabs with four spacesEvan Prodromou
The PEAR coding standards decree: no tabs, but indent by four spaces. I've done a global search-and-replace on all tabs, replacing them by four spaces. This is a huge change, but it will go a long way to getting us towards phpcs-compliance. And that means better code readability, and that means more participation. darcs-hash:20081223191907-84dde-21e8efe210e6d5d54e935a22d0cee5c7bbfc007d.gz
2008-12-09fix registration bug - fatal error when sending email confirmationZach Copley
darcs-hash:20081209082750-7b5ce-6d06a7b1cda2a9afb6ce8ea64d65df81cc063139.gz
2008-12-09trac540 - Add 'since' param to Twitter-compatible API callsZach Copley
darcs-hash:20081209055345-7b5ce-e48fd4c87963b8ae15859fd03d2f1f86a16f3a2b.gz
2008-12-08fix Profile_block::get() againEvan Prodromou
darcs-hash:20081209041648-5ed1f-fb6ed96047ebfbbe769a11cc3171ce8a5a1440a7.gz
2008-12-08removed Profile_block::get, changed to use pkeyGetEvan Prodromou
darcs-hash:20081209041227-5ed1f-2edefdc79545da646a6fd40b15fd72809c15831c.gz