Version Description
- CSS images loaded from google via https instead of http. Does this solve the problems you guys with https-sites had?
- Users of IE could not add pages at the right place. All pages where added at the top instead of after or inside another page. Only tested in IE 8, please let me know of the other version..
Download this release
Release Info
Developer | eskapism |
Plugin | CMS Tree Page View |
Version | 0.7.10 |
Comparing to | |
See all releases |
Code changes from version 0.7.9 to 0.7.10
- index.php +2 -2
- readme.txt +5 -1
- scripts/cms_tree_page_view.js +2 -2
- styles/styles.css +2 -2
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.7.
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
@@ -27,7 +27,7 @@ License: GPL2
|
|
27 |
|
28 |
require("functions.php");
|
29 |
|
30 |
-
define( "CMS_TPV_VERSION", "0.7.
|
31 |
define( "CMS_TPV_URL", WP_PLUGIN_URL . '/cms-tree-page-view/');
|
32 |
define( "CMS_TPV_NAME", "CMS Tree Page View");
|
33 |
|
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.7.10
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
27 |
|
28 |
require("functions.php");
|
29 |
|
30 |
+
define( "CMS_TPV_VERSION", "0.7.10");
|
31 |
define( "CMS_TPV_URL", WP_PLUGIN_URL . '/cms-tree-page-view/');
|
32 |
define( "CMS_TPV_NAME", "CMS Tree Page View");
|
33 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
|
|
4 |
Tags: page, pages, posts, custom posts, tree, cms, dashboard, overview, drag-and-drop, rearrange, management, manage, admin
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.0
|
7 |
-
Stable tag: 0.7.
|
8 |
|
9 |
Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
|
10 |
|
@@ -77,6 +77,10 @@ Now the tree with the pages will be visible both on the dashboard and in the men
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
|
|
|
|
|
|
|
|
80 |
= 0.7.9 =
|
81 |
- changed so some icons are loaded from ajax.googleapis.com instead of Google Code. Google Code was a bit slow.
|
82 |
|
4 |
Tags: page, pages, posts, custom posts, tree, cms, dashboard, overview, drag-and-drop, rearrange, management, manage, admin
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.0
|
7 |
+
Stable tag: 0.7.10
|
8 |
|
9 |
Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
|
10 |
|
77 |
|
78 |
== Changelog ==
|
79 |
|
80 |
+
= 0.7.10 =
|
81 |
+
- CSS images loaded from google via https instead of http. Does this solve the problems you guys with https-sites had?
|
82 |
+
- Users of IE could not add pages at the right place. All pages where added at the top instead of after or inside another page. Only tested in IE 8, please let me know of the other version..
|
83 |
+
|
84 |
= 0.7.9 =
|
85 |
- changed so some icons are loaded from ajax.googleapis.com instead of Google Code. Google Code was a bit slow.
|
86 |
|
scripts/cms_tree_page_view.js
CHANGED
@@ -152,8 +152,8 @@ jQuery(".cms_tpv_action_add_page_after").live("click", function() {
|
|
152 |
|
153 |
jPrompt(cmstpv_l10n.Enter_title_of_new_page, "", "CMS Tree Page View", function(new_page_title) {
|
154 |
if (new_page_title) {
|
155 |
-
$this.closest(".cms_tpv_container").html(cmstpv_l10n.Adding_page);
|
156 |
var pageID = $this.parents("li:first").attr("id");
|
|
|
157 |
jQuery.post(ajaxurl, {
|
158 |
"action": "cms_tpv_add_page",
|
159 |
"pageID": pageID,
|
@@ -195,8 +195,8 @@ jQuery(".cms_tpv_action_add_page_inside").live("click", function() {
|
|
195 |
|
196 |
jPrompt(cmstpv_l10n.Enter_title_of_new_page, "", "CMS Tree Page View", function(new_page_title) {
|
197 |
if (new_page_title) {
|
198 |
-
$this.closest(".cms_tpv_container").html(cmstpv_l10n.Adding_page);
|
199 |
var pageID = $this.parents("li:first").attr("id");
|
|
|
200 |
jQuery.post(ajaxurl, {
|
201 |
"action": "cms_tpv_add_page",
|
202 |
"pageID": pageID,
|
152 |
|
153 |
jPrompt(cmstpv_l10n.Enter_title_of_new_page, "", "CMS Tree Page View", function(new_page_title) {
|
154 |
if (new_page_title) {
|
|
|
155 |
var pageID = $this.parents("li:first").attr("id");
|
156 |
+
$this.closest(".cms_tpv_container").html(cmstpv_l10n.Adding_page);
|
157 |
jQuery.post(ajaxurl, {
|
158 |
"action": "cms_tpv_add_page",
|
159 |
"pageID": pageID,
|
195 |
|
196 |
jPrompt(cmstpv_l10n.Enter_title_of_new_page, "", "CMS Tree Page View", function(new_page_title) {
|
197 |
if (new_page_title) {
|
|
|
198 |
var pageID = $this.parents("li:first").attr("id");
|
199 |
+
$this.closest(".cms_tpv_container").html(cmstpv_l10n.Adding_page);
|
200 |
jQuery.post(ajaxurl, {
|
201 |
"action": "cms_tpv_add_page",
|
202 |
"pageID": pageID,
|
styles/styles.css
CHANGED
@@ -186,14 +186,14 @@ li span.cms_tpv_action_add_page {
|
|
186 |
left: 112px;
|
187 |
width: 16px;
|
188 |
height: 16px;
|
189 |
-
background: transparent url(
|
190 |
text-indent: -9999px;
|
191 |
}
|
192 |
#cms_tpv_dashboard_widget .cms_tree_view_search_form_reset {
|
193 |
top: 8px;
|
194 |
}
|
195 |
.cms_tree_view_search_form_reset:hover {
|
196 |
-
background: transparent url(
|
197 |
}
|
198 |
|
199 |
.cms_tpv_annoying_little_box {
|
186 |
left: 112px;
|
187 |
width: 16px;
|
188 |
height: 16px;
|
189 |
+
background: transparent url(https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/themes/ui-darkness/images/ui-icons_cccccc_256x240.png) no-repeat -32px -194px;
|
190 |
text-indent: -9999px;
|
191 |
}
|
192 |
#cms_tpv_dashboard_widget .cms_tree_view_search_form_reset {
|
193 |
top: 8px;
|
194 |
}
|
195 |
.cms_tree_view_search_form_reset:hover {
|
196 |
+
background: transparent url(https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/themes/ui-lightness/images/ui-icons_222222_256x240.png) no-repeat -32px -194px;
|
197 |
}
|
198 |
|
199 |
.cms_tpv_annoying_little_box {
|