Search found 1155 matches

by Oleg
Tue Mar 16, 2010 9:04 am
Forum: [3.0/Olympus] New features discussion
Topic: PostgreSQL Fulltext Search
Replies: 40
Views: 266495

Re: PostgreSQL Fulltext Search

What is required in order for postgresql fulltext search to be accepted into phpbb proper?
by Oleg
Mon Mar 15, 2010 8:48 pm
Forum: Chit Chat
Topic: topsecret area51 word game
Replies: 1276
Views: 1119967

Re: topsecret area51 word game

Robot
by Oleg
Mon Mar 15, 2010 8:39 pm
Forum: [3.x] Discussion
Topic: Static stylesheets for themes stored in db
Replies: 7
Views: 16633

Re: Static stylesheets for themes stored in db

The current behavior and what is in the trunk is to serve/create a file called e.g. foostyle-en_us.css when foostyle has no en-us imageset. Either all language/style combinations "exist" and are servable (wasting disk and bandwidth), or forum code has to check whether user's language/style...
by Oleg
Mon Mar 15, 2010 12:32 pm
Forum: [3.0/Olympus] Discussion
Topic: Root .htaccess in 3.0.7 breaks boards on some hosts
Replies: 10
Views: 23739

Re: Root .htaccess in 3.0.7 breaks boards on some hosts

my suggested solution would be to ignore the .htaccess in the auto updater if the file doesn't exist to begin with. Does that sound okay? I imagine a better solution would tell the user that they are missing .htaccess, and give them an option to install new .htaccess or ignore it, along with instru...
by Oleg
Sat Mar 13, 2010 6:58 am
Forum: [3.x] Discussion
Topic: Static stylesheets for themes stored in db
Replies: 7
Views: 16633

Re: Static stylesheets for themes stored in db

You might want to look at the code of acp_styles.php in old_trunk or now on git the feature/ascraeus-experiment branch: http://github.com/phpbb/phpbb3/blob/feature/ascraeus-experiment/phpBB/modules/acp/acp_styles.php It should already do what you are looking for. Thanks for the pointer. This is the...
by Oleg
Fri Mar 12, 2010 10:51 pm
Forum: [3.x] Discussion
Topic: Plugin code integration with core
Replies: 12
Views: 23811

Plugin code integration with core

Existing topics about plugins talk about how they are distributed and named, sidestepping what I think is the most important issue, which is how is code from plugins going to be merged with code from the core? Let's take a simple example. I want to display a block on the index page above the forum l...
by Oleg
Fri Mar 12, 2010 10:28 pm
Forum: [3.0/Olympus] Discussion
Topic: Drop php closing tags
Replies: 15
Views: 39313

Re: Drop php closing tags

Are you referring to modifications in source control or release packages? The former is I think a moot point, since changes are going to be at the very end they should be unlikely to conflict with anything. The latter has already happened with 3.0.7-pl1, which changed every single php file due to dr...
by Oleg
Fri Mar 12, 2010 9:12 pm
Forum: [3.0/Olympus] Discussion
Topic: Drop php closing tags
Replies: 15
Views: 39313

Drop php closing tags

Closing php tags (?>) are not required when they are at the end of file. There are multiple reasons to not have them: 1. No worries about outputting whitespace before headers by accident. 2. At least the 'patch' utility adds newline at end of file when applying patches. 3. Various utilities such as ...
by Oleg
Fri Mar 12, 2010 10:25 am
Forum: [3.x] Discussion
Topic: Ajax in phpbb 3.1
Replies: 8
Views: 14868

Re: Ajax in phpbb 3.1

I think pagination could use ajax I really don't understand the reasoning behind this request. Displaying page 2 of anything compared to page 1 still requires the code to do authentication, authorization, etc. and often times the only common thing in html output between page 1 and page 2 is the hea...