summaryrefslogtreecommitdiff
path: root/actions/showstream.php
AgeCommit message (Collapse)Author
2009-04-13isReadOnly() now takes argumentsEvan Prodromou
Add an array of arguments to isReadOnly() method of actions, to let them change their results depending on what actions are called. Primarily used by the 'api' action. Ideally in the future that will be multiple actions. But this might still be useful.
2009-04-08showemptListMessage -> showEmptyListMessage method name cleanup.Robin Millette
2009-04-07HTML br is not needed. Using 'clear' in CSS instead.Sarven Capadisli
2009-04-07added filler/guide text to user timeline.Robin Millette
2009-04-07Add subscribers, subscriptions, groups to personal pageEvan Prodromou
We show stats, subscriptions info on the personal page in the sidebar. Pushed code from showstream.php into a common parent class for personal and profile.
2009-03-30full name in title and h1 of the personal profileEvan Prodromou
2009-03-19A couple more 'Join Now' messages that need disabling when the site is ↵CiaranG
closed or invite only
2009-02-17Fixes ticket:1053; removes spacing between hash and tag on profile page.Meitar Moscovitz
2009-02-11Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.xSarven Capadisli
2009-02-11Minor. Changed from @class location to labelSarven Capadisli
2009-02-11Unify feeds definition in actionsEvan Prodromou
I got a little sick of trying to keep the export data and <head> links synched in actions, so I made a common method, getFeeds(), which gets the feeds for both. It returns an array of Feed objects, which know about what their mime type is, title, location, all that jazz. I changed the FeedList class so it handles the new Feed objects instead of the old array of data. I changed all the actions that show feeds (I think...) so that they now use getFeeds() for all their feed needs.
2009-02-09whitespace and formatting in showstream.phpEvan Prodromou
2009-02-07Merge commit 'upstream/0.7.x' into 0.7.xSean Murphy
Conflicts: actions/showstream.php
2009-02-06Fixed #1048: Edit avatar link on profile page.Sean Murphy
2009-02-06Move common_avatar_* functions to AvatarEvan Prodromou
Moved the common_avatar_* functions to the Avatar class. Typically either as methods on the object or as static methods. Replaced all the uses of the functions in other modules.
2009-02-05Trac #894 and #1013 - fixed bad redirects after delete noticeZach Copley
2009-02-05Fix #81: Profile and personal shows „you“ instead of username when ↵Adrian Lang
looking at own profile / personal. While doing so I fixed a wrong gettext usage were the result was not sprintf'd, but concat'd.
2009-02-03trac1095 Profile page had bad alternate links for RSS and Atom feedsZach Copley
2009-02-02Added "Edit" entity_action.Sarven Capadisli
Updated theme files.
2009-01-24Minorsarven
2009-01-23showstream is readonlyEvan Prodromou
2009-01-23Cleanupsarven
2009-01-23Anonymous noticesarven
2009-01-23p -> div for markup wrapperEvan Prodromou
2009-01-23Add anonymous message for user pagesEvan Prodromou
2009-01-22Add personal tag cloudEvan Prodromou
2009-01-22Minor cleanup for future groups_relatedsarven
2009-01-22selector name cleanupsarven
2009-01-21Changed to @class entity_profile from @id user_profile.sarven
2009-01-21General markup and style cleanupsarven
2009-01-21list of groups to profile pageEvan Prodromou
2009-01-21fix sub/unsub buttons, profileminilist for sectionsEvan Prodromou
2009-01-21Added @title to user_action inputs and anchor and form legendssarven
2009-01-21Made user_actions styles more consistentsarven
2009-01-21Moved common_profile_new_message_nudge() to showstream.phpsarven
2009-01-21Matching markup for tagssarven
2009-01-20If user has fn, then it will not link to their own profile with @classsarven
'fn'. Only put @class 'fn' on the anchor if there is no fn.
2009-01-20user_actions form markup and stylingsarven
2009-01-20Using nickname only for uidsarven
2009-01-20Added mark_hash for content (i.e., to indicate tags with thesarven
character '#')
2009-01-20Removed extra divsarven
2009-01-20User subscriptions markupsarven
2009-01-20User statistics markupsarven
2009-01-19showPageTitle() and showPageNoticeBlock()sarven
and using url on nickname instead of fullname
2009-01-19user_profile markupsarven
2009-01-19Upgraded showstream, didn't make it phpcs-compatibleEvan Prodromou
2009-01-15Convert use of common_server_error and common_user_error to methods on ActionEvan Prodromou
2009-01-15Convert all actions to use new UI functionsEvan Prodromou
I did a massive search-and-replace to get all the action subclasses to use the new output function (common_element() -> $this->element(), etc.) There's still a lot to do, but it's a first step
2008-12-23move opening brace of class declaration to next lineEvan Prodromou
Another gigantor PEAR coding standards patch. Here, I've moved the opening curly bracket on a class statement to the following line. darcs-hash:20081223194923-84dde-77a93de314caadbcb5b70bf346a4648be77a864e.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