Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-07 | tests with Apache ActiveMQ topics (pubsub) | Federico Marani | |
2009-02-20 | * implemented STOMP support for external message queueing systems | Federico Marani | |
* (ticket-724) * included PHP STOMP libraries (http://code.google.com/p/stompcli/) | |||
2009-02-07 | Using rel="external" instead of class="exlink" | Sarven Capadisli | |
2009-02-06 | Merge branch 'sgmurphy-clone/0.7.x' into 0.7.x | Evan Prodromou | |
Conflicts: lib/util.php | |||
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-06 | Fixed #1149: URL auto-linking bug when following colon. | Sean Murphy | |
2009-02-06 | Move common_avatar_* functions to Avatar | Evan 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-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. |