Search found 36 matches

by GravityDK
Sun Aug 29, 2010 9:08 am
Forum: [3.x][Archive] RFCs
Topic: [RFC] Default image resizing
Replies: 26
Views: 46784

Re: [RFC] Default image resizing


My thought now: when someone is attaching an image or posting an image with BBcode larger than in ACP enterend dimensions, a small thumbnail should be created and stored in the phpBB folder. When viewing a topic, this thumbnail should be shown. Clicking on the thumbnail should than result in ...
by GravityDK
Sun Aug 29, 2010 9:02 am
Forum: [3.x] Discussion
Topic: Make it easier for CDN of images, parallel download
Replies: 2
Views: 6291

Re: Make it easier for CDN of images, parallel download

Awesome. My mistake; I had even searched.
by GravityDK
Sun Aug 29, 2010 9:01 am
Forum: [3.x][Archive] RFCs
Topic: [RFC|Accepted] Overridable imageset and theme paths for CDNs
Replies: 17
Views: 79568

Re: [RFC|Accepted] Overridable imageset and theme paths for

I just wanted to cheer for this being accepted.
I would use a subdomain to get the parallel downloads: like subdomain.mysite.com.

I believe what I've read above will allow that usage.
by GravityDK
Sun Aug 29, 2010 7:18 am
Forum: [3.x][Archive] RFCs
Topic: [RFC] Require forum guests to enter their name or nickname
Replies: 8
Views: 41722

Re: [RFC] Require forum guests to enter their name or nickna

Agreed. I did not mean to confuse avatar with nickname. They are different.
by GravityDK
Sun Aug 29, 2010 7:13 am
Forum: [3.x] Discussion
Topic: Elevate 'view unread posts' to top
Replies: 1
Views: 4267

Elevate 'view unread posts' to top

I use 'view unread posts' all the time.

On my site, I have elevated it up the top of every page. Otherwise in 3.07pl1 it only appears on the board index page.
This is the result:
Screen shot 2010-08-29 at 4.47.39 PM.png

You'll see I removed it from the usual spot, so it's not doubled-up.

It's ...
by GravityDK
Sun Aug 29, 2010 6:39 am
Forum: [3.x] Discussion
Topic: Make it easier for CDN of images, parallel download
Replies: 2
Views: 6291

Make it easier for CDN of images, parallel download

Rationale: One of the Google Site Speed or YSlow recommendations is that you put static images onto a separate subdomain, or a content delivery network.
This allows the browser to perform parallel downloads of those images.

I have tried unsuccessfully to edit the various imageset locations to ...
by GravityDK
Sun Aug 29, 2010 2:28 am
Forum: [3.x] Discussion
Topic: Wrap text output in paragraph tags
Replies: 3
Views: 8565

Wrap text output in paragraph tags

Outcome: Instead of using linebreaks, wrap paragraphs in <p> tags.
Rationale: This is semantically correct HTML5. It also allows for typographic control of spacing between paragraphs.

How to implement was outlined in this thread .

Change functions_content.php from
function bbcode_nl2br($text ...
by GravityDK
Sun Aug 29, 2010 2:07 am
Forum: [3.x][Archive] RFCs
Topic: [RFC] Add greyscale to colour picker
Replies: 13
Views: 20731

[RFC] Add greyscale to colour picker

Outcome : Change picker to include greyscale, like this.
grey.jpg
How to:
editor.js in the style/../template

Find
/**
* Color pallette
*/
function colorPalette(dir, width, height)
{

Change to
/**
* Color pallette
*/
function colorPalette(dir, width, height)
{
var r = 0, g = 0, b = 0;
var ...
by GravityDK
Sun Aug 29, 2010 1:20 am
Forum: [3.x] Discussion
Topic: Enable AJAX Quick Edit
Replies: 9
Views: 21564

Enable AJAX Quick Edit

Marc1706 has a mod which allows for editing comments via AJAX rather than a complete page reload of the full edit.
My users love it.

Suggest folding the mod into core phpBB.
by GravityDK
Sun Aug 29, 2010 1:17 am
Forum: [3.x][Archive] RFCs
Topic: [RFC] Default image resizing
Replies: 26
Views: 46784

Re: [RFC] Default image resizing

As related issue, if implementing jQuery is accepted, then we could also use a jQuery lightbox to display attached images.
Perhaps this RFC could be broadened to consider handling of attachments to automatically create a small thumbnail, then on-click to display the full-sized version [this is ...