Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-02-06 | Merge branch 'sgmurphy-clone/0.7.x' into 0.7.x | Evan Prodromou | |
2009-02-06 | Merge branch '0.7.x' of git://gitorious.org/laconica/sgmurphy-clone into ↵ | Evan Prodromou | |
sgmurphy-clone/0.7.x | |||
2009-02-05 | Fix for unicode string auto-linking bug | Sean Murphy | |
2009-02-05 | trac #1142 fix tag rss | Robin Millette | |
2009-02-05 | Merge branch '0.7.x' of git://gitorious.org/laconica/sgmurphy-clone into ↵ | Evan Prodromou | |
sgmurphy-clone/0.7.x Conflicts: actions/avatarsettings.php | |||
2009-02-04 | Forgot to replace URL shortening regex with new function. | Sean Murphy | |
2009-02-04 | Fixed #779 & #588; Better URL auto-linking. | Sean Murphy | |
2009-02-04 | Fixed #732; Hashtags inside parens and brackets. | Sean Murphy | |
2009-02-04 | Fixes ticket:1087; correctly paginate group members list in fancy URLs. | Meitar Moscovitz | |
2009-02-02 | Merge branch 'master' of git@gitorious.org:laconica/dev into 0.7.x | Evan Prodromou | |
2009-02-02 | trac #569 and trac #711 add missing utf-8 headers and removed extraneous ↵ | Robin Millette | |
argument in startHTML calls | |||
2009-02-02 | Link rtsp, mms & tel URI schemes, correct pseudo-protocol ones. | Meitar Moscovitz | |
This patch builds on the work of user `candrews` at http://laconi.ca/trac/ticket/529#comment:2 | |||
2009-01-26 | Fix scrolling for groups | Meitar Moscovitz | |
2009-01-26 | Fix pagination on user groups page | Adrian Lang | |
2009-01-24 | Update notice deletion | Evan Prodromou | |
Changed the errors in notice deletion so it now works. Also, consistently delete records from related tables that refer to the notice. | |||
2009-01-24 | wrong action for groups | Evan Prodromou | |
2009-01-24 | Fix the group url (Closes #971) | Evan Prodromou | |
2009-01-23 | Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk | Evan Prodromou | |
2009-01-23 | Group search | Robin Millette | |
2009-01-23 | Upload logos for groups | Evan Prodromou | |
2009-01-23 | use new error actions classes to display error | Robin Millette | |
2009-01-23 | Add an action to show the list of the latest groups | Evan Prodromou | |
2009-01-22 | Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk | Evan Prodromou | |
2009-01-22 | Move common_save_replies to Notice class | Evan Prodromou | |
2009-01-22 | Moved nudge response from util.php to nudge.php | sarven | |
Adjusted some CSS | |||
2009-01-21 | Fix group fetch and regex for group link | Evan Prodromou | |
2009-01-21 | First pass at delivery of group messages | Evan Prodromou | |
A first pass at the delivery of group messages. | |||
2009-01-21 | Merge branch 'master' into groups | Evan Prodromou | |
2009-01-21 | Add fancy urls for new urls | Evan Prodromou | |
2009-01-21 | Fix redirect function | Evan Prodromou | |
2009-01-21 | Moved common_profile_new_message_nudge() to showstream.php | sarven | |
2009-01-21 | Define URLs for groups | Evan Prodromou | |
2009-01-19 | Update tag to use new framework | Evan Prodromou | |
Broke up the tag action into two different actions (publictagcloud and tag). Brought it up-to-date with the new framework, but haven't fixed it for phpcs yet. | |||
2009-01-17 | Break up settings into two tabset | Evan Prodromou | |
Made two tabsets: account and connect. Removed "Invite" from the global nav to make room. | |||
2009-01-16 | Markup update for common_tag_link(), common_at_link(), | sarven | |
common_at_hash_link() | |||
2009-01-14 | Remove block form functions from lib/util.php | Evan Prodromou | |
2009-01-14 | Move message form to its own module | Evan Prodromou | |
2009-01-14 | Move subscribe and unsubscribe forms to their own classes | Evan Prodromou | |
2009-01-14 | Move nudge form to its own class | Evan Prodromou | |
2009-01-14 | Move favor and disfavor form to their own classes | Evan Prodromou | |
2009-01-13 | Modify public stream to use new UI framework | Evan Prodromou | |
I modified public.php to use the new UI framework. Since the Action class isn't functional yet, I don't know if it works. I took some of the functionality, like the public tabs nav and the feeds list, and made them widgets. I also moved the navigation from common_navigation() to a method of Action. | |||
2009-01-13 | Move page-generation code from lib/util.php to Action class | Evan Prodromou | |
We moved the page generation code from lib/util.php to the action class. We also broke up the page generation code into a big recipe, where each element of the page has a corresponding method in the Action class. Action classes can override parts of the recipe to make their custom output, and leave the rest up to the parent class. NOTE: this change BREAKS pretty much everything. lib/action.php probably does not compile, and everything that uses it needs to be fixed to use the new framework. Stay tuned for more fun! | |||
2009-01-13 | Extract HTML outputting code to a class HTMLOutputter | Evan Prodromou | |
Moved the common_* methods for low-level HTML output to its own class, HTMLOutputter in lib/htmloutputter.php. | |||
2009-01-13 | Remove XML-generating function from lib/util.php | Evan Prodromou | |
2008-12-25 | Twitter-bridge: fix for Twitter's new strict policy of rejecting HTTP POSTs ↵ | Zach Copley | |
with invalid "expect" headers darcs-hash:20081225152207-7b5ce-fe890baabaa8f0bf60b05f7558c1ece3544d9906.gz | |||
2008-12-23 | TRUE | Evan 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-23 | change function headers to K&R style | Evan 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-20 | reformatting for phpcs in lib/util.php | Evan Prodromou | |
darcs-hash:20081221003016-84dde-0e80268e95235462e069d4d1e6b949bc891ccdbd.gz | |||
2008-12-14 | get rid of hcard in @-replies | Evan Prodromou | |
darcs-hash:20081214204557-84dde-92dbf80aa81d55c9ef23faa14bc209183fdcf883.gz | |||
2008-12-12 | remove spaces from atlink for unfound name | Evan Prodromou | |
darcs-hash:20081212174414-84dde-03713508050c326904594057e6e2d3f3b1ca6437.gz |