Search found 494 matches

by igorw
Tue Dec 18, 2012 1:41 am
Forum: [3.1/Ascraeus] Merged RFCs
Topic: Moving to namespaces
Replies: 17
Views: 37493

Re: Moving to namespaces

One thing that was not mentioned in this topic is what the original motivation for namespaces was, which we discussed in amsterdam. The problem with our current autoloading is that currently directory names for classes cannot contain any underscores. And that will be a problem for extensions, becaus...
by igorw
Mon Dec 17, 2012 11:09 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: Moving to namespaces
Replies: 17
Views: 37493

Re: Moving to namespaces

IMO we should decouple the StudlyCaps discussion from the namespaces discussion, as they are two separate decisions. And presenting them as a package may be harmful.
by igorw
Thu Nov 15, 2012 1:50 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC] Modern profile fields in 3.1
Replies: 83
Views: 246379

Re: [RFC] Modern profile fields in 3.1

+1

Removing WLM is a no-brainer. This should be done ASAP.

Deciding which ones to add is a bit more difficult. Facebook does not make much sense in most cases imo. Twitter on the other hand, +1.
by igorw
Fri Nov 09, 2012 9:59 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC|Merged] PHP 5.3.3 or more
Replies: 33
Views: 76576

Re: [RFC] PHP 5.3.3 or more

So, let's do it.
by igorw
Thu Sep 27, 2012 11:41 am
Forum: [3.x] Discussion
Topic: Dependency Management: Composer
Replies: 104
Views: 424863

Re: Dependency Management: Composer

It requires git for dependencies that are unstable. Currently phpBB has no unstable dependencies. Either way, git has become more mature on windows, I don't believe it is an issue at this point (maybe some of the windows dev team members can give their thoughts on this).
by igorw
Tue Aug 21, 2012 7:24 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC|Merged] General Hook Architecture of phpBB3.1
Replies: 121
Views: 228258

Re: [RFC|Accepted] General Hook Architecture of phpBB3.1

IMO we should create a null dispatcher (or a mock) and pass that one instead.
by igorw
Sun Aug 19, 2012 12:23 pm
Forum: [3.x] Discussion
Topic: Make phpBB faster/liter by replacing dynamic strings with static one
Replies: 15
Views: 26400

Re: Make phpBB faster/liter by replacing dynamic strings with static one

I remember discussing this optimization before. It would be quite easy to compile cached templates with the language baked in, one file per language. It's definitely something worth benchmarking, imo.
by igorw
Fri Aug 10, 2012 6:39 pm
Forum: General Development Discussion
Topic: Anyone running mysql 5.5?
Replies: 15
Views: 31842

Re: Anyone running mysql 5.5?

I've been running 5.5 for a while now. In strict mode even. :)
by igorw
Fri Aug 03, 2012 9:04 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC|Merged] Dependency Injection Container
Replies: 17
Views: 38807

Re: [RFC] Dependency Injection Container

Correct. A service definition contains the information the container needs to create that object. This includes class name and arguments. The arguments can reference other services and parameters. The container can construct any part of the object graph on demand. Another important part are tags. Yo...