Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-18 | fix notice on non-https views | Brion Vibber | |
2010-10-18 | default for nofollow external is sometimes | Evan Prodromou | |
2010-10-18 | options to nofollow external links in notices | Evan Prodromou | |
2010-10-14 | Merge branch '2828' into 0.9.x | Brion Vibber | |
2010-10-14 | Fix for ticket #2828: apostrophe in site name set in installer created a ↵ | Brion Vibber | |
broken config.php. Now running values through var_export() before putting them into the config.php, ensuring strings will be properly quoted. | |||
2010-10-14 | document and default for site|ssllogo | Evan Prodromou | |
2010-10-14 | fix copy-and-paste error in javascript url creation | Evan Prodromou | |
2010-10-14 | make the logo be compatible with HTTPS pages, if possible | Evan Prodromou | |
2010-10-14 | Make HTTPS urls in File::url() if necessary | Evan Prodromou | |
2010-10-14 | correctly use sslserver if it is set | Evan Prodromou | |
2010-10-14 | use HTTPS for scripts and stylesheets if the current page is HTTPS | Evan Prodromou | |
2010-10-14 | show HTTPS urls for JavaScript if HTTPS used for page | Evan Prodromou | |
2010-10-14 | consolidate some theme path code between ssl and non-ssl | Evan Prodromou | |
2010-10-14 | use HTTPS for favicon.ico if page is HTTPS | Evan Prodromou | |
2010-10-14 | try to show HTTPS-encrypted theme files for HTTPS-encrypted pages | Evan Prodromou | |
2010-10-14 | try and show an SSL image for the creative commons image | Evan Prodromou | |
2010-10-14 | add static method StatusNet::isHTTPS() | Evan Prodromou | |
2010-10-13 | Merge remote branch 'gitorious/0.9.x' into 0.9.x | Evan Prodromou | |
2010-10-13 | Clean up remote avatar temporary files if we fail before saving them into ↵ | Brion Vibber | |
avatars directory (OMB core, OStatus, WikiHowProfile, YammerImport) | |||
2010-10-12 | Merge branch 'oauth-1.0a' into 0.9.x | Zach Copley | |
2010-10-12 | Spelling - OAuth not Oath | Zach Copley | |
2010-10-12 | Add a basic group deletion for moderator users. | Brion Vibber | |
2010-10-12 | Followup to IIS installer tweaks in [9bb48c36]: | Brion Vibber | |
* skip 0-byte config files when initializing, go ahead and redirect to installer if no non-0-byte files * tweak warning on installer.php to let you know if you have a 0-byte config.php that's not writable, as opposed to generally already having a config.php with data in it | |||
2010-10-12 | Merge remote branch 'gitorious/0.9.x' into 0.9.x | Evan Prodromou | |
2010-10-07 | Update ApiOauthAccessTokenAction to OAuth 1.0a | Zach Copley | |
2010-10-07 | Workaround for regression in input validation due to more PCRE oddities. ↵ | Brion Vibber | |
Recommend redoing common_validate_utf8() using something more reliable, perhaps. :P | |||
2010-10-07 | Use 7 digits for oob OAuth pin instead of 6 | Zach Copley | |
2010-10-07 | Events for showing the notice form | Evan Prodromou | |
2010-10-06 | - Update ApiOauthAuthorizeAction to 1.0a | Zach Copley | |
- Fix enumerable bugs - New page for displaying 1.0a verifier (still needs work) | |||
2010-10-06 | - New base InfoAction for dialog box like msgs | Zach Copley | |
- Fix titles on error pages | |||
2010-10-06 | Update ApiOauthRequestTokenAction to support OAuth 1.0a | Zach Copley | |
2010-10-06 | Override new_request_token() to store OAuth 1.0a verified callback URL | Zach Copley | |
2010-10-06 | Stab that 'p' parameter! | Zach Copley | |
2010-10-06 | Add plain text error format to clientError() | Zach Copley | |
2010-10-06 | Fix bad reference | Zach Copley | |
2010-10-06 | Strip out the special 'p' paramter added by index.php from | Zach Copley | |
$_SERVER['QUERY_STRING'] before doing OAuth requests. Required by the latest version of the OAuth lib. | |||
2010-10-06 | Basic validation of UTF-8 input via GET/POST vars: invalid UTF-8 sequences ↵ | Brion Vibber | |
will cause the string to drop. Not necessarily super-thorough; should be improved in future to drop individual bad sequences, do normalization of combining forms, etc. General input validation (for ints, types of strings, etc) still would be good to have! | |||
2010-10-04 | Urgh... fix for fix for horrific $ escaping problems (some awful mix of ↵ | Brion Vibber | |
single and double-quoted strings in the terror that is mail.php) | |||
2010-10-04 | Fix unescaped dollar signs in double-quoted strings due to localization ↵ | Brion Vibber | |
updates (%1$s etc) | |||
2010-09-30 | Add a $config['plugins']['locale_path'] which can be set to override the ↵ | Brion Vibber | |
individual plugins' locale subdirectories. This will apply to *ALL* plugins in *ALL* languages, so should probably only be used when doing site customization... You'd probably do: $config['site']['locale_path'] = '/srv/awesome/data/locale'; $config['plugins']['locale_path'] = '/srv/awesome/data/locale'; with a structure like: srv/ awesome/ data/ locale/ en/ LC_MESSAGES/ statusnet.po OpenID.po AnonymousFave.po etc, all alongside each other. You could separate plugins from the core if you like. Where locale files have not already been generated, you can build one for a plugin like so: php scripts/update_po_templates.php --plugin=MyPlugin and pull out the template file: plugins/MyPlugin/locale/MyPlugin.pot Edit that (make sure you at least set the CHARSET, probably to UTF-8) and save your customized .po files into the structure as above, and use msgfmt to generate .mo files for final output. | |||
2010-09-30 | ForceGroup plugin: optionally force new users to join a particular group or ↵ | Brion Vibber | |
set of groups on registration; and/or to force posts by members of particular groups to be posted into those groups even if not explicitly mentioned. The posting feature requires a couple quick hook additions in core. | |||
2010-09-30 | Merge branch 'anon-fave-plugin' | Zach Copley | |
2010-09-30 | Merge branch 'master' of gitorious.org:statusnet/mainline into feedfix | Brion Vibber | |
2010-09-30 | Always specify UTF-8 targt charset for html_entity_decode(); default is ↵ | Brion Vibber | |
8-bit ISO-8859-1 which causes things to break when we later pass them through things that expect to work with UTF-8. For instance, running through preg_replace() with the /u option results in NULL, leading to problems with OStatus and SubMirror generating their plaintext versions and doing length-cropping. | |||
2010-09-29 | Add Start/EndFavorNoticeForm and Start/EndDisFavorNoticeForm hooks | Zach Copley | |
2010-09-29 | Add Start/EndShowNoticeInfo events | Zach Copley | |
2010-09-29 | New eventsi: Start/EndShowNoticeOptions and Start/EndShowFaveForm | Zach Copley | |
2010-09-29 | add hooks to the feedlist widget to give fine-grained control over feed links | Evan Prodromou | |
2010-09-29 | * i18n/L10n and translator documentation updates. | Siebrand Mazeland | |
* whitespace and indentation updates | |||
2010-09-28 | Localisation updates from http://translatewiki.net | Siebrand Mazeland | |
* add support for Hungarian (hu) |