Commit Graph
9 Commits
Author SHA1 Message Date
Jakobud 31c730c913 Passing a null $value to Form::submit(), Form::reset() or Form::button() was throwing an Exception. I made the default $value = null for those methods. They result in the following respective valid HTML: <input type='submit'/> <input type='reset'/> <button></button>
Signed-off-by: Jakobud <[email protected]>
2012-08-03 10:47:34 -06:00
Jakobud 761186a676 Reorganized Control Structure section.
Added Control Structure to TOC.
Added in missing @elseif example.
Move the Blade Comments to more appropriate section.
Simplified Blade Comments examples.
Minor changes to @parent example.

Signed-off-by: Jakobud <[email protected]>
2012-07-31 12:00:47 -06:00
Jakobud 2c7bf657ed Removed empty Coding Standards doc.
Removed Coding Standards from Table of Contents Sidebar.

Signed-off-by: Jakobud <[email protected]>
2012-07-30 13:32:53 -06:00
Jakobud fd6e73aaa7 Added TortoiseGit contribution docs.
Revised Command-Line contribution docs.

Signed-off-by: Jakobud <[email protected]>
2012-07-30 12:12:07 -06:00
Jakobud 72d091ee54 Added first draft of command-line contributing docs.
Added empty files for coding standards and tortoisegit docs.
Adjusted Contributions in the Table of Contents sidebar.

Signed-off-by: Jakobud <[email protected]>
2012-07-30 10:19:42 -06:00
Jakobud 5622f6e35c Added basic GitHub contribution docs. 2012-07-27 11:28:40 -06:00
Jakobud 433318181b In the call() method, the exception wasn't being thrown if only 1 or more than 2 arguments were passed to the method. Fixed conditional statement to only accept exactly 2 arguments.
In the route() method, URI::current() was evaluating as '/' in all situations. It was never evaluating as the route that you specified when executing the command. This could be part of a larger underlying bug with Symfony's HttpFoundation\Request class. It might be a band-aid fix, but replacing URI::current() with $_SERVER['REQUEST_URI'] allows the method to run the correct route.
These fixes uncovered what I believe is potentially another bug. When var_dump($route->response()) is run, "NULL" and a newline is appended to the output. It's something to do with var_dump(), as echo $route->response() echo's the correct output without the extra "NULL".

Signed-off-by: Jakobud <[email protected]>
2012-07-26 16:00:46 -06:00
Jakobud 7475bcd348 Added documentation for the @render() Blade method
Signed-off-by: Jakobud <[email protected]>
2012-07-25 10:08:54 -06:00
Jakobud 289c02ab47 Added documentation for paginate's second optional argument.
Signed-off-by: Jakobud <[email protected]>
2012-07-23 15:50:04 -06:00