123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020 |
- /**
- * Disable console output unless DEBUG mode is enabled.
- * Add
- * define('DEBUG', true);
- * To the end of config/config.php to enable debug mode.
- * The undefined checks fix the broken ie8 console
- */
- var oc_debug;
- var oc_webroot;
- var oc_current_user = document.getElementsByTagName('head')[0].getAttribute('data-user');
- var oc_requesttoken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken');
- window.oc_config = window.oc_config || {};
- if (typeof oc_webroot === "undefined") {
- 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('/'));
- }
- }
- if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") {
- if (!window.console) {
- window.console = {};
- }
- var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert'];
- for (var i = 0; i < methods.length; i++) {
- console[methods[i]] = function () { };
- }
- }
- 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) {
- t.cache[app] = jsondata.data;
- t.plural_form = jsondata.plural_form;
- }
- });
- // Bad answer ...
- if (!( t.cache[app] )) {
- t.cache[app] = [];
- }
- }
- if (typeof t.plural_function[app] == 'undefined') {
- t.plural_function[app] = function (n) {
- 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) };';
- t.plural_function[app] = new Function("n", code);
- } else {
- console.log("Syntax error in language file. Plural-Forms header is invalid ["+t.plural_forms+"]");
- }
- }
- }
- /**
- * translate a string
- * @param app the id of the app for which to translate the string
- * @param text the string to translate
- * @param vars (optional) FIXME
- * @param count (optional) number to replace %n with
- * @return string
- */
- function t(app, text, vars, count){
- initL10N(app);
- var _build = function (text, vars, count) {
- return text.replace(/%n/g, count).replace(/{([^{}]*)}/g,
- function (a, b) {
- var r = vars[b];
- return typeof r === 'string' || typeof r === 'number' ? r : a;
- }
- );
- };
- var translation = text;
- if( typeof( t.cache[app][text] ) !== 'undefined' ){
- translation = t.cache[app][text];
- }
- if(typeof vars === 'object' || count !== undefined ) {
- return _build(translation, vars, count);
- } else {
- return translation;
- }
- }
- t.cache = {};
- // 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 = {};
- /**
- * 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
- */
- function n(app, text_singular, text_plural, count, vars) {
- initL10N(app);
- var identifier = '_' + text_singular + '_::_' + text_plural + '_';
- if( typeof( t.cache[app][identifier] ) !== 'undefined' ){
- var translation = t.cache[app][identifier];
- if ($.isArray(translation)) {
- var plural = t.plural_function[app](count);
- return t(app, translation[plural.plural], vars, count);
- }
- }
- if(count === 1) {
- return t(app, text_singular, vars, count);
- }
- else{
- return t(app, text_plural, vars, count);
- }
- }
- /**
- * Sanitizes a HTML string
- * @param s string
- * @return Sanitized string
- */
- function escapeHTML(s) {
- return s.toString().split('&').join('&').split('<').join('<').split('"').join('"');
- }
- /**
- * 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) {
- return OC.filePath('files', 'ajax', 'download.php')+'?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir);
- }
- var OC={
- PERMISSION_CREATE:4,
- PERMISSION_READ:1,
- PERMISSION_UPDATE:2,
- PERMISSION_DELETE:8,
- PERMISSION_SHARE:16,
- PERMISSION_ALL:31,
- webroot:oc_webroot,
- appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false,
- currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false,
- coreApps:['', 'admin','log','search','settings','core','3rdparty'],
- /**
- * 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
- */
- linkTo:function(app,file){
- return OC.filePath(app,'',file);
- },
- /**
- * 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;
- },
- /**
- * @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);
- },
- /**
- * 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
- */
- filePath:function(app,type,file){
- var isCore=OC.coreApps.indexOf(app)!==-1,
- link=OC.webroot;
- if((file.substring(file.length-3) === 'php' || file.substring(file.length-3) === 'css') && !isCore){
- link+='/index.php/apps/' + app;
- if (file != 'index.php') {
- link+='/';
- if(type){
- link+=encodeURI(type + '/');
- }
- link+= file;
- }
- }else if(file.substring(file.length-3) !== 'php' && !isCore){
- link=OC.appswebroots[app];
- if(type){
- link+= '/'+type+'/';
- }
- if(link.substring(link.length-1) !== '/'){
- link+='/';
- }
- link+=file;
- }else{
- if ((app == 'settings' || app == 'core' || app == 'search') && type == 'ajax') {
- link+='/index.php/';
- }
- else {
- link+='/';
- }
- if(!isCore){
- link+='apps/';
- }
- if (app !== '') {
- app+='/';
- link+=app;
- }
- if(type){
- link+=type+'/';
- }
- link+=file;
- }
- return link;
- },
- /**
- * Redirect to the target URL, can also be used for downloads.
- */
- redirect: function(targetUrl) {
- window.location = targetUrl;
- },
- /**
- * 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
- *
- * if no extension is given for the image, it will automatically decide between .png and .svg based on what the browser supports
- */
- imagePath:function(app,file){
- if(file.indexOf('.')==-1){//if no extension is given, use png or svg depending on browser support
- file+=(SVGSupport())?'.svg':'.png';
- }
- return OC.filePath(app,'img',file);
- },
- /**
- * 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
- *
- * if the script is already loaded, the event handeler will be called directly
- */
- addScript:function(app,script,ready){
- var deferred, path=OC.filePath(app,'js',script+'.js');
- if(!OC.addScript.loaded[path]){
- if(ready){
- deferred=$.getScript(path,ready);
- }else{
- deferred=$.getScript(path);
- }
- OC.addScript.loaded[path]=deferred;
- }else{
- if(ready){
- ready();
- }
- }
- return OC.addScript.loaded[path];
- },
- /**
- * 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
- */
- addStyle:function(app,style){
- var path=OC.filePath(app,'css',style+'.css');
- if(OC.addStyle.loaded.indexOf(path)===-1){
- OC.addStyle.loaded.push(path);
- if (document.createStyleSheet) {
- document.createStyleSheet(path);
- } else {
- style=$('<link rel="stylesheet" type="text/css" href="'+path+'"/>');
- $('head').append(style);
- }
- }
- },
- basename: function(path) {
- return path.replace(/\\/g,'/').replace( /.*\//, '' );
- },
- dirname: function(path) {
- return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
- },
- /**
- * do a search query and display the results
- * @param query the search query
- */
- search:function(query){
- if(query){
- OC.addStyle('search','results');
- $.getJSON(OC.filePath('search','ajax','search.php')+'?query='+encodeURIComponent(query), function(results){
- OC.search.lastResults=results;
- OC.search.showResults(results);
- });
- }
- },
- dialogs:OCdialogs,
- mtime2date:function(mtime) {
- mtime = parseInt(mtime,10);
- var date = new Date(1000*mtime);
- return date.getDate()+'.'+(date.getMonth()+1)+'.'+date.getFullYear()+', '+date.getHours()+':'+date.getMinutes();
- },
- /**
- * 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;
- },
- /**
- * 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;
- },
- /**
- * 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.
- */
- appSettings:function(args) {
- if(typeof args === 'undefined' || typeof args.appid === 'undefined') {
- throw { name: 'MissingParameter', message: 'The parameter appid is missing' };
- }
- var props = {scriptName:'settings.php', cache:true};
- $.extend(props, args);
- var settings = $('#appsettings');
- if(settings.length == 0) {
- throw { name: 'MissingDOMElement', message: 'There has be be an element with id "appsettings" for the popup to show.' };
- }
- var popup = $('#appsettings_popup');
- if(popup.length == 0) {
- $('body').prepend('<div class="popup hidden" id="appsettings_popup"></div>');
- popup = $('#appsettings_popup');
- popup.addClass(settings.hasClass('topright') ? 'topright' : 'bottomleft');
- }
- if(popup.is(':visible')) {
- popup.hide().remove();
- } else {
- 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();
- });
- 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.' };
- }
- if(props.cache) {
- $.ajaxSetup({cache: true});
- }
- $.getScript(OC.filePath(props.appid, 'js', scriptname))
- .fail(function(jqxhr, settings, e) {
- throw e;
- });
- }
- if(!SVGSupport()) {
- replaceSVG();
- }
- }).show();
- }, 'html');
- }
- }
- };
- OC.search.customResults={};
- OC.search.currentResult=-1;
- OC.search.lastQuery='';
- OC.search.lastResults={};
- OC.addStyle.loaded=[];
- OC.addScript.loaded=[];
- OC.Notification={
- queuedNotifications: [],
- 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) {
- if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){
- $('#notification').text(text);
- $('#notification').fadeIn().css("display","inline");
- }else{
- OC.Notification.queuedNotifications.push($('<div/>').text(text).html());
- }
- },
- isHidden: function() {
- return ($("#notification").text() === '');
- }
- };
- OC.Breadcrumb={
- container:null,
- show:function(dir, leafname, leaflink){
- if(!this.container){//default
- this.container=$('#controls');
- }
- this._show(this.container, dir, leafname, leaflink);
- },
- _show:function(container, dir, leafname, leaflink){
- var self = this;
- this._clear(container);
- // show home + path in subdirectories
- if (dir) {
- //add home
- var link = OC.linkTo('files','index.php');
- var crumb=$('<div/>');
- crumb.addClass('crumb');
- var crumbLink=$('<a/>');
- crumbLink.attr('href',link);
- var crumbImg=$('<img/>');
- crumbImg.attr('src',OC.imagePath('core','places/home'));
- crumbLink.append(crumbImg);
- crumb.append(crumbLink);
- container.prepend(crumb);
- //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);
- self._push(container, name, link);
- }
- });
- }
- //add leafname
- if (leafname && leaflink) {
- this._push(container, leafname, leaflink);
- }
- },
- push:function(name, link){
- if(!this.container){//default
- this.container=$('#controls');
- }
- return this._push(OC.Breadcrumb.container, name, link);
- },
- _push:function(container, name, link){
- var crumb=$('<div/>');
- crumb.addClass('crumb').addClass('last');
- var crumbLink=$('<a/>');
- crumbLink.attr('href',link);
- crumbLink.text(name);
- crumb.append(crumbLink);
- var existing=container.find('div.crumb');
- if(existing.length){
- existing.removeClass('last');
- existing.last().after(crumb);
- }else{
- container.prepend(crumb);
- }
- return crumb;
- },
- pop:function(){
- if(!this.container){//default
- this.container=$('#controls');
- }
- this.container.find('div.crumb').last().remove();
- this.container.find('div.crumb').last().addClass('last');
- },
- clear:function(){
- if(!this.container){//default
- this.container=$('#controls');
- }
- this._clear(this.container);
- },
- _clear:function(container) {
- container.find('div.crumb').remove();
- }
- };
- if(typeof localStorage !=='undefined' && localStorage !== null){
- //user and instance aware localstorage
- OC.localStorage={
- namespace:'oc_'+OC.currentUser+'_'+OC.webroot+'_',
- hasItem:function(name){
- return OC.localStorage.getItem(name)!==null;
- },
- setItem:function(name,item){
- return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item));
- },
- getItem:function(name){
- 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);
- }
- }
- };
- }else{
- //dummy localstorage
- OC.localStorage={
- hasItem:function(){
- return false;
- },
- setItem:function(){
- return false;
- },
- getItem:function(){
- return null;
- }
- };
- }
- /**
- * check if the browser support svg images
- */
- function SVGSupport() {
- return SVGSupport.checkMimeType.correct && !!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', "svg").createSVGRect;
- }
- 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);
- if(parts.length===2){
- var value=parts[1].trim();
- if(value[0]==='"'){
- value=value.substr(1,value.length-2);
- }
- headers[parts[0]]=value;
- }
- }
- });
- if(headers["Content-Type"]!=='image/svg+xml'){
- replaceSVG();
- SVGSupport.checkMimeType.correct=false;
- }
- }
- });
- };
- SVGSupport.checkMimeType.correct=true;
- //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');
- 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);
- }
- }
- element.find('*').each(function(index,element) {
- element=$(element);
- var background=element.css('background-image');
- 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);
- }
- }
- });
- });
- }
- /**
- * prototypal inharitence functions
- *
- * usage:
- * MySubObject=object(MyObject)
- */
- function object(o) {
- function F() {}
- F.prototype = o;
- return new F();
- }
- /**
- * 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");
- }
- /**
- * Initializes core
- */
- function initCore() {
- /**
- * Calls the server periodically to ensure that session doesn't
- * 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;
- }
- OC.Router.registerLoadedCallback(function(){
- var url = OC.Router.generate('heartbeat');
- setInterval(function(){
- $.post(url);
- }, interval * 1000);
- });
- }
- // session heartbeat (defaults to enabled)
- if (typeof(oc_config.session_keepalive) === 'undefined' ||
- !!oc_config.session_keepalive) {
- initSessionHeartBeat();
- }
- if(!SVGSupport()){ //replace all svg images with png images for browser that dont support svg
- replaceSVG();
- }else{
- SVGSupport.checkMimeType();
- }
- $('form.searchbox').submit(function(event){
- event.preventDefault();
- });
- $('#searchbox').keyup(function(event){
- if(event.keyCode===13){//enter
- if(OC.search.currentResult>-1){
- var result=$('#searchresults tr.result a')[OC.search.currentResult];
- window.location = $(result).attr('href');
- }
- }else if(event.keyCode===38){//up
- if(OC.search.currentResult>0){
- OC.search.currentResult--;
- OC.search.renderCurrent();
- }
- }else if(event.keyCode===40){//down
- if(OC.search.lastResults.length>OC.search.currentResult+1){
- OC.search.currentResult++;
- OC.search.renderCurrent();
- }
- }else if(event.keyCode===27){//esc
- OC.search.hide();
- if (FileList && typeof FileList.unfilter === 'function') { //TODO add hook system
- FileList.unfilter();
- }
- }else{
- var query=$('#searchbox').val();
- if(OC.search.lastQuery!==query){
- OC.search.lastQuery=query;
- OC.search.currentResult=-1;
- if (FileList && typeof FileList.filter === 'function') { //TODO add hook system
- FileList.filter(query);
- }
- if(query.length>2){
- OC.search(query);
- }else{
- if(OC.search.hide){
- OC.search.hide();
- }
- }
- }
- }
- });
- var setShowPassword = function(input, label) {
- input.showPassword().keyup();
- };
- setShowPassword($('#adminpass'), $('label[for=show]'));
- setShowPassword($('#pass2'), $('label[for=personal-show]'));
- setShowPassword($('#dbpass'), $('label[for=dbpassword]'));
- //use infield labels
- $("label.infield").inFieldLabels({
- pollDuration: 100
- });
- var checkShowCredentials = function() {
- var empty = false;
- $('input#user, input#password').each(function() {
- if ($(this).val() === '') {
- empty = true;
- }
- });
- if(empty) {
- $('#submit').fadeOut();
- $('#remember_login').hide();
- $('#remember_login+label').fadeOut();
- } else {
- $('#submit').fadeIn();
- $('#remember_login').show();
- $('#remember_login+label').fadeIn();
- }
- };
- // hide log in button etc. when form fields not filled
- // commented out due to some browsers having issues with it
- // checkShowCredentials();
- // $('input#user, input#password').keyup(checkShowCredentials);
- $('#settings #expand').keydown(function(event) {
- if (event.which === 13 || event.which === 32) {
- $('#expand').click()
- }
- });
- $('#settings #expand').click(function(event) {
- $('#settings #expanddiv').slideToggle(200);
- event.stopPropagation();
- });
- $('#settings #expanddiv').click(function(event){
- event.stopPropagation();
- });
- $(document).click(function(){//hide the settings menu when clicking outside it
- $('#settings #expanddiv').slideUp(200);
- });
- // all the tipsy stuff needs to be here (in reverse order) to work
- $('.displayName .action').tipsy({gravity:'se', fade:true, live:true});
- $('.password .action').tipsy({gravity:'se', fade:true, live:true});
- $('#upload').tipsy({gravity:'w', fade:true});
- $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true});
- $('a.action.delete').tipsy({gravity:'e', fade:true, live:true});
- $('a.action').tipsy({gravity:'s', fade:true, live:true});
- $('td .modified').tipsy({gravity:'s', fade:true, live:true});
- $('input').tipsy({gravity:'w', fade:true});
- }
- $(document).ready(initCore);
- /**
- * Filter Jquery selector by attribute value
- */
- $.fn.filterAttr = function(attr_name, attr_value) {
- return this.filter(function() { return $(this).attr(attr_name) === attr_value; });
- };
- function humanFileSize(size) {
- var humanList = ['B', 'kB', 'MB', 'GB', 'TB'];
- // Calculate Log with base 1024: size = 1024 ** order
- var order = size?Math.floor(Math.log(size) / Math.log(1024)):0;
- // Stay in range of the byte sizes that are defined
- order = Math.min(humanList.length - 1, order);
- var readableFormat = humanList[order];
- var relativeSize = (size / Math.pow(1024, order)).toFixed(1);
- if(order < 2){
- relativeSize = parseFloat(relativeSize).toFixed(0);
- }
- else if(relativeSize.substr(relativeSize.length-2,2)==='.0'){
- relativeSize=relativeSize.substr(0,relativeSize.length-2);
- }
- return relativeSize + ' ' + readableFormat;
- }
- function formatDate(date){
- if(typeof date=='number'){
- date=new Date(date);
- }
- return $.datepicker.formatDate(datepickerFormatDate, date)+' '+date.getHours()+':'+((date.getMinutes()<10)?'0':'')+date.getMinutes();
- }
- // taken from http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery
- function getURLParameter(name) {
- return decodeURI(
- (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search) || [, null])[1]
- );
- }
- /**
- * takes an absolute timestamp and return a string with a human-friendly relative date
- * @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'); }
- 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); }
- else if(timediff < 86400) { return t('core','today'); }
- else if(timediff < 172800) { return t('core','yesterday'); }
- else if(timediff < 2678400) { return n('core', '%n day ago', '%n days ago', diffdays); }
- else if(timediff < 5184000) { return t('core','last month'); }
- else if(timediff < 31556926) { return n('core', '%n month ago', '%n months ago', diffmonths); }
- //else if(timediff < 31556926) { return t('core','months ago'); }
- else if(timediff < 63113852) { return t('core','last year'); }
- else { return t('core','years ago'); }
- }
- /**
- * get a variable by name
- * @param string name
- */
- OC.get=function(name) {
- var namespaces = name.split(".");
- var tail = namespaces.pop();
- var context=window;
- for(var i = 0; i < namespaces.length; i++) {
- context = context[namespaces[i]];
- if(!context){
- return false;
- }
- }
- return context[tail];
- };
- /**
- * 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;
- for(var i = 0; i < namespaces.length; i++) {
- if(!context[namespaces[i]]){
- context[namespaces[i]]={};
- }
- context = context[namespaces[i]];
- }
- context[tail]=value;
- };
- /**
- * 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
- */
- jQuery.fn.selectRange = function(start, end) {
- 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();
- }
- });
- };
- /**
- * 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;
- };
|