CMS Tree Page View - Version 0.5.4

Version Description

  • when mouse over the litte arrow the cursor is now a hand again. it just feels a little bit better that way.
  • some texts where not translated due to wp_localize_script being called before load_plugin_textdomain. thanks for reporting this.
Download this release

Release Info

Developer eskapism
Plugin Icon wp plugin CMS Tree Page View
Version 0.5.4
Comparing to
See all releases

Code changes from version 0.5.3 to 0.5.4

functions.php CHANGED
@@ -52,9 +52,9 @@ function cms_tpv_admin_init() {
52
  "inside" => __("inside", 'cms-tree-page-view'),
53
  "Add_new_page_inside" => __("Add new page inside", 'cms-tree-page-view')
54
  );
55
- wp_localize_script( "cms_tree_page_view", 'cmstpv_l10n', $oLocale);
56
 
57
  load_plugin_textdomain('cms-tree-page-view', WP_CONTENT_DIR . "/plugins/languages", "/cms-tree-page-view/languages");
 
58
 
59
  }
60
 
52
  "inside" => __("inside", 'cms-tree-page-view'),
53
  "Add_new_page_inside" => __("Add new page inside", 'cms-tree-page-view')
54
  );
 
55
 
56
  load_plugin_textdomain('cms-tree-page-view', WP_CONTENT_DIR . "/plugins/languages", "/cms-tree-page-view/languages");
57
+ wp_localize_script( "cms_tree_page_view", 'cmstpv_l10n', $oLocale);
58
 
59
  }
60
 
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: CMS Tree Page View
4
  Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
5
  Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. By using the tree you can edit, view, add pages and even search pages (useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
6
- Version: 0.5.3
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
@@ -28,7 +28,7 @@ License: GPL2
28
 
29
  require("functions.php");
30
 
31
- define( "CMS_TPV_VERSION", "0.5.3");
32
  define( "CMS_TPV_URL", WP_PLUGIN_URL . '/cms-tree-page-view/');
33
  define( "CMS_TPV_NAME", "CMS Tree Page View");
34
 
3
  Plugin Name: CMS Tree Page View
4
  Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
5
  Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. By using the tree you can edit, view, add pages and even search pages (useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
6
+ Version: 0.5.4
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
28
 
29
  require("functions.php");
30
 
31
+ define( "CMS_TPV_VERSION", "0.5.4");
32
  define( "CMS_TPV_URL", WP_PLUGIN_URL . '/cms-tree-page-view/');
33
  define( "CMS_TPV_NAME", "CMS Tree Page View");
34
 
readme.txt CHANGED
@@ -47,6 +47,10 @@ Now the tree with the pages will be visible both on the dashboard and in the men
47
 
48
  == Changelog ==
49
 
 
 
 
 
50
  = 0.5.3 =
51
  - link to "add new page" when there were no pages now work
52
  - changed native js prompt to http://abeautifulsite.net/2008/12/jquery-alert-dialogs/ (mostly because you can use your other browser tabs while the dialog/prompt is open)
47
 
48
  == Changelog ==
49
 
50
+ = 0.5.4 =
51
+ - when mouse over the litte arrow the cursor is now a hand again. it just feels a little bit better that way.
52
+ - some texts where not translated due to wp_localize_script being called before load_plugin_textdomain. thanks for reporting this.
53
+
54
  = 0.5.3 =
55
  - link to "add new page" when there were no pages now work
56
  - changed native js prompt to http://abeautifulsite.net/2008/12/jquery-alert-dialogs/ (mostly because you can use your other browser tabs while the dialog/prompt is open)
scripts/themes/wordpress/style.css CHANGED
@@ -9,7 +9,7 @@
9
  .jstree-wordpress li { background-position:-90px 0; background-repeat:repeat-y; }
10
  .jstree-wordpress li.jstree-last { background:transparent; }
11
  .jstree-wordpress .jstree-open > ins { background-position:-72px 0; }
12
- .jstree-wordpress .jstree-closed > ins { background-position:-54px 0; }
13
  .jstree-wordpress .jstree-leaf > ins { background-position:-36px 0; }
14
 
15
  .jstree-wordpress .jstree-hovered { background:#e7f4f9; border:1px solid #d8f0fa; padding:0 2px 0 1px; }
9
  .jstree-wordpress li { background-position:-90px 0; background-repeat:repeat-y; }
10
  .jstree-wordpress li.jstree-last { background:transparent; }
11
  .jstree-wordpress .jstree-open > ins { background-position:-72px 0; }
12
+ .jstree-wordpress .jstree-closed > ins { background-position:-54px 0; cursor: pointer; }
13
  .jstree-wordpress .jstree-leaf > ins { background-position:-36px 0; }
14
 
15
  .jstree-wordpress .jstree-hovered { background:#e7f4f9; border:1px solid #d8f0fa; padding:0 2px 0 1px; }