Search found 156 matches

by rxu
Fri Sep 15, 2017 2:10 pm
Forum: [4.x] Tickets Discussion
Topic: PHPBB3-15851 One click update
Replies: 24
Views: 164479

Re: PHPBB3-14518 One click update - proposal for 3.3

koraldon
AFAIK the work on this feature is not even started, so nobody can tell yet.
by rxu
Sat Apr 29, 2017 1:44 am
Forum: [3.x] Discussion
Topic: Question/Problem concerning default roles
Replies: 2
Views: 10358

Re: Question/Problem concerning default roles

A role is just a set of existing permissions, which serves to help administrator job in adjusting users/groups/forums access. Deleting the role helps nothing and doesn't delete any actual permissions. Editing predefined roles is perfectly fine but I also don't see why there's an option to delete the...
by rxu
Sun Mar 12, 2017 8:35 am
Forum: [3.x] Discussion
Topic: [RFC][3.3.x] Supported PHP versions
Replies: 31
Views: 127013

Re: [RFC][3.3.x] Supported PHP versions

Was any choice made so far? :)
by rxu
Sun Feb 19, 2017 2:36 pm
Forum: [3.2/Rhea] Merged RFCs
Topic: [RFC] Integrate s9e\TextFormatter
Replies: 168
Views: 428615

Re: [RFC] Integrate s9e\TextFormatter

Thanks. There's a lot of things we still don't know about that stuff. var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[url]','[/url]', '[size=]','[/size]'<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME...
by rxu
Sun Feb 19, 2017 12:30 pm
Forum: [3.2/Rhea] Merged RFCs
Topic: [RFC] Integrate s9e\TextFormatter
Replies: 168
Views: 428615

Re: [RFC] Integrate s9e\TextFormatter

If you try to put the following text into the code bbcode tags: var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[url]','[/url]', '[size=]','[/size]'<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- ...
by rxu
Sun Jan 22, 2017 1:53 pm
Forum: [3.2/Rhea] Merged RFCs
Topic: [RFC] Integrate s9e\TextFormatter
Replies: 168
Views: 428615

Re: [RFC] Integrate s9e\TextFormatter

I would, although I have no clue where I could be useful (excepting real bbcode definitions and/or testing).
by rxu
Sun Jan 22, 2017 6:37 am
Forum: [3.2/Rhea] Merged RFCs
Topic: [RFC] Integrate s9e\TextFormatter
Replies: 168
Views: 428615

Re: [RFC] Integrate s9e\TextFormatter

Having 2 bbcodes - one without and another with the = sign, like that: [ref]{TEXT}[/ref] <span style="font-weight: bold;">{TEXT}</span> [ref={COLOR}]{TEXT}[/ref] <span style="font-weight: bold; color: {COLOR};">{TEXT}</span> And the former isn't parsed but the latter is. Is that ...
by rxu
Sat Dec 17, 2016 2:00 pm
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-13803 / PHPBB3-13891 - Reparsing text
Replies: 65
Views: 174102

Re: PHPBB3-13803 / PHPBB3-13891 - Reparsing text

What about that (within the reparser's base.php) /** * Gets the current reparser plugin class name */ public function get_name() { $reflection = new \ReflectionClass($this); return $reflection->getShortName(); } and then generate_text_for_storage( $text, ... $unparsed['enable_url_bbcode'], 'reparse....
by rxu
Sat Dec 17, 2016 11:50 am
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-13803 / PHPBB3-13891 - Reparsing text
Replies: 65
Views: 174102

Re: PHPBB3-13803 / PHPBB3-13891 - Reparsing text

Well yes, but reparser handles more places (posts, PMs, polls, forum rules, group descriptions, signatures), so having just 2 options is kind of not enough.