Search found 466 matches

by wGEric
Fri Nov 16, 2012 8:13 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC] Coding guidelines: var keyword in js per line
Replies: 62
Views: 55908

Re: [RFC] Coding guidelines: var keyword in js per line

2. one var for multiple lines creates additional work for reviewers to figure out whether or not newly added variables are correctly scoped. Save yourself some time, use JSLint or JSHint. 3. There are as a matter of fact more non-developers supporting this RFC than there are opposing it. I'm assumi...
by wGEric
Thu Nov 15, 2012 8:12 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC] Modern profile fields in 3.1
Replies: 83
Views: 253357

Re: [RFC] Modern profile fields in 3.1

igorw wrote:Facebook does not make much sense in most cases imo.
Why?
by wGEric
Thu Nov 08, 2012 7:43 pm
Forum: [3.x] Rejected RFCs
Topic: [RFC|Rejected] warn user on closing edtior when text changed
Replies: 11
Views: 29359

Re: [RFC] warn user on closing edtior when text changed

If I changed my mind when posting and decided to close browser tab, I did that on purpose. I don't want script to second guess my decision. There are cases when you accidentally close a tab. Many times I've hit cmd + q instead of cmd + w. Restore previous session is one of my favorite features. Aut...
by wGEric
Fri Nov 02, 2012 5:53 pm
Forum: [3.x] Discussion
Topic: HTML Template in Emails.
Replies: 31
Views: 27209

Re: HTML Template in Emails.

I'm asking because another thing to consider is the user's bandwidth. If user's have their phones configured to get E-mail from the same account they get their notifications sent to (like I do), if the images are not cached, that 1-3 KB text E-mail gets doubled to 2-6 KB for the text and HTML and t...
by wGEric
Wed Oct 10, 2012 4:20 pm
Forum: General Development Discussion
Topic: RFC Process Change Suggestion
Replies: 37
Views: 66821

Re: RFC Process Change Suggestion

Here is another Q&A/voting system written in PHP and released under GPL v2: http://question2answer.org WebPlatform.org uses it. Looks like you can vote on questions and answers underneath it. There are tags so you could categorize items. Here is a list of Stack Exchange clones: http://meta.stack...
by wGEric
Thu Oct 04, 2012 4:36 pm
Forum: [3.x] Discussion
Topic: Friends/Foes
Replies: 17
Views: 21224

Re: Friends/Foes

The ability to ignore people is a useful feature and should not be removed. Renaming foes to something like "Ignore List" would be a good idea since foes isn't very clear on what it does.
by wGEric
Wed Aug 08, 2012 4:27 pm
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-10418 - WYSIWYG Editor/Rich Text Editor
Replies: 461
Views: 1059061

Re: [RFC] WYSIWYG Editor/Rich Text Editor

From what I've seen with CKEditor, it's definitely possible to do something like custom bbcodes and have them rendered. The problem is that, at least in their examples, it uses a structure to design the HTML elements instead of just accepting a block of HTML code. I've found a simple example for ad...
by wGEric
Thu Jun 28, 2012 5:37 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC] Coding guidelines: var keyword in js per line
Replies: 62
Views: 55908

Re: [RFC] Coding guidelines: var keyword in js per line

I understand that you don't particularly care for code review, which involves reading the diffs, which is I'm guessing why you attempt to discount readability of diffs as you just did. There are many tools that make reading a diff easier. These tools, even github, make it real easy to see that only...
by wGEric
Thu Jun 28, 2012 12:12 am
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-10418 - WYSIWYG Editor/Rich Text Editor
Replies: 461
Views: 1059061

Re: [RFC] WYSIWYG Editor/Rich Text Editor

When I say doesn't support I mean that it shows the raw bbcode in the rich text mode. It doesn't have a WYSIWYG component. Rich Text: This is bold and here is a [custom]custom bbcode[/custom] Raw (spaces added to prevent bbcode from rendering): This is bold and here is a [custom]custom bbcode[/custo...
by wGEric
Wed Jun 27, 2012 4:26 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC] Coding guidelines: var keyword in js per line
Replies: 62
Views: 55908

Re: [RFC] Coding guidelines: var keyword in js per line

Oleg wrote:I would rather not write broken code to begin with. Or read it for that matter.
Then don't? I don't see what this has to do with your argument of variables being added to the global scope.