mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 06:36:11 +03:00
merged build.xml
This commit is contained in:
commit
215395abb4
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Version: $Id: build.xml 495 2011-07-07 20:14:37Z chth $ -->
|
||||
<project name="openseadragon"
|
||||
default="www">
|
||||
default="build">
|
||||
|
||||
<tstamp/>
|
||||
|
||||
@ -73,8 +73,6 @@
|
||||
<publish page='ui-toolbar' title='Toolbar | '/>
|
||||
<publish page='ui-viewport-navigator' title='Viewport Navigator | '/>
|
||||
|
||||
<publish page='workspace-dzi' title='Workspace - DZI | '/>
|
||||
|
||||
<publish page='developer-debug-mode' title='Developer Tools - Debug Mode | '/>
|
||||
|
||||
<copy todir='${WWW}' file='openseadragon.js' />
|
||||
@ -125,4 +123,4 @@
|
||||
</sequential>
|
||||
</macrodef>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
@ -5700,17 +5700,16 @@ $.extend( $.DziTileSource.prototype, $.TileSource.prototype, {
|
||||
* @param {String} optional - url
|
||||
*/
|
||||
supports: function( data, url ){
|
||||
return (
|
||||
data.Image &&
|
||||
"http://schemas.microsoft.com/deepzoom/2008" == data.Image.xmlns
|
||||
) || (
|
||||
data.documentElement &&
|
||||
"Image" == data.documentElement.tagName &&
|
||||
"http://schemas.microsoft.com/deepzoom/2008" ==
|
||||
data.documentElement.namespaceURI
|
||||
);
|
||||
},
|
||||
var ns;
|
||||
if ( data.Image ) {
|
||||
ns = data.Image.xmlns;
|
||||
} else if ( data.documentElement && "Image" == data.documentElement.tagName ) {
|
||||
ns = data.documentElement.namespaceURI;
|
||||
}
|
||||
|
||||
return ( "http://schemas.microsoft.com/deepzoom/2008" == ns ||
|
||||
"http://schemas.microsoft.com/deepzoom/2009" == ns );
|
||||
},
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -69,17 +69,16 @@ $.extend( $.DziTileSource.prototype, $.TileSource.prototype, {
|
||||
* @param {String} optional - url
|
||||
*/
|
||||
supports: function( data, url ){
|
||||
return (
|
||||
data.Image &&
|
||||
"http://schemas.microsoft.com/deepzoom/2008" == data.Image.xmlns
|
||||
) || (
|
||||
data.documentElement &&
|
||||
"Image" == data.documentElement.tagName &&
|
||||
"http://schemas.microsoft.com/deepzoom/2008" ==
|
||||
data.documentElement.namespaceURI
|
||||
);
|
||||
},
|
||||
var ns;
|
||||
if ( data.Image ) {
|
||||
ns = data.Image.xmlns;
|
||||
} else if ( data.documentElement && "Image" == data.documentElement.tagName ) {
|
||||
ns = data.documentElement.namespaceURI;
|
||||
}
|
||||
|
||||
return ( "http://schemas.microsoft.com/deepzoom/2008" == ns ||
|
||||
"http://schemas.microsoft.com/deepzoom/2009" == ns );
|
||||
},
|
||||
|
||||
/**
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user