mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Merge branch '1.9.x' into dev
Conflicts: src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs src/Orchard.Web/Core/Navigation/Scripts/navigation-admin.js src/Orchard.Web/Core/Navigation/Styles/navigation-admin.css src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml src/Orchard.Web/Modules/Orchard.Workflows/Styles/orchard-workflows-admin.css src/Orchard/Commands/CommandBackgroundService.cs.rej
This commit is contained in:
@@ -14291,10 +14291,10 @@
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Ionic.BZip2.BZip2InputStream.hbCreateDecodeTables(System.Int32[],System.Int32[],System.Int32[],System.Char[],System.Int32,System.Int32,System.Int32)">
|
||||
Called by createHuffmanDecodingTables() exclusively.
|
||||
Called by createHuffmanDecodingTables() exclusively.
|
||||
</member>
|
||||
<member name="M:Ionic.BZip2.BZip2InputStream.createHuffmanDecodingTables(System.Int32,System.Int32)">
|
||||
Called by recvDecodingTables() exclusively.
|
||||
Called by recvDecodingTables() exclusively.
|
||||
</member>
|
||||
<member name="P:Ionic.BZip2.BZip2InputStream.CanRead">
|
||||
<summary>
|
||||
@@ -14341,15 +14341,15 @@
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Ionic.BZip2.BZip2InputStream.DecompressionState.unzftab">
|
||||
Freq table collected to save a pass over the data during
|
||||
decompression.
|
||||
Freq table collected to save a pass over the data during
|
||||
decompression.
|
||||
</member>
|
||||
<member name="M:Ionic.BZip2.BZip2InputStream.DecompressionState.initTT(System.Int32)">
|
||||
Initializes the tt array.
|
||||
|
||||
This method is called when the required length of the array is known.
|
||||
I don't initialize it at construction time to avoid unneccessary
|
||||
memory allocation when compressing small files.
|
||||
Initializes the tt array.
|
||||
|
||||
This method is called when the required length of the array is known.
|
||||
I don't initialize it at construction time to avoid unneccessary
|
||||
memory allocation when compressing small files.
|
||||
</member>
|
||||
<member name="T:Ionic.BZip2.BZip2OutputStream">
|
||||
<summary>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,59 +1,59 @@
|
||||
/*
|
||||
jQuery ui.timepickr - @VERSION
|
||||
http://code.google.com/p/jquery-utils/
|
||||
|
||||
(c) Maxime Haineault <haineault@gmail.com>
|
||||
http://haineault.com
|
||||
|
||||
MIT License (http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
Note: if you want the original experimental plugin checkout the rev 224
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
- jquery.utils.js
|
||||
- jquery.strings.js
|
||||
- jquery.ui.js
|
||||
|
||||
*/
|
||||
|
||||
/*
|
||||
jQuery ui.timepickr - @VERSION
|
||||
http://code.google.com/p/jquery-utils/
|
||||
|
||||
(c) Maxime Haineault <haineault@gmail.com>
|
||||
http://haineault.com
|
||||
|
||||
MIT License (http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
Note: if you want the original experimental plugin checkout the rev 224
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
- jquery.utils.js
|
||||
- jquery.strings.js
|
||||
- jquery.ui.js
|
||||
|
||||
*/
|
||||
|
||||
(function($) {
|
||||
|
||||
$.tpl('timepickr.menu', '<div class="ui-helper-reset ui-timepickr ui-widget ui-corner-all ui-widget-content" />'); //todo: (heskew) make the corner an option just like the items
|
||||
$.tpl('timepickr.row', '<ol class="ui-timepickr-row ui-helper-clearfix" />');
|
||||
$.tpl('timepickr.button', '<li class="{className:s}"><span class="ui-state-default">{label:s}</span></li>');
|
||||
|
||||
|
||||
$.widget('ui.timepickr', {
|
||||
options: {
|
||||
convention: 12, // 24, 12
|
||||
trigger: 'focus',
|
||||
format12: '{h:02.d}:{m:02.d} {z}',
|
||||
format24: '{h:02.d}:{m:02.d}',
|
||||
hours: true,
|
||||
prefix: ['AM', 'PM'],
|
||||
suffix: ['AM', 'PM'],
|
||||
prefixVal: false,
|
||||
suffixVal: true,
|
||||
rangeHour12: $.range(1, 13),
|
||||
rangeHour24: [$.range(0, 12), $.range(12, 24)],
|
||||
rangeMin: $.range(0, 60, 15),
|
||||
rangeSec: $.range(0, 60, 15),
|
||||
corners: 'all',
|
||||
// plugins
|
||||
core: true,
|
||||
minutes: true,
|
||||
seconds: false,
|
||||
val: false,
|
||||
updateLive: true,
|
||||
resetOnBlur: true,
|
||||
keyboardnav: true,
|
||||
handle: false,
|
||||
handleEvent: 'click'
|
||||
},
|
||||
options: {
|
||||
convention: 12, // 24, 12
|
||||
trigger: 'focus',
|
||||
format12: '{h:02.d}:{m:02.d} {z}',
|
||||
format24: '{h:02.d}:{m:02.d}',
|
||||
hours: true,
|
||||
prefix: ['AM', 'PM'],
|
||||
suffix: ['AM', 'PM'],
|
||||
prefixVal: false,
|
||||
suffixVal: true,
|
||||
rangeHour12: $.range(1, 13),
|
||||
rangeHour24: [$.range(0, 12), $.range(12, 24)],
|
||||
rangeMin: $.range(0, 60, 15),
|
||||
rangeSec: $.range(0, 60, 15),
|
||||
corners: 'all',
|
||||
// plugins
|
||||
core: true,
|
||||
minutes: true,
|
||||
seconds: false,
|
||||
val: false,
|
||||
updateLive: true,
|
||||
resetOnBlur: true,
|
||||
keyboardnav: true,
|
||||
handle: false,
|
||||
handleEvent: 'click'
|
||||
},
|
||||
|
||||
plugins: {},
|
||||
|
||||
_create: function() {
|
||||
|
||||
_create: function() {
|
||||
this._dom = {
|
||||
menu: $.tpl('timepickr.menu'),
|
||||
row: $.tpl('timepickr.menu')
|
||||
@@ -131,10 +131,10 @@
|
||||
},
|
||||
|
||||
_formatVal: function(ival) {
|
||||
var val = ival || this._getVal();
|
||||
|
||||
if (!val.h) return;
|
||||
|
||||
var val = ival || this._getVal();
|
||||
|
||||
if (!val.h) return;
|
||||
|
||||
val.c = this.options.convention;
|
||||
val.f = val.c === 12 && this.options.format12 || this.options.format24;
|
||||
return (new Time(val)).getTime();
|
||||
@@ -384,4 +384,4 @@
|
||||
}
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||
})(jQuery);
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
<Startup>
|
||||
<Task commandLine="Startup\SetIdleTimeout.cmd" executionContext="elevated" taskType="simple">
|
||||
<Environment>
|
||||
<!-- Create the environment variable that informs the startup task whether it is running
|
||||
<!-- Create the environment variable that informs the startup task whether it is running
|
||||
in the compute emulator or in the cloud. -->
|
||||
<Variable name="ComputeEmulatorRunning">
|
||||
<RoleInstanceValue xpath="/RoleEnvironment/Deployment/@emulated" />
|
||||
|
||||
@@ -82,10 +82,10 @@ namespace Orchard.Blogs {
|
||||
.WithPart("CommonPart")
|
||||
.WithPart("WidgetPart")
|
||||
.WithSetting("Stereotype", "Widget")
|
||||
.WithPart("IdentityPart")
|
||||
.WithPart("IdentityPart")
|
||||
);
|
||||
|
||||
return 7;
|
||||
return 7;
|
||||
}
|
||||
|
||||
public int UpdateFrom1() {
|
||||
@@ -132,14 +132,14 @@ namespace Orchard.Blogs {
|
||||
|
||||
return 6;
|
||||
}
|
||||
|
||||
public int UpdateFrom6() {
|
||||
ContentDefinitionManager.AlterTypeDefinition("BlogArchives",
|
||||
cfg => cfg
|
||||
.WithPart("IdentityPart")
|
||||
);
|
||||
|
||||
return 7;
|
||||
}
|
||||
|
||||
public int UpdateFrom6() {
|
||||
ContentDefinitionManager.AlterTypeDefinition("BlogArchives",
|
||||
cfg => cfg
|
||||
.WithPart("IdentityPart")
|
||||
);
|
||||
|
||||
return 7;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -10,8 +10,8 @@
|
||||
<Place Parts_Image_Editor_CropOptions="Options"/>
|
||||
<Place Parts_Image_Editor_Resize="Buttons:6"/>
|
||||
<Place Parts_Image_Editor_ResizeOptions="Options"/>
|
||||
<Place Parts_Image_Editor_Rotate="Buttons:7"/>
|
||||
<Place Parts_Image_Editor_RotateOptions="Options"/>
|
||||
<Place Parts_Image_Editor_Rotate="Buttons:7"/>
|
||||
<Place Parts_Image_Editor_RotateOptions="Options"/>
|
||||
|
||||
<Place Parts_Image_Editor_Filter="Buttons:7"/>
|
||||
<Place Parts_Image_Editor_FilterOptions="Options"/>
|
||||
|
||||
@@ -23,5 +23,6 @@
|
||||
};
|
||||
|
||||
//]]>
|
||||
</script>
|
||||
</script>
|
||||
|
||||
}
|
||||
@@ -68,8 +68,8 @@ namespace Orchard.Setup.Annotations {
|
||||
if (string.IsNullOrEmpty(_value))
|
||||
return T("Password is required.").Text;
|
||||
|
||||
return _value.Length < (int)Minimum
|
||||
? T("Password must be at least {0} characters.", Minimum).Text
|
||||
return _value.Length < (int)Minimum
|
||||
? T("Password must be at least {0} characters.", Minimum).Text
|
||||
: T("Password can be no longer than {0} characters.", Maximum).Text;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,27 +25,27 @@
|
||||
}
|
||||
});
|
||||
|
||||
jQuery.fn.extend({
|
||||
tokenized : function () {
|
||||
return $(this).each(function () {
|
||||
var _this = $(this);
|
||||
jQuery.fn.extend({
|
||||
tokenized : function () {
|
||||
return $(this).each(function () {
|
||||
var _this = $(this);
|
||||
|
||||
// add an icon to tokenized inputs
|
||||
_this.wrap('<span class="token-wrapper"></span>');
|
||||
var popup = $('<div><span class="tokenized-popup"> </span></div>')
|
||||
_this.parent().prepend(popup);
|
||||
|
||||
// show the full list of tokens when the icon is clicked
|
||||
popup.children('.tokenized-popup').click(function () {
|
||||
var input = $(this).parent().next();
|
||||
// pass empty string as value to search for, displaying all results
|
||||
input.autocomplete("search", "");
|
||||
input.focus();
|
||||
});
|
||||
|
||||
$(this).autocomplete({
|
||||
// add an icon to tokenized inputs
|
||||
_this.wrap('<span class="token-wrapper"></span>');
|
||||
var popup = $('<div><span class="tokenized-popup"> </span></div>')
|
||||
_this.parent().prepend(popup);
|
||||
|
||||
// show the full list of tokens when the icon is clicked
|
||||
popup.children('.tokenized-popup').click(function () {
|
||||
var input = $(this).parent().next();
|
||||
// pass empty string as value to search for, displaying all results
|
||||
input.autocomplete("search", "");
|
||||
input.focus();
|
||||
});
|
||||
|
||||
$(this).autocomplete({
|
||||
minLength: 0,
|
||||
source: $.tokens,
|
||||
source: $.tokens,
|
||||
select: function (event, ui) {
|
||||
$(this).insertAtCaret(ui.item.value);
|
||||
return false;
|
||||
@@ -62,18 +62,18 @@ jQuery.fn.extend({
|
||||
.appendTo(ul);
|
||||
};
|
||||
});
|
||||
});
|
||||
},
|
||||
});
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
$(function() {
|
||||
$(function() {
|
||||
|
||||
$.tokens = {};
|
||||
$.tokens = {};
|
||||
|
||||
// provide autocomplete behavior to tokenized inputs
|
||||
// tokensUrl is initialized from the view
|
||||
$.get(tokensUrl, function (data) {
|
||||
$.tokens = data;
|
||||
$('.tokenized').tokenized();
|
||||
// provide autocomplete behavior to tokenized inputs
|
||||
// tokensUrl is initialized from the view
|
||||
$.get(tokensUrl, function (data) {
|
||||
$.tokens = data;
|
||||
$('.tokenized').tokenized();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
By Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['me'] = {
|
||||
|
||||
@@ -1014,7 +1014,7 @@
|
||||
}
|
||||
})(jQuery);
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
By Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['me-ME'] = {
|
||||
@@ -1037,7 +1037,7 @@
|
||||
}
|
||||
})(jQuery);
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
By Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['me'] = {
|
||||
|
||||
@@ -933,48 +933,48 @@
|
||||
};
|
||||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['lv']);
|
||||
})(jQuery);
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for calendars datepicker for jQuery.
|
||||
Written by Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
$.calendarsPicker.regionalOptions['me-ME'] = {
|
||||
renderer: $.calendarsPicker.defaultRenderer,
|
||||
prevText: '<', prevStatus: 'Prikaži prethodni mjesec',
|
||||
prevJumpText: '<<', prevJumpStatus: 'Prikaži prethodnu godinu',
|
||||
nextText: '>', nextStatus: 'Prikaži sljedeći mjesec',
|
||||
nextJumpText: '>>', nextJumpStatus: 'Prikaži sljedeću godinu',
|
||||
currentText: 'Danas', currentStatus: 'Tekući mjesec',
|
||||
todayText: 'Danas', todayStatus: 'Tekući mjesec',
|
||||
clearText: 'Obriši', clearStatus: 'Obriši trenutni datum',
|
||||
closeText: 'Zatvori', closeStatus: 'Zatvori kalendar',
|
||||
yearStatus: 'Prikaži godine', monthStatus: 'Prikaži mjesece',
|
||||
weekText: 'Sed', weekStatus: 'Sedmica',
|
||||
dayStatus: '\'Datum\' DD, M d', defaultStatus: 'Odaberi datum',
|
||||
isRTL: false
|
||||
};
|
||||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me-ME']);
|
||||
})(jQuery);
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for calendars datepicker for jQuery.
|
||||
Written by Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
$.calendarsPicker.regionalOptions['me'] = {
|
||||
renderer: $.calendarsPicker.defaultRenderer,
|
||||
prevText: '<', prevStatus: 'Прикажи претходни мјесец',
|
||||
prevJumpText: '<<', prevJumpStatus: 'Прикажи претходну годину',
|
||||
nextText: '>', nextStatus: 'Прикажи сљедећи мјесец',
|
||||
nextJumpText: '>>', nextJumpStatus: 'Прикажи сљедећу годину',
|
||||
currentText: 'Данас', currentStatus: 'Текући мјесец',
|
||||
todayText: 'Данас', todayStatus: 'Текући мјесец',
|
||||
clearText: 'Обриши', clearStatus: 'Обриши тренутни датум',
|
||||
closeText: 'Затвори', closeStatus: 'Затвори календар',
|
||||
yearStatus: 'Прикажи године', monthStatus: 'Прикажи мјесеце',
|
||||
weekText: 'Сед', weekStatus: 'Седмица',
|
||||
dayStatus: '\'Датум\' DD d MM', defaultStatus: 'Одабери датум',
|
||||
isRTL: false
|
||||
};
|
||||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me']);
|
||||
})(jQuery);
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for calendars datepicker for jQuery.
|
||||
Written by Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
$.calendarsPicker.regionalOptions['me-ME'] = {
|
||||
renderer: $.calendarsPicker.defaultRenderer,
|
||||
prevText: '<', prevStatus: 'Prikaži prethodni mjesec',
|
||||
prevJumpText: '<<', prevJumpStatus: 'Prikaži prethodnu godinu',
|
||||
nextText: '>', nextStatus: 'Prikaži sljedeći mjesec',
|
||||
nextJumpText: '>>', nextJumpStatus: 'Prikaži sljedeću godinu',
|
||||
currentText: 'Danas', currentStatus: 'Tekući mjesec',
|
||||
todayText: 'Danas', todayStatus: 'Tekući mjesec',
|
||||
clearText: 'Obriši', clearStatus: 'Obriši trenutni datum',
|
||||
closeText: 'Zatvori', closeStatus: 'Zatvori kalendar',
|
||||
yearStatus: 'Prikaži godine', monthStatus: 'Prikaži mjesece',
|
||||
weekText: 'Sed', weekStatus: 'Sedmica',
|
||||
dayStatus: '\'Datum\' DD, M d', defaultStatus: 'Odaberi datum',
|
||||
isRTL: false
|
||||
};
|
||||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me-ME']);
|
||||
})(jQuery);
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for calendars datepicker for jQuery.
|
||||
Written by Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
$.calendarsPicker.regionalOptions['me'] = {
|
||||
renderer: $.calendarsPicker.defaultRenderer,
|
||||
prevText: '<', prevStatus: 'Прикажи претходни мјесец',
|
||||
prevJumpText: '<<', prevJumpStatus: 'Прикажи претходну годину',
|
||||
nextText: '>', nextStatus: 'Прикажи сљедећи мјесец',
|
||||
nextJumpText: '>>', nextJumpStatus: 'Прикажи сљедећу годину',
|
||||
currentText: 'Данас', currentStatus: 'Текући мјесец',
|
||||
todayText: 'Данас', todayStatus: 'Текући мјесец',
|
||||
clearText: 'Обриши', clearStatus: 'Обриши тренутни датум',
|
||||
closeText: 'Затвори', closeStatus: 'Затвори календар',
|
||||
yearStatus: 'Прикажи године', monthStatus: 'Прикажи мјесеце',
|
||||
weekText: 'Сед', weekStatus: 'Седмица',
|
||||
dayStatus: '\'Датум\' DD d MM', defaultStatus: 'Одабери датум',
|
||||
isRTL: false
|
||||
};
|
||||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me']);
|
||||
})(jQuery);
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Македонски MK localisation for calendars datepicker for jQuery.
|
||||
Hajan Selmani (hajan [at] live [dot] com). */
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Arabic localisation for UmmAlQura calendar for jQuery v2.0.0.
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Arabic localisation for UmmAlQura calendar for jQuery v2.0.0.
|
||||
Written by Amro Osama March 2013. */
|
||||
(function ($) {
|
||||
$.calendars.calendars.ummalqura.prototype.regionalOptions['ar'] = {
|
||||
@@ -14,4 +14,4 @@
|
||||
firstDay: 6, // The first day of the week, Sat = 0, Sun = 1, ...
|
||||
isRTL: true // True if right-to-left language, false if left-to-right
|
||||
};
|
||||
})(jQuery);
|
||||
})(jQuery);
|
||||
|
||||
Reference in New Issue
Block a user