scrivito_ui 1.10.0.rc1 → 1.10.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/assets/javascripts/scrivito_ui.js +27 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 378c414a02df15197d371066aa06c1f85340ad02
|
4
|
+
data.tar.gz: 2328e1e72eff39fcd6b7ba9764fed3c7036c4881
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82500ea7d949f1a3d2dc09805d41e87d2a1fd2e32535b8ea2c5bc0b2764b23dbfd5427abdabd25a8353667a612866a3e5ec963b215e56045b949d7370499a9eb
|
7
|
+
data.tar.gz: 99cfe55d347dc38af2d49c1e33f8e16fa166d1c9fb41d78ccf2d58cd717e84d78493afe4bb8680bf4fcd746956e03f8a9ecb6acc86461b250bed885873281522
|
@@ -22515,9 +22515,14 @@ function storeValidRailsPageClasses(path, objClassNames) {
|
|
22515
22515
|
}
|
22516
22516
|
|
22517
22517
|
function loaderFor(path) {
|
22518
|
-
var
|
22518
|
+
var queryString = '';
|
22519
|
+
|
22520
|
+
if (path) {
|
22521
|
+
queryString = '?' + $.param({ parent_path: path });
|
22522
|
+
}
|
22523
|
+
|
22519
22524
|
return function () {
|
22520
|
-
return scrivito.ajax('GET', 'objs/valid_page_classes
|
22525
|
+
return scrivito.ajax('GET', 'objs/valid_page_classes' + queryString);
|
22521
22526
|
};
|
22522
22527
|
}
|
22523
22528
|
|
@@ -51147,6 +51152,10 @@ function addSubpageCommand(objId) {
|
|
51147
51152
|
},
|
51148
51153
|
|
51149
51154
|
disabled: function disabled() {
|
51155
|
+
if (!scrivito.editingContext.isMutable()) {
|
51156
|
+
return scrivito.t(translationPrefix + '.published_workspace');
|
51157
|
+
}
|
51158
|
+
|
51150
51159
|
if (!basicObj().path) {
|
51151
51160
|
return scrivito.t(translationPrefix + '.no_path');
|
51152
51161
|
}
|
@@ -51227,6 +51236,10 @@ function copyObjFromClipboardCommand(objId) {
|
|
51227
51236
|
return scrivito.objClipboard.isPresent();
|
51228
51237
|
},
|
51229
51238
|
disabled: function disabled() {
|
51239
|
+
if (!scrivito.editingContext.isMutable()) {
|
51240
|
+
return scrivito.t(translationPrefix + '.published_workspace');
|
51241
|
+
}
|
51242
|
+
|
51230
51243
|
if (!obj().path) {
|
51231
51244
|
return scrivito.t(translationPrefix + '.no_path');
|
51232
51245
|
}
|
@@ -51831,6 +51844,10 @@ function moveObjFromClipboardCommand(objId) {
|
|
51831
51844
|
return scrivito.objClipboard.isPresent();
|
51832
51845
|
},
|
51833
51846
|
disabled: function disabled() {
|
51847
|
+
if (!scrivito.editingContext.isMutable()) {
|
51848
|
+
return scrivito.t(translationPrefix + '.forbidden.invalid_workspace');
|
51849
|
+
}
|
51850
|
+
|
51834
51851
|
if (scrivito.objClipboard.workspaceId !== scrivito.editingContext.selectedWorkspaceId) {
|
51835
51852
|
return scrivito.t(translationPrefix + '.forbidden.invalid_workspace');
|
51836
51853
|
}
|
@@ -72087,18 +72104,22 @@ scrivito.i18n.load('de', {
|
|
72087
72104
|
'commands.add_subpage.child_list.no_path': 'Unterseiten können nur zu Seiten hinzugefügt werden, die einen Pfad haben.',
|
72088
72105
|
'commands.add_subpage.child_list.title': 'Seite hinzufügen',
|
72089
72106
|
'commands.add_subpage.child_list.tooltip': 'Eine Seite zu "$1" hinzufügen',
|
72107
|
+
'commands.add_subpage.child_list.published_workspace': 'Verwenden Sie eine Arbeitskopie, um Unterseiten hinzuzufügen.',
|
72090
72108
|
'commands.add_subpage.current_page.no_path': 'Unterseiten können nur zu Seiten hinzugefügt werden, die einen Pfad haben. Die aktuelle Seite hat keinen Pfad.',
|
72091
72109
|
'commands.add_subpage.current_page.title': 'Unterseite hinzufügen',
|
72092
72110
|
'commands.add_subpage.current_page.tooltip': 'Eine Unterseite zu "$1" hinzufügen',
|
72111
|
+
'commands.add_subpage.current_page.published_workspace': 'Verwenden Sie eine Arbeitskopie, um Unterseiten hinzuzufügen.',
|
72093
72112
|
|
72094
72113
|
'commands.copy_obj_from_clipboard.child_list.no_path': 'Unterseiten können nur zu Seiten hinzugefügt werden, die einen Pfad haben.',
|
72095
72114
|
'commands.copy_obj_from_clipboard.child_list.paste_forbidden': 'Aufgrund ihres Typs kann die Seite hier nicht eingefügt werden. Nur Seiten der folgenden Typen können hierher verschoben oder kopiert werden: $1',
|
72096
72115
|
'commands.copy_obj_from_clipboard.child_list.title': 'Seite hier einfügen',
|
72097
72116
|
'commands.copy_obj_from_clipboard.child_list.tooltip': 'Seite "$1" unterhalb von "$2" einfügen.',
|
72117
|
+
'commands.copy_obj_from_clipboard.child_list.published_workspace': 'Verwenden Sie eine Arbeitskopie, um Unterseiten hinzuzufügen.',
|
72098
72118
|
'commands.copy_obj_from_clipboard.current_page.no_path': 'Unterseiten können nur zu Seiten hinzugefügt werden, die einen Pfad haben. Die aktuelle Seite hat keinen Pfad.',
|
72099
72119
|
'commands.copy_obj_from_clipboard.current_page.paste_forbidden': 'Aufgrund ihres Typs kann die Seite hier nicht eingefügt werden. Nur Seiten der folgenden Typen können hierher verschoben oder eingefügt werden: $1',
|
72100
72120
|
'commands.copy_obj_from_clipboard.current_page.title': 'Als Unterseite einfügen',
|
72101
72121
|
'commands.copy_obj_from_clipboard.current_page.tooltip': 'Erstelle eine Kopie von "$1" und verwende sie als eine Unterseite von "$2".',
|
72122
|
+
'commands.copy_obj_from_clipboard.current_page.published_workspace': 'Verwenden Sie eine Arbeitskopie, um Unterseiten hinzuzufügen.',
|
72102
72123
|
|
72103
72124
|
'commands.move_obj_from_clipboard.child_list.forbidden.invalid_class': 'Aufgrund ihres Typs kann die Seite hier nicht eingefügt werden. Nur Seiten der folgenden Typen können hierher verschoben oder kopiert werden: $1',
|
72104
72125
|
'commands.move_obj_from_clipboard.child_list.forbidden.invalid_workspace': 'Eine Seite kann nur innerhalb ihrer Arbeitskopie verschoben werden.',
|
@@ -72501,18 +72522,22 @@ scrivito.i18n.load('en', {
|
|
72501
72522
|
'commands.add_subpage.child_list.no_path': 'Subpages can only be added to pages that have a path.',
|
72502
72523
|
'commands.add_subpage.child_list.title': 'Add page',
|
72503
72524
|
'commands.add_subpage.child_list.tooltip': 'Add a page to "$1"',
|
72525
|
+
'commands.add_subpage.child_list.published_workspace': 'Use a working copy to add subpages.',
|
72504
72526
|
'commands.add_subpage.current_page.no_path': 'Subpages can only be added to pages that have a path. The current page doesn\'t have a path.',
|
72505
72527
|
'commands.add_subpage.current_page.title': 'Add subpage',
|
72506
72528
|
'commands.add_subpage.current_page.tooltip': 'Add a subpage to "$1"',
|
72529
|
+
'commands.add_subpage.current_page.published_workspace': 'Use a working copy to add subpages.',
|
72507
72530
|
|
72508
72531
|
'commands.copy_obj_from_clipboard.child_list.no_path': 'Subpages can only be added to pages that have a path.',
|
72509
72532
|
'commands.copy_obj_from_clipboard.child_list.paste_forbidden': 'Due to its type, the page cannot be moved or pasted here. Only pages of the following types can be inserted here: $1',
|
72510
72533
|
'commands.copy_obj_from_clipboard.child_list.title': 'Paste page here',
|
72511
72534
|
'commands.copy_obj_from_clipboard.child_list.tooltip': 'Paste "$1" to "$2".',
|
72535
|
+
'commands.copy_obj_from_clipboard.child_list.published_workspace': 'Use a working copy to add subpages.',
|
72512
72536
|
'commands.copy_obj_from_clipboard.current_page.no_path': "Subpages can only be added to pages that have a path. The current page doesn't have a path.",
|
72513
72537
|
'commands.copy_obj_from_clipboard.current_page.paste_forbidden': 'Due to its type, the page cannot be moved or pasted here. Only pages of the following types can be inserted here: $1',
|
72514
72538
|
'commands.copy_obj_from_clipboard.current_page.title': 'Paste as subpage',
|
72515
72539
|
'commands.copy_obj_from_clipboard.current_page.tooltip': 'Create a copy of "$1" and use it as a subpage of "$2".',
|
72540
|
+
'commands.copy_obj_from_clipboard.current_page.published_workspace': 'Use a working copy to add subpages.',
|
72516
72541
|
|
72517
72542
|
'commands.move_obj_from_clipboard.child_list.forbidden.invalid_class': 'Due to its type, the page cannot be moved or pasted here. Only pages of the following types can be inserted here: $1',
|
72518
72543
|
'commands.move_obj_from_clipboard.child_list.forbidden.invalid_workspace': 'A page can only be moved within its working copy.',
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scrivito_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.0.
|
4
|
+
version: 1.10.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scrivito
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-06-
|
11
|
+
date: 2017-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|