Changeset 5649

Show
Ignore:
Timestamp:
03/26/08 17:03:25 (10 months ago)
Author:
inureyes
Message:

#896

  • fx effect를 위한 루틴 추가
  • 그러나 몇가지 이유로 켜놓지는 않습니다.
Location:
trunk
Files:
1 added
5 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/config.php

    r5642 r5649  
    4242$service['flashclipboardpoter'] = true; 
    4343$service['allowBlogVisibilitySetting'] = true; 
     44$service['effect'] = false; 
    4445//$service['flashuploader'] = false; 
    4546 
  • trunk/lib/model/blog.fx.php

    r5636 r5649  
    2727 
    2828function activateDetailPanelJS() { 
    29     global $fxList; 
     29    global $fxList, $service; 
    3030    $jsVal = ''; 
    3131    if(!empty($fxList)) { 
  • trunk/lib/piece/owner/footer.php

    r5630 r5649  
    101101        //]]> 
    102102    </script> 
     103<?php 
     104if($service['effect'] == true) { 
     105?> 
     106    <script type="text/javascript" src="<?php echo $service['path'];?>/script/owner.fx.js"></script> 
     107<?php 
     108} 
     109?> 
    103110</body> 
    104111</html> 
  • trunk/lib/piece/owner/header.php

    r5647 r5649  
    211211    <script type="text/javascript" src="<?php echo $service['path'];?>/script/EAF4.js"></script> 
    212212    <script type="text/javascript" src="<?php echo $service['path'];?>/script/common2.js"></script> 
    213 <!--    <script type="text/javascript" src="<?php echo $service['path'];?>/script/gallery.js"></script>--> 
    214213    <script type="text/javascript" src="<?php echo $service['path'];?>/script/owner.js"></script> 
    215214<?php 
    216 if($blogMenu['topMenu'] != 'entry') { 
     215if(!in_array($blogMenu['contentMenu'],array('post','edit'))) { 
    217216?> 
    218217    <script type="text/javascript" src="<?php echo $service['path'];?>/script/mootools.js"></script> 
     
    232231    } 
    233232} 
    234 if($blogMenu['topMenu']=='entry') { 
     233if($blogMenu['topMenu']=='entry' && in_array($blogMenu['contentMenu'],array('post','edit'))) { 
    235234?> 
    236235    <script type="text/javascript" src="<?php echo $service['path'];?>/script/editor3.js"></script> 
  • trunk/script/mootools.js

    r5648 r5649  
    195195}});Native.implement([Window,Document,Element],{getHeight:function(){return this.getSize().y;},getWidth:function(){return this.getSize().x;},getScrollTop:function(){return this.getScroll().y; 
    196196},getScrollLeft:function(){return this.getScroll().x;},getScrollHeight:function(){return this.getScrollSize().y;},getScrollWidth:function(){return this.getScrollSize().x; 
    197 },getTop:function(){return this.getPosition().y;},getLeft:function(){return this.getPosition().x;}});var Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:"ignore",transition:function(A){return -(Math.cos(Math.PI*A)-1)/2; 
     197},getTop:function(){return this.getPosition().y;},getLeft:function(){return this.getPosition().x;}});Native.implement([Element,Document],{getElements:function(N,M){var J={}; 
     198N=N.split(",");var A=[],H=N.length;var B=(H>1);for(var I=0;I<H;I++){var E=N[I],K=[],G=[];E=E.trim().replace(Selectors.sRegExp,function(P){if(P.charAt(2)){P=P.trim(); 
     199}G.push(P.charAt(0));return":)"+P.charAt(1);}).split(":)");for(var F=0,D=E.length;F<D;F++){var C=Selectors.parse(E[F]);if(!C){return[];}var O=Selectors.Method.getParam(K,G[F-1]||false,this,C,J); 
     200if(!O){break;}K=O;}var L=Selectors.Method.getItems(K,this);A=(B)?A.concat(L):L;}return new Elements(A,{ddup:B,cash:!M});}});Window.implement({$E:function(A){return this.document.getElement(A); 
     201}});var Selectors={regExp:(/:([^-:(]+)[^:(]*(?:\((["']?)(.*?)\2\))?|\[(\w+)(?:([!*^$~|]?=)(["']?)(.*?)\6)?\]|\.[\w-]+|#[\w-]+|\w+|\*/g),sRegExp:(/\s*([+>~\s])[a-zA-Z#.*\s]/g)}; 
     202Selectors.parse=function(A){var B={tag:"*",id:null,classes:[],attributes:[],pseudos:[]};A=A.replace(Selectors.regExp,function(E){switch(E.charAt(0)){case".":B.classes.push(E.slice(1)); 
     203break;case"#":B.id=E.slice(1);break;case"[":B.attributes.push([arguments[4],arguments[5],arguments[7]]);break;case":":var D=Selectors.Pseudo.get(arguments[1]); 
     204if(!D){B.attributes.push([arguments[1],arguments[3]?"=":"",arguments[3]]);break;}var C={name:arguments[1],parser:D,argument:(D.parser)?D.parser(arguments[3]):arguments[3]}; 
     205B.pseudos.push(C);break;default:B.tag=E;}return"";});return B;};Selectors.Pseudo=new Hash;Selectors.XPath={getParam:function(B,G,D,H){var A="";switch(G){case" ":A+="//"; 
     206break;case">":A+="/";break;case"+":A+="/following-sibling::*[1]/self::";break;case"~":A+="/following-sibling::";break;}A+=(D.namespaceURI)?"xhtml:"+H.tag:H.tag; 
     207var C;for(C=H.pseudos.length;C--;C){var F=H.pseudos[C];if(F.parser&&F.parser.xpath){A+=F.parser.xpath(F.argument);}else{A+=($chk(F.argument))?"[@"+F.name+'="'+F.argument+'"]':"[@"+F.name+"]"; 
     208}}if(H.id){A+='[@id="'+H.id+'"]';}for(C=H.classes.length;C--;C){A+='[contains(concat(" ", @class, " "), " '+H.classes[C]+' ")]';}for(C=H.attributes.length; 
     209C--;C){var E=H.attributes[C];switch(E[1]){case"=":A+="[@"+E[0]+'="'+E[2]+'"]';break;case"*=":A+="[contains(@"+E[0]+', "'+E[2]+'")]';break;case"^=":A+="[starts-with(@"+E[0]+', "'+E[2]+'")]'; 
     210break;case"$=":A+="[substring(@"+E[0]+", string-length(@"+E[0]+") - "+E[2].length+' + 1) = "'+E[2]+'"]';break;case"!=":A+="[@"+E[0]+'!="'+E[2]+'"]';break; 
     211case"~=":A+='[contains(concat(" ", @'+E[0]+', " "), " '+E[2]+' ")]';break;case"|=":A+='[contains(concat("-", @'+E[0]+', "-"), "-'+E[2]+'-")]';break;default:A+="[@"+E[0]+"]"; 
     212}}B.push(A);return B;},getItems:function(B,E){var F=[];var G=E.getDocument();var A=G.evaluate(".//"+B.join(""),E,Selectors.XPath.resolver,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null); 
     213for(var D=0,C=A.snapshotLength;D<C;D++){F[D]=A.snapshotItem(D);}return F;},resolver:function(A){return(A=="xhtml")?"http://www.w3.org/1999/xhtml":false; 
     214}};Selectors.Filter={getParam:function(H,B,A,P,Q){var F=[];var R=P.tag;if(B){var C={},E,D,O,L,K;var G=function(S){S.uid=S.uid||[Native.UID++];if(!C[S.uid]&&Selectors.Filter.match(S,P,Q)){C[S.uid]=true; 
     215F.push(S);return true;}return false;};for(var N=0,M=H.length;N<M;N++){O=H[N];switch(B){case" ":D=O.getElementsByTagName(R);P.tag=false;for(L=0,K=D.length; 
     216L<K;L++){G(D[L]);}break;case">":D=O.childNodes;for(L=0,K=D.length;L<K;L++){if(D[L].nodeType==1){G(D[L]);}}break;case"+":while((O=O.nextSibling)){if(O.nodeType==1){G(O); 
     217break;}}break;case"~":while((O=O.nextSibling)){if(O.nodeType==1&&G(O)){break;}}break;}}return F;}if(P.id){el=A.getElementById(P.id,true);P.id=false;return(el&&Selectors.Filter.match(el,P,Q))?[el]:false; 
     218}else{H=A.getElementsByTagName(R);P.tag=false;for(var J=0,I=H.length;J<I;J++){if(Selectors.Filter.match(H[J],P,Q)){F.push(H[J]);}}}return F;},getItems:$arguments(0)}; 
     219Selectors.Filter.match=function(C,E,G){G=G||{};if(E.id&&E.id!=C.id){return false;}if(E.tag&&E.tag!="*"&&E.tag!=C.tagName.toLowerCase()){return false;}var B; 
     220for(B=E.classes.length;B--;B){if(!C.className||!C.className.contains(E.classes[B]," ")){return false;}}for(B=E.attributes.length;B--;B){var D=E.attributes[B]; 
     221var A=Element.prototype.getProperty.call(C,D[0]);if(!A){return false;}if(!D[1]){continue;}var F;switch(D[1]){case"=":F=(A==D[2]);break;case"*=":F=(A.contains(D[2])); 
     222break;case"^=":F=(A.substr(0,D[2].length)==D[2]);break;case"$=":F=(A.substr(A.length-D[2].length)==D[2]);break;case"!=":F=(A!=D[2]);break;case"~=":F=A.contains(D[2]," "); 
     223break;case"|=":F=A.contains(D[2],"-");}if(!F){return false;}}for(B=E.pseudos.length;B--;B){if(!E.pseudos[B].parser.filter.call(C,E.pseudos[B].argument,G)){return false; 
     224}}return true;};Selectors.Method=(Browser.Features.xpath)?Selectors.XPath:Selectors.Filter;Element.implement({match:function(A){return(!A||Selectors.Filter.match(this,Selectors.parse(A))); 
     225}});Selectors.Pseudo.enabled={xpath:function(){return"[not(@disabled)]";},filter:function(){return !(this.disabled);}};Selectors.Pseudo.empty={xpath:function(){return"[not(node())]"; 
     226},filter:function(){return !(this.innerText||this.textContent||"").length;}};Selectors.Pseudo.contains={xpath:function(A){return'[contains(text(), "'+A+'")]'; 
     227},filter:function(B){for(var A=this.childNodes.length;A--;A){var C=this.childNodes[A];if(C.nodeName&&C.nodeType==3&&C.nodeValue.contains(B)){return true; 
     228}}return false;}};Selectors.Pseudo.nth={parser:function(E){E=(E)?E.match(/^([+-]?\d*)?([devon]+)?([+-]?\d*)?$/):[null,1,"n",0];if(!E){return false;}var D=parseInt(E[1]); 
     229var B=($chk(D))?D:1;var C=E[2]||false;var A=parseInt(E[3])||0;A=A-1;while(A<1){A+=B;}while(A>=B){A-=B;}switch(C){case"n":return{a:B,b:A,special:"n"};case"odd":return{a:2,b:0,special:"n"}; 
     230case"even":return{a:2,b:1,special:"n"};case"first":return{a:0,special:"index"};case"last":return{special:"last"};case"only":return{special:"only"};default:return{a:(B-1),special:"index"}; 
     231}},xpath:function(A){switch(A.special){case"n":return"[count(preceding-sibling::*) mod "+A.a+" = "+A.b+"]";case"last":return"[count(following-sibling::*) = 0]"; 
     232case"only":return"[not(preceding-sibling::* or following-sibling::*)]";default:return"[count(preceding-sibling::*) = "+A.a+"]";}},filter:function(A,I){var J=0,C=this; 
     233switch(A.special){case"n":I.Positions=I.Positions||{};if(!I.Positions[this.uid]){var D=this.parentNode.childNodes;for(var G=0,F=D.length;G<F;G++){var B=D[G]; 
     234if(B.nodeType!=1){continue;}B.uid=B.uid||[Native.UID++];I.Positions[B.uid]=J++;}}return(I.Positions[this.uid]%A.a==A.b);case"last":while((C=C.nextSibling)){if(C.nodeType==1){return false; 
     235}}return true;case"only":var E=C;while((E=E.previousSibling)){if(E.nodeType==1){return false;}}var H=C;while((H=H.nextSibling)){if(H.nodeType==1){return false; 
     236}}return true;case"index":while((C=C.previousSibling)){if(C.nodeType==1&&++J>A.a){return false;}}return true;}return false;}};Selectors.Pseudo.extend({even:{parser:function(){return{a:2,b:1,special:"n"}; 
     237},xpath:Selectors.Pseudo.nth.xpath,filter:Selectors.Pseudo.nth.filter},odd:{parser:function(){return{a:2,b:0,special:"n"};},xpath:Selectors.Pseudo.nth.xpath,filter:Selectors.Pseudo.nth.filter},first:{parser:function(){return{a:0,special:"index"}; 
     238},xpath:Selectors.Pseudo.nth.xpath,filter:Selectors.Pseudo.nth.filter},last:{parser:function(){return{special:"last"};},xpath:Selectors.Pseudo.nth.xpath,filter:Selectors.Pseudo.nth.filter},only:{parser:function(){return{special:"only"}; 
     239},xpath:Selectors.Pseudo.nth.xpath,filter:Selectors.Pseudo.nth.filter}});var Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:"ignore",transition:function(A){return -(Math.cos(Math.PI*A)-1)/2; 
    198240}},initialize:function(A){this.pass=this.pass||this;this.setOptions(A);this.options.duration=Fx.Durations[this.options.duration]||this.options.duration.toInt(); 
    199241var B=this.options.wait;if(B===false){this.options.link="cancel";}},step:function(){var A=$time();if(A<this.time+this.options.duration){var B=this.options.transition((A-this.time)/this.options.duration); 
     
    255297},Sine:function(A){return 1-Math.sin((1-A)*Math.PI/2);},Back:function(B,A){A=A[0]||1.618;return Math.pow(B,2)*((A+1)*B-A);},Bounce:function(D){var C;for(var B=0,A=1; 
    2562981;B+=A,A/=2){if(D>=(7-4*B)/11){C=-Math.pow((11-6*B-11*D)/4,2)+A*A;break;}}return C;},Elastic:function(B,A){return Math.pow(2,10*--B)*Math.cos(20*B*Math.PI*(A[0]||1)/3); 
    257 }});["Quad","Cubic","Quart","Quint"].each(function(B,A){Fx.Transitions[B]=new Fx.Transition(function(C){return Math.pow(C,[A+2]);});}); 
     299}});["Quad","Cubic","Quart","Quint"].each(function(B,A){Fx.Transitions[B]=new Fx.Transition(function(C){return Math.pow(C,[A+2]);});});var Tips=new Class({Implements:[Events,Options],options:{onShow:function(A){A.setStyle("visibility","visible"); 
     300},onHide:function(A){A.setStyle("visibility","hidden");},maxTitleChars:30,showDelay:100,hideDelay:100,className:"tool",offsets:{x:16,y:16},fixed:false},initialize:function(B,A){this.setOptions(A); 
     301B=$$(B);this.document=(B.length)?B[0].ownerDocument:document;this.toolTip=new Element("div",{"class":this.options.className+"-tip",styles:{position:"absolute",top:"0",left:"0",visibility:"hidden"}},this.document).inject(this.document.body); 
     302this.wrapper=new Element("div").inject(this.toolTip);B.each(this.build,this);},build:function(B){B.$attributes.myTitle=(B.href&&B.get("tag")=="a")?B.href.replace("http://",""):(B.rel||false); 
     303if(B.title){var C=B.title.split("::");if(C.length>1){B.$attributes.myTitle=C[0].trim();B.$attributes.myText=C[1].trim();}else{B.$attributes.myText=B.title; 
     304}B.removeProperty("title");}else{B.$attributes.myText=false;}if(B.$attributes.myTitle&&B.$attributes.myTitle.length>this.options.maxTitleChars){B.$attributes.myTitle=B.$attributes.myTitle.substr(0,this.options.maxTitleChars-1)+"&hellip;"; 
     305}B.addEvent("mouseenter",function(D){this.start(B);if(!this.options.fixed){this.locate(D);}else{this.position(B);}}.bind(this));if(!this.options.fixed){B.addEvent("mousemove",this.locate.bind(this)); 
     306}var A=this.end.bind(this);B.addEvent("mouseleave",A);},start:function(A){this.wrapper.empty();if(A.$attributes.myTitle){this.title=new Element("span").inject(new Element("div",{"class":this.options.className+"-title"}).inject(this.wrapper)).set("html",A.$attributes.myTitle); 
     307}if(A.$attributes.myText){this.text=new Element("span").inject(new Element("div",{"class":this.options.className+"-text"}).inject(this.wrapper)).set("html",A.$attributes.myText); 
     308}$clear(this.timer);this.timer=this.show.delay(this.options.showDelay,this);},end:function(A){$clear(this.timer);this.timer=this.hide.delay(this.options.hideDelay,this); 
     309},position:function(A){var B=A.getPosition();this.toolTip.setStyles({left:B.x+this.options.offsets.x,top:B.y+this.options.offsets.y});},locate:function(B){var D=this.document.getSize(); 
     310var A=this.document.getScroll();var C={x:this.toolTip.offsetWidth,y:this.toolTip.offsetHeight};var G={x:"left",y:"top"};for(var E in G){var F=B.page[E]+this.options.offsets[E]; 
     311if((F+C[E]-A[E])>D[E]){F=B.page[E]-this.options.offsets[E]-C[E];}this.toolTip.setStyle(G[E],F);}},show:function(){if(this.options.timeout){this.timer=this.hide.delay(this.options.timeout,this); 
     312}this.fireEvent("onShow",[this.toolTip]);},hide:function(){this.fireEvent("onHide",[this.toolTip]);}});var SmoothScroll=new Class({Extends:Fx.Scroll,initialize:function(B,C){C=$(C); 
     313var E=C.getDocument(),D=C.getWindow();arguments.callee.parent(E,B);this.links=(this.options.links)?$$(this.options.links):$$(E.links);var A=D.location.href.match(/^[^#]*/)[0]+"#"; 
     314this.links.each(function(G){if(G.href.indexOf(A)!=0){return ;}var F=G.href.substr(A.length);if(F&&$(F)){this.useLink(G,F);}},this);if(!Browser.Engine.webkit419){this.addEvent("onComplete",function(){D.location.hash=this.anchor; 
     315},true);}},useLink:function(B,A){B.addEvent("click",function(C){this.anchor=A;this.toElement(A);C.stop();}.bind(this));}});Fx.Elements=new Class({Extends:Fx.CSS,initialize:function(B,A){this.elements=this.pass=$$(B); 
     316arguments.callee.parent(A);},compute:function(G,H,I){var C={};for(var D in G){var A=G[D],E=H[D],F=C[D]={};for(var B in A){F[B]=arguments.callee.parent(A[B],E[B],I); 
     317}}return C;},set:function(B){for(var C in B){var A=B[C];for(var D in A){this.render(this.elements[C],D,A[D]);}}return this;},start:function(C){if(!this.check(C)){return this; 
     318}var H={},I={};for(var D in C){var F=C[D],A=H[D]={},G=I[D]={};for(var B in F){var E=this.prepare(this.elements[D],B,F[B]);A[B]=E.from;G[B]=E.to;}}return arguments.callee.parent(H,I); 
     319}});