aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter/s9e
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/14150] Update fast-image-size to newest versionMarc Alexander2015-09-081-1/+1
| | | | PHPBB3-14150
* [ticket/14128] Fix img bbcode regression, lost postimage classMatt Friedman2015-08-261-1/+1
| | | | PHPBB3-14128
* [ticket/13935] Allow more admin-configurable schemes in post linksJoshyPHP2015-07-151-1/+18
| | | | PHPBB3-13935
* Merge pull request #3758 from s9e/ticket/14008Tristan Darricau2015-07-131-0/+6
|\ | | | | | | [ticket/14008] Do not add a user_id value to quotes from guests
| * [ticket/14008] Do not add a user_id value to quotes from guestsJoshyPHP2015-07-131-0/+6
| | | | | | | | PHPBB3-14008
* | [ticket/14000] Added support for emojiJoshyPHP2015-07-121-0/+5
|/ | | | PHPBB3-14000
* Merge pull request #3623 from s9e/ticket/10620Tristan Darricau2015-07-074-24/+123
|\ | | | | | | [ticket/10620] Quote improvements
| * [ticket/10620] Removed extraneous quotes from attribute valuesJoshyPHP2015-06-251-6/+12
| | | | | | | | PHPBB3-10620
| * [ticket/10620] Implemented quote improvementsJoshyPHP2015-06-254-18/+111
| | | | | | | | PHPBB3-10620
* | [ticket/13970] Save the value of the optional [code] parameterJoshyPHP2015-06-271-1/+1
|/ | | | PHPBB3-13970
* [ticket/13901] Add whitespace to short, multiline quotes for readabilityJoshyPHP2015-05-301-1/+1
| | | | PHPBB3-13901
* [ticket/13901] Add more whitespace to long quotes for readabilityJoshyPHP2015-05-301-1/+4
| | | | PHPBB3-13901
* Merge pull request #3561 from s9e/ticket/10922Tristan Darricau2015-05-291-2/+13
|\ | | | | | | [ticket/10922] Added support for body and subject in email BBCode
| * [ticket/10922] Replaced urlencode() with rawurlencode()JoshyPHP2015-04-281-1/+1
| | | | | | | | | | | | | | RFC-6068 asks for percent-encoding so that seems more correct. Not sure about that one. PHPBB3-10922
| * [ticket/10922] Added support for body and subject in email BBCodeJoshyPHP2015-04-281-2/+13
| | | | | | | | PHPBB3-10922
* | Merge pull request #3616 from s9e/ticket/13847Tristan Darricau2015-05-291-0/+38
|\ \ | | | | | | | | | [ticket/13847] Move quote generation to text_formatter.utils
| * | [ticket/13847] Changed enquote() logic to use whichever is the shortestJoshyPHP2015-05-251-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | Will enclose attribute values in single- or double- quotes depending on whichever requires the least escaping. Characters that need to be escaped are always escaped regardless. PHPBB3-13847
| * | [ticket/13847] Move quote generation to text_formatter.utilsJoshyPHP2015-05-251-0/+37
| | | | | | | | | | | | PHPBB3-13847
* | | Merge pull request #3622 from s9e/ticket/13860Tristan Darricau2015-05-291-1/+7
|\ \ \ | | | | | | | | | | | | [ticket/13860] Fixed array-to-string conversion
| * | | [ticket/13860] Fixed array-to-string conversionJoshyPHP2015-05-281-1/+7
| |/ / | | | | | | | | | PHPBB3-13860
* | | [ticket/11742] Removed tabs-to-space conversion in [code]JoshyPHP2015-05-231-43/+0
|/ / | | | | | | PHPBB3-11742
* | Merge pull request #3586 from s9e/ticket/13680Nicofuma2015-05-201-0/+25
|\ \ | | | | | | | | | [ticket/13680] Updated quote notifications
| * | [ticket/13680] Renamed get_quote_authors to get_outermost_quote_authorsJoshyPHP2015-05-151-2/+2
| | | | | | | | | | | | PHPBB3-13680
| * | [ticket/13680] Updated quote notificationsJoshyPHP2015-05-151-0/+25
| |/ | | | | | | | | | | | | Added get_quote_authors() to text_formatter.utils service to retrieve the names used in first-level quotes PHPBB3-13680
* | [ticket/13801] Updated event description [ci skip]JoshyPHP2015-05-181-2/+3
| | | | | | | | PHPBB3-13801
* | [ticket/13801] Updated comments for clarityJoshyPHP2015-05-181-1/+1
| | | | | | | | PHPBB3-13801
* | [ticket/13801] Removed user dependency from text_formatter.s9e.parserJoshyPHP2015-05-181-19/+8
|/ | | | PHPBB3-13801
* [ticket/8672] Use fastImageSize in classesMarc Alexander2015-04-241-2/+2
| | | | PHPBB3-8672
* [ticket/8672] Updated the text_formatter.s9e serviceJoshyPHP2015-04-241-9/+5
| | | | PHPBB3-8672
* [ticket/11768] Stylistic change. No functional change intendedJoshyPHP2015-04-021-1/+1
| | | | PHPBB3-11768
* [ticket/11768] Added some default template parametersJoshyPHP2015-04-021-2/+7
| | | | PHPBB3-11768
* [ticket/11768] Moved the routine that replaces tabs with spacesJoshyPHP2015-04-021-16/+28
| | | | | | ...to its own method. Also added a quick stripos() check for performance. PHPBB3-11768
* [ticket/11768] Renamed service varsJoshyPHP2015-04-022-18/+16
| | | | | | | The name of the variable that holds the service instance is now consistent across events. PHPBB3-11768
* [ticket/11768] Restored get_parser() / get_renderer()JoshyPHP2015-04-022-0/+20
| | | | PHPBB3-11768
* [ticket/11768] Moved parser/renderer setup eventsJoshyPHP2015-04-022-11/+11
| | | | | | | Moved down the setup events to make them happen after the service is configured and ready to be used PHPBB3-11768
* [ticket/11768] Updated s9e\TextFormatterJoshyPHP2015-04-021-1/+1
| | | | PHPBB3-11768
* [ticket/11768] Updated utils serviceJoshyPHP2015-04-021-18/+23
| | | | | | | Updated docblocks. Removed remove_formatting() because it overlaps with clean_formatting() PHPBB3-11768
* [ticket/11768] Added parser eventsJoshyPHP2015-04-022-2/+28
| | | | | | | Added core.text_formatter_s9e_parse_before and core.text_formatter_s9e_parse_after PHPBB3-11768
* [ticket/11768] Added renderer eventsJoshyPHP2015-04-021-3/+27
| | | | | | | Added core.text_formatter_s9e_render_before and core.text_formatter_s9e_render_after PHPBB3-11768
* [ticket/11768] Added core.text_formatter_s9e_renderer_setup eventJoshyPHP2015-04-021-3/+20
| | | | PHPBB3-11768
* [ticket/11768] Added core.text_formatter_s9e_parser_setup eventJoshyPHP2015-04-021-4/+29
| | | | PHPBB3-11768
* [ticket/11768] Removed get_parser() / get_renderer() accessorsJoshyPHP2015-04-022-20/+0
| | | | | | There's no need to access the s9e\TextFormatter objects outside of events. PHPBB3-11768
* [ticket/11768] Updated the text_formatter.s9e.utils serviceJoshyPHP2015-04-021-14/+3
| | | | | | | Made it use s9e\TextFormatter\Utils. Refactored some tests to make them more readable. PHPBB3-11768
* [ticket/11768] Removed superfluous whitespace [ci skip]JoshyPHP2015-04-021-3/+0
| | | | PHPBB3-11768
* [ticket/11768] Preserve comments in custom BBCodesJoshyPHP2015-04-021-0/+4
| | | | PHPBB3-11768
* [ticket/11768] Added configurator eventsJoshyPHP2015-04-021-2/+28
| | | | PHPBB3-11768
* [ticket/11768] Updated merge_templates(). No functional change intendedJoshyPHP2015-04-021-5/+10
| | | | PHPBB3-11768
* [ticket/11768] Updated merge_templates(). No functional change intendedJoshyPHP2015-04-021-3/+3
| | | | PHPBB3-11768
* [ticket/11768] Updated various annotationsJoshyPHP2015-04-023-19/+16
| | | | PHPBB3-11768
* [ticket/11768] Replaced array access with call to $user->lang()JoshyPHP2015-04-021-1/+1
| | | | PHPBB3-11768