Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-17 | htmloutputter->script() special cases src's that begin with plugin/ or ↵ | Craig Andrews | |
local/ so that plugins don't need to include common_path() in every call to $action->script() Adjust plugins to not call common_path() when it's not necessary Fix minify plugin | |||
2010-02-17 | parse_url returns an associative array - not an object | Craig Andrews | |
2010-02-11 | put Javascript files under SSL | Evan Prodromou | |
2010-01-27 | Optionally set a separate Javascript server and path | Evan Prodromou | |
We have about 10-12 JavaScript pages per Web page. They usually are based on the same server as the Web pages, but since they're static files, it makes sense to offload them to a lite server that handles static files well. This commit lets you set a separate Javascript server and path for the default Javascript code in StatusNet. Squashed commit of the following: commit 139d1622fdafe5ad00c820224416d9021efc3234 Author: Evan Prodromou <evan@status.net> Date: Wed Jan 27 11:30:24 2010 -0500 modules that call htmloutputter::script() don't prescribe js/ path commit c6ca3174af73efed55eaed5ff1e2a3bdc77d2d87 Author: Evan Prodromou <evan@status.net> Date: Wed Jan 27 11:28:07 2010 -0500 configurable server and path for javascript files | |||
2010-01-06 | The structure return by parse_url is an associative array, not an object. | Craig Andrews | |
2009-12-05 | Add configuration option to toggle the indenting of the output HTML. ↵ | Craig Andrews | |
Defaults to indent enabled. | |||
2009-12-04 | Append the StatusNet version to all local, static CSS references | Craig Andrews | |
2009-12-04 | Use inlineScript() instead of element() to write inline javascript | Craig Andrews | |
2009-12-04 | Add style function to output style() tags | Craig Andrews | |
Add 2 new events: StartStyleElement and EndStyleElement | |||
2009-12-04 | Add 2 new events: StartInlineScriptElement and EndInlineScriptElement | Craig Andrews | |
2009-12-04 | only write the javascript CDATA blocks if the type is javascript (it's not ↵ | Craig Andrews | |
the correct syntax for other languages) | |||
2009-12-04 | Merge commit 'refs/merge-requests/108' of ↵ | Brion Vibber | |
git://gitorious.org/statusnet/mainline into 0.9.x | |||
2009-12-04 | utility function to output inline JavaScript | Evan Prodromou | |
2009-12-04 | Add 4 new events: StartCssLinkElement, EndCssLinkElement, ↵ | Craig Andrews | |
StartScriptElement, EndScriptElement | |||
2009-11-20 | Disable XHTML Content-Type negotiation... You've foiled our plans for the ↵ | Brion Vibber | |
last time! XHTML mode breaks a lot of JS and has been causing trouble for Safari and Chrome, especially with the fancier new UI-side plugins like realtime and maps. | |||
2009-11-09 | Revert "Remove more contractions" | Brion Vibber | |
This reverts commit 5ab709b73977131813884558bf56d97172a7aa26. Missed this one yesterday... | |||
2009-11-08 | Remove more contractions | Siebrand Mazeland | |
* doesn't * won't * isn't * don't | |||
2009-11-08 | Restructure theme.php to define a class Theme | Evan Prodromou | |
For various reasons, it's nicer to have a class for theme-file paths and such. So, I've rewritten the code for determining the locations of theme files to be more OOPy. I changed all the uses of the two functions in the module (theme_file and theme_path) to use Theme::file and Theme::path respectively. I've also removed the code in common.php that require's the module; using a class means we can autoload it instead. | |||
2009-10-04 | Merge branch '0.8.x' into 0.9.x | Evan Prodromou | |
Conflicts: classes/Profile.php | |||
2009-10-03 | Using CDATA for autofocus script | Sarven Capadisli | |
2009-10-01 | Revert "Outputting UTF-8 charset in document header irrespective of mimetype." | Sarven Capadisli | |
This reverts commit 353f58c23149159306131b0819de713da6b69464. Even though outputting UTF-8 by default at all times is a good thing, it shouldn't be forced in startHTML(). | |||
2009-09-30 | Better check to see if the XML prolog should be outputted for XML | Sarven Capadisli | |
documents i.e., if best mimetype is */*xml, then use the XML prolog. | |||
2009-09-30 | Outputting UTF-8 charset in document header irrespective of mimetype. | Sarven Capadisli | |
2009-09-30 | Switched Doctype to XHTML 1.0 Strict (which best reflects the current | Sarven Capadisli | |
grammar in use) | |||
2009-09-03 | Created autofocus method to give focus to an element (primarily a form | Sarven Capadisli | |
control) on page onload. Updated some of the pages to use autofocus. | |||
2009-08-26 | define LACONICA and accept LACONICA for backwards compatibility | Evan Prodromou | |
2009-08-25 | change LACONICA to STATUSNET | Evan Prodromou | |
2009-08-25 | change controlyourself.ca to status.net | Evan Prodromou | |
2009-08-25 | change laconi.ca to status.net | Evan Prodromou | |
2009-08-25 | change Laconica and Control Yourself to StatusNet in PHP files | Evan Prodromou | |
2009-08-11 | two variables $public and $system were generating notices in ↵ | Brett Taylor | |
lib/htmloutputter.php, removed because these two parameters are null by default. | |||
2009-08-08 | Fix logic that determines if a URL is relative or absolute in script() and ↵ | Craig Andrews | |
cssLink() | |||
2009-08-06 | remove redundant/unnecessary lines | Craig Andrews | |
2009-08-06 | Check theme first for CSS files, then use the non-theme path. | Craig Andrews | |
Fixes CSS links in plugins | |||
2009-08-06 | Make 2nd and 3rd cssLink() arguments optional | Craig Andrews | |
2009-08-05 | Handle relative and absolute url parameters to script() and cssLink() | Craig Andrews | |
2009-08-05 | Added cssLink() and script() functions to htmloutputter | Craig Andrews | |
2009-08-05 | Accidentally caused the DOCTYPE to never be rendered - fix that. | Craig Andrews | |
2009-08-05 | Don't start HTML responses with <?xml if the document is served as text/html. | Craig Andrews | |
Starting a text/html mime type document with <?xml causes some browsers (previous version of Opera and IE) to switch to Quirks Mode. | |||
2009-08-05 | Switch DOCTYPE's to the XHTML 5 DOCTYPE | Craig Andrews | |
2009-02-11 | change htmloutputter to use exception instead of common_user_error | Evan Prodromou | |
2009-02-11 | Handle DB_DataObject errors better | Evan Prodromou | |
We try to handle DB_DataObject errors a little bit better. Previously, they just spit out a cryptic string to the browser with a suggestion to turn on debugging (not a good idea!). So, we catch the error, write the full error message to the log, and then tell users that the can contact the admins if they need to. | |||
2009-02-09 | trac #1160 fix dropdown xmloutput function for the selected attribute and ↵ | Robin Millette | |
fix newmessage auto-selected dropdown. | |||
2009-02-03 | trac533 Removed redundant calls to htmlspecialcharacters(). | Zach Copley | |
XMLWriter::writeAttribute() already takes care of the escaping for us, although that doesn't seem to be well documented. | |||
2009-01-22 | New HTTP error message classes for uiredesign | Zach Copley | |
2009-01-17 | Update. Added separate $title param for input submit | sarven | |
2009-01-17 | Added @title to input submit (reusing $label value until we really | sarven | |
need to make it custom) | |||
2009-01-17 | Updates to form styling | sarven | |
2009-01-16 | Update to forms and email settings | sarven | |
2009-01-15 | notice_favorite class | sarven | |
submit doesn't need a paragraph wrapper |