summaryrefslogtreecommitdiff
path: root/classes/Notice.php
AgeCommit message (Collapse)Author
2009-06-10Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev ↵Evan Prodromou
into 0.8.x
2009-06-10some changes based on code review with zachEvan Prodromou
2009-06-10Now correctly identifiying notices with uploaded content.Robin Millette
2009-06-10Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev ↵Robin Millette
into 0.8.x
2009-06-10Uploaded content now displays in overlay (and removed var_dump crap)Robin Millette
2009-06-09Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev ↵Evan Prodromou
into 0.8.x
2009-06-09Improve file upload and attachment interface.Robin Millette
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-30Removing inbox and memcached daemon handlingEvan Prodromou
2009-05-30check for since=0 in Notice::stream()Evan Prodromou
2009-05-29Ticket #1567 - Change max_id to return notices <= ID instead of < IDZach Copley
2009-05-28Only enqueue inbox-dependent transports after inboxes have been filledEvan Prodromou
2009-05-18Added personal tag page: http://example.com/MY_NICK/tag/A_TAGRobin Millette
2009-05-17Refactored new sections code to proper classes and added notice link to ↵Robin Millette
links in notice sections.
2009-05-15Attachments and their list now provide "ajax" view. Also added a few ↵Robin Millette
sidebars relating tags and attachments.
2009-05-13rewrote short url stuff to handle new file/url classes (redirections, ↵Robin Millette
oembed, mimetypes, etc.)
2009-05-05Merge branch '0.7.x' into 0.8.xSarven Capadisli
2009-05-01make faves work with idsEvan Prodromou
2009-05-01Make user group stream use IDsEvan Prodromou
2009-05-01make profile notice getting use idsEvan Prodromou
2009-05-01Merge branch '0.7.x' into 0.8.xSarven Capadisli
Resolved Conflicts: lib/queuehandler.php lib/util.php theme/base/css/display.css
2009-04-29make replies use new query formatEvan Prodromou
2009-04-29Make the tag stream use ID mechanismEvan Prodromou
2009-04-29Public stream uses IDs methodEvan Prodromou
Public stream now uses IDs method
2009-04-29Move algorithm for caching to Notice classEvan Prodromou
Moved the algorithm for notice stream caching to the Notice class.
2009-04-28Remove some debug comments in query-by-idEvan 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-23insert into user's inbox at Web timeEvan Prodromou
2009-04-23incorrect config setting for queuesEvan Prodromou
2009-04-23Add an inbox queue handlerEvan Prodromou
Handle distributing a notice to multiple inboxes in a queue handler rather than in the Web action.
2009-04-23A queuehandler for blowing caches offlineEvan Prodromou
We add a queuehandler for blowing the memcached caches off-line. This should speed up the processing of new notices.
2009-04-08Merge branch '0.7.x' into 0.8.xSarven Capadisli
2009-04-08Merge branch 'master' of git://gitorious.org/laconica/br3nda into review/masterCiaranG
2009-03-23Merge branch '0.7.x' into 0.8.xEvan Prodromou
2009-03-22One function for producing Atom entry for a NoticeEvan Prodromou
Took the various places that we create an atom entry for a notice, and jammed them together into one function of the notice class, and then used that function. Also, added Atom threading extension and categories for hashtags.
2009-03-12Merge branch '0.7.x' into 0.8.xEvan Prodromou
Conflicts: classes/Notice.php lib/action.php lib/router.php lib/twitter.php
2009-03-12When deleting a notice, null the reply_to fields that point to noticeBrenda Wallace
2009-03-11PostgreSQL - a few more query compatibility issues (submitted by oxygene)CiaranG
2009-03-11Correction to recently added dupe-checking feature - was using wrong config ↵CiaranG
value
2009-03-07Fix bug in dupe checking on notice post when there is no notice in cache.Adrian Lang
2009-03-07Limit duplicate notices in a particular time period (default 60s)Evan Prodromou
We disallow posting a notice with duplicate content more than once a minute. Conflicts: config.php.sample
2009-03-06Merge branch '0.7.x' into 0.8.xEvan Prodromou
2009-03-03Use single quotes for data literals on inserts to notice_index, so it works ↵CiaranG
on pgsql as well as mysql
2009-02-26save conversation id when saving a noticeEvan Prodromou
2009-02-26add conversation to notice classEvan Prodromou
2009-02-16wrong name for attn functionEvan Prodromou
2009-02-16send mail when @-replies are receivedEvan Prodromou
2009-02-16Automatically add a tag for every group messagesEvan Prodromou
If you post to a group !foo, it's automatically listed as being tagged "foo". This is to keep users from having to do !foo #foo in all their messages.
2009-02-14Optionally ignore some notice sources for public pageEvan Prodromou
We optionally ignore some notice sources from the public page. Typically these are automatic notice sources like twitterfeed that don't usually represent the community on the site very well.
2009-02-13Add events for filtering and logging new noticesEvan Prodromou