2012-11-15 22:43:10 +04:00
|
|
|
/**
|
|
|
|
* Disable console output unless DEBUG mode is enabled.
|
2013-07-07 22:26:09 +04:00
|
|
|
* Add
|
2013-02-09 20:20:08 +04:00
|
|
|
* define('DEBUG', true);
|
2012-11-15 22:43:10 +04:00
|
|
|
* To the end of config/config.php to enable debug mode.
|
2013-01-02 15:21:30 +04:00
|
|
|
* The undefined checks fix the broken ie8 console
|
2012-11-15 22:43:10 +04:00
|
|
|
*/
|
2013-02-07 11:11:18 +04:00
|
|
|
var oc_debug;
|
|
|
|
var oc_webroot;
|
2013-06-26 13:23:21 +04:00
|
|
|
|
|
|
|
var oc_current_user = document.getElementsByTagName('head')[0].getAttribute('data-user');
|
|
|
|
var oc_requesttoken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken');
|
|
|
|
|
2014-02-04 16:56:10 +04:00
|
|
|
window.oc_config = window.oc_config || {};
|
|
|
|
|
2013-02-08 21:44:52 +04:00
|
|
|
if (typeof oc_webroot === "undefined") {
|
2013-12-13 15:54:08 +04:00
|
|
|
oc_webroot = location.pathname;
|
|
|
|
var pos = oc_webroot.indexOf('/index.php/');
|
|
|
|
if (pos !== -1) {
|
|
|
|
oc_webroot = oc_webroot.substr(0, pos);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
oc_webroot = oc_webroot.substr(0, oc_webroot.lastIndexOf('/'));
|
|
|
|
}
|
2013-02-08 21:44:52 +04:00
|
|
|
}
|
2013-01-02 15:21:30 +04:00
|
|
|
if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") {
|
2012-11-15 22:43:10 +04:00
|
|
|
if (!window.console) {
|
|
|
|
window.console = {};
|
|
|
|
}
|
2014-03-17 22:39:19 +04:00
|
|
|
var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert', 'time', 'timeEnd'];
|
2012-11-15 22:43:10 +04:00
|
|
|
for (var i = 0; i < methods.length; i++) {
|
2013-01-02 15:21:30 +04:00
|
|
|
console[methods[i]] = function () { };
|
2012-11-15 22:43:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-04 01:31:49 +04:00
|
|
|
function initL10N(app) {
|
|
|
|
if (!( t.cache[app] )) {
|
|
|
|
$.ajax(OC.filePath('core', 'ajax', 'translations.php'), {
|
|
|
|
async: false,//todo a proper solution for this without sync ajax calls
|
|
|
|
data: {'app': app},
|
|
|
|
type: 'POST',
|
|
|
|
success: function (jsondata) {
|
2012-01-16 03:09:43 +04:00
|
|
|
t.cache[app] = jsondata.data;
|
2013-08-04 01:31:49 +04:00
|
|
|
t.plural_form = jsondata.plural_form;
|
2012-09-23 05:16:52 +04:00
|
|
|
}
|
2012-02-22 01:31:35 +04:00
|
|
|
});
|
2011-06-20 01:33:34 +04:00
|
|
|
|
|
|
|
// Bad answer ...
|
2013-08-04 01:31:49 +04:00
|
|
|
if (!( t.cache[app] )) {
|
2011-07-27 18:39:44 +04:00
|
|
|
t.cache[app] = [];
|
2011-06-20 01:33:34 +04:00
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2013-12-16 18:59:44 +04:00
|
|
|
if (typeof t.plural_function[app] == 'undefined') {
|
|
|
|
t.plural_function[app] = function (n) {
|
2013-08-04 01:31:49 +04:00
|
|
|
var p = (n != 1) ? 1 : 0;
|
|
|
|
return { 'nplural' : 2, 'plural' : p };
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* code below has been taken from jsgettext - which is LGPL licensed
|
|
|
|
* https://developer.berlios.de/projects/jsgettext/
|
|
|
|
* http://cvs.berlios.de/cgi-bin/viewcvs.cgi/jsgettext/jsgettext/lib/Gettext.js
|
|
|
|
*/
|
|
|
|
var pf_re = new RegExp('^(\\s*nplurals\\s*=\\s*[0-9]+\\s*;\\s*plural\\s*=\\s*(?:\\s|[-\\?\\|&=!<>+*/%:;a-zA-Z0-9_\(\)])+)', 'm');
|
|
|
|
if (pf_re.test(t.plural_form)) {
|
|
|
|
//ex english: "Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
//pf = "nplurals=2; plural=(n != 1);";
|
|
|
|
//ex russian: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10< =4 && (n%100<10 or n%100>=20) ? 1 : 2)
|
|
|
|
//pf = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)";
|
|
|
|
var pf = t.plural_form;
|
|
|
|
if (! /;\s*$/.test(pf)) pf = pf.concat(';');
|
|
|
|
/* We used to use eval, but it seems IE has issues with it.
|
|
|
|
* We now use "new Function", though it carries a slightly
|
|
|
|
* bigger performance hit.
|
|
|
|
var code = 'function (n) { var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) }; };';
|
|
|
|
Gettext._locale_data[domain].head.plural_func = eval("("+code+")");
|
|
|
|
*/
|
|
|
|
var code = 'var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) };';
|
2013-12-16 18:59:44 +04:00
|
|
|
t.plural_function[app] = new Function("n", code);
|
2013-08-04 01:31:49 +04:00
|
|
|
} else {
|
2013-08-18 13:17:28 +04:00
|
|
|
console.log("Syntax error in language file. Plural-Forms header is invalid ["+t.plural_forms+"]");
|
2013-08-04 01:31:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* translate a string
|
|
|
|
* @param app the id of the app for which to translate the string
|
|
|
|
* @param text the string to translate
|
2013-07-07 22:26:09 +04:00
|
|
|
* @param vars (optional) FIXME
|
|
|
|
* @param count (optional) number to replace %n with
|
2011-08-07 01:18:49 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-07-07 22:26:09 +04:00
|
|
|
function t(app, text, vars, count){
|
2013-08-04 01:31:49 +04:00
|
|
|
initL10N(app);
|
2013-07-07 22:26:09 +04:00
|
|
|
var _build = function (text, vars, count) {
|
2013-07-17 00:16:53 +04:00
|
|
|
return text.replace(/%n/g, count).replace(/{([^{}]*)}/g,
|
2013-02-09 20:20:08 +04:00
|
|
|
function (a, b) {
|
|
|
|
var r = vars[b];
|
|
|
|
return typeof r === 'string' || typeof r === 'number' ? r : a;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2013-07-07 22:26:09 +04:00
|
|
|
var translation = text;
|
2011-07-27 18:39:44 +04:00
|
|
|
if( typeof( t.cache[app][text] ) !== 'undefined' ){
|
2013-07-07 22:26:09 +04:00
|
|
|
translation = t.cache[app][text];
|
2011-05-19 23:19:37 +04:00
|
|
|
}
|
2013-07-07 22:26:09 +04:00
|
|
|
|
2013-07-17 00:16:53 +04:00
|
|
|
if(typeof vars === 'object' || count !== undefined ) {
|
2013-07-07 22:26:09 +04:00
|
|
|
return _build(translation, vars, count);
|
|
|
|
} else {
|
|
|
|
return translation;
|
2011-06-20 01:33:34 +04:00
|
|
|
}
|
|
|
|
}
|
2013-08-04 01:31:49 +04:00
|
|
|
t.cache = {};
|
2013-12-16 18:59:44 +04:00
|
|
|
// different apps might or might not redefine the nplurals function correctly
|
|
|
|
// this is to make sure that a "broken" app doesn't mess up with the
|
|
|
|
// other app's plural function
|
|
|
|
t.plural_function = {};
|
2011-06-20 01:33:34 +04:00
|
|
|
|
2013-07-07 22:26:09 +04:00
|
|
|
/**
|
|
|
|
* translate a string
|
|
|
|
* @param app the id of the app for which to translate the string
|
|
|
|
* @param text_singular the string to translate for exactly one object
|
|
|
|
* @param text_plural the string to translate for n objects
|
|
|
|
* @param count number to determine whether to use singular or plural
|
|
|
|
* @param vars (optional) FIXME
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-08-04 01:31:49 +04:00
|
|
|
function n(app, text_singular, text_plural, count, vars) {
|
|
|
|
initL10N(app);
|
2013-12-07 14:38:01 +04:00
|
|
|
var identifier = '_' + text_singular + '_::_' + text_plural + '_';
|
2013-08-04 01:31:49 +04:00
|
|
|
if( typeof( t.cache[app][identifier] ) !== 'undefined' ){
|
|
|
|
var translation = t.cache[app][identifier];
|
|
|
|
if ($.isArray(translation)) {
|
2013-12-16 18:59:44 +04:00
|
|
|
var plural = t.plural_function[app](count);
|
2013-08-04 01:31:49 +04:00
|
|
|
return t(app, translation[plural.plural], vars, count);
|
2012-10-05 05:33:46 +04:00
|
|
|
}
|
2011-05-19 23:19:37 +04:00
|
|
|
}
|
2013-08-04 01:31:49 +04:00
|
|
|
|
2013-07-17 00:16:53 +04:00
|
|
|
if(count === 1) {
|
2013-07-07 22:26:09 +04:00
|
|
|
return t(app, text_singular, vars, count);
|
|
|
|
}
|
2011-06-20 01:33:34 +04:00
|
|
|
else{
|
2013-07-07 22:26:09 +04:00
|
|
|
return t(app, text_plural, vars, count);
|
2011-06-20 01:33:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-07 22:26:09 +04:00
|
|
|
/**
|
2012-10-12 16:01:47 +04:00
|
|
|
* Sanitizes a HTML string
|
2013-07-07 22:26:09 +04:00
|
|
|
* @param s string
|
2012-10-12 16:01:47 +04:00
|
|
|
* @return Sanitized string
|
|
|
|
*/
|
|
|
|
function escapeHTML(s) {
|
2013-07-07 22:26:09 +04:00
|
|
|
return s.toString().split('&').join('&').split('<').join('<').split('"').join('"');
|
2012-10-12 16:01:47 +04:00
|
|
|
}
|
|
|
|
|
2012-08-27 23:46:05 +04:00
|
|
|
/**
|
|
|
|
* Get the path to download a file
|
|
|
|
* @param file The filename
|
|
|
|
* @param dir The directory the file is in - e.g. $('#dir').val()
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function fileDownloadPath(dir, file) {
|
2012-10-27 17:10:21 +04:00
|
|
|
return OC.filePath('files', 'ajax', 'download.php')+'?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir);
|
2012-08-27 23:46:05 +04:00
|
|
|
}
|
|
|
|
|
2012-09-23 05:16:52 +04:00
|
|
|
var OC={
|
2012-08-31 02:59:10 +04:00
|
|
|
PERMISSION_CREATE:4,
|
|
|
|
PERMISSION_READ:1,
|
|
|
|
PERMISSION_UPDATE:2,
|
|
|
|
PERMISSION_DELETE:8,
|
|
|
|
PERMISSION_SHARE:16,
|
2013-08-14 00:58:27 +04:00
|
|
|
PERMISSION_ALL:31,
|
2011-07-26 00:30:55 +04:00
|
|
|
webroot:oc_webroot,
|
2013-01-07 23:15:51 +04:00
|
|
|
appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false,
|
2011-08-11 18:53:00 +04:00
|
|
|
currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false,
|
2012-05-07 17:39:17 +04:00
|
|
|
coreApps:['', 'admin','log','search','settings','core','3rdparty'],
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* get an absolute url to a file in an appen
|
|
|
|
* @param app the id of the app the file belongs to
|
|
|
|
* @param file the file path relative to the app folder
|
|
|
|
* @return string
|
|
|
|
*/
|
2011-07-26 00:30:55 +04:00
|
|
|
linkTo:function(app,file){
|
|
|
|
return OC.filePath(app,'',file);
|
|
|
|
},
|
2013-01-25 19:00:26 +04:00
|
|
|
/**
|
|
|
|
* Creates an url for remote use
|
|
|
|
* @param string $service id
|
|
|
|
* @return string the url
|
|
|
|
*
|
|
|
|
* Returns a url to the given service.
|
|
|
|
*/
|
|
|
|
linkToRemoteBase:function(service) {
|
|
|
|
return OC.webroot + '/remote.php/' + service;
|
|
|
|
},
|
2014-03-03 01:30:24 +04:00
|
|
|
|
2014-03-03 02:15:37 +04:00
|
|
|
/**
|
|
|
|
* Generates the absolute url for the given relative url, which can contain parameters.
|
|
|
|
*
|
|
|
|
* @returns {string}
|
|
|
|
* @param {string} url
|
|
|
|
* @param params
|
|
|
|
*/
|
2014-03-03 01:30:24 +04:00
|
|
|
generateUrl: function(url, params) {
|
|
|
|
var _build = function (text, vars) {
|
|
|
|
return text.replace(/{([^{}]*)}/g,
|
|
|
|
function (a, b) {
|
|
|
|
var r = vars[b];
|
|
|
|
return typeof r === 'string' || typeof r === 'number' ? r : a;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
if (url.charAt(0) !== '/') {
|
|
|
|
url = '/' + url;
|
|
|
|
|
|
|
|
}
|
|
|
|
return OC.webroot + '/index.php' + _build(url, params);
|
|
|
|
},
|
|
|
|
|
2013-01-25 19:00:26 +04:00
|
|
|
/**
|
|
|
|
* @brief Creates an absolute url for remote use
|
|
|
|
* @param string $service id
|
|
|
|
* @param bool $add_slash
|
|
|
|
* @return string the url
|
|
|
|
*
|
|
|
|
* Returns a absolute url to the given service.
|
|
|
|
*/
|
|
|
|
linkToRemote:function(service) {
|
|
|
|
return window.location.protocol + '//' + window.location.host + OC.linkToRemoteBase(service);
|
|
|
|
},
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* get the absolute url for a file in an app
|
|
|
|
* @param app the id of the app
|
|
|
|
* @param type the type of the file to link to (e.g. css,img,ajax.template)
|
|
|
|
* @param file the filename
|
|
|
|
* @return string
|
|
|
|
*/
|
2011-07-26 00:30:55 +04:00
|
|
|
filePath:function(app,type,file){
|
2012-09-23 05:16:52 +04:00
|
|
|
var isCore=OC.coreApps.indexOf(app)!==-1,
|
|
|
|
link=OC.webroot;
|
|
|
|
if((file.substring(file.length-3) === 'php' || file.substring(file.length-3) === 'css') && !isCore){
|
2012-08-15 19:38:55 +04:00
|
|
|
link+='/index.php/apps/' + app;
|
2012-05-11 07:04:27 +04:00
|
|
|
if (file != 'index.php') {
|
2012-08-15 19:38:55 +04:00
|
|
|
link+='/';
|
2012-05-11 07:04:27 +04:00
|
|
|
if(type){
|
|
|
|
link+=encodeURI(type + '/');
|
|
|
|
}
|
|
|
|
link+= file;
|
2012-04-24 23:54:09 +04:00
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
}else if(file.substring(file.length-3) !== 'php' && !isCore){
|
2012-06-06 23:54:57 +04:00
|
|
|
link=OC.appswebroots[app];
|
2012-04-24 23:33:34 +04:00
|
|
|
if(type){
|
2012-06-22 14:24:10 +04:00
|
|
|
link+= '/'+type+'/';
|
2012-04-24 23:33:34 +04:00
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
if(link.substring(link.length-1) !== '/'){
|
2012-07-04 01:58:08 +04:00
|
|
|
link+='/';
|
2012-09-23 05:16:52 +04:00
|
|
|
}
|
2012-04-24 23:54:09 +04:00
|
|
|
link+=file;
|
2012-04-21 00:35:12 +04:00
|
|
|
}else{
|
2012-10-28 22:28:44 +04:00
|
|
|
if ((app == 'settings' || app == 'core' || app == 'search') && type == 'ajax') {
|
2012-09-29 20:08:54 +04:00
|
|
|
link+='/index.php/';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
link+='/';
|
|
|
|
}
|
2012-04-21 00:35:12 +04:00
|
|
|
if(!isCore){
|
|
|
|
link+='apps/';
|
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
if (app !== '') {
|
2012-05-07 20:35:02 +04:00
|
|
|
app+='/';
|
|
|
|
link+=app;
|
|
|
|
}
|
2012-04-21 00:35:12 +04:00
|
|
|
if(type){
|
|
|
|
link+=type+'/';
|
|
|
|
}
|
2012-07-31 14:21:06 +04:00
|
|
|
link+=file;
|
2011-07-26 00:30:55 +04:00
|
|
|
}
|
|
|
|
return link;
|
|
|
|
},
|
2014-01-24 16:32:31 +04:00
|
|
|
/**
|
|
|
|
* Redirect to the target URL, can also be used for downloads.
|
|
|
|
*/
|
|
|
|
redirect: function(targetUrl) {
|
|
|
|
window.location = targetUrl;
|
|
|
|
},
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* get the absolute path to an image file
|
|
|
|
* @param app the app id to which the image belongs
|
|
|
|
* @param file the name of the image file
|
|
|
|
* @return string
|
2012-07-31 14:21:06 +04:00
|
|
|
*
|
2012-04-15 15:32:45 +04:00
|
|
|
* if no extension is given for the image, it will automatically decide between .png and .svg based on what the browser supports
|
2012-07-31 14:21:06 +04:00
|
|
|
*/
|
2011-07-26 00:30:55 +04:00
|
|
|
imagePath:function(app,file){
|
2012-04-15 15:32:45 +04:00
|
|
|
if(file.indexOf('.')==-1){//if no extension is given, use png or svg depending on browser support
|
2012-02-22 01:31:35 +04:00
|
|
|
file+=(SVGSupport())?'.svg':'.png';
|
2011-07-28 06:28:04 +04:00
|
|
|
}
|
2011-07-26 00:30:55 +04:00
|
|
|
return OC.filePath(app,'img',file);
|
|
|
|
},
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* load a script for the server and load it
|
|
|
|
* @param app the app id to which the script belongs
|
|
|
|
* @param script the filename of the script
|
|
|
|
* @param ready event handeler to be called when the script is loaded
|
2012-07-31 14:21:06 +04:00
|
|
|
*
|
2011-08-07 01:18:49 +04:00
|
|
|
* if the script is already loaded, the event handeler will be called directly
|
|
|
|
*/
|
2011-07-26 00:30:55 +04:00
|
|
|
addScript:function(app,script,ready){
|
2012-09-23 05:16:52 +04:00
|
|
|
var deferred, path=OC.filePath(app,'js',script+'.js');
|
2012-08-29 03:57:35 +04:00
|
|
|
if(!OC.addScript.loaded[path]){
|
2011-07-30 20:05:20 +04:00
|
|
|
if(ready){
|
2012-09-23 05:16:52 +04:00
|
|
|
deferred=$.getScript(path,ready);
|
2011-07-30 20:05:20 +04:00
|
|
|
}else{
|
2012-09-23 05:16:52 +04:00
|
|
|
deferred=$.getScript(path);
|
2011-07-30 20:05:20 +04:00
|
|
|
}
|
2012-08-29 03:57:35 +04:00
|
|
|
OC.addScript.loaded[path]=deferred;
|
2011-07-30 23:18:54 +04:00
|
|
|
}else{
|
|
|
|
if(ready){
|
|
|
|
ready();
|
|
|
|
}
|
2011-07-26 00:30:55 +04:00
|
|
|
}
|
2012-08-29 03:57:35 +04:00
|
|
|
return OC.addScript.loaded[path];
|
2011-07-26 00:30:55 +04:00
|
|
|
},
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* load a css file and load it
|
|
|
|
* @param app the app id to which the css style belongs
|
|
|
|
* @param style the filename of the css file
|
|
|
|
*/
|
2011-07-26 00:30:55 +04:00
|
|
|
addStyle:function(app,style){
|
|
|
|
var path=OC.filePath(app,'css',style+'.css');
|
2012-09-23 05:16:52 +04:00
|
|
|
if(OC.addStyle.loaded.indexOf(path)===-1){
|
2011-09-26 23:18:56 +04:00
|
|
|
OC.addStyle.loaded.push(path);
|
2013-07-02 19:44:10 +04:00
|
|
|
if (document.createStyleSheet) {
|
|
|
|
document.createStyleSheet(path);
|
|
|
|
} else {
|
|
|
|
style=$('<link rel="stylesheet" type="text/css" href="'+path+'"/>');
|
|
|
|
$('head').append(style);
|
|
|
|
}
|
2011-07-30 20:05:20 +04:00
|
|
|
}
|
|
|
|
},
|
2012-09-09 01:56:37 +04:00
|
|
|
basename: function(path) {
|
|
|
|
return path.replace(/\\/g,'/').replace( /.*\//, '' );
|
|
|
|
},
|
|
|
|
dirname: function(path) {
|
2012-09-23 05:16:52 +04:00
|
|
|
return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
|
2012-09-09 02:35:02 +04:00
|
|
|
},
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* do a search query and display the results
|
|
|
|
* @param query the search query
|
|
|
|
*/
|
2011-07-30 20:05:20 +04:00
|
|
|
search:function(query){
|
|
|
|
if(query){
|
2011-07-31 06:03:48 +04:00
|
|
|
OC.addStyle('search','results');
|
|
|
|
$.getJSON(OC.filePath('search','ajax','search.php')+'?query='+encodeURIComponent(query), function(results){
|
|
|
|
OC.search.lastResults=results;
|
|
|
|
OC.search.showResults(results);
|
2011-07-30 23:18:54 +04:00
|
|
|
});
|
2011-07-30 20:05:20 +04:00
|
|
|
}
|
2012-02-29 02:02:02 +04:00
|
|
|
},
|
2012-04-02 21:39:24 +04:00
|
|
|
dialogs:OCdialogs,
|
2012-07-31 16:06:44 +04:00
|
|
|
mtime2date:function(mtime) {
|
2012-09-23 05:16:52 +04:00
|
|
|
mtime = parseInt(mtime,10);
|
2012-07-31 16:06:44 +04:00
|
|
|
var date = new Date(1000*mtime);
|
2012-09-23 05:16:52 +04:00
|
|
|
return date.getDate()+'.'+(date.getMonth()+1)+'.'+date.getFullYear()+', '+date.getHours()+':'+date.getMinutes();
|
2012-07-31 16:06:44 +04:00
|
|
|
},
|
2013-08-17 15:07:18 +04:00
|
|
|
/**
|
|
|
|
* Parses a URL query string into a JS map
|
|
|
|
* @param queryString query string in the format param1=1234¶m2=abcde¶m3=xyz
|
|
|
|
* @return map containing key/values matching the URL parameters
|
|
|
|
*/
|
|
|
|
parseQueryString:function(queryString){
|
|
|
|
var parts,
|
|
|
|
components,
|
|
|
|
result = {},
|
|
|
|
key,
|
|
|
|
value;
|
|
|
|
if (!queryString){
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (queryString[0] === '?'){
|
|
|
|
queryString = queryString.substr(1);
|
|
|
|
}
|
|
|
|
parts = queryString.split('&');
|
|
|
|
for (var i = 0; i < parts.length; i++){
|
|
|
|
components = parts[i].split('=');
|
|
|
|
if (!components.length){
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
key = decodeURIComponent(components[0]);
|
|
|
|
if (!key){
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
value = components[1];
|
|
|
|
result[key] = value && decodeURIComponent(value);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
},
|
2014-01-24 15:44:31 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Builds a URL query from a JS map.
|
|
|
|
* @param params parameter map
|
|
|
|
* @return string containing a URL query (without question) mark
|
|
|
|
*/
|
|
|
|
buildQueryString: function(params) {
|
|
|
|
var s = '';
|
|
|
|
var first = true;
|
|
|
|
if (!params) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
for (var key in params) {
|
|
|
|
var value = params[key];
|
|
|
|
if (first) {
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
s += '&';
|
|
|
|
}
|
|
|
|
s += encodeURIComponent(key);
|
|
|
|
if (value !== null && typeof(value) !== 'undefined') {
|
|
|
|
s += '=' + encodeURIComponent(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
},
|
|
|
|
|
2012-07-31 18:03:08 +04:00
|
|
|
/**
|
|
|
|
* Opens a popup with the setting for an app.
|
|
|
|
* @param appid String. The ID of the app e.g. 'calendar', 'contacts' or 'files'.
|
|
|
|
* @param loadJS boolean or String. If true 'js/settings.js' is loaded. If it's a string
|
|
|
|
* it will attempt to load a script by that name in the 'js' directory.
|
|
|
|
* @param cache boolean. If true the javascript file won't be forced refreshed. Defaults to true.
|
|
|
|
* @param scriptName String. The name of the PHP file to load. Defaults to 'settings.php' in
|
|
|
|
* the root of the app directory hierarchy.
|
|
|
|
*/
|
2012-07-31 16:17:28 +04:00
|
|
|
appSettings:function(args) {
|
|
|
|
if(typeof args === 'undefined' || typeof args.appid === 'undefined') {
|
2012-07-31 18:03:08 +04:00
|
|
|
throw { name: 'MissingParameter', message: 'The parameter appid is missing' };
|
2012-07-31 16:17:28 +04:00
|
|
|
}
|
2012-07-31 18:03:08 +04:00
|
|
|
var props = {scriptName:'settings.php', cache:true};
|
|
|
|
$.extend(props, args);
|
2012-07-31 14:21:06 +04:00
|
|
|
var settings = $('#appsettings');
|
2012-07-31 18:03:08 +04:00
|
|
|
if(settings.length == 0) {
|
|
|
|
throw { name: 'MissingDOMElement', message: 'There has be be an element with id "appsettings" for the popup to show.' };
|
|
|
|
}
|
2012-08-12 20:42:54 +04:00
|
|
|
var popup = $('#appsettings_popup');
|
|
|
|
if(popup.length == 0) {
|
|
|
|
$('body').prepend('<div class="popup hidden" id="appsettings_popup"></div>');
|
2013-02-09 20:20:08 +04:00
|
|
|
popup = $('#appsettings_popup');
|
2012-08-12 20:42:54 +04:00
|
|
|
popup.addClass(settings.hasClass('topright') ? 'topright' : 'bottomleft');
|
|
|
|
}
|
|
|
|
if(popup.is(':visible')) {
|
|
|
|
popup.hide().remove();
|
2012-07-31 14:21:06 +04:00
|
|
|
} else {
|
2012-08-12 20:42:54 +04:00
|
|
|
var arrowclass = settings.hasClass('topright') ? 'up' : 'left';
|
|
|
|
var jqxhr = $.get(OC.filePath(props.appid, '', props.scriptName), function(data) {
|
|
|
|
popup.html(data).ready(function() {
|
|
|
|
popup.prepend('<span class="arrow '+arrowclass+'"></span><h2>'+t('core', 'Settings')+'</h2><a class="close svg"></a>').show();
|
|
|
|
popup.find('.close').bind('click', function() {
|
|
|
|
popup.remove();
|
2012-09-06 00:17:33 +04:00
|
|
|
});
|
2012-08-12 20:42:54 +04:00
|
|
|
if(typeof props.loadJS !== 'undefined') {
|
|
|
|
var scriptname;
|
|
|
|
if(props.loadJS === true) {
|
|
|
|
scriptname = 'settings.js';
|
|
|
|
} else if(typeof props.loadJS === 'string') {
|
|
|
|
scriptname = props.loadJS;
|
|
|
|
} else {
|
|
|
|
throw { name: 'InvalidParameter', message: 'The "loadJS" parameter must be either boolean or a string.' };
|
2012-07-31 18:03:08 +04:00
|
|
|
}
|
2012-08-12 20:42:54 +04:00
|
|
|
if(props.cache) {
|
|
|
|
$.ajaxSetup({cache: true});
|
|
|
|
}
|
|
|
|
$.getScript(OC.filePath(props.appid, 'js', scriptname))
|
|
|
|
.fail(function(jqxhr, settings, e) {
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
}
|
2014-01-11 00:19:30 +04:00
|
|
|
if(!SVGSupport()) {
|
|
|
|
replaceSVG();
|
|
|
|
}
|
2012-08-12 20:42:54 +04:00
|
|
|
}).show();
|
|
|
|
}, 'html');
|
2012-07-31 14:21:06 +04:00
|
|
|
}
|
|
|
|
}
|
2012-02-22 01:31:35 +04:00
|
|
|
};
|
2011-07-31 02:50:04 +04:00
|
|
|
OC.search.customResults={};
|
2011-07-31 06:03:48 +04:00
|
|
|
OC.search.currentResult=-1;
|
|
|
|
OC.search.lastQuery='';
|
|
|
|
OC.search.lastResults={};
|
2011-07-30 20:05:20 +04:00
|
|
|
OC.addStyle.loaded=[];
|
|
|
|
OC.addScript.loaded=[];
|
|
|
|
|
2014-02-19 13:20:52 +04:00
|
|
|
OC.msg={
|
2014-02-26 16:10:46 +04:00
|
|
|
startSaving:function(selector){
|
|
|
|
OC.msg.startAction(selector, t('core', 'Saving...'));
|
2014-02-19 13:20:52 +04:00
|
|
|
},
|
|
|
|
finishedSaving:function(selector, data){
|
|
|
|
OC.msg.finishedAction(selector, data);
|
|
|
|
},
|
|
|
|
startAction:function(selector, message){
|
|
|
|
$(selector)
|
|
|
|
.html( message )
|
|
|
|
.removeClass('success')
|
|
|
|
.removeClass('error')
|
|
|
|
.stop(true, true)
|
|
|
|
.show();
|
|
|
|
},
|
|
|
|
finishedAction:function(selector, data){
|
|
|
|
if( data.status === "success" ){
|
|
|
|
$(selector).html( data.data.message )
|
|
|
|
.addClass('success')
|
|
|
|
.stop(true, true)
|
|
|
|
.delay(3000)
|
|
|
|
.fadeOut(900);
|
|
|
|
}else{
|
|
|
|
$(selector).html( data.data.message ).addClass('error');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-05 02:34:09 +04:00
|
|
|
OC.Notification={
|
2013-03-02 22:24:37 +04:00
|
|
|
queuedNotifications: [],
|
2013-02-09 20:20:08 +04:00
|
|
|
getDefaultNotificationFunction: null,
|
|
|
|
setDefault: function(callback) {
|
|
|
|
OC.Notification.getDefaultNotificationFunction = callback;
|
|
|
|
},
|
|
|
|
hide: function(callback) {
|
|
|
|
$('#notification').fadeOut('400', function(){
|
|
|
|
if (OC.Notification.isHidden()) {
|
|
|
|
if (OC.Notification.getDefaultNotificationFunction) {
|
|
|
|
OC.Notification.getDefaultNotificationFunction.call();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (callback) {
|
|
|
|
callback.call();
|
|
|
|
}
|
|
|
|
$('#notification').empty();
|
|
|
|
if(OC.Notification.queuedNotifications.length > 0){
|
|
|
|
OC.Notification.showHtml(OC.Notification.queuedNotifications[0]);
|
|
|
|
OC.Notification.queuedNotifications.shift();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
showHtml: function(html) {
|
|
|
|
if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){
|
|
|
|
$('#notification').html(html);
|
|
|
|
$('#notification').fadeIn().css("display","inline");
|
|
|
|
}else{
|
|
|
|
OC.Notification.queuedNotifications.push(html);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
show: function(text) {
|
2013-03-02 20:36:04 +04:00
|
|
|
if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){
|
2013-05-03 02:15:28 +04:00
|
|
|
$('#notification').text(text);
|
2013-03-02 20:36:04 +04:00
|
|
|
$('#notification').fadeIn().css("display","inline");
|
2013-02-09 20:20:08 +04:00
|
|
|
}else{
|
2013-05-03 02:15:28 +04:00
|
|
|
OC.Notification.queuedNotifications.push($('<div/>').text(text).html());
|
2013-02-09 20:20:08 +04:00
|
|
|
}
|
|
|
|
},
|
2013-01-19 03:31:49 +04:00
|
|
|
isHidden: function() {
|
|
|
|
return ($("#notification").text() === '');
|
|
|
|
}
|
2013-01-05 02:34:09 +04:00
|
|
|
};
|
|
|
|
|
2012-09-09 04:58:16 +04:00
|
|
|
OC.Breadcrumb={
|
|
|
|
container:null,
|
2013-08-02 13:44:53 +04:00
|
|
|
show:function(dir, leafname, leaflink){
|
2013-08-16 19:20:49 +04:00
|
|
|
if(!this.container){//default
|
|
|
|
this.container=$('#controls');
|
|
|
|
}
|
|
|
|
this._show(this.container, dir, leafname, leaflink);
|
|
|
|
},
|
|
|
|
_show:function(container, dir, leafname, leaflink){
|
|
|
|
var self = this;
|
2013-12-13 17:34:26 +04:00
|
|
|
|
2013-08-16 19:20:49 +04:00
|
|
|
this._clear(container);
|
2013-12-13 17:34:26 +04:00
|
|
|
|
2013-08-02 13:44:53 +04:00
|
|
|
// show home + path in subdirectories
|
2013-12-13 17:34:26 +04:00
|
|
|
if (dir) {
|
2013-08-02 13:44:53 +04:00
|
|
|
//add home
|
|
|
|
var link = OC.linkTo('files','index.php');
|
2013-08-01 16:38:06 +04:00
|
|
|
|
2013-08-02 13:44:53 +04:00
|
|
|
var crumb=$('<div/>');
|
|
|
|
crumb.addClass('crumb');
|
2013-08-01 16:38:06 +04:00
|
|
|
|
2013-08-02 13:44:53 +04:00
|
|
|
var crumbLink=$('<a/>');
|
|
|
|
crumbLink.attr('href',link);
|
2013-08-01 16:38:06 +04:00
|
|
|
|
2013-08-02 13:44:53 +04:00
|
|
|
var crumbImg=$('<img/>');
|
|
|
|
crumbImg.attr('src',OC.imagePath('core','places/home'));
|
|
|
|
crumbLink.append(crumbImg);
|
|
|
|
crumb.append(crumbLink);
|
2013-08-16 19:20:49 +04:00
|
|
|
container.prepend(crumb);
|
2013-08-02 13:44:53 +04:00
|
|
|
|
|
|
|
//add path parts
|
|
|
|
var segments = dir.split('/');
|
|
|
|
var pathurl = '';
|
|
|
|
jQuery.each(segments, function(i,name) {
|
|
|
|
if (name !== '') {
|
|
|
|
pathurl = pathurl+'/'+name;
|
|
|
|
var link = OC.linkTo('files','index.php')+'?dir='+encodeURIComponent(pathurl);
|
2013-08-16 19:20:49 +04:00
|
|
|
self._push(container, name, link);
|
2013-08-02 13:44:53 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-12-13 17:34:26 +04:00
|
|
|
|
2013-08-02 13:44:53 +04:00
|
|
|
//add leafname
|
|
|
|
if (leafname && leaflink) {
|
2013-08-16 19:20:49 +04:00
|
|
|
this._push(container, leafname, leaflink);
|
2013-08-02 13:44:53 +04:00
|
|
|
}
|
2013-08-01 16:38:06 +04:00
|
|
|
},
|
2012-09-09 04:58:16 +04:00
|
|
|
push:function(name, link){
|
2013-08-16 19:20:49 +04:00
|
|
|
if(!this.container){//default
|
|
|
|
this.container=$('#controls');
|
2012-09-09 04:58:16 +04:00
|
|
|
}
|
2013-08-16 19:20:49 +04:00
|
|
|
return this._push(OC.Breadcrumb.container, name, link);
|
|
|
|
},
|
|
|
|
_push:function(container, name, link){
|
2012-09-09 04:58:16 +04:00
|
|
|
var crumb=$('<div/>');
|
|
|
|
crumb.addClass('crumb').addClass('last');
|
|
|
|
|
|
|
|
var crumbLink=$('<a/>');
|
|
|
|
crumbLink.attr('href',link);
|
|
|
|
crumbLink.text(name);
|
|
|
|
crumb.append(crumbLink);
|
|
|
|
|
2013-08-16 19:20:49 +04:00
|
|
|
var existing=container.find('div.crumb');
|
2012-09-09 04:58:16 +04:00
|
|
|
if(existing.length){
|
|
|
|
existing.removeClass('last');
|
|
|
|
existing.last().after(crumb);
|
|
|
|
}else{
|
2013-08-16 19:20:49 +04:00
|
|
|
container.prepend(crumb);
|
2012-09-09 04:58:16 +04:00
|
|
|
}
|
|
|
|
return crumb;
|
|
|
|
},
|
|
|
|
pop:function(){
|
2013-08-16 19:20:49 +04:00
|
|
|
if(!this.container){//default
|
|
|
|
this.container=$('#controls');
|
2012-09-09 04:58:16 +04:00
|
|
|
}
|
2013-08-16 19:20:49 +04:00
|
|
|
this.container.find('div.crumb').last().remove();
|
|
|
|
this.container.find('div.crumb').last().addClass('last');
|
2012-09-09 04:58:16 +04:00
|
|
|
},
|
|
|
|
clear:function(){
|
2013-08-16 19:20:49 +04:00
|
|
|
if(!this.container){//default
|
|
|
|
this.container=$('#controls');
|
2012-09-09 04:58:16 +04:00
|
|
|
}
|
2013-08-16 19:20:49 +04:00
|
|
|
this._clear(this.container);
|
|
|
|
},
|
|
|
|
_clear:function(container) {
|
|
|
|
container.find('div.crumb').remove();
|
2012-09-09 04:58:16 +04:00
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
};
|
2012-09-09 04:58:16 +04:00
|
|
|
|
2012-09-23 05:16:52 +04:00
|
|
|
if(typeof localStorage !=='undefined' && localStorage !== null){
|
|
|
|
//user and instance aware localstorage
|
2012-01-15 22:11:25 +04:00
|
|
|
OC.localStorage={
|
|
|
|
namespace:'oc_'+OC.currentUser+'_'+OC.webroot+'_',
|
|
|
|
hasItem:function(name){
|
2012-09-23 05:16:52 +04:00
|
|
|
return OC.localStorage.getItem(name)!==null;
|
2012-01-15 22:11:25 +04:00
|
|
|
},
|
|
|
|
setItem:function(name,item){
|
|
|
|
return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item));
|
|
|
|
},
|
2014-03-10 19:22:52 +04:00
|
|
|
removeItem:function(name,item){
|
2014-03-10 19:26:07 +04:00
|
|
|
return localStorage.removeItem(OC.localStorage.namespace+name);
|
2014-03-10 19:22:52 +04:00
|
|
|
},
|
2012-01-15 22:11:25 +04:00
|
|
|
getItem:function(name){
|
2013-01-02 20:04:11 +04:00
|
|
|
var item = localStorage.getItem(OC.localStorage.namespace+name);
|
|
|
|
if(item===null) {
|
|
|
|
return null;
|
|
|
|
} else if (typeof JSON === 'undefined') {
|
|
|
|
//fallback to jquery for IE6/7/8
|
|
|
|
return $.parseJSON(item);
|
|
|
|
} else {
|
|
|
|
return JSON.parse(item);
|
|
|
|
}
|
2012-01-15 22:11:25 +04:00
|
|
|
}
|
2012-02-22 01:31:35 +04:00
|
|
|
};
|
2012-01-15 22:11:25 +04:00
|
|
|
}else{
|
|
|
|
//dummy localstorage
|
|
|
|
OC.localStorage={
|
2012-09-23 05:16:52 +04:00
|
|
|
hasItem:function(){
|
2012-01-15 22:11:25 +04:00
|
|
|
return false;
|
|
|
|
},
|
2012-09-23 05:16:52 +04:00
|
|
|
setItem:function(){
|
2012-01-15 22:11:25 +04:00
|
|
|
return false;
|
|
|
|
},
|
2012-09-23 05:16:52 +04:00
|
|
|
getItem:function(){
|
2012-01-15 22:11:25 +04:00
|
|
|
return null;
|
|
|
|
}
|
2012-02-22 01:31:35 +04:00
|
|
|
};
|
2012-01-15 22:11:25 +04:00
|
|
|
}
|
|
|
|
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* check if the browser support svg images
|
|
|
|
*/
|
2011-07-28 06:28:04 +04:00
|
|
|
function SVGSupport() {
|
2011-08-22 17:20:24 +04:00
|
|
|
return SVGSupport.checkMimeType.correct && !!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', "svg").createSVGRect;
|
2011-07-28 06:28:04 +04:00
|
|
|
}
|
2011-08-22 17:20:24 +04:00
|
|
|
SVGSupport.checkMimeType=function(){
|
|
|
|
$.ajax({
|
|
|
|
url: OC.imagePath('core','breadcrumb.svg'),
|
|
|
|
success:function(data,text,xhr){
|
|
|
|
var headerParts=xhr.getAllResponseHeaders().split("\n");
|
|
|
|
var headers={};
|
|
|
|
$.each(headerParts,function(i,text){
|
|
|
|
if(text){
|
|
|
|
var parts=text.split(':',2);
|
2012-09-23 05:16:52 +04:00
|
|
|
if(parts.length===2){
|
2012-01-15 02:37:50 +04:00
|
|
|
var value=parts[1].trim();
|
2012-09-23 05:16:52 +04:00
|
|
|
if(value[0]==='"'){
|
2012-01-15 02:37:50 +04:00
|
|
|
value=value.substr(1,value.length-2);
|
|
|
|
}
|
|
|
|
headers[parts[0]]=value;
|
2011-08-22 17:20:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2012-09-23 05:16:52 +04:00
|
|
|
if(headers["Content-Type"]!=='image/svg+xml'){
|
2011-08-22 17:20:24 +04:00
|
|
|
replaceSVG();
|
2012-02-22 01:31:35 +04:00
|
|
|
SVGSupport.checkMimeType.correct=false;
|
2011-08-22 17:20:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2012-02-22 01:31:35 +04:00
|
|
|
};
|
2011-08-22 17:20:24 +04:00
|
|
|
SVGSupport.checkMimeType.correct=true;
|
2011-07-29 18:52:09 +04:00
|
|
|
|
2011-08-22 16:53:52 +04:00
|
|
|
//replace all svg images with png for browser compatibility
|
|
|
|
function replaceSVG(){
|
|
|
|
$('img.svg').each(function(index,element){
|
|
|
|
element=$(element);
|
|
|
|
var src=element.attr('src');
|
|
|
|
element.attr('src',src.substr(0,src.length-3)+'png');
|
|
|
|
});
|
|
|
|
$('.svg').each(function(index,element){
|
|
|
|
element=$(element);
|
|
|
|
var background=element.css('background-image');
|
2012-02-26 06:10:01 +04:00
|
|
|
if(background){
|
|
|
|
var i=background.lastIndexOf('.svg');
|
|
|
|
if(i>=0){
|
|
|
|
background=background.substr(0,i)+'.png'+background.substr(i+4);
|
|
|
|
element.css('background-image',background);
|
|
|
|
}
|
2011-08-22 16:53:52 +04:00
|
|
|
}
|
|
|
|
element.find('*').each(function(index,element) {
|
|
|
|
element=$(element);
|
|
|
|
var background=element.css('background-image');
|
2012-02-26 06:10:01 +04:00
|
|
|
if(background){
|
|
|
|
var i=background.lastIndexOf('.svg');
|
|
|
|
if(i>=0){
|
|
|
|
background=background.substr(0,i)+'.png'+background.substr(i+4);
|
|
|
|
element.css('background-image',background);
|
|
|
|
}
|
2011-08-22 16:53:52 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-08-07 01:18:49 +04:00
|
|
|
/**
|
|
|
|
* prototypal inharitence functions
|
2012-07-31 14:21:06 +04:00
|
|
|
*
|
2011-08-07 01:18:49 +04:00
|
|
|
* usage:
|
|
|
|
* MySubObject=object(MyObject)
|
|
|
|
*/
|
|
|
|
function object(o) {
|
|
|
|
function F() {}
|
2013-02-09 20:20:08 +04:00
|
|
|
F.prototype = o;
|
2011-08-07 01:18:49 +04:00
|
|
|
return new F();
|
|
|
|
}
|
|
|
|
|
2012-10-29 04:14:07 +04:00
|
|
|
/**
|
|
|
|
* Fills height of window. (more precise than height: 100%;)
|
|
|
|
*/
|
|
|
|
function fillHeight(selector) {
|
|
|
|
if (selector.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var height = parseFloat($(window).height())-selector.offset().top;
|
|
|
|
selector.css('height', height + 'px');
|
|
|
|
if(selector.outerHeight() > selector.height()){
|
|
|
|
selector.css('height', height-(selector.outerHeight()-selector.height()) + 'px');
|
|
|
|
}
|
|
|
|
console.warn("This function is deprecated! Use CSS instead");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fills height and width of window. (more precise than height: 100%; or width: 100%;)
|
|
|
|
*/
|
|
|
|
function fillWindow(selector) {
|
|
|
|
if (selector.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fillHeight(selector);
|
|
|
|
var width = parseFloat($(window).width())-selector.offset().left;
|
|
|
|
selector.css('width', width + 'px');
|
|
|
|
if(selector.outerWidth() > selector.width()){
|
|
|
|
selector.css('width', width-(selector.outerWidth()-selector.width()) + 'px');
|
|
|
|
}
|
|
|
|
console.warn("This function is deprecated! Use CSS instead");
|
|
|
|
}
|
2011-10-04 20:54:07 +04:00
|
|
|
|
2014-02-04 16:56:10 +04:00
|
|
|
/**
|
|
|
|
* Initializes core
|
|
|
|
*/
|
|
|
|
function initCore() {
|
|
|
|
|
|
|
|
/**
|
2014-02-04 23:58:06 +04:00
|
|
|
* Calls the server periodically to ensure that session doesn't
|
2014-02-04 16:56:10 +04:00
|
|
|
* time out
|
|
|
|
*/
|
|
|
|
function initSessionHeartBeat(){
|
|
|
|
// interval in seconds
|
|
|
|
var interval = 900;
|
|
|
|
if (oc_config.session_lifetime) {
|
|
|
|
interval = Math.floor(oc_config.session_lifetime / 2);
|
|
|
|
}
|
|
|
|
// minimum one minute
|
|
|
|
if (interval < 60) {
|
|
|
|
interval = 60;
|
|
|
|
}
|
2014-03-03 02:15:37 +04:00
|
|
|
var url = OC.generateUrl('/heartbeat');
|
2014-03-03 01:30:24 +04:00
|
|
|
setInterval(function(){
|
|
|
|
$.post(url);
|
|
|
|
}, interval * 1000);
|
2014-02-04 16:56:10 +04:00
|
|
|
}
|
|
|
|
|
2014-02-04 23:58:06 +04:00
|
|
|
// session heartbeat (defaults to enabled)
|
2014-02-04 16:56:10 +04:00
|
|
|
if (typeof(oc_config.session_keepalive) === 'undefined' ||
|
|
|
|
!!oc_config.session_keepalive) {
|
|
|
|
|
|
|
|
initSessionHeartBeat();
|
|
|
|
}
|
2011-10-04 20:54:07 +04:00
|
|
|
|
2012-02-22 01:31:35 +04:00
|
|
|
if(!SVGSupport()){ //replace all svg images with png images for browser that dont support svg
|
2011-08-22 16:53:52 +04:00
|
|
|
replaceSVG();
|
2011-08-22 17:20:24 +04:00
|
|
|
}else{
|
|
|
|
SVGSupport.checkMimeType();
|
|
|
|
}
|
2011-07-31 06:03:48 +04:00
|
|
|
$('form.searchbox').submit(function(event){
|
|
|
|
event.preventDefault();
|
2011-10-03 16:41:55 +04:00
|
|
|
});
|
2011-07-31 06:03:48 +04:00
|
|
|
$('#searchbox').keyup(function(event){
|
2012-09-23 05:16:52 +04:00
|
|
|
if(event.keyCode===13){//enter
|
2011-07-31 06:03:48 +04:00
|
|
|
if(OC.search.currentResult>-1){
|
|
|
|
var result=$('#searchresults tr.result a')[OC.search.currentResult];
|
2011-08-28 00:36:15 +04:00
|
|
|
window.location = $(result).attr('href');
|
2011-07-31 06:03:48 +04:00
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
}else if(event.keyCode===38){//up
|
2011-07-31 06:03:48 +04:00
|
|
|
if(OC.search.currentResult>0){
|
|
|
|
OC.search.currentResult--;
|
|
|
|
OC.search.renderCurrent();
|
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
}else if(event.keyCode===40){//down
|
2011-07-31 06:03:48 +04:00
|
|
|
if(OC.search.lastResults.length>OC.search.currentResult+1){
|
|
|
|
OC.search.currentResult++;
|
|
|
|
OC.search.renderCurrent();
|
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
}else if(event.keyCode===27){//esc
|
2011-07-31 06:03:48 +04:00
|
|
|
OC.search.hide();
|
2013-08-01 00:24:52 +04:00
|
|
|
if (FileList && typeof FileList.unfilter === 'function') { //TODO add hook system
|
|
|
|
FileList.unfilter();
|
|
|
|
}
|
2011-07-30 20:05:20 +04:00
|
|
|
}else{
|
2011-07-31 06:03:48 +04:00
|
|
|
var query=$('#searchbox').val();
|
2012-09-23 05:16:52 +04:00
|
|
|
if(OC.search.lastQuery!==query){
|
2011-07-31 06:03:48 +04:00
|
|
|
OC.search.lastQuery=query;
|
|
|
|
OC.search.currentResult=-1;
|
2013-08-01 00:24:52 +04:00
|
|
|
if (FileList && typeof FileList.filter === 'function') { //TODO add hook system
|
|
|
|
FileList.filter(query);
|
|
|
|
}
|
2011-07-31 06:03:48 +04:00
|
|
|
if(query.length>2){
|
|
|
|
OC.search(query);
|
|
|
|
}else{
|
|
|
|
if(OC.search.hide){
|
|
|
|
OC.search.hide();
|
|
|
|
}
|
|
|
|
}
|
2011-07-30 23:18:54 +04:00
|
|
|
}
|
2011-07-30 20:05:20 +04:00
|
|
|
}
|
|
|
|
});
|
2011-08-08 13:45:01 +04:00
|
|
|
|
2013-03-25 14:39:35 +04:00
|
|
|
var setShowPassword = function(input, label) {
|
2013-10-15 13:11:18 +04:00
|
|
|
input.showPassword().keyup();
|
2013-03-25 03:00:09 +04:00
|
|
|
};
|
2013-03-25 14:39:35 +04:00
|
|
|
setShowPassword($('#adminpass'), $('label[for=show]'));
|
|
|
|
setShowPassword($('#pass2'), $('label[for=personal-show]'));
|
2013-04-13 08:15:30 +04:00
|
|
|
setShowPassword($('#dbpass'), $('label[for=dbpassword]'));
|
2011-08-08 13:45:01 +04:00
|
|
|
|
2011-10-03 16:41:55 +04:00
|
|
|
//use infield labels
|
2013-03-18 07:21:34 +04:00
|
|
|
$("label.infield").inFieldLabels({
|
|
|
|
pollDuration: 100
|
|
|
|
});
|
2011-10-03 16:41:55 +04:00
|
|
|
|
2012-09-23 05:16:52 +04:00
|
|
|
var checkShowCredentials = function() {
|
2011-08-08 13:45:01 +04:00
|
|
|
var empty = false;
|
2012-05-17 03:17:44 +04:00
|
|
|
$('input#user, input#password').each(function() {
|
2012-09-23 05:16:52 +04:00
|
|
|
if ($(this).val() === '') {
|
2011-08-08 13:45:01 +04:00
|
|
|
empty = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if(empty) {
|
|
|
|
$('#submit').fadeOut();
|
2011-10-03 16:41:55 +04:00
|
|
|
$('#remember_login').hide();
|
2011-08-08 13:45:01 +04:00
|
|
|
$('#remember_login+label').fadeOut();
|
|
|
|
} else {
|
|
|
|
$('#submit').fadeIn();
|
2011-10-03 16:41:55 +04:00
|
|
|
$('#remember_login').show();
|
2011-08-08 13:45:01 +04:00
|
|
|
$('#remember_login+label').fadeIn();
|
|
|
|
}
|
2012-09-23 05:16:52 +04:00
|
|
|
};
|
2012-08-03 15:15:15 +04:00
|
|
|
// hide log in button etc. when form fields not filled
|
2012-08-25 02:05:07 +04:00
|
|
|
// commented out due to some browsers having issues with it
|
2012-08-17 00:42:51 +04:00
|
|
|
// checkShowCredentials();
|
|
|
|
// $('input#user, input#password').keyup(checkShowCredentials);
|
2011-08-09 01:31:58 +04:00
|
|
|
|
2014-02-20 16:36:52 +04:00
|
|
|
// user menu
|
2012-05-04 11:53:36 +04:00
|
|
|
$('#settings #expand').keydown(function(event) {
|
2012-09-23 05:16:52 +04:00
|
|
|
if (event.which === 13 || event.which === 32) {
|
2012-05-04 11:53:36 +04:00
|
|
|
$('#expand').click()
|
|
|
|
}
|
|
|
|
});
|
2011-08-13 00:18:38 +04:00
|
|
|
$('#settings #expand').click(function(event) {
|
2013-02-14 20:13:50 +04:00
|
|
|
$('#settings #expanddiv').slideToggle(200);
|
2011-08-13 00:18:38 +04:00
|
|
|
event.stopPropagation();
|
2011-08-09 01:31:58 +04:00
|
|
|
});
|
2011-08-13 00:18:38 +04:00
|
|
|
$('#settings #expanddiv').click(function(event){
|
|
|
|
event.stopPropagation();
|
2011-10-03 16:41:55 +04:00
|
|
|
});
|
2014-02-20 16:36:52 +04:00
|
|
|
//hide the user menu when clicking outside it
|
|
|
|
$(document).click(function(){
|
2013-02-14 20:13:50 +04:00
|
|
|
$('#settings #expanddiv').slideUp(200);
|
2011-08-13 00:18:38 +04:00
|
|
|
});
|
2011-08-14 16:55:43 +04:00
|
|
|
|
2011-08-14 18:12:27 +04:00
|
|
|
// all the tipsy stuff needs to be here (in reverse order) to work
|
2013-01-31 20:00:05 +04:00
|
|
|
$('.displayName .action').tipsy({gravity:'se', fade:true, live:true});
|
2011-08-16 01:45:25 +04:00
|
|
|
$('.password .action').tipsy({gravity:'se', fade:true, live:true});
|
2013-01-07 15:23:29 +04:00
|
|
|
$('#upload').tipsy({gravity:'w', fade:true});
|
2011-08-28 10:46:38 +04:00
|
|
|
$('.selectedActions a').tipsy({gravity:'s', fade:true, live:true});
|
2013-08-28 19:58:23 +04:00
|
|
|
$('a.action.delete').tipsy({gravity:'e', fade:true, live:true});
|
2012-04-13 20:28:17 +04:00
|
|
|
$('a.action').tipsy({gravity:'s', fade:true, live:true});
|
2011-08-14 18:12:27 +04:00
|
|
|
$('td .modified').tipsy({gravity:'s', fade:true, live:true});
|
|
|
|
$('input').tipsy({gravity:'w', fade:true});
|
2014-02-04 16:56:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(initCore);
|
2011-08-08 13:07:44 +04:00
|
|
|
|
2011-11-02 01:35:13 +04:00
|
|
|
/**
|
|
|
|
* Filter Jquery selector by attribute value
|
2012-11-14 04:18:26 +04:00
|
|
|
*/
|
2012-07-31 14:21:06 +04:00
|
|
|
$.fn.filterAttr = function(attr_name, attr_value) {
|
2012-08-25 02:05:07 +04:00
|
|
|
return this.filter(function() { return $(this).attr(attr_name) === attr_value; });
|
2011-11-02 01:35:13 +04:00
|
|
|
};
|
2012-01-15 22:11:25 +04:00
|
|
|
|
2012-02-26 17:03:53 +04:00
|
|
|
function humanFileSize(size) {
|
2012-09-23 05:16:52 +04:00
|
|
|
var humanList = ['B', 'kB', 'MB', 'GB', 'TB'];
|
2012-02-26 17:03:53 +04:00
|
|
|
// Calculate Log with base 1024: size = 1024 ** order
|
2012-11-06 14:01:02 +04:00
|
|
|
var order = size?Math.floor(Math.log(size) / Math.log(1024)):0;
|
2012-02-26 17:03:53 +04:00
|
|
|
// Stay in range of the byte sizes that are defined
|
2012-02-27 01:09:21 +04:00
|
|
|
order = Math.min(humanList.length - 1, order);
|
2012-09-23 05:16:52 +04:00
|
|
|
var readableFormat = humanList[order];
|
|
|
|
var relativeSize = (size / Math.pow(1024, order)).toFixed(1);
|
2013-11-25 15:26:03 +04:00
|
|
|
if(order < 2){
|
|
|
|
relativeSize = parseFloat(relativeSize).toFixed(0);
|
2013-12-18 18:43:45 +04:00
|
|
|
}
|
2013-11-25 15:26:03 +04:00
|
|
|
else if(relativeSize.substr(relativeSize.length-2,2)==='.0'){
|
2012-02-26 17:03:53 +04:00
|
|
|
relativeSize=relativeSize.substr(0,relativeSize.length-2);
|
2012-02-26 00:19:32 +04:00
|
|
|
}
|
2012-02-26 17:03:53 +04:00
|
|
|
return relativeSize + ' ' + readableFormat;
|
2012-02-26 00:19:32 +04:00
|
|
|
}
|
2012-01-15 22:11:25 +04:00
|
|
|
|
2012-02-26 00:19:32 +04:00
|
|
|
function formatDate(date){
|
|
|
|
if(typeof date=='number'){
|
|
|
|
date=new Date(date);
|
|
|
|
}
|
2012-09-21 10:33:26 +04:00
|
|
|
return $.datepicker.formatDate(datepickerFormatDate, date)+' '+date.getHours()+':'+((date.getMinutes()<10)?'0':'')+date.getMinutes();
|
2012-02-26 00:19:32 +04:00
|
|
|
}
|
2012-08-29 23:52:42 +04:00
|
|
|
|
2013-08-01 00:24:52 +04:00
|
|
|
// taken from http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery
|
|
|
|
function getURLParameter(name) {
|
|
|
|
return decodeURI(
|
|
|
|
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search) || [, null])[1]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-11-14 04:18:26 +04:00
|
|
|
/**
|
|
|
|
* takes an absolute timestamp and return a string with a human-friendly relative date
|
2012-11-06 19:56:42 +04:00
|
|
|
* @param int a Unix timestamp
|
|
|
|
*/
|
|
|
|
function relative_modified_date(timestamp) {
|
|
|
|
var timediff = Math.round((new Date()).getTime() / 1000) - timestamp;
|
|
|
|
var diffminutes = Math.round(timediff/60);
|
|
|
|
var diffhours = Math.round(diffminutes/60);
|
|
|
|
var diffdays = Math.round(diffhours/24);
|
|
|
|
var diffmonths = Math.round(diffdays/31);
|
|
|
|
if(timediff < 60) { return t('core','seconds ago'); }
|
2013-08-09 22:37:18 +04:00
|
|
|
else if(timediff < 3600) { return n('core','%n minute ago', '%n minutes ago', diffminutes); }
|
|
|
|
else if(timediff < 86400) { return n('core', '%n hour ago', '%n hours ago', diffhours); }
|
2012-11-06 19:56:42 +04:00
|
|
|
else if(timediff < 86400) { return t('core','today'); }
|
|
|
|
else if(timediff < 172800) { return t('core','yesterday'); }
|
2013-08-09 22:37:18 +04:00
|
|
|
else if(timediff < 2678400) { return n('core', '%n day ago', '%n days ago', diffdays); }
|
2012-11-06 19:56:42 +04:00
|
|
|
else if(timediff < 5184000) { return t('core','last month'); }
|
2013-08-09 22:37:18 +04:00
|
|
|
else if(timediff < 31556926) { return n('core', '%n month ago', '%n months ago', diffmonths); }
|
2012-11-14 04:18:26 +04:00
|
|
|
//else if(timediff < 31556926) { return t('core','months ago'); }
|
2012-11-06 19:56:42 +04:00
|
|
|
else if(timediff < 63113852) { return t('core','last year'); }
|
|
|
|
else { return t('core','years ago'); }
|
|
|
|
}
|
|
|
|
|
2012-08-29 23:52:42 +04:00
|
|
|
/**
|
|
|
|
* get a variable by name
|
|
|
|
* @param string name
|
|
|
|
*/
|
|
|
|
OC.get=function(name) {
|
|
|
|
var namespaces = name.split(".");
|
|
|
|
var tail = namespaces.pop();
|
|
|
|
var context=window;
|
2013-07-07 22:26:09 +04:00
|
|
|
|
2012-08-29 23:52:42 +04:00
|
|
|
for(var i = 0; i < namespaces.length; i++) {
|
|
|
|
context = context[namespaces[i]];
|
|
|
|
if(!context){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return context[tail];
|
2012-09-23 05:16:52 +04:00
|
|
|
};
|
2012-08-29 23:52:42 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* set a variable by name
|
|
|
|
* @param string name
|
|
|
|
* @param mixed value
|
|
|
|
*/
|
|
|
|
OC.set=function(name, value) {
|
|
|
|
var namespaces = name.split(".");
|
|
|
|
var tail = namespaces.pop();
|
|
|
|
var context=window;
|
2013-07-07 22:26:09 +04:00
|
|
|
|
2012-08-29 23:52:42 +04:00
|
|
|
for(var i = 0; i < namespaces.length; i++) {
|
|
|
|
if(!context[namespaces[i]]){
|
|
|
|
context[namespaces[i]]={};
|
|
|
|
}
|
|
|
|
context = context[namespaces[i]];
|
|
|
|
}
|
|
|
|
context[tail]=value;
|
2012-09-23 05:16:52 +04:00
|
|
|
};
|
2013-02-26 22:34:46 +04:00
|
|
|
|
2014-02-20 21:42:59 +04:00
|
|
|
// fix device width on windows phone
|
|
|
|
(function() {
|
|
|
|
if ("-ms-user-select" in document.documentElement.style && navigator.userAgent.match(/IEMobile\/10\.0/)) {
|
|
|
|
var msViewportStyle = document.createElement("style");
|
|
|
|
msViewportStyle.appendChild(
|
|
|
|
document.createTextNode("@-ms-viewport{width:auto!important}")
|
|
|
|
);
|
|
|
|
document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
2013-05-13 17:54:45 +04:00
|
|
|
/**
|
|
|
|
* select a range in an input field
|
|
|
|
* @link http://stackoverflow.com/questions/499126/jquery-set-cursor-position-in-text-area
|
|
|
|
* @param {type} start
|
|
|
|
* @param {type} end
|
|
|
|
*/
|
2013-09-16 15:47:37 +04:00
|
|
|
jQuery.fn.selectRange = function(start, end) {
|
2013-05-13 17:54:45 +04:00
|
|
|
return this.each(function() {
|
|
|
|
if (this.setSelectionRange) {
|
|
|
|
this.focus();
|
|
|
|
this.setSelectionRange(start, end);
|
|
|
|
} else if (this.createTextRange) {
|
|
|
|
var range = this.createTextRange();
|
|
|
|
range.collapse(true);
|
|
|
|
range.moveEnd('character', end);
|
|
|
|
range.moveStart('character', start);
|
|
|
|
range.select();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2013-02-26 22:34:46 +04:00
|
|
|
|
2013-09-16 15:47:37 +04:00
|
|
|
/**
|
|
|
|
* check if an element exists.
|
|
|
|
* allows you to write if ($('#myid').exists()) to increase readability
|
|
|
|
* @link http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery
|
|
|
|
*/
|
|
|
|
jQuery.fn.exists = function(){
|
|
|
|
return this.length > 0;
|
2013-10-22 20:11:03 +04:00
|
|
|
};
|
2013-09-16 15:47:37 +04:00
|
|
|
|