Commit Graph

1155 Commits

Author SHA1 Message Date
Taylor Otwell 4f3dbf2ec4 document the view::exists method. 2012-04-17 20:15:08 -05:00
Taylor Otwell ae2dc6a7e2 cleaning up view code. 2012-04-17 20:13:42 -05:00
Taylor Otwell 42f8914611 Merge branch 'develop' of github.com:laravel/laravel into develop 2012-04-17 20:11:08 -05:00
Taylor Otwell 66cf43de6c update change log. 2012-04-17 20:10:56 -05:00
Taylor Otwell 8c4170491e use memcached instead of memcache. 2012-04-17 20:09:41 -05:00
Taylor Otwell 7ba97bc3b5 Merge pull request #550 from davzie/develop
Implemented View::exists function
2012-04-17 17:55:52 -07:00
Taylor Otwell b7ac667405 tweak belongs to eager constraining. 2012-04-17 14:33:17 -05:00
David Thorpe ee5386e3b2 Implemented View::exists function
magical

Signed-off-by: David Thorpe <davzie@davzie.com>
2012-04-17 19:25:41 +01:00
Taylor Otwell f6388e26be added dd helper. 2012-04-16 20:38:31 -05:00
Taylor Otwell 62935964eb update chang elog 2012-04-16 14:50:32 -05:00
Taylor Otwell 11aabe4a84 move back to memcache 2012-04-16 14:50:06 -05:00
Pavel 482aed9379 Corrected typos in the comments.
Signed-off-by: Pavel <proger.xp@gmail.com>
2012-04-16 18:44:11 +04:00
Taylor Otwell 1192abe39c update change log. 2012-04-16 08:37:15 -05:00
Taylor Otwell f316553bb7 use memcached api instead of memcache. 2012-04-16 08:36:44 -05:00
Taylor Otwell 5d52da696f use injection on the request::detect_env method for better testability. 2012-04-13 20:34:13 -05:00
Taylor Otwell 44dbbe01da added support for bundles outside of the bundle directory using 'path: ' syntax like views. 2012-04-13 13:54:56 -05:00
Taylor Otwell 0f483fb390 cleaning up the autoloader> 2012-04-13 13:33:54 -05:00
Taylor Otwell 7b7f154edd Merge branch 'staging' into develop 2012-04-13 08:25:51 -05:00
Taylor Otwell e16ab6f3d4 fixing conflicts. 2012-04-13 08:25:40 -05:00
Taylor Otwell f45330a006 call render method on view when including in blade. 2012-04-13 08:23:11 -05:00
Mark Huot 49384514ef The __get() magic method runs three checks before giving up but the __isset() method only runs two checks. This syncs the logic to ensure that __get() and __isset() are looking at the same possibilities. 2012-04-13 10:20:34 -03:00
Taylor Otwell 9daa919f4b updated change log. 2012-04-12 23:36:45 -05:00
Taylor Otwell ab6e364546 added simpler and easier environment handling. 2012-04-12 23:35:41 -05:00
Taylor Otwell 34cb9a00f4 move 'is' method to the str class where it belongs. 2012-04-12 22:54:50 -05:00
Taylor Otwell 2b88c78896 simplified the paths.php file. 2012-04-12 22:33:45 -05:00
Taylor Otwell 1847a369fb fixed eloquent datetime bug when determining dirty attributes. 2012-04-11 16:08:15 -05:00
Taylor Otwell 8bc128fdaa cleaning up code. 2012-04-10 22:36:20 -05:00
Taylor Otwell 9ad6fabc02 Updated change log.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-10 15:04:39 -05:00
Taylor Otwell 94b8582865 Add DateTime support to database binding layer.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-10 15:03:42 -05:00
Taylor Otwell 7d5b6b3748 added blade comments and documentation. 2012-04-10 11:46:55 -05:00
Taylor Otwell 222383c83b check application.ssl in request::secure. 2012-04-10 11:41:02 -05:00
Taylor Otwell d5b9f3c604 cleaning up section class. 2012-04-10 11:37:38 -05:00
Taylor Otwell 78a2bce820 Merge pull request #509 from cviebrock/section-append
Make Section::append public, and do a true append. Other methods are renamed but unchanged.
2012-04-10 09:36:49 -07:00
Taylor Otwell f7b1a72f3c added unless structure to blade. 2012-04-10 11:33:55 -05:00
Taylor Otwell fda19731c5 Fixing update handling in Has_Many and Has_One relationships.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-10 11:26:03 -05:00
Taylor Otwell 8e988192a1 Merge branch 'develop' of github.com:laravel/laravel into develop 2012-04-10 10:10:51 -05:00
Taylor Otwell 0eb79a5b8d Merge branch 'staging' into develop 2012-04-10 10:10:41 -05:00
Taylor Otwell 1a5d4250d1 fix conflicts. 2012-04-10 10:10:31 -05:00
Taylor Otwell bcca8be072 Merge branch 'master' of github.com:laravel/laravel 2012-04-10 10:09:43 -05:00
Taylor Otwell 2e7cca1d0b Merge pull request #512 from Mikaweb/patch-1
Misspelt word corrected!
2012-04-10 07:49:05 -07:00
Taylor Otwell 60b5e38ca0 return after loading mapped class in autoloader. 2012-04-10 09:48:54 -05:00
Taylor Otwell b370549d80 Merge pull request #517 from joecwallace/migrate-resolver-classify-fix
Resolver::resolve() bug fix
2012-04-10 07:47:34 -07:00
Taylor Otwell a3e0c7c0c4 Merge pull request #522 from kloy/master
Custom validation messages in language file fix.
2012-04-10 07:43:49 -07:00
Keith Loy 53e8f9b774 Fixing bug where custom validation messages in bundle language files were not getting picked up. 2012-04-09 21:11:54 -05:00
Joe Wallace f7aee0ca2a Model::table() uses class_basename() helper - which properly discards namespaces on *nix systems
Signed-off-by: Joe Wallace <joew@atiba.com>
2012-04-09 11:28:40 -05:00
Joe Wallace 201732135d Resolver::resolve() uses Str::classify() to determine class names
Signed-off-by: Joe Wallace <joew@atiba.com>
2012-04-09 11:02:11 -05:00
Greg Aker 88dd2f3232 Altering visibility of Crypter::randomizer() to public. 2012-04-07 14:09:22 -05:00
Maxime Dizerens 3850f575f0 Misspelt word corrected! 2012-04-07 00:03:33 +03:00
Colin Viebrock f0f9d7b256 make Section::append public, and do a true append. Other methods are renamed but unchanged. 2012-04-06 11:50:01 -05:00
Phill Sparks 56fac668b3 Don't show the trace on shutdown, it's useless.
Signed-off-by: Phill Sparks <me@phills.me.uk>
2012-04-06 10:41:10 +01:00
Taylor Otwell 825e8b2d49 cleaning up code and comments. 2012-04-05 21:40:56 -05:00
Taylor Otwell a77196db86 cleaning up code. 2012-04-05 21:30:53 -05:00
Taylor Otwell 8a687053a8 fix conflicts. 2012-04-05 09:33:50 -05:00
Taylor Otwell cc4514e8f6 Fix bug in many to many eager loading.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-05 09:21:28 -05:00
Taylor Otwell ee288a7709 updated changelog. 2012-04-04 22:32:25 -05:00
Taylor Otwell 6dd709ccaa move vendors folder under laravel. 2012-04-04 22:16:34 -05:00
Taylor Otwell fe36d7fdfb Added total SQL execution time to profiler.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-04 17:08:16 -05:00
Taylor Otwell 01a7991bd5 fix artisan. 2012-04-04 16:57:18 -05:00
Taylor Otwell 4bee6d1bca put str_object back in. 2012-04-04 14:48:51 -05:00
Taylor Otwell 609920b0d0 Allow str_contains to take an array.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-04 14:30:32 -05:00
Dayle Rees b5847c1f3a fixed logo bug 2012-04-04 20:14:20 +01:00
Dayle Rees 95b4b0924b added logo base64d to profiler 2012-04-04 20:05:38 +01:00
Dayle Rees ad57ae4fdf jquery loading and css fixes 2012-04-04 18:25:29 +01:00
Taylor Otwell 1c26ce8ce5 Fix bug in input class.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-04 11:37:46 -05:00
Taylor Otwell 98fa907805 Use array_merge_recursive in input class.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-04 11:30:19 -05:00
Taylor Otwell 04eea426e8 tweaking. 2012-04-04 11:19:52 -05:00
Taylor Otwell 9499758806 Merge branch 'develop' into feature/http-foundation 2012-04-04 11:16:44 -05:00
Taylor Otwell 02ad4c5c47 adjusting comments. 2012-04-04 11:09:44 -05:00
Taylor Otwell c31f001f22 fix url https bug. 2012-04-04 11:08:14 -05:00
Taylor Otwell 63e6d143fb updated change log. 2012-04-04 10:36:48 -05:00
Taylor Otwell d1adc8c181 Merge pull request #484 from kbanman/bugfix-pivot
Timestamps are optional in many-to-many pivot table
2012-04-04 08:36:01 -07:00
Taylor Otwell e78c90b993 Merge branch 'develop' into feature/http-foundation 2012-04-04 10:34:16 -05:00
Taylor Otwell 250541b22b updated change log. 2012-04-04 10:33:49 -05:00
Taylor Otwell eda46a815e fix eloquent model attribute resolution. 2012-04-04 10:33:24 -05:00
Taylor Otwell 232bf01ae2 fix secure cookie issue. 2012-04-04 10:28:06 -05:00
Taylor Otwell ffb4034631 fix url parsing. 2012-04-04 10:16:15 -05:00
Taylor Otwell a85945561c fixing conflicts. 2012-04-04 10:09:27 -05:00
Taylor Otwell 7f9e38a770 Merge branch 'staging' into develop 2012-04-04 09:57:16 -05:00
Taylor Otwell 10d9cd33ad fixing conflicts. 2012-04-04 09:57:08 -05:00
Taylor Otwell 3e00ce2efb fix bug regarding SSL cookies. 2012-04-04 09:50:01 -05:00
Taylor Otwell 8f24d83233 fixing profiler. 2012-04-04 08:59:44 -05:00
Taylor Otwell 17bd505ff6 pass response in laravel done event. 2012-04-04 08:36:43 -05:00
Taylor Otwell 507bba60ca dont show profiler bar on ajax request. 2012-04-03 20:22:01 -05:00
Taylor Otwell b58c6370ee fixing template. 2012-04-03 17:07:37 -05:00
Taylor Otwell e0e0b51b9b tweaking profiler. 2012-04-03 16:57:55 -05:00
Taylor Otwell e1d49749a3 fixing conflicts. 2012-04-03 16:54:28 -05:00
Taylor Otwell 1ca7d799af changes 2012-04-03 16:53:15 -05:00
Taylor Otwell 43a3635722 move documentation markdown to system directory. 2012-04-03 11:20:20 -05:00
Taylor Otwell 6fdccd7496 Fixing bug.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-03 11:00:45 -05:00
Taylor Otwell 517da41a72 Tweaking has_many "save" method.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-03 10:56:55 -05:00
Taylor Otwell d0a701e8f7 Tweaking has_many "save" method.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
2012-04-03 10:55:04 -05:00
Taylor Otwell df70987679 added sync method to has_many relationship. 2012-04-03 10:48:01 -05:00
Jason Lewis 3d23303aea Includes use render to prevent WSOD 2012-04-03 19:57:01 +10:00
Taylor Otwell 9f80351916 Merge branch 'develop' into feature/http-foundation 2012-04-02 20:45:24 -05:00
Taylor Otwell 4c2406db29 fixing base url generation. 2012-04-02 20:45:20 -05:00
Kelly Banman 587a80acbb Timestamps are optional in many-to-many pivot table
Signed-off-by: Kelly Banman <kelly.banman@gmail.com>
2012-04-02 14:59:44 -07:00
Taylor Otwell 6a9cc48164 fix handling of hash Urls. 2012-04-02 13:02:49 -05:00
Taylor Otwell 6dd8063646 adding doc routes. 2012-04-02 11:02:09 -05:00
Taylor Otwell 2276c6705c use http foundation to create content-disposition headers. 2012-04-01 23:19:45 -05:00
Taylor Otwell 8e80756b08 Merge branch 'develop' into feature/http-foundation 2012-04-01 21:31:20 -05:00