Plugin Directory

Changeset 501803


Ignore:
Timestamp:
02/07/2012 07:18:17 PM (14 years ago)
Author:
tombenner
Message:

Allowing for the path to WordPress to be set in $WPMVC_WORDPRESS_PATH and updating the readmes

Location:
wp-mvc
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wp-mvc/tags/1.1.4/README.md

    r452703 r501803  
    1515
    1616If 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
     18This 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]
    1721
    1822Installation
     
    5155#### Is feature X available?
    5256
    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 those 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:
     57If 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:
    5458
    5559* [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  
    11<?php
    22
    3 $wp_root = dirname(__FILE__).'/../../../../';
     3$wordpress_path = getenv('WPMVC_WORDPRESS_PATH');
     4$wordpress_path = $wordpress_path ? rtrim($wordpress_path, '/').'/' : dirname(__FILE__).'/../../../../';
    45
    5 require_once $wp_root.'wp-load.php';
     6require_once $wordpress_path.'wp-load.php';
    67
    78$shell = new MvcShellDispatcher($argv);
  • wp-mvc/tags/1.1.4/readme.txt

    r492412 r501803  
    1919
    2020If 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
     22This 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!
    2123
    2224== Installation ==
     
    5355= Is feature X available? =
    5456
    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 those 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:
     57If 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:
    5658
    5759* [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10)
    58 * [GitHub](http://github.com/tombenner/)
     60* [GitHub](http://github.com/tombenner)
    5961
    6062== Screenshots ==
  • wp-mvc/trunk/README.md

    r452703 r501803  
    1515
    1616If 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
     18This 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]
    1721
    1822Installation
     
    5155#### Is feature X available?
    5256
    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 those 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:
     57If 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:
    5458
    5559* [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  
    11<?php
    22
    3 $wp_root = dirname(__FILE__).'/../../../../';
     3$wordpress_path = getenv('WPMVC_WORDPRESS_PATH');
     4$wordpress_path = $wordpress_path ? rtrim($wordpress_path, '/').'/' : dirname(__FILE__).'/../../../../';
    45
    5 require_once $wp_root.'wp-load.php';
     6require_once $wordpress_path.'wp-load.php';
    67
    78$shell = new MvcShellDispatcher($argv);
  • wp-mvc/trunk/readme.txt

    r492412 r501803  
    1919
    2020If 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
     22This 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!
    2123
    2224== Installation ==
     
    5355= Is feature X available? =
    5456
    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 those 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:
     57If 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:
    5658
    5759* [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10)
    58 * [GitHub](http://github.com/tombenner/)
     60* [GitHub](http://github.com/tombenner)
    5961
    6062== Screenshots ==
Note: See TracChangeset for help on using the changeset viewer.