Search found 41 matches
- Wed Mar 03, 2010 9:47 am
- Forum: Coding Critique
- Topic: Muted Template <Review/Critique/Suggestions>
- Replies: 31
- Views: 22206
Re: Muted Template <Review/Critique/Suggestions>
Most posts here discuss patterns, not frameworks. We did consider a specific implementation of a pattern by a specific framework, but that was not one of the contention points discussed. Also, no templating system was mentioned in the sense of alternative markup - only different approaches to logic...
- Wed Mar 03, 2010 9:33 am
- Forum: Coding Critique
- Topic: Muted Template <Review/Critique/Suggestions>
- Replies: 31
- Views: 22206
Re: Muted Template <Review/Critique/Suggestions>
I've extracted two primary questions for me and I'll do my best to respond to them. "Why use a template language at all?" "Why this over Smarty?" Unfortunately, those are probably two questions that only you are asking. :( You have an alternate syntax, so really the big question...
- Tue Mar 02, 2010 9:51 pm
- Forum: Coding Critique
- Topic: Muted Template <Review/Critique/Suggestions>
- Replies: 31
- Views: 22206
Re: Muted Template <Review/Critique/Suggestions>
Sorry for continuing to ramble (I've just been thinking of examples as one poser requested I post some), I just realized I didn't really talk about one other thing I wanted to mention. I've made a "call" tag which can call pre-registered php functions. This means that someone who doesn't w...
- Tue Mar 02, 2010 7:20 pm
- Forum: Coding Critique
- Topic: Muted Template <Review/Critique/Suggestions>
- Replies: 31
- Views: 22206
Re: Muted Template <Review/Critique/Suggestions>
By the way, I hope we aren't stealing this thread from the OP, maybe this discussion should continue elsewhere... Possibly, but I'd love to get some more feedback on my project and I'm just glad people are posting in this thread, so don't just go. :) *EDIT: For anyone skimming this and skipping the...
- Tue Mar 02, 2010 6:58 pm
- Forum: Coding Critique
- Topic: Muted Template <Review/Critique/Suggestions>
- Replies: 31
- Views: 22206
Re: Muted Template <Review/Critique/Suggestions>
So let me clarify, I am not touting this as a replacement for any kind of MVC frameworks. I believe it can even be used within such a framework for execution in specific situations if your problem is similar to my own. The strength of this is fairly domain specific to the problems I am personally fa...
- Tue Mar 02, 2010 6:39 pm
- Forum: Coding Critique
- Topic: Muted Template <Review/Critique/Suggestions>
- Replies: 31
- Views: 22206
Re: Muted Template <Review/Critique/Suggestions>
I've extracted two primary questions for me and I'll do my best to respond to them. Keep in mind I'm really just presenting my personal reasoning, and I am not a Smarty guru, so any corrections on claims I've made about Smarty would be welcomed! Really it's difficult to provide examples on a large e...
- Tue Mar 02, 2010 12:38 am
- Forum: PHP - Theory and Design
- Topic: Is PHP code interpreted or compiled ?
- Replies: 51
- Views: 17753
Re: Is PHP code interpreted or compiled ?
Design != Perfection. PHP does do design, for one there is a community feedback process before any decision is made. These RFCs are done in full public view so I don't know how you can sit there and deny it Here is a link - http://wiki.php.net/rfc , if this is not design, I must know what is. Well,...
- Mon Mar 01, 2010 11:10 pm
- Forum: PHP - Theory and Design
- Topic: Is PHP code interpreted or compiled ?
- Replies: 51
- Views: 17753
Re: Is PHP code interpreted or compiled ?
Not all C++ compilers all support all of the possible features of the C++ language, but they are still considered compilers anyways. Likewise I would say a PHP compiler need not support every PHP language feature. I agree that PHP is "mostly" interpreted, but it is also "somewhat&quo...
- Mon Mar 01, 2010 8:22 pm
- Forum: PHP - Theory and Design
- Topic: Is PHP code interpreted or compiled ?
- Replies: 51
- Views: 17753
Re: Is PHP code interpreted or compiled ?
just that so far I am unaware of any compilers that translate PHP into anything other than opcode which supports this feature. Are there even compilers in any language that support eval? C++ doesn't have an eval function, it is still compiled. Why must a PHP->C++ compiler support eval if C++ does n...
- Mon Mar 01, 2010 4:39 pm
- Forum: PHP - Theory and Design
- Topic: Is PHP code interpreted or compiled ?
- Replies: 51
- Views: 17753
Re: Is PHP code interpreted or compiled ?
Compilers are programs which transform code from one form to another. PHP is as has been said, a language compiled into an intermediary language which is then interpreted. Compilers which turn PHP into C/C++ programs exist such as HipHop and PHC. These implementations typically have problems with re...
- Sat Feb 27, 2010 12:53 pm
- Forum: Coding Critique
- Topic: Muted Template <Review/Critique/Suggestions>
- Replies: 31
- Views: 22206
Muted Template <Review/Critique/Suggestions>
Hello everyone! I'm new to this forum, I found it when searching for a place specifically to get feedback on a project of mine. This is "Muted Template" which is yet another templating language built over top of PHP which is itself a templating language. Some extra stuff is included becaus...