Search found 291 matches

by ToonArmy
Mon Sep 26, 2011 11:44 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC|Merged] Use Google's jQuery
Replies: 60
Views: 109876

Re: [RFC] Use Google's jQuery

As I said, you need to have certain conditions. Try loading a script from a site which blackholes all traffic sent to it, or that accepts a request and sleeps for 1 hour. On freebsd, https://bugzilla.mozilla.org/show_bug.cgi?id=684758 causes firefox 3.x-6.x to burn 100% cpu indefinitely when it tri...
by ToonArmy
Sun Sep 25, 2011 12:14 pm
Forum: [3.x] Discussion
Topic: New template variables
Replies: 12
Views: 24126

Re: New template variables

http://tracker.phpbb.com/browse/PHPBB3-10387

Seems there is actually an ON_PAGE variable which maybe set.
by ToonArmy
Mon May 09, 2011 10:54 pm
Forum: [4.x] Discussion
Topic: Default Editor - BBCode Shortcuts
Replies: 14
Views: 56532

Re: Default Editor - BBCode Shortcuts

phpBB already supports accelerator keys: with MSIE or FFOX on Windows you can hit ALT+B for clicking the Bold-button. With OPER it's not that easy ( SHIFT+ESC , then press the key of choice) unless you use an extension which enables you to do the same with ALT+SHIFT+B . While "accelerator keys...
by ToonArmy
Mon May 09, 2011 10:43 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
Replies: 74
Views: 161793

Re: [RFC|Accepted] Include and use jQuery

Couple of things I've picked up on. First off jQuery's no conflict option should be enabled by default, it stops people using the $ shortcut directly. All phpBB JS should be wrapped in a closure or use the jQuery wellvariable directly, this keeps things clean and means people who embed their board d...
by ToonArmy
Sun Nov 21, 2010 10:39 pm
Forum: [3.0/Olympus] Discussion
Topic: WinCache ACM backend
Replies: 13
Views: 31778

Re: WinCache ACM backend

I have an implementation of this sat in my repository, I've just never got around to testing it. https://github.com/cs278/phpbb3/compare ... ncache-acm
by ToonArmy
Sat Oct 09, 2010 8:58 pm
Forum: [3.x] Discussion
Topic: Replace download.php src by direct src for inline images
Replies: 9
Views: 24107

Re: Replace download.php src by direct src for inline images

TerryE wrote:I don't know of any ISP shared web service which doesn't include GD, so the flexibility and performance impacts of this as a default option would be minimal.
They exist, and there are others with worse restrictions for example realpath() returning an empty string for any input.
by ToonArmy
Thu Sep 30, 2010 6:54 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC]Remove Install file
Replies: 17
Views: 33317

Re: [RFC]Remove Install file

Could probably expanded to chmoding the cache/ etc. directories as well.
by ToonArmy
Mon Sep 27, 2010 11:36 am
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
Replies: 74
Views: 161793

Re: [RFC] Include and use jQuery

Hmm, I just tested out Invision IP.Board. They provide an option in the Admin section that lets you choose to have javascript files (they use scriptaculous and prototype) load from Google's servers or from your own server. Kind of a nice option. Maybe phpBB could implement it that way. In terms of ...
by ToonArmy
Mon Sep 27, 2010 11:35 am
Forum: [3.x] Discussion
Topic: Last topic titles
Replies: 19
Views: 34830

Re: Last topic titles

No, but I'd like to think we could deliver it in 3.2.
by ToonArmy
Mon Sep 27, 2010 11:32 am
Forum: [3.x] Discussion
Topic: sql_build_query change proposal
Replies: 3
Views: 9238

Re: sql_build_query change proposal

As a crude hack you could probably do

Code: Select all

'FROM' => array(
TOPICS_TABLE => 't1',
TOPICS_TABLE . ' ' => 't2',
)