Home
last modified time | relevance | path

Searched refs:Utils (Results 151 – 163 of 163) sorted by path

1234567

/plugin/rigrr/lib/svg-pan-zoom/
H A Dsvg-pan-zoom.js194 , Utils = require('./utilities')
224 this.options = Utils.extend(Utils.extend({}, optionsDefaults), options)
446 if (Utils.isFunction(this.options.beforeZoom)) {
484 if (Utils.getType(point) !== 'SVGPoint' && 'x' in point && 'y' in point) {
535 if (Utils.isFunction(this.options.beforePan)) {
691 if (Utils.isFunction(this.options.beforePan)) {
715 if (Utils.isFunction(this.options.beforePan)) {
760 , setBeforePan: function(fn) {that.options.beforePan = Utils.proxy(fn, that.publicInstance)}
761 , setOnPan: function(fn) {that.options.onPan = Utils.proxy(fn, that.publicInstance)}
799 , setOnZoom: function(fn) {that.options.onZoom = Utils.proxy(fn, that.publicInstance)}
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js19685 var text = Utils.getResponseText(file, context);
19728 var text = Utils.getResponseText(file, context);
20120 var text = Utils.getPostText(file, context);
20142 var text = Utils.getPostText(file, context);
20302 Firebug.NetMonitor.Utils = class in Firebug.NetMonitor
20358 var text = Utils.getPostText(file, context);
20364 var headerValue = Utils.findHeader(file.requestHeaders, "content-type");
20373 var text = Utils.getPostText(file, context);
20413 file.mimeType = Utils.getMimeType(request.contentType, request.name);
20502 var Utils = Firebug.NetMonitor.Utils;
[all …]
/plugin/syntaxhighlighter/Scripts/
H A DshCore.js8 var dp={sh:{Toolbar:{},Utils:{},RegexLib:{},Brushes:{},Strings:{AboutDialog:'<html><head><title>Abo… property in dp.sh
10 {var code=dp.sh.Utils.FixForBlogger(highlighter.originalCode).replace(/</g,'&lt;');var wnd=window.o…
11 {var code=dp.sh.Utils.FixForBlogger(highlighter.originalCode).replace(/&lt;/g,'<').replace(/&gt;/g,…
18 …document.body.appendChild(iframe);doc=iframe.contentWindow.document;dp.sh.Utils.CopyStyles(doc,win…
19 …k','dialog,width=300,height=150,scrollbars=0');var doc=wnd.document;dp.sh.Utils.CopyStyles(doc,win…
28 dp.sh.Utils.CopyStyles=function(destDoc,sourceDoc)
32 dp.sh.Utils.FixForBlogger=function(str)
101 {var lines=dp.sh.Utils.FixForBlogger(str).split('\n');var indents=new Array();var regex=new RegExp(…
/plugin/syntaxhighlighter/Uncompressed/
H A DshCore.js26 Utils : {}, property in dp.sh
60 var code = dp.sh.Utils.FixForBlogger(highlighter.originalCode).replace(/</g, '&lt;');
73 var code = dp.sh.Utils.FixForBlogger(highlighter.originalCode)
115 dp.sh.Utils.CopyStyles(doc, window.document);
135 dp.sh.Utils.CopyStyles(doc, window.document);
177 dp.sh.Utils.CopyStyles = function(destDoc, sourceDoc)
186 dp.sh.Utils.FixForBlogger = function(str)
452 var lines = dp.sh.Utils.FixForBlogger(str).split('\n');
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js5202 var text=Utils.getResponseText(file,context);
5213 var text=Utils.getResponseText(file,context);
5296 },insertXML:function(parentNode,file,context){var text=Utils.getPostText(file,context);
5304 },parseMultiPartText:function(file,context){var text=Utils.getPostText(file,context);
5346 Firebug.NetMonitor.Utils={findHeader:function(headers,name){if(!headers){return null class in Firebug.NetMonitor
5361 },isURLEncodedRequest:function(file,context){var text=Utils.getPostText(file,context);
5363 }var headerValue=Utils.findHeader(file.requestHeaders,"content-type");
5366 },isMultiPartRequest:function(file,context){var text=Utils.getPostText(file,context);
5381 file.mimeType=Utils.getMimeType(request.contentType,request.name);
5406 var Utils=Firebug.NetMonitor.Utils;
[all …]
/plugin/webdav/core/Backend/
H A DAuth.php13 use dokuwiki\plugin\webdav\core\Utils; alias
35 Utils::log('fatal', 'Unauthorized. Check webdav.remoteuser option');
/plugin/webdav/core/DAV/Collection/Media/
H A DFile.php14 use dokuwiki\plugin\webdav\core\Utils; alias
22 Utils::log('debug', 'Delete media');
73 Utils::log('debug', "Allowed files $regex");
82 if (!Utils::streamWriter($stream, $this->info['path'])) {
/plugin/webdav/core/DAV/Collection/Pages/
H A DDirectory.php14 use dokuwiki\plugin\webdav\core\Utils; alias
27 Utils::log('debug', "Create directory $name");
49 Utils::log('debug', "Delete directory");
69 Utils::log('debug', "Create page $id - $name");
71 Utils::saveWikiText($id, $data, 'create');
H A DFile.php14 use dokuwiki\plugin\webdav\core\Utils; alias
20 Utils::log('debug', "Delete page");
21 Utils::saveWikiText($this->info['id'], null, 'delete');
26 Utils::log('debug', "Edit page");
27 Utils::saveWikiText($this->info['id'], Utils::streamReader($data), 'edit');
/plugin/webdav/core/Plugin/
H A DException.php13 use dokuwiki\plugin\webdav\core\Utils; alias
43 Utils::log('fatal', "[{class}] {message} in {file}({line})", [
50 Utils::log('debug', 'User-Agent: {agent}', ['agent' => @$_SERVER['HTTP_USER_AGENT']]);
51 Utils::log('debug', 'Remote-User: {user}', ['user' => @$_SERVER['REMOTE_USER']]);
52 Utils::log('debug', 'Request-URI: {uri}', ['uri' => @$_SERVER['REQUEST_URI']]);
53Utils::log('debug', 'Request-Method: {method}', ['method' => @$_SERVER['REQUEST_METHOD']]);
/plugin/webdav/core/
H A DServer.php130 Utils::log('debug', 'User-Agent: {agent}', ['agent' => @$_SERVER['HTTP_USER_AGENT']]);
131 Utils::log('debug', 'Remote-User: {user}', ['user' => @$_SERVER['REMOTE_USER']]);
132 Utils::log('debug', 'Request-URI: {uri}', ['uri' => @$_SERVER['REQUEST_URI']]);
133 Utils::log('debug', 'Request-Method: {method}', ['method' => @$_SERVER['REQUEST_METHOD']]);
H A DUtils.php15 class Utils class
/plugin/webdav/
H A Dserver.php51 use dokuwiki\plugin\webdav\core\Utils; alias
66 Utils::log('fatal', "[{class}] {message} in {file}({line})", [
74 Utils::log('debug', '====================');

1234567