initial rest backup
This commit is contained in:
parent
c36a08d94d
commit
9465b69a08
30 changed files with 5131 additions and 0 deletions
78
plugins/system/jceutilities/css/jceutilities-217.css
Normal file
78
plugins/system/jceutilities/css/jceutilities-217.css
Normal file
|
@ -0,0 +1,78 @@
|
|||
#jcepopup-overlay {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
z-index: 10000;
|
||||
}
|
||||
#jcepopup-container {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
overflow: visible;
|
||||
z-index: 10001;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
margin-left: -150px;
|
||||
}
|
||||
#jcepopup-loader {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
#jcepopup-content {
|
||||
padding: 10px;
|
||||
}
|
||||
#jcepopup-content img {
|
||||
width: inherit;
|
||||
height: inherit;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jcepopup-content img, #jcepopup-content object, #jcepopup-content iframe {
|
||||
border: 0px;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
#jcepopup-iframe {
|
||||
border: 0px;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
#jcepopup-ajax {
|
||||
overflow: auto;
|
||||
border: 0px;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
a.jcepopup span, a.jcebox span, a.jcelightbox span {
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
a.jcepopup span span.zoom-image, a.jcebox span span.zoom-image, a.jcelightbox span span.zoom-image {
|
||||
position: absolute;
|
||||
display: block;
|
||||
background: url(../img/zoom-img.png) no-repeat bottom right;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
a.jcepopup span.zoom-link, a.jcebox span.zoom-link, a.jcelightbox span.zoom-link {
|
||||
padding-right: 16px;
|
||||
background: url(../img/zoom-link.gif) no-repeat center right;
|
||||
}
|
||||
/* Tooltips */
|
||||
div.tooltip {
|
||||
z-index: 10;
|
||||
width: 180px;
|
||||
text-align:left;
|
||||
color: #000000;
|
||||
background-color:#ffffff;
|
||||
border:1px solid black;
|
||||
padding: 4px;
|
||||
}
|
||||
div.tooltip h4 {
|
||||
font-weight: bold;
|
||||
font-size: 11px;
|
||||
margin: 0px;
|
||||
}
|
||||
div.tooltip p {
|
||||
font-size: 11px;
|
||||
}
|
BIN
plugins/system/jceutilities/img/zoom-link.gif
Normal file
BIN
plugins/system/jceutilities/img/zoom-link.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 122 B |
9
plugins/system/jceutilities/js/jceutilities-217.js
Normal file
9
plugins/system/jceutilities/js/jceutilities-217.js
Normal file
File diff suppressed because one or more lines are too long
11
plugins/system/jceutilities/js/jquery-126.js
vendored
Normal file
11
plugins/system/jceutilities/js/jquery-126.js
vendored
Normal file
File diff suppressed because one or more lines are too long
149
plugins/system/jceutilities/js/mediaobject.js
Normal file
149
plugins/system/jceutilities/js/mediaobject.js
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
* Media Object 1.5.0
|
||||
*
|
||||
* Copyright (c) 2007 - 2008 Ryan Demmer (www.joomlacontenteditor.net)
|
||||
* Licensed under the GPL (http://www.gnu.org/licenses/licenses.html#GPL)license.
|
||||
* Based on the Moxiecode Embed script
|
||||
*/
|
||||
var MediaObject = {
|
||||
version : {
|
||||
'flash' : '9,0,124,0',
|
||||
'windowsmedia' : '5,1,52,701',
|
||||
'quicktime' : '6,0,2,0',
|
||||
'realmedia' : '7,0,0,0',
|
||||
'shockwave' : '8,5,1,0'
|
||||
},
|
||||
init : function(v){
|
||||
var t = this;
|
||||
for(n in v){
|
||||
t.version[n] = v[n];
|
||||
}
|
||||
},
|
||||
getSite : function(){
|
||||
var x, s = document.getElementsByTagName('script');
|
||||
for(x=0; x<s.length; x++){
|
||||
if(/jceutilities\/js\/mediaobject.js/i.test(s[x].src)){
|
||||
site = s[x].src;
|
||||
}
|
||||
}
|
||||
return site.substring(0, site.lastIndexOf('plugins/system/jceutilities/js')).replace(/http:\/\/([^\/]+)/, '');
|
||||
},
|
||||
writeObject : function(cls, cb, mt, p){
|
||||
var h = '', n;
|
||||
var msie = /msie/i.test(navigator.userAgent);
|
||||
var webkit = /webkit/i.test(navigator.userAgent);
|
||||
|
||||
if(!/:\/\//.test(p.src)){
|
||||
p.src = this.getSite() + p.src;
|
||||
if(mt == 'video/x-ms-wmv'){
|
||||
p.url = p.src;
|
||||
}
|
||||
if(mt == 'application/x-shockwave-flash'){
|
||||
p.movie = p.src;
|
||||
delete p.src;
|
||||
}
|
||||
}
|
||||
h += '<object ';
|
||||
if(mt == 'application/x-shockwave-flash'){
|
||||
h += 'type="'+ mt +'" data="'+ p.movie +'" ';
|
||||
}else{
|
||||
h += 'codebase="' + cb + '" classid="clsid:' + cls + '" ';
|
||||
}
|
||||
for (n in p){
|
||||
if(p[n] !== ''){
|
||||
if (/(id|name|width|height|style)$/.test(n)){
|
||||
h += n + '="' + p[n] + '"';
|
||||
}
|
||||
}
|
||||
}
|
||||
h += '>';
|
||||
for (n in p){
|
||||
if(p[n] !== ''){
|
||||
if (!/(id|name|width|height|style)$/.test(n)){
|
||||
h += '<param name="' + n + '" value="' + p[n] + '">';
|
||||
}
|
||||
}
|
||||
}
|
||||
if(!msie && mt != 'application/x-shockwave-flash'){
|
||||
h += '<object type="'+ mt +'" data="'+ p.src +'"';
|
||||
for (n in p){
|
||||
if(p[n] !== ''){
|
||||
h += n + '="' + p[n] + '"';
|
||||
}
|
||||
}
|
||||
h += '></object>';
|
||||
}
|
||||
h += '</object>';
|
||||
document.write(h);
|
||||
},
|
||||
flash : function(p) {
|
||||
if(typeof p.wmode == 'undefined'){
|
||||
p['wmode'] = 'opaque';
|
||||
}
|
||||
this.writeObject(
|
||||
'D27CDB6E-AE6D-11cf-96B8-444553540000',
|
||||
'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + this.version['flash'],
|
||||
'application/x-shockwave-flash',
|
||||
p
|
||||
);
|
||||
},
|
||||
shockwave : function(p) {
|
||||
this.writeObject(
|
||||
'166B1BCA-3F9C-11CF-8075-444553540000',
|
||||
'http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=' + this.version['shockwave'],
|
||||
'application/x-director',
|
||||
p
|
||||
);
|
||||
},
|
||||
quicktime : function(p) {
|
||||
this.writeObject(
|
||||
'02BF25D5-8C17-4B23-BC80-D3488ABDDC6B',
|
||||
'http://www.apple.com/qtactivex/qtplugin.cab#version=' + this.version['quicktime'],
|
||||
'video/quicktime',
|
||||
p
|
||||
);
|
||||
},
|
||||
realmedia : function(p) {
|
||||
this.writeObject(
|
||||
'CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA',
|
||||
'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + this.version['realmedia'],
|
||||
'audio/x-pn-realaudio-plugin',
|
||||
p
|
||||
);
|
||||
},
|
||||
windowsmedia : function(p) {
|
||||
p.url = p.src;
|
||||
this.writeObject(
|
||||
'6BF52A52-394A-11D3-B153-00C04F79FAA6',
|
||||
'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=' + this.version['windowsmedia'],
|
||||
'video/x-ms-wmv',
|
||||
p
|
||||
);
|
||||
},
|
||||
divx : function(p) {
|
||||
this.writeObject(
|
||||
'67DABFBF-D0AB-41FA-9C46-CC0F21721616',
|
||||
'http://go.divx.com/plugin/DivXBrowserPlugin.cab',
|
||||
'video/divx',
|
||||
p
|
||||
);
|
||||
}
|
||||
}
|
||||
function writeFlash(p) {
|
||||
MediaObject.flash(p);
|
||||
}
|
||||
function writeShockWave(p) {
|
||||
MediaObject.shockwave(p);
|
||||
}
|
||||
function writeQuickTime(p) {
|
||||
MediaObject.quicktime(p);
|
||||
}
|
||||
function writeRealMedia(p) {
|
||||
MediaObject.realmedia(p);
|
||||
}
|
||||
function writeWindowsMedia(p) {
|
||||
MediaObject.windowsmedia(p);
|
||||
}
|
||||
function writeDivX(p) {
|
||||
MediaObject.divx(p);
|
||||
}
|
71
plugins/system/jceutilities/themes/standard/css/style.css
Normal file
71
plugins/system/jceutilities/themes/standard/css/style.css
Normal file
|
@ -0,0 +1,71 @@
|
|||
/* Standard Template */
|
||||
#jcepopup-container {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
#jcepopup-loader {
|
||||
background: url(../img/loader.gif) no-repeat center center;
|
||||
}
|
||||
#jcepopup-info {}
|
||||
#jcepopup-closelink {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: #cccccc url(../img/close.png) no-repeat;
|
||||
bottom: 0px;
|
||||
right: 10px;
|
||||
position: relative;
|
||||
float: right;
|
||||
border: none;
|
||||
}
|
||||
#jcepopup-nav {
|
||||
line-height: 20px;
|
||||
padding: 10px;
|
||||
}
|
||||
#jcepopup-prev, #jcepopup-next {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
border: none;
|
||||
background-color: #cccccc;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
#jcepopup-closelink:hover, #jcepopup-prev:hover, #jcepopup-next:hover {
|
||||
background-color: #333333;
|
||||
}
|
||||
#jcepopup-prev{
|
||||
background-image: url(../img/prev.png);
|
||||
left: 10px;
|
||||
}
|
||||
#jcepopup-next {
|
||||
background-image: url(../img/next.png);
|
||||
right: 10px;
|
||||
}
|
||||
span#jcepopup-numbers {
|
||||
text-align:center;
|
||||
display: block;
|
||||
}
|
||||
span#jcepopup-numbers a {
|
||||
border: none;
|
||||
display: inline-block;
|
||||
margin: 0px 1px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
span#jcepopup-numbers a:active, span#jcepopup-numbers a:visited, span#jcepopup-numbers a:link, span#jcepopup-numbers a:hover {
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
color: #cccccc;
|
||||
}
|
||||
span#jcepopup-numbers a:hover {
|
||||
color: #333333;
|
||||
}
|
||||
span#jcepopup-numbers a.active {
|
||||
cursor: default;
|
||||
color: #333333;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
#jcepopup-caption {
|
||||
padding: 0px 30px 0px 10px;
|
||||
min-height: 20px;
|
||||
}
|
||||
#jcepopup-caption h4 {}
|
||||
#jcepopup-caption p {}
|
BIN
plugins/system/jceutilities/themes/standard/img/loader.gif
Normal file
BIN
plugins/system/jceutilities/themes/standard/img/loader.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
Loading…
Add table
Add a link
Reference in a new issue