Changeset 501803
- Timestamp:
- 02/07/2012 07:18:17 PM (14 years ago)
- Location:
- wp-mvc
- Files:
-
- 6 edited
-
tags/1.1.4/README.md (modified) (2 diffs)
-
tags/1.1.4/core/wpmvc.php (modified) (1 diff)
-
tags/1.1.4/readme.txt (modified) (2 diffs)
-
trunk/README.md (modified) (2 diffs)
-
trunk/core/wpmvc.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-mvc/tags/1.1.4/README.md
r452703 r501803 15 15 16 16 If you'd like to grab development releases, see what new features are being added, or browse the source code please visit the [GitHub repo](http://github.com/tombenner/wp-mvc). 17 18 This is free and open source software. If you like it and want to encourage further development, please [flattr it][FlattrLink]. Thanks! 19 20 [![][FlattrButton]][FlattrLink] 17 21 18 22 Installation … … 51 55 #### Is feature X available? 52 56 53 Most of the functionality that's available is used in the example plugins, so if there's functionality that you'd like to use that isn't implemented in thoseor mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:57 If there's functionality that you'd like to use that isn't implemented in the example plugins or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 54 58 55 59 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) 56 * [GitHub](http://github.com/tombenner/) 60 * [GitHub](http://github.com/tombenner) 61 62 [FlattrLink]: https://flattr.com/thing/487376/WP-MVC 63 [FlattrButton]: http://api.flattr.com/button/button-static-50x60.png -
wp-mvc/tags/1.1.4/core/wpmvc.php
r371344 r501803 1 1 <?php 2 2 3 $wp_root = dirname(__FILE__).'/../../../../'; 3 $wordpress_path = getenv('WPMVC_WORDPRESS_PATH'); 4 $wordpress_path = $wordpress_path ? rtrim($wordpress_path, '/').'/' : dirname(__FILE__).'/../../../../'; 4 5 5 require_once $w p_root.'wp-load.php';6 require_once $wordpress_path.'wp-load.php'; 6 7 7 8 $shell = new MvcShellDispatcher($argv); -
wp-mvc/tags/1.1.4/readme.txt
r492412 r501803 19 19 20 20 If you'd like to grab development releases, see what new features are being added, or browse the source code please visit the [GitHub repo](http://github.com/tombenner/wp-mvc). 21 22 This is free and open source software. If you like it and want to encourage further development, please [flattr it](https://flattr.com/thing/487376/WP-MVC). Thanks! 21 23 22 24 == Installation == … … 53 55 = Is feature X available? = 54 56 55 Most of the functionality that's available is used in the example plugins, so if there's functionality that you'd like to use that isn't implemented in thoseor mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:57 If there's functionality that you'd like to use that isn't implemented in the example plugins or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 56 58 57 59 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) 58 * [GitHub](http://github.com/tombenner /)60 * [GitHub](http://github.com/tombenner) 59 61 60 62 == Screenshots == -
wp-mvc/trunk/README.md
r452703 r501803 15 15 16 16 If you'd like to grab development releases, see what new features are being added, or browse the source code please visit the [GitHub repo](http://github.com/tombenner/wp-mvc). 17 18 This is free and open source software. If you like it and want to encourage further development, please [flattr it][FlattrLink]. Thanks! 19 20 [![][FlattrButton]][FlattrLink] 17 21 18 22 Installation … … 51 55 #### Is feature X available? 52 56 53 Most of the functionality that's available is used in the example plugins, so if there's functionality that you'd like to use that isn't implemented in thoseor mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:57 If there's functionality that you'd like to use that isn't implemented in the example plugins or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 54 58 55 59 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) 56 * [GitHub](http://github.com/tombenner/) 60 * [GitHub](http://github.com/tombenner) 61 62 [FlattrLink]: https://flattr.com/thing/487376/WP-MVC 63 [FlattrButton]: http://api.flattr.com/button/button-static-50x60.png -
wp-mvc/trunk/core/wpmvc.php
r371344 r501803 1 1 <?php 2 2 3 $wp_root = dirname(__FILE__).'/../../../../'; 3 $wordpress_path = getenv('WPMVC_WORDPRESS_PATH'); 4 $wordpress_path = $wordpress_path ? rtrim($wordpress_path, '/').'/' : dirname(__FILE__).'/../../../../'; 4 5 5 require_once $w p_root.'wp-load.php';6 require_once $wordpress_path.'wp-load.php'; 6 7 7 8 $shell = new MvcShellDispatcher($argv); -
wp-mvc/trunk/readme.txt
r492412 r501803 19 19 20 20 If you'd like to grab development releases, see what new features are being added, or browse the source code please visit the [GitHub repo](http://github.com/tombenner/wp-mvc). 21 22 This is free and open source software. If you like it and want to encourage further development, please [flattr it](https://flattr.com/thing/487376/WP-MVC). Thanks! 21 23 22 24 == Installation == … … 53 55 = Is feature X available? = 54 56 55 Most of the functionality that's available is used in the example plugins, so if there's functionality that you'd like to use that isn't implemented in thoseor mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:57 If there's functionality that you'd like to use that isn't implemented in the example plugins or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 56 58 57 59 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) 58 * [GitHub](http://github.com/tombenner /)60 * [GitHub](http://github.com/tombenner) 59 61 60 62 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.