Mark Scherer 11 years ago
parent
commit
ca586e12cb
3 changed files with 13 additions and 24 deletions
  1. 10 16
      README.md
  2. 0 8
      docs/Features.md
  3. 3 0
      docs/Shims.md

+ 10 - 16
README.md

@@ -112,24 +112,13 @@ public $helpers = array(
 
 ## The cool stuff
 
-### Useful fixes
+### Useful fixes and additions
 
 * Auto-trim on POST (to make - not only notEmpty - validation working properly).
-* Auto-aliasing for models' "order" properties.
-* Disable cache also works for older IE versions.
-* Default settings for Paginator, ... can be set using Configure.
 * RSS and Ajax Views for better responses (Ajax also comes with an optional component).
-* testAction() defaults to GET.
-* [Useful Features](docs/Features.md).
-* [Shims](docs/Shims.md) to write cutting edge 2.x code - and prepare for 3.x.
-
-A full list of fixes and useful migration tweaks towards the next major version see [here](https://github.com/dereuromark/cakephp-tools/wiki/Included-fixes-and-migration-tweaks).
-
-### Additional classes and features
-
 * Using the Common component's flashMessage() you can have colorful (success, warning, error, ...) flash messages.
   They also can stack up (multiple messages per type). This way no message is lost when redirecting twice etc.
-  You will also need `echo $this->Common->flash();` then instead of the default flash code in your layout.ctp template.
+  You will also need `echo $this->Flash->message();` then instead of the default flash code in your layout.ctp template.
   And bear in mind that it will eat all your normal flash messages and outputs it though the same method.
 * TinyAuth authorization adapter with single and multi-role support - extremely fast and easy to use.
 * The Passwordable behavior allows easy to use functionality for frontend and backend.
@@ -143,9 +132,14 @@ A full list of fixes and useful migration tweaks towards the next major version
 * EmailLib as a wrapper for CakeEmail adding some more usefulness and making debugging/testing easier.
 * GoogleMapV3, Gravatar, Qrcode, Timeline, Typography, Ical, Hcard provide additional helper functionality.
 * NEW: Backported StringTemplate class (from CakePHP3.0) can be used to use template based rendering of HTML tags.
-* NEW: Backported password_hash() functionality via Tools.Modern PasswordHasher and Passwordable out of the box.
-* NEW: Monitor the headers sent and allow actions to be refactored cleanly using Response class.
-and much more
+
+### Additional shims
+* NEW: Backported password_hash() functionality via Shim.Modern / Shim.Fallback PasswordHasher and Tools Passwordable behavior out of the box.
+* [Shims](docs/Shims.md) to write cutting edge 2.x code - and prepare for 3.x.
+
+A full list of fixes and useful migration tweaks towards the next major version see [here](https://github.com/dereuromark/cakephp-tools/wiki/Included-fixes-and-migration-tweaks).
+
+Also see the [Shim plugin](https://github.com/dereuromark/cakephp-shim) for details and documentation on more possible shims you can leverage.
 
 
 ## Disclaimer

+ 0 - 8
docs/Features.md

@@ -1,9 +1 @@
 ## Useful Features
-
-### Debugging
-Use `Configure::write('App.monitorHeader', true);` to assert, that all controller actions don't (accidently) sent any headers prior
-to the actual response->send() call. It will throw an exception in debug mode, and trigger an error in productive mode.
-
-Make sure your AppController extends the Tools plugin MyController.
-
-By default it is not active, and when activated via bootstrap you can always temporarally or locally deactivate it for specific controllers/actions.

+ 3 - 0
docs/Shims.md

@@ -66,3 +66,6 @@ FormExt and HtmlExt helpers also provide extended functionality and 3.x shims.
 
 #### Ajax
 Use the AjaxView which will easily be upgradable as a clean component approach.
+
+
+Also see the [Shim plugin](https://github.com/dereuromark/cakephp-shim) for details and documentation on more possible shims you can leverage.