Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
overall question about code
I wanted to suggest a few things for vanilla (before development goes on to add features).
1) Seperate frontend (HTML/CSS) from backend (PHP, SQL)
2) code clean up
What do you guys think? ;-)
Regarding "2", here is what I think:
2.1) Optimize the PHP/HTML issues to take "load" off of the parser (get rid off "foo=\"bar\"", replace with 'foo="bar"' and a few others of those).
2.2) Write more methods inside classes $foo->bar->foo2->bar2->whatever is just weird and could be replaced by nice function call inside the class. Those wouldn't necessarily be "faster", but it would make the code more readable and easier to be worked with. Don't know if this is wanted. :)
Why do I propose this? I found it incredibly hard to put a style on this board because the code is a bit too much of a cocktail for my taste. I think a clean design will also improve contributions made and security in the long run.
:-)
0
This discussion has been closed.
Comments
As for number 2 (tehehe), I think mark has changed all " and ' as appropriate for 0.9.3. How much of 2.2 has been done or is willing to be done i dont know. But i'm sure if it bothers you and you wanna do it (and it has no detrimental effects) he'd be willing to take it on board (pun intended).