diff --git a/images/backgroud.png b/images/backgroud.png deleted file mode 100644 index 7a1b0777b892b17ecd0bc6573c340a1e2278b082..0000000000000000000000000000000000000000 Binary files a/images/backgroud.png and /dev/null differ diff --git a/images/checker.png b/images/checker.png deleted file mode 100644 index 7a65b2333db936d13c14599ba346697316e5c17a..0000000000000000000000000000000000000000 Binary files a/images/checker.png and /dev/null differ diff --git a/images/classicScene.jpeg b/images/classicScene.jpeg deleted file mode 100644 index 5a3fe480eb5f13af622d1822a3196e19a81b88b0..0000000000000000000000000000000000000000 Binary files a/images/classicScene.jpeg and /dev/null differ diff --git a/javascripts/scale.fix.js b/javascripts/scale.fix.js deleted file mode 100644 index 08716c00605af8e2305647fb7d72d2fb8a004e28..0000000000000000000000000000000000000000 --- a/javascripts/scale.fix.js +++ /dev/null @@ -1,20 +0,0 @@ -fixScale = function(doc) { - - var addEvent = 'addEventListener', - type = 'gesturestart', - qsa = 'querySelectorAll', - scales = [1, 1], - meta = qsa in doc ? doc[qsa]('meta[name=viewport]') : []; - - function fix() { - meta.content = 'width=device-width,minimum-scale=' + scales[0] + ',maximum-scale=' + scales[1]; - doc.removeEventListener(type, fix, true); - } - - if ((meta = meta[meta.length - 1]) && addEvent in doc) { - fix(); - scales = [.25, 1.6]; - doc[addEvent](type, fix, true); - } - -}; \ No newline at end of file diff --git a/sample-code/codeView.html b/sample-code/codeView.html deleted file mode 100644 index b6849582bce1d03c647ebf54f2860970e8895f35..0000000000000000000000000000000000000000 --- a/sample-code/codeView.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - Sky Walking API Guide - - - - - - - - - - -
-

- 如何追踪注册在Spring中类实例的方法调用? -

-

1.Spring配置文件头部,配置所需的命名空间

-
-xmlns:skywalking="http://cloud.asiainfo.com/schema/skywalking"
-xsi:schemaLocation="http://cloud.asiainfo.com/schema/skywalking
-		   http://cloud.asiainfo.com/schema/skywalking/skywalking.xsd"
-

典型Spring配置文件如下

-
<beans xmlns="http://www.springframework.org/schema/beans"
-	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-	xmlns:context="http://www.springframework.org/schema/context"
-	xmlns:skywalking="http://cloud.asiainfo.com/schema/skywalking"
-	xsi:schemaLocation="http://www.springframework.org/schema/beans
-				http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
-				http://www.springframework.org/schema/context
-				http://www.springframework.org/schema/context/spring-context-3.0.xsd
-				http://cloud.asiainfo.com/schema/skywalking
-				http://cloud.asiainfo.com/schema/skywalking/skywalking.xsd">
-

2.Spring配置文件中,设置需要追踪包名、类名或方法名。可配置多个。

-
-<skywalking:trace packageExpression="com.ai.app.domain.test.*" classExpression="*"/>
-<skywalking:trace packageExpression="com.ai.app.domain.test..*" classExpression="className*"/>
-
-

注意:对于方法的追踪,仅限于实例级的public方法。其他方法由于Java运行时原因,无法追踪。

-

3.通过Spring标注,或配置文件将TracingAspectBean注册到Spring Context上下文中

-

- 如何追踪dubbo调用? -

-

这里的dubbo,专指阿里发布的,已停止维护的标准dubbo版本(dubbo.io)。扩展版本dubbox请参考相关章节。

-

在客户端和服务端配置全局filter:swEnhanceFilter。

-
-//客户端Spring配置文件
-<dubbo:consumer filter="swEnhanceFilter"/>
-
-//服务端Spring配置文件
-<dubbo:provider filter="swEnhanceFilter"/>
- -

- 如何追踪dubbox 2.8.4 调用? -

-

dubbox 2.8.4 较为符合dubbo的服务规范,这里指dubbox支持RpcContext中的attachment。追踪方式和dubbo相同。

-

在客户端和服务端配置全局filter:swEnhanceFilter。

-
-//客户端Spring配置文件
-<dubbo:consumer filter="swEnhanceFilter"/>
-
-//服务端Spring配置文件
-<dubbo:provider filter="swEnhanceFilter"/>
- -

- 如何追踪dubbox 2.8.3 以及之前的调用? -

-

由于引入dubbox,主要目的是使用rest+json协议,所以以下方案都是在此种调用模式下的解决方案。其他协议未测试,请谅解,望大家提供测试结果与反馈。

-

dubbox 2.8.3 以及之前版本不能正确的支持RpcContext中的attachment,存在BUG(2.8.4已修复)。采用扩展参数对象的方法支持追踪的传递性。

-

注意:依然推荐升级到dubbox 2.8.4,此时能更好的进行追踪,并对程序侵入性更小。

-

1.在客户端和服务端配置全局filter:swEnhanceFilter。

-
-//客户端Spring配置文件
-<dubbo:consumer filter="swEnhanceFilter"/>
-
-//服务端Spring配置文件
-<dubbo:provider filter="swEnhanceFilter"/>
-

2.在客户端和服务端启动时,开启dubbox 2.8.3之前版本的修复功能。在服务启动前调用如下代码,或将com.ai.cloud.skywalking.plugin.dubbox.bugfix.below283.BugFixAcitve注册到Spring中。

-
-new com.ai.cloud.skywalking.plugin.dubbox.bugfix.below283.BugFixAcitve();
- -

3.dubbox调用参数包含javabean参数,并继承com.ai.cloud.skywalking.plugin.dubbox.bugfix.below283.SWBaseBean。只包含java基础类型(如:String、Integer等)的调用,无法支持追踪传递

- -

4.客户端如果直接使用非dubbox客户端发起调用,需要在发送的参数中设置contextData。

- -

- 如何追踪MySQL访问? -

-

1.设置特定的JDBC Driver

-
Driver="com.ai.cloud.skywalking.plugin.jdbc.mysql.MySQLTracingDriver"
-

2.设置特定的JDBC URL

-

-
jdbc.url=tracing:jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8
- -

- 如何追踪MySQL之外的其他JDBC? -

-

1.轻松实现自定义的JDBC Driver扩展

-
import java.sql.Driver;
-import java.sql.DriverManager;
-import java.sql.SQLException;
-
-import com.ai.cloud.skywalking.plugin.jdbc.TracingDriver;
-
-public class XXXDBTracingDriver extends TracingDriver {
-	static {
-		try {
-			DriverManager.registerDriver(new XXXDBTracingDriver());
-		} catch (SQLException e) {
-			throw new RuntimeException("register "
-					+ MySQLTracingDriver.class.getName() + " driver failure.");
-		}
-	}
-
-	/**
-	 * 继承自TracingDriver,返回真实的Driver
-	 */
-	@Override
-	protected Driver registerTracingDriver() {
-		try {
-			//示例:return new com.mysql.jdbc.Driver();
-			return new Driver();
-		} catch (SQLException e) {
-			throw new RuntimeException("create Driver failure.");
-		}
-	}
-
-}
-
-

2.设置新实现的JDBC Driver

-
Driver="XXXDBTracingDriver"
-

3.设置特定的JDBC URL

-
jdbc.url=tracing:jdbc:xxxdb://localhost:3306/test
- -

- 如何追踪web服务端访问? -

-

服务端使用Filter追踪web请求

-
    <filter>
-        <filter-namer>tracingFilter</filter-namer>
-        <filter-classr>com.ai.cloud.skywalking.plugin.web.SkyWalkingFilter</filter-class>
-        <init-param>
-            <param-name>tracing-name</param-name>
-            <!--分布式埋点信息,默认放在request的header中,key=SkyWalking-TRACING-NAME,可根据需要修改-->
-            <param-value>SkyWalking-TRACING-NAME</param-value>
-        </init-param>
-    </filterr>
-    <filter-mappingr>
-        <filter-name>tracingFilter</filter-namer>
-        <!--追踪路径应为MVC的请求路径,不建议包括js/css/图片等资源路径-->
-        <url-patternr>/request-uri</url-patternr>
-    </filter-mappingr>
- -

- 如何通过HttpClient追踪HTTP调用? -

-

使用SWTracingHttpClient封装所需的httpClient,此httpClient所有调用都会被监控

-
HttpClient httpclient = new SWTracingHttpClient(new DefaultHttpClient());
-

上下文将被存储在http request head,中,默认名称和SkyWalkingFilter保持一致。
如果服务端使用dubbox 2.8.4 的提供的http-rest,请使用方法重载

-
HttpClient httpclient = new SWTracingHttpClient(new DefaultHttpClient(), "Dubbo-Attachments");
- - -

- 能通过哪些渠道在应用中发现traceid? -

-

1.通过向全链路监控绑定业务字段。建立traceid和业务字段的对应关系,在调用链路中,可以直接展现业务字段信息。

-
String businessKey = "phoneNumber:" + phoneNumber + ",resourceId:" + resourceId + ",mail:" + mail;
-BusinessKeyAppender.setBusinessKey2Trace(businessKey);
-

2.主动获取traceid,保存到应用程序数据库或其他存储中。

-
Tracing.getTraceId();
- -

3.通过web应用的http调用入口,通过返回的header信息,找到此次调用的traceid。

- -

4.通过log4j或log4j2的扩展,在每行本地日志中,输出traceid。

-

log4j1.x配置

-
log4j.appender.A1.layout=com.ai.cloud.skywalking.plugin.log.log4j.v1.x.TraceIdPatternLayout
-#%x为traceid的转义符
-log4j.appender.A1.layout.ConversionPattern=[%x] %-d{yyyy-MM-dd HH:mm:ss.SSS} %c %n[%p] %n%m%n
-

log4j2.x配置

-
<!--%tid为traceid的转义符-->
-<PatternLayout  pattern="%d{HH:mm:ss.SSS} [%tid] [%t] %-5level %logger{36} - %msg%n"/>
- - -
- - - \ No newline at end of file diff --git a/sample-code/css/style.css b/sample-code/css/style.css deleted file mode 100755 index af8f5c24a79c339c5a9955ea722ebf571f403fa2..0000000000000000000000000000000000000000 --- a/sample-code/css/style.css +++ /dev/null @@ -1,451 +0,0 @@ -/* Getting the new tags to behave */ -article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video{ display: block; } -mark, rp, rt, ruby, summary, time{ display: inline } - -/* Global properties ======================================================== */ -body { -/* background:#212222; */ - font-family:Arial, Helvetica, sans-serif; - font-size:100%; - line-height:1.125em; - color:#fff; -} -html { min-width:1000px;} -html, body { height:100%;} - - - -/* Global Structure ============================================================= */ -.container { - margin: 0 auto; - position: relative; - width: 1000px; - font-size:.8125em; -} - - /* Header */ - header{ - height:72px; - overflow:hidden; - background:url(../images/header-bg.gif) 0 0 repeat-x; - } - - /*Gallery*/ - #gallery { - height:496px; - overflow:hidden; - background:url(../images/gallerry-bg.gif) 0 0 repeat-x; - } - - /* Content */ - #content { - float: left; - width: 572px; - } - - /* Sidebar */ - aside{ - float: left; - width: 302px; - margin-right:52px; - } - - /* Footer */ - footer{ - padding:20px 0 22px 0; - border-top:5px solid #eee; - } - - - - -/* Left & Right alignment */ - -.fleft { float:left;} -.fright { float:right;} -.clear { clear:both;} - -.col-1, .col-2, .col-3 { float:left;} - -.alignright { text-align:right;} -.aligncenter { text-align:center;} - -.wrapper { - width:100%; - overflow:hidden; -} - -/* The inside class provides consistent padding. To be used often! */ -.inside{ padding: 32px 37px 50px 37px; } - - -/*----- form defaults -----*/ -input, select, textarea { - font-family:Arial, Helvetica, sans-serif; - font-size:1em; - vertical-align:middle; - font-weight:normal; -} - -/*----- other -----*/ -figure { margin-bottom:18px;} - -.img-indent { - margin:0 20px 0 0; - float:left; -} -.img-box { - width:100%; - overflow:hidden; - padding-bottom:15px; -} - .img-box figure { - float:left; - margin:0 20px 0 0; - padding:0; - } - -.extra-wrap { - overflow:hidden; -} - -p {margin-bottom:18px;} -.p1 { margin-bottom:9px;} -.p2 { margin-bottom:18px;} -.p3 { margin-bottom:27px; -} - - -/*----- txt, links, lines, titles -----*/ -a { - color:#f27f02; - outline:none; -} -a:hover{ - text-decoration:none; -} - -h1 { - font-size:34px; - line-height:1.2em; - color:#fff; - font-weight:normal; - background:url(../images/logo.jpg) no-repeat 0 0; - padding:6px 0 8px 69px; - position:absolute; - left:39px; - top:6px; -} - h1 a { - color:#fff; - text-decoration:none; - } -h2 { - font-size:30px; - line-height:1.2em; - font-weight:normal; - color:#212222; - margin-bottom:22px; -} - h2 span { - color:#8a8a8a; - } -h3 { - font-size:1em; - margin-bottom:6px; -} - h3 a { color:#242424; } - h3 a:hover { - text-shadow: 1px 1px 1px #888; - } - - - - -/*==================boxes====================*/ -.main-box { - border-top:5px solid #eaeaea; - background:#fff; - width:100%; -} - - -.contacts { - padding-bottom:20px; -} - .contacts li { - width:100%; - overflow:hidden; - } - .contacts li strong { - float:left; - width:95px; - } - - -.list1 { - margin-left:12px; - padding-bottom:18px; -} -.list1 li { - background:url(../images/arrow1.gif) no-repeat 0 6px; - padding:0 0 0 12px; -} - - - -/*===== header =====*/ -header nav { - float:right; -} - header nav ul li { - float:left; - } - header nav ul li a { - font-size:22px; - color:#fff; - height:67px; - line-height:67px; - text-decoration:none; - width:101px; - text-align:center; - float:left; - background:#433b8f; - background-image: gradient(top, #383282, #484095); /* FF3.6 */ - background-image: -moz-linear-gradient(top, #383282, #484095); /* FF3.6 */ - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #383282),color-stop(1, #484095)); /* Saf4+, Chrome */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#383282', EndColorStr='#484095'); /* IE6,IE7 */ - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#383282', EndColorStr='#484095')"; /* IE8 */ - } - header nav ul li a.current, header nav ul li a:hover { - padding-bottom:5px; - } - - header nav ul li:nth-of-type(2) a { - background:#0184cd; - background-image: -moz-linear-gradient(top, #017bc8, #018ed3); /* FF3.6 */ - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #017bc8),color-stop(1, #018ed3)); /* Saf4+, Chrome */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#017bc8', EndColorStr='#018ed3'); /* IE6,IE7 */ - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#017bc8', EndColorStr='#018ed3')"; /* IE8 */ - } - header nav ul li:nth-of-type(3) a { - background:#7cbc19; - background-image: -moz-linear-gradient(top, #73b515, #86c31d); /* FF3.6 */ - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #73b515),color-stop(1, #86c31d)); /* Saf4+, Chrome */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#73b515', EndColorStr='#86c31d'); /* IE6,IE7 */ - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#73b515', EndColorStr='#86c31d')"; /* IE8 */ - } - header nav ul li:nth-of-type(4) a { - background:#ffbc00; - background-image: -moz-linear-gradient(top, #ffb500, #ffc300); /* FF3.6 */ - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #ffb500),color-stop(1, #ffc300)); /* Saf4+, Chrome */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffb500', EndColorStr='#ffc300'); /* IE6,IE7 */ - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffb500', EndColorStr='#ffc300')"; /* IE8 */ - } - header nav ul li:nth-of-type(5) a { - background:#f07502; - background-image: -moz-linear-gradient(top, #ee6c01, #f27f02); /* FF3.6 */ - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #ee6c01),color-stop(1, #f27f02)); /* Saf4+, Chrome */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ee6c01', EndColorStr='#f27f02'); /* IE6,IE7 */ - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ee6c01', EndColorStr='#f27f02')"; /* IE8 */ - } - header nav ul li:nth-of-type(6) a { - background:#d00110; - background-image: -moz-linear-gradient(top, #d00110, #da0116); /* FF3.6 */ - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #d00110),color-stop(1, #da0116)); /* Saf4+, Chrome */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#d00110', EndColorStr='#da0116'); /* IE6,IE7 */ - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#d00110', EndColorStr='#da0116')"; /* IE8 */ - } - - - - -/*===== gallery =====*/ -.roundabout-holder { - width:850px; - height:496px; - margin:0 auto; -} -.roundabout-moveable-item { - width: 646px; - height: 416px; - cursor: pointer; - border:3px solid #ccc; - border:3px solid rgba(0, 0, 0, 0.08); - border-radius:4px; - -moz-border-radius:4px; - -webkit-border-radius:4px; -} - .roundabout-moveable-item img{ - width:100%; - } -.roundabout-in-focus { - border:3px solid rgba(0, 0, 0, 0.2); -} - - -/*===== content =====*/ -#content { - -} - #content img, aside img { - border:3px solid #ebebeb; - border-radius:4px; - -moz-border-radius:4px; - -webkit-border-radius:4px; - } - #content img:hover { - border-color:#bbb; - } - - -/*--- news list styles ---*/ - .news li { - overflow:hidden; - position:relative; - padding:0 0 26px 84px; - } - .news li:last-child { - padding-bottom:0; - } - - .news li figure { - width:59px; - height:59px; - background:url(../images/date-bg1.gif) no-repeat 0 0; - position:absolute; - left:0; - top:0; - text-align:center; - border:3px solid #ebebeb; - border-radius:4px; - -moz-border-radius:4px; - -webkit-border-radius:4px; - font-size:10px; - color:#fff; - text-transform:uppercase; - } - .news li figure strong { - display:block; - font-size:30px; - line-height:1.2em; - margin-bottom:-7px; - padding-top:4px; - } - - .news li:nth-of-type(4n+2) figure { - background:url(../images/date-bg2.gif) no-repeat 0 0; - } - .news li:nth-of-type(4n+3) figure { - background:url(../images/date-bg3.gif) no-repeat 0 0; - } - .news li:nth-of-type(4n+4) figure { - background:url(../images/date-bg4.gif) no-repeat 0 0; - } - - - - -.team-list li { - width:100%; - overflow:hidden; - padding-bottom:43px; -} -.team-list li:last-child { - padding-bottom:0; -} - .team-list li figure { - float:left; - margin:0 20px 0 0; - padding:0; - } - - -/*--- loopedSlider styles ---*/ -/* - * Required -*/ -#loopedSlider .wrap { width:295px; height:295px; overflow:hidden; position:relative;} -#loopedSlider .slides { position:absolute; top:0; left:0; } -#loopedSlider .slides div { position:absolute; top:0; width:295px; display:none; } -/* - * Optional -*/ -#loopedSlider { width:295px; position:relative; clear:both; } -#loopedSlider .nav-controls { - width:100%; - overflow:hidden; - padding-top:10px; -} -#loopedSlider li { - display:inline; -} -#loopedSlider li a.previous { - float:left; -} -#loopedSlider li a.next { - float:right; -} - - - - -/*===== footer =====*/ -footer { - color:#fff; -} - footer .fleft { - padding-left:40px; - } - footer .fright { - padding-right:40px; - } - - -/*----- forms -----*/ -#contacts-form { - clear:right; - width:100%; - overflow:hidden; -} - #contacts-form fieldset { - border:none; - float:left; - } - #contacts-form .field { - clear:both; - } - #contacts-form label { - float:left; - width:110px; - line-height:18px; - padding-bottom:6px; - font-weight:bold; - } - #contacts-form input { - width:205px; - padding:1px 0 1px 3px; - background:none; - border:1px solid #e5e5e5; - color:#616161; - float:left - } - #contacts-form input:invalid { - border-color:red; - } - #contacts-form textarea { - width:450px; - height:215px; - padding:1px 0 1px 3px; - background:none; - border:1px solid #e5e5e5; - color:#616161; - margin-bottom:12px; - overflow:auto; - float:left; - } - #contacts-form div:last-child { - padding-left:110px; - } - -/*==========================================*/ \ No newline at end of file diff --git a/sample-code/images/AlarmMailSample.jpeg b/sample-code/images/AlarmMailSample.jpeg deleted file mode 100644 index 5c0dbeb26e926e897b67a8790d57f664c6b8bd93..0000000000000000000000000000000000000000 Binary files a/sample-code/images/AlarmMailSample.jpeg and /dev/null differ diff --git a/sample-code/images/sampleAppClusterView.jpeg b/sample-code/images/sampleAppClusterView.jpeg deleted file mode 100644 index 36db7b6589f1f9e319608e4e283d268db01168c1..0000000000000000000000000000000000000000 Binary files a/sample-code/images/sampleAppClusterView.jpeg and /dev/null differ diff --git a/sample-code/images/skywalkingClusterDeploy.jpeg b/sample-code/images/skywalkingClusterDeploy.jpeg deleted file mode 100644 index 7ece343c1348b3fe2be8207bd7a5d8e24ad7babf..0000000000000000000000000000000000000000 Binary files a/sample-code/images/skywalkingClusterDeploy.jpeg and /dev/null differ diff --git a/sample-code/images/traceErrorLogView.jpeg b/sample-code/images/traceErrorLogView.jpeg deleted file mode 100644 index 62f1048e7162cdc92e41136a74388cc99adb6188..0000000000000000000000000000000000000000 Binary files a/sample-code/images/traceErrorLogView.jpeg and /dev/null differ diff --git a/sample-code/images/traceLogView.jpeg b/sample-code/images/traceLogView.jpeg deleted file mode 100644 index 2f8584e4c221f6dc5cff24493984569920e0adc8..0000000000000000000000000000000000000000 Binary files a/sample-code/images/traceLogView.jpeg and /dev/null differ diff --git a/sample-code/js/gallery_init.js b/sample-code/js/gallery_init.js deleted file mode 100755 index 5c172c91f73835ecb83e41a7c766c99ea5278e09..0000000000000000000000000000000000000000 --- a/sample-code/js/gallery_init.js +++ /dev/null @@ -1,6 +0,0 @@ -$(document).ready(function() { - $('#myRoundabout').roundabout({ - shape: 'figure8', - minOpacity: 1 - }); -}); \ No newline at end of file diff --git a/sample-code/js/jquery-1.4.2.min.js b/sample-code/js/jquery-1.4.2.min.js deleted file mode 100755 index ac7e7009dc9fe6289d3c416c9837ab696ab25435..0000000000000000000000000000000000000000 --- a/sample-code/js/jquery-1.4.2.min.js +++ /dev/null @@ -1,154 +0,0 @@ -/*! - * jQuery JavaScript Library v1.4.2 - * http://jquery.com/ - * - * Copyright 2010, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2010, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Sat Feb 13 22:33:48 2010 -0500 - */ -(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, -Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& -(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, -a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== -"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, -function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
a"; -var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, -parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= -false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= -s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, -applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; -else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, -a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== -w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, -cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= -c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); -a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, -function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); -k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), -C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= -e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& -f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; -if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", -e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, -"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, -d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, -e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); -t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| -g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, -CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, -g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, -text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, -setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= -h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== -"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, -h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& -q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; -if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); -(function(){var g=s.createElement("div");g.innerHTML="
";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: -function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= -{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== -"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", -d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? -a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== -1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
","
"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= -c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, -wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, -prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, -this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); -return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, -""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); -return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", -""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= -c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? -c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= -function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= -Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, -"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= -a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= -a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== -"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, -serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), -function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, -global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& -e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? -"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== -false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= -false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", -c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| -d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); -g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== -1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== -"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; -if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== -"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| -c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; -this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= -this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, -e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
"; -a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); -c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, -d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- -f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": -"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in -e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/sample-code/js/roundabout.js b/sample-code/js/roundabout.js deleted file mode 100755 index 88acdcd9b7b7a6dc31fac5992b8a0b6d6fa3ba32..0000000000000000000000000000000000000000 --- a/sample-code/js/roundabout.js +++ /dev/null @@ -1,503 +0,0 @@ -/** - * jQuery Roundabout - v1.1 - * http://fredhq.com/projects/roundabout/ - * - * Moves list-items of enabled ordered and unordered lists long - * a chosen path. Includes the default "lazySusan" path, that - * moves items long a spinning turntable. - * - * Terms of Use // jQuery Roundabout - * - * Open source under the BSD license - * - * Copyright (c) 2010, Fred LeBlanc - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * - Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following - * disclaimer in the documentation and/or other materials provided - * with the distribution. - * - Neither the name of the author nor the names of its contributors - * may be used to endorse or promote products derived from this - * software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - - -// creates a default shape to be used for pathing -jQuery.extend({ - roundabout_shape: { - def: 'lazySusan', - lazySusan: function(r, a, t) { - return { - x: Math.sin(r + a), - y: (Math.sin(r + 3*Math.PI/2 + a) / 8) * t, - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - } - } -}); - -jQuery.fn.roundabout = function() { - var options = (typeof arguments[0] != 'object') ? {} : arguments[0]; - - // set options and fill in defaults - options = { - bearing: (typeof options.bearing == 'undefined') ? 0.0 : jQuery.roundabout_toFloat(options.bearing % 360.0), - tilt: (typeof options.tilt == 'undefined') ? 0.0 : jQuery.roundabout_toFloat(options.tilt), - minZ: (typeof options.minZ == 'undefined') ? 100 : parseInt(options.minZ, 10), - maxZ: (typeof options.maxZ == 'undefined') ? 400 : parseInt(options.maxZ, 10), - minOpacity: (typeof options.minOpacity == 'undefined') ? 0.40 : jQuery.roundabout_toFloat(options.minOpacity), - maxOpacity: (typeof options.maxOpacity == 'undefined') ? 1.00 : jQuery.roundabout_toFloat(options.maxOpacity), - minScale: (typeof options.minScale == 'undefined') ? 0.40 : jQuery.roundabout_toFloat(options.minScale), - maxScale: (typeof options.maxScale == 'undefined') ? 1.00 : jQuery.roundabout_toFloat(options.maxScale), - duration: (typeof options.duration == 'undefined') ? 600 : parseInt(options.duration, 10), - btnNext: options.btnNext || null, - btnPrev: options.btnPrev || null, - easing: options.easing || 'swing', - clickToFocus: (options.clickToFocus !== false), - focusBearing: (typeof options.focusBearing == 'undefined') ? 0.0 : jQuery.roundabout_toFloat(options.focusBearing % 360.0), - shape: options.shape || 'lazySusan', - debug: options.debug || false, - childSelector: options.childSelector || 'li', - startingChild: (typeof options.startingChild == 'undefined') ? null : parseInt(options.startingChild, 10), - reflect: (typeof options.reflect == 'undefined' || options.reflect === false) ? false : true - }; - - // assign things - this.each(function(i) { - var ref = jQuery(this); - var period = jQuery.roundabout_toFloat(360.0 / ref.children(options.childSelector).length); - var startingBearing = (options.startingChild === null) ? options.bearing : options.startingChild * period; - - // set starting styles - ref - .addClass('roundabout-holder') - .css('padding', 0) - .css('position', 'relative') - .css('z-index', options.minZ); - - // set starting options - ref.data('roundabout', { - 'bearing': startingBearing, - 'tilt': options.tilt, - 'minZ': options.minZ, - 'maxZ': options.maxZ, - 'minOpacity': options.minOpacity, - 'maxOpacity': options.maxOpacity, - 'minScale': options.minScale, - 'maxScale': options.maxScale, - 'duration': options.duration, - 'easing': options.easing, - 'clickToFocus': options.clickToFocus, - 'focusBearing': options.focusBearing, - 'animating': 0, - 'childInFocus': -1, - 'shape': options.shape, - 'period': period, - 'debug': options.debug, - 'childSelector': options.childSelector, - 'reflect': options.reflect - }); - - // bind click events - if (options.clickToFocus === true) { - ref.children(options.childSelector).each(function(i) { - jQuery(this).click(function(e) { - var degrees = (options.reflect === true) ? 360.0 - (period * i) : period * i; - degrees = jQuery.roundabout_toFloat(degrees); - if (!jQuery.roundabout_isInFocus(ref, degrees)) { - e.preventDefault(); - if (ref.data('roundabout').animating === 0) { - ref.roundabout_animateAngleToFocus(degrees); - } - return false; - } - }); - }); - } - - // bind next buttons - if (options.btnNext) { - jQuery(options.btnNext).bind('click.roundabout', function(e) { - e.preventDefault(); - if (ref.data('roundabout').animating === 0) { - ref.roundabout_animateToNextChild(); - } - return false; - }); - } - - // bind previous buttons - if (options.btnPrev) { - jQuery(options.btnPrev).bind('click.roundabout', function(e) { - e.preventDefault(); - if (ref.data('roundabout').animating === 0) { - ref.roundabout_animateToPreviousChild(); - } - return false; - }); - } - }); - - // start children - this.roundabout_startChildren(); - - // callback once ready - if (typeof arguments[1] === 'function') { - var callback = arguments[1], ref = this; - setTimeout(function() { callback(ref); }, 0); - } - - return this; -}; - -jQuery.fn.roundabout_startChildren = function() { - this.each(function(i) { - var ref = jQuery(this); - var data = ref.data('roundabout'); - var children = ref.children(data.childSelector); - - children.each(function(i) { - var degrees = (data.reflect === true) ? 360.0 - (data.period * i) : data.period * i; - - // apply classes and css first - jQuery(this) - .addClass('roundabout-moveable-item') - .css('position', 'absolute'); - - // then measure - jQuery(this).data('roundabout', { - 'startWidth': jQuery(this).width(), - 'startHeight': jQuery(this).height(), - 'startFontSize': parseInt(jQuery(this).css('font-size'), 10), - 'degrees': degrees - }); - }); - - ref.roundabout_updateChildPositions(); - }); - return this; -}; - -jQuery.fn.roundabout_setTilt = function(newTilt) { - this.each(function(i) { - jQuery(this).data('roundabout').tilt = newTilt; - jQuery(this).roundabout_updateChildPositions(); - }); - - if (typeof arguments[1] === 'function') { - var callback = arguments[1], ref = this; - setTimeout(function() { callback(ref); }, 0); - } - - return this; -}; - -jQuery.fn.roundabout_setBearing = function(newBearing) { - this.each(function(i) { - jQuery(this).data('roundabout').bearing = jQuery.roundabout_toFloat(newBearing % 360, 2); - jQuery(this).roundabout_updateChildPositions(); - }); - - if (typeof arguments[1] === 'function') { - var callback = arguments[1], ref = this; - setTimeout(function() { callback(ref); }, 0); - } - - return this; -}; - -jQuery.fn.roundabout_adjustBearing = function(delta) { - delta = jQuery.roundabout_toFloat(delta); - if (delta !== 0) { - this.each(function(i) { - jQuery(this).data('roundabout').bearing = jQuery.roundabout_getBearing(jQuery(this)) + delta; - jQuery(this).roundabout_updateChildPositions(); - }); - } - - if (typeof arguments[1] === 'function') { - var callback = arguments[1], ref = this; - setTimeout(function() { callback(ref); }, 0); - } - - return this; -}; - -jQuery.fn.roundabout_adjustTilt = function(delta) { - delta = jQuery.roundabout_toFloat(delta); - if (delta !== 0) { - this.each(function(i) { - jQuery(this).data('roundabout').tilt = jQuery.roundabout_toFloat(jQuery(this).roundabout_get('tilt') + delta); - jQuery(this).roundabout_updateChildPositions(); - }); - } - - if (typeof arguments[1] === 'function') { - var callback = arguments[1], ref = this; - setTimeout(function() { callback(ref); }, 0); - } - - return this; -}; - -jQuery.fn.roundabout_animateToBearing = function(bearing) { - bearing = jQuery.roundabout_toFloat(bearing); - var currentTime = new Date(); - var duration = (typeof arguments[1] == 'undefined') ? null : arguments[1]; - var easingType = (typeof arguments[2] == 'undefined') ? null : arguments[2]; - var passedData = (typeof arguments[3] !== 'object') ? null : arguments[3]; - - this.each(function(i) { - var ref = jQuery(this), data = ref.data('roundabout'), timer, easingFn, newBearing; - var thisDuration = (duration === null) ? data.duration : duration; - var thisEasingType = (easingType !== null) ? easingType : data.easing || 'swing'; - - if (passedData === null) { - passedData = { - timerStart: currentTime, - start: jQuery.roundabout_getBearing(ref), - totalTime: thisDuration - }; - } - timer = currentTime - passedData.timerStart; - - if (timer < thisDuration) { - data.animating = 1; - - if (typeof jQuery.easing.def == 'string') { - easingFn = jQuery.easing[thisEasingType] || jQuery.easing[jQuery.easing.def]; - newBearing = easingFn(null, timer, passedData.start, bearing - passedData.start, passedData.totalTime); - } else { - newBearing = jQuery.easing[thisEasingType]((timer / passedData.totalTime), timer, passedData.start, bearing - passedData.start, passedData.totalTime); - } - - ref.roundabout_setBearing(newBearing, function() { ref.roundabout_animateToBearing(bearing, thisDuration, thisEasingType, passedData); }); - } else { - bearing = (bearing < 0) ? bearing + 360 : bearing % 360; - data.animating = 0; - ref.roundabout_setBearing(bearing); - } - }); - return this; -}; - -jQuery.fn.roundabout_animateToDelta = function(delta) { - var duration = arguments[1], easing = arguments[2]; - this.each(function(i) { - delta = jQuery.roundabout_getBearing(jQuery(this)) + jQuery.roundabout_toFloat(delta); - jQuery(this).roundabout_animateToBearing(delta, duration, easing); - }); - return this; -}; - -jQuery.fn.roundabout_animateToChild = function(childPos) { - var duration = arguments[1], easing = arguments[2]; - this.each(function(i) { - var ref = jQuery(this), data = ref.data('roundabout'); - if (data.childInFocus !== childPos && data.animating === 0) { - var child = jQuery(ref.children(data.childSelector)[childPos]); - ref.roundabout_animateAngleToFocus(child.data('roundabout').degrees, duration, easing); - } - }); - return this; -}; - -jQuery.fn.roundabout_animateToNearbyChild = function(passedArgs, which) { - var duration = passedArgs[0], easing = passedArgs[1]; - this.each(function(i) { - var data = jQuery(this).data('roundabout'); - var bearing = jQuery.roundabout_toFloat(360.0 - jQuery.roundabout_getBearing(jQuery(this))); - var period = data.period, j = 0, range; - var reflect = data.reflect; - var length = jQuery(this).children(data.childSelector).length; - - bearing = (reflect === true) ? bearing % 360.0 : bearing; - - if (data.animating === 0) { - // if we're not reflecting and we're moving to next or - // we are reflecting and we're moving previous - if ((reflect === false && which === 'next') || (reflect === true && which !== 'next')) { - bearing = (bearing === 0) ? 360 : bearing; - - // counterclockwise - while (true && j < length) { - range = { lower: jQuery.roundabout_toFloat(period * j), upper: jQuery.roundabout_toFloat(period * (j + 1)) }; - range.upper = (j == length - 1) ? 360.0 : range.upper; // adjust for javascript being bad at floats - - if (bearing <= range.upper && bearing > range.lower) { - jQuery(this).roundabout_animateToDelta(bearing - range.lower, duration, easing); - break; - } - j++; - } - } else { - // clockwise - while (true) { - range = { lower: jQuery.roundabout_toFloat(period * j), upper: jQuery.roundabout_toFloat(period * (j + 1)) }; - range.upper = (j == length - 1) ? 360.0 : range.upper; // adjust for javascript being bad at floats - - if (bearing >= range.lower && bearing < range.upper) { - jQuery(this).roundabout_animateToDelta(bearing - range.upper, duration, easing); - break; - } - j++; - } - } - } - }); - return this; -}; - -jQuery.fn.roundabout_animateToNextChild = function() { - return this.roundabout_animateToNearbyChild(arguments, 'next'); -}; - -jQuery.fn.roundabout_animateToPreviousChild = function() { - return this.roundabout_animateToNearbyChild(arguments, 'previous'); -}; - -// moves a given angle to the focus by the shortest means possible -jQuery.fn.roundabout_animateAngleToFocus = function(target) { - var duration = arguments[1], easing = arguments[2]; - this.each(function(i) { - var delta = jQuery.roundabout_getBearing(jQuery(this)) - target; - delta = (Math.abs(360.0 - delta) < Math.abs(0.0 - delta)) ? 360.0 - delta : 0.0 - delta; - delta = (delta > 180) ? -(360.0 - delta) : delta; - - if (delta !== 0) { - jQuery(this).roundabout_animateToDelta(delta, duration, easing); - } - }); - return this; -}; - -jQuery.fn.roundabout_updateChildPositions = function() { - this.each(function(i) { - var ref = jQuery(this), data = ref.data('roundabout'); - var inFocus = -1; - var info = { - bearing: jQuery.roundabout_getBearing(ref), - tilt: data.tilt, - stage: { width: Math.floor(ref.width() * 0.9), height: Math.floor(ref.height() * 0.9) }, - animating: data.animating, - inFocus: data.childInFocus, - focusBearingRad: jQuery.roundabout_degToRad(data.focusBearing), - shape: jQuery.roundabout_shape[data.shape] || jQuery.roundabout_shape[jQuery.roundabout_shape.def] - }; - info.midStage = { width: info.stage.width / 2, height: info.stage.height / 2 }; - info.nudge = { width: info.midStage.width + info.stage.width * 0.05, height: info.midStage.height + info.stage.height * 0.05 }; - info.zValues = { min: data.minZ, max: data.maxZ, diff: data.maxZ - data.minZ }; - info.opacity = { min: data.minOpacity, max: data.maxOpacity, diff: data.maxOpacity - data.minOpacity }; - info.scale = { min: data.minScale, max: data.maxScale, diff: data.maxScale - data.minScale }; - - // update child positions - ref.children(data.childSelector).each(function(i) { - if (jQuery.roundabout_updateChildPosition(jQuery(this), ref, info, i) && info.animating === 0) { - inFocus = i; - jQuery(this).addClass('roundabout-in-focus'); - } else { - jQuery(this).removeClass('roundabout-in-focus'); - } - }); - - // update status of who is in focus - if (inFocus !== info.inFocus) { - jQuery.roundabout_triggerEvent(ref, info.inFocus, 'blur'); - - if (inFocus !== -1) { - jQuery.roundabout_triggerEvent(ref, inFocus, 'focus'); - } - - data.childInFocus = inFocus; - } - }); - return this; -}; - -//---------------- - -jQuery.roundabout_getBearing = function(el) { - return jQuery.roundabout_toFloat(el.data('roundabout').bearing) % 360; -}; - -jQuery.roundabout_degToRad = function(degrees) { - return (degrees % 360.0) * Math.PI / 180.0; -}; - -jQuery.roundabout_isInFocus = function(el, target) { - return (jQuery.roundabout_getBearing(el) % 360 === (target % 360)); -}; - -jQuery.roundabout_triggerEvent = function(el, child, eventType) { - return (child < 0) ? this : jQuery(el.children(el.data('roundabout').childSelector)[child]).trigger(eventType); -}; - -jQuery.roundabout_toFloat = function(number) { - number = Math.round(parseFloat(number) * 1000) / 1000; - return parseFloat(number.toFixed(2)); -}; - -jQuery.roundabout_updateChildPosition = function(child, container, info, childPos) { - var ref = jQuery(child), data = ref.data('roundabout'), out = []; - var rad = jQuery.roundabout_degToRad((360.0 - ref.data('roundabout').degrees) + info.bearing); - - // adjust radians to be between 0 and Math.PI * 2 - while (rad < 0) { - rad = rad + Math.PI * 2; - } - while (rad > Math.PI * 2) { - rad = rad - Math.PI * 2; - } - - var factors = info.shape(rad, info.focusBearingRad, info.tilt); // obj with x, y, z, and scale values - - // correct - factors.scale = (factors.scale > 1) ? 1 : factors.scale; - factors.adjustedScale = (info.scale.min + (info.scale.diff * factors.scale)).toFixed(4); - factors.width = (factors.adjustedScale * data.startWidth).toFixed(4); - factors.height = (factors.adjustedScale * data.startHeight).toFixed(4); - - // alter item - ref - .css('left', ((factors.x * info.midStage.width + info.nudge.width) - factors.width / 2.0).toFixed(1) + 'px') - .css('top', ((factors.y * info.midStage.height + info.nudge.height) - factors.height / 2.0).toFixed(1) + 'px') - .css('width', factors.width + 'px') - .css('height', factors.height + 'px') - .css('opacity', (info.opacity.min + (info.opacity.diff * factors.scale)).toFixed(2)) - .css('z-index', Math.round(info.zValues.min + (info.zValues.diff * factors.z))) - .css('font-size', (factors.adjustedScale * data.startFontSize).toFixed(2) + 'px') - .attr('current-scale', factors.adjustedScale); - - if (container.data('roundabout').debug === true) { - out.push('
'); - out.push('Child ' + childPos + '
'); - out.push('left: ' + ref.css('left') + '
top: ' + ref.css('top') + '
'); - out.push('width: ' + ref.css('width') + '
opacity: ' + ref.css('opacity') + '
'); - out.push('z-index: ' + ref.css('z-index') + '
font-size: ' + ref.css('font-size') + '
'); - out.push('scale: ' + ref.attr('current-scale')); - out.push('
'); - - ref.html(out.join('')); - } - - return jQuery.roundabout_isInFocus(container, ref.data('roundabout').degrees); -}; \ No newline at end of file diff --git a/sample-code/js/roundabout_shapes.js b/sample-code/js/roundabout_shapes.js deleted file mode 100755 index eec0f8dc4d90d93983f695dcdbc095a31e2e6f76..0000000000000000000000000000000000000000 --- a/sample-code/js/roundabout_shapes.js +++ /dev/null @@ -1,150 +0,0 @@ -/** - * jQuery Roundabout Shapes v1.1 - * http://fredhq.com/projects/roundabout-shapes/ - * - * Provides additional paths along which items can move for the - * jQuery Roundabout plugin (v1.0+). - * - * Terms of Use // jQuery Roundabout Shapes - * - * Open source under the BSD license - * - * Copyright (c) 2009, Fred LeBlanc - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * - Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following - * disclaimer in the documentation and/or other materials provided - * with the distribution. - * - Neither the name of the author nor the names of its contributors - * may be used to endorse or promote products derived from this - * software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -jQuery.extend(jQuery.roundabout_shape, -{ - theJuggler: function(r, a, t) { - return { - x: Math.sin(r + a), - y: Math.tan(Math.exp(Math.log(r)) + a) / (t - 1), - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - figure8: function(r, a, t) { - return { - x: Math.sin(r * 2 + a), - y: (Math.sin(r + Math.PI/2 + a) / 8) * t, - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - waterWheel: function(r, a, t) { - return { - x: (Math.sin(r + Math.PI/2 + a) / 8) * t, - y: Math.sin(r + a) / (Math.PI/2), - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - square: function(r, a, t) { - var sq_x, sq_y, sq_z; - - if (r <= Math.PI/2) { - sq_x = (2/Math.PI) * r; - sq_y = -(2/Math.PI) * r + 1; - sq_z = -(1/Math.PI) * r + 1; - } else if (r > Math.PI/2 && r <= Math.PI) { - sq_x = -(2/Math.PI) * r + 2; - sq_y = -(2/Math.PI) * r + 1; - sq_z = -(1/Math.PI) * r + 1; - } else if (r > Math.PI && r <= (3 * Math.PI) / 2) { - sq_x = -(2/Math.PI) * r + 2; - sq_y = (2/Math.PI) * r - 3; - sq_z = (1/Math.PI) * r - 1; - } else { - sq_x = (2/Math.PI) * r - 4; - sq_y = (2/Math.PI) * r - 3; - sq_z = (1/Math.PI) * r - 1; - } - - return { - x: sq_x, - y: sq_y * t, - z: sq_z, - scale: sq_z - } - }, - conveyorBeltLeft: function(r, a, t) { - return { - x: -Math.cos(r + a), - y: (Math.cos(r + 3*Math.PI/2 + a) / 8) * t, - z: (Math.sin(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - conveyorBeltRight: function(r, a, t) { - return { - x: Math.cos(r + a), - y: (Math.cos(r + 3*Math.PI/2 + a) / 8) * t, - z: (Math.sin(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - goodbyeCruelWorld: function(r, a, t) { - return { - x: Math.sin(r + a), - y: (Math.tan(r + 3*Math.PI/2 + a) / 8) * (t + 0.5), - z: (Math.sin(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - diagonalRingLeft: function(r, a, t) { - return { - x: Math.sin(r + a), - y: -Math.cos(r + Math.tan(Math.cos(a))) / (t + 1.5), - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - diagonalRingRight: function(r, a, t) { - return { - x: Math.sin(r + a), - y: Math.cos(r + Math.tan(Math.cos(a))) / (t + 1.5), - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - }; - }, - rollerCoaster: function(r, a, t) { - return { - x: Math.sin(r + a), - y: Math.sin((2 + t) * r), - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - } - }, - tearDrop: function(r, a, t) { - return { - x: Math.sin(r + a), - y: -Math.sin(r/2 + t) + 0.35, - z: (Math.cos(r + a) + 1) / 2, - scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 - } - } -}); \ No newline at end of file diff --git a/sample-code/screenshoot/alarmMail.jpg b/sample-code/screenshoot/alarmMail.jpg deleted file mode 100644 index 2e25a610a4acb2b7180613ebbd4d5805c2291edb..0000000000000000000000000000000000000000 Binary files a/sample-code/screenshoot/alarmMail.jpg and /dev/null differ diff --git a/sample-code/screenshoot/callChain.png b/sample-code/screenshoot/callChain.png deleted file mode 100644 index 86cf89002b6580a85c6f7873344b2bda5b8de16e..0000000000000000000000000000000000000000 Binary files a/sample-code/screenshoot/callChain.png and /dev/null differ diff --git a/sample-code/screenshoot/callChainDetail.png b/sample-code/screenshoot/callChainDetail.png deleted file mode 100644 index 543522a6842788028537ece964a75c4e37e3c8c3..0000000000000000000000000000000000000000 Binary files a/sample-code/screenshoot/callChainDetail.png and /dev/null differ diff --git a/sample-code/screenshoot/callChainLog.png b/sample-code/screenshoot/callChainLog.png deleted file mode 100644 index a4dbb2c1221511506b25b35e16bbc1cc45f90af2..0000000000000000000000000000000000000000 Binary files a/sample-code/screenshoot/callChainLog.png and /dev/null differ diff --git a/sample-code/uiView.html b/sample-code/uiView.html deleted file mode 100755 index ea252c8c89c3f643c6b7adf0616111897adda5b5..0000000000000000000000000000000000000000 --- a/sample-code/uiView.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - -Scene UI Preview - - - - - - - - - - - - -
- - - - -
- - - - - \ No newline at end of file diff --git a/stylesheets/github-dark.css b/stylesheets/github-dark.css deleted file mode 100644 index 0c393bfa493ca7717a559410a71ed7b181e8b986..0000000000000000000000000000000000000000 --- a/stylesheets/github-dark.css +++ /dev/null @@ -1,116 +0,0 @@ -/* - Copyright 2014 GitHub Inc. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -*/ - -.pl-c /* comment */ { - color: #969896; -} - -.pl-c1 /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */, -.pl-s .pl-v /* string variable */ { - color: #0099cd; -} - -.pl-e /* entity */, -.pl-en /* entity.name */ { - color: #9774cb; -} - -.pl-s .pl-s1 /* string source */, -.pl-smi /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ { - color: #ddd; -} - -.pl-ent /* entity.name.tag */ { - color: #7bcc72; -} - -.pl-k /* keyword, storage, storage.type */ { - color: #cc2372; -} - -.pl-pds /* punctuation.definition.string, string.regexp.character-class */, -.pl-s /* string */, -.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */, -.pl-sr /* string.regexp */, -.pl-sr .pl-cce /* string.regexp constant.character.escape */, -.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */, -.pl-sr .pl-sre /* string.regexp source.ruby.embedded */ { - color: #3c66e2; -} - -.pl-v /* variable */ { - color: #fb8764; -} - -.pl-id /* invalid.deprecated */ { - color: #e63525; -} - -.pl-ii /* invalid.illegal */ { - background-color: #e63525; - color: #f8f8f8; -} - -.pl-sr .pl-cce /* string.regexp constant.character.escape */ { - color: #7bcc72; - font-weight: bold; -} - -.pl-ml /* markup.list */ { - color: #c26b2b; -} - -.pl-mh /* markup.heading */, -.pl-mh .pl-en /* markup.heading entity.name */, -.pl-ms /* meta.separator */ { - color: #264ec5; - font-weight: bold; -} - -.pl-mq /* markup.quote */ { - color: #00acac; -} - -.pl-mi /* markup.italic */ { - color: #ddd; - font-style: italic; -} - -.pl-mb /* markup.bold */ { - color: #ddd; - font-weight: bold; -} - -.pl-md /* markup.deleted, meta.diff.header.from-file */ { - background-color: #ffecec; - color: #bd2c00; -} - -.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ { - background-color: #eaffea; - color: #55a532; -} - -.pl-mdr /* meta.diff.range */ { - color: #9774cb; - font-weight: bold; -} - -.pl-mo /* meta.output */ { - color: #264ec5; -} - diff --git a/stylesheets/github-light.css b/stylesheets/github-light.css deleted file mode 100644 index 872a6f4b278380e83df9a3db922039309eb015c1..0000000000000000000000000000000000000000 --- a/stylesheets/github-light.css +++ /dev/null @@ -1,116 +0,0 @@ -/* - Copyright 2014 GitHub Inc. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -*/ - -.pl-c /* comment */ { - color: #969896; -} - -.pl-c1 /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */, -.pl-s .pl-v /* string variable */ { - color: #0086b3; -} - -.pl-e /* entity */, -.pl-en /* entity.name */ { - color: #795da3; -} - -.pl-s .pl-s1 /* string source */, -.pl-smi /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ { - color: #333; -} - -.pl-ent /* entity.name.tag */ { - color: #63a35c; -} - -.pl-k /* keyword, storage, storage.type */ { - color: #a71d5d; -} - -.pl-pds /* punctuation.definition.string, string.regexp.character-class */, -.pl-s /* string */, -.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */, -.pl-sr /* string.regexp */, -.pl-sr .pl-cce /* string.regexp constant.character.escape */, -.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */, -.pl-sr .pl-sre /* string.regexp source.ruby.embedded */ { - color: #183691; -} - -.pl-v /* variable */ { - color: #ed6a43; -} - -.pl-id /* invalid.deprecated */ { - color: #b52a1d; -} - -.pl-ii /* invalid.illegal */ { - background-color: #b52a1d; - color: #f8f8f8; -} - -.pl-sr .pl-cce /* string.regexp constant.character.escape */ { - color: #63a35c; - font-weight: bold; -} - -.pl-ml /* markup.list */ { - color: #693a17; -} - -.pl-mh /* markup.heading */, -.pl-mh .pl-en /* markup.heading entity.name */, -.pl-ms /* meta.separator */ { - color: #1d3e81; - font-weight: bold; -} - -.pl-mq /* markup.quote */ { - color: #008080; -} - -.pl-mi /* markup.italic */ { - color: #333; - font-style: italic; -} - -.pl-mb /* markup.bold */ { - color: #333; - font-weight: bold; -} - -.pl-md /* markup.deleted, meta.diff.header.from-file */ { - background-color: #ffecec; - color: #bd2c00; -} - -.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ { - background-color: #eaffea; - color: #55a532; -} - -.pl-mdr /* meta.diff.range */ { - color: #795da3; - font-weight: bold; -} - -.pl-mo /* meta.output */ { - color: #1d3e81; -} - diff --git a/stylesheets/normalize.css b/stylesheets/normalize.css deleted file mode 100644 index 30366a6e9837b9c3b160a7b785e780e065870436..0000000000000000000000000000000000000000 --- a/stylesheets/normalize.css +++ /dev/null @@ -1,424 +0,0 @@ -/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ - -/** - * 1. Set default font family to sans-serif. - * 2. Prevent iOS text size adjust after orientation change, without disabling - * user zoom. - */ - -html { - font-family: sans-serif; /* 1 */ - -ms-text-size-adjust: 100%; /* 2 */ - -webkit-text-size-adjust: 100%; /* 2 */ -} - -/** - * Remove default margin. - */ - -body { - margin: 0; -} - -/* HTML5 display definitions - ========================================================================== */ - -/** - * Correct `block` display not defined for any HTML5 element in IE 8/9. - * Correct `block` display not defined for `details` or `summary` in IE 10/11 - * and Firefox. - * Correct `block` display not defined for `main` in IE 11. - */ - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -/** - * 1. Correct `inline-block` display not defined in IE 8/9. - * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. - */ - -audio, -canvas, -progress, -video { - display: inline-block; /* 1 */ - vertical-align: baseline; /* 2 */ -} - -/** - * Prevent modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Address `[hidden]` styling not present in IE 8/9/10. - * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. - */ - -[hidden], -template { - display: none; -} - -/* Links - ========================================================================== */ - -/** - * Remove the gray background color from active links in IE 10. - */ - -a { - background-color: transparent; -} - -/** - * Improve readability when focused and also mouse hovered in all browsers. - */ - -a:active, -a:hover { - outline: 0; -} - -/* Text-level semantics - ========================================================================== */ - -/** - * Address styling not present in IE 8/9/10/11, Safari, and Chrome. - */ - -abbr[title] { - border-bottom: 1px dotted; -} - -/** - * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. - */ - -b, -strong { - font-weight: bold; -} - -/** - * Address styling not present in Safari and Chrome. - */ - -dfn { - font-style: italic; -} - -/** - * Address variable `h1` font-size and margin within `section` and `article` - * contexts in Firefox 4+, Safari, and Chrome. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/** - * Address styling not present in IE 8/9. - */ - -mark { - background: #ff0; - color: #000; -} - -/** - * Address inconsistent and variable font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` affecting `line-height` in all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -/* Embedded content - ========================================================================== */ - -/** - * Remove border when inside `a` element in IE 8/9/10. - */ - -img { - border: 0; -} - -/** - * Correct overflow not hidden in IE 9/10/11. - */ - -svg:not(:root) { - overflow: hidden; -} - -/* Grouping content - ========================================================================== */ - -/** - * Address margin not present in IE 8/9 and Safari. - */ - -figure { - margin: 1em 40px; -} - -/** - * Address differences between Firefox and other browsers. - */ - -hr { - box-sizing: content-box; - height: 0; -} - -/** - * Contain overflow in all browsers. - */ - -pre { - overflow: auto; -} - -/** - * Address odd `em`-unit font size rendering in all browsers. - */ - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -/* Forms - ========================================================================== */ - -/** - * Known limitation: by default, Chrome and Safari on OS X allow very limited - * styling of `select`, unless a `border` property is set. - */ - -/** - * 1. Correct color not being inherited. - * Known issue: affects color of disabled elements. - * 2. Correct font properties not being inherited. - * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. - */ - -button, -input, -optgroup, -select, -textarea { - color: inherit; /* 1 */ - font: inherit; /* 2 */ - margin: 0; /* 3 */ -} - -/** - * Address `overflow` set to `hidden` in IE 8/9/10/11. - */ - -button { - overflow: visible; -} - -/** - * Address inconsistent `text-transform` inheritance for `button` and `select`. - * All other form control elements do not inherit `text-transform` values. - * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. - * Correct `select` style inheritance in Firefox. - */ - -button, -select { - text-transform: none; -} - -/** - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Correct inability to style clickable `input` types in iOS. - * 3. Improve usability and consistency of cursor style between image-type - * `input` and others. - */ - -button, -html input[type="button"], /* 1 */ -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; /* 2 */ - cursor: pointer; /* 3 */ -} - -/** - * Re-set default cursor for disabled elements. - */ - -button[disabled], -html input[disabled] { - cursor: default; -} - -/** - * Remove inner padding and border in Firefox 4+. - */ - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -/** - * Address Firefox 4+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. - */ - -input { - line-height: normal; -} - -/** - * It's recommended that you don't attempt to style these elements. - * Firefox's implementation doesn't respect box-sizing, padding, or width. - * - * 1. Address box sizing set to `content-box` in IE 8/9/10. - * 2. Remove excess padding in IE 8/9/10. - */ - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Fix the cursor style for Chrome's increment/decrement buttons. For certain - * `font-size` values of the `input`, it causes the cursor style of the - * decrement button to change from `default` to `text`. - */ - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Address `appearance` set to `searchfield` in Safari and Chrome. - * 2. Address `box-sizing` set to `border-box` in Safari and Chrome - * (include `-moz` to future-proof). - */ - -input[type="search"] { - -webkit-appearance: textfield; /* 1 */ /* 2 */ - box-sizing: content-box; -} - -/** - * Remove inner padding and search cancel button in Safari and Chrome on OS X. - * Safari (but not Chrome) clips the cancel button when the search input has - * padding (and `textfield` appearance). - */ - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * Define consistent border, margin, and padding. - */ - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/** - * 1. Correct `color` not being inherited in IE 8/9/10/11. - * 2. Remove padding so people aren't caught out if they zero out fieldsets. - */ - -legend { - border: 0; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Remove default vertical scrollbar in IE 8/9/10/11. - */ - -textarea { - overflow: auto; -} - -/** - * Don't inherit the `font-weight` (applied by a rule above). - * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. - */ - -optgroup { - font-weight: bold; -} - -/* Tables - ========================================================================== */ - -/** - * Remove most spacing between table cells. - */ - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} diff --git a/stylesheets/styles.css b/stylesheets/styles.css deleted file mode 100644 index 455c7ef23715a002c4e3940940dbb6fd89ff7cc6..0000000000000000000000000000000000000000 --- a/stylesheets/styles.css +++ /dev/null @@ -1,356 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700); -html { - background: #6C7989; - background: #6c7989 -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6c7989), color-stop(100%, #434b55)) fixed; - background: #6c7989 -webkit-linear-gradient(#6c7989, #434b55) fixed; - background: #6c7989 -moz-linear-gradient(#6c7989, #434b55) fixed; - background: #6c7989 -o-linear-gradient(#6c7989, #434b55) fixed; - background: #6c7989 -ms-linear-gradient(#6c7989, #434b55) fixed; - background: #6c7989 linear-gradient(#6c7989, #434b55) fixed; -} - -body { - padding: 50px 0; - margin: 0; - font: 14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif; - color: #555; - font-weight: 300; - background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAeCAYAAABNChwpAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy82LzEygrTcTAAAAFRJREFUSIljfPDggZRf5RIGGNjUHsNATz6jXmSL1Kb2GLiAX+USBnrymRgGGDCORgFmoNAXjEbBaBSMRsFoFIxGwWgUjEbBaBSMRsFoFIxGwWgUAABYNujumib3wAAAAABJRU5ErkJggg==') fixed; -} - -.wrapper { - width: 640px; - margin: 0 auto; - background: #DEDEDE; - -webkit-border-radius: 8px; - -moz-border-radius: 8px; - -ms-border-radius: 8px; - -o-border-radius: 8px; - border-radius: 8px; - -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px; - -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px; - box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px; -} - -header, section, footer { - display: block; -} - -a { - color: #069; - text-decoration: none; -} - -p { - margin: 0 0 20px; - padding: 0; -} - -strong { - color: #222; - font-weight: 700; -} - -header { - -webkit-border-radius: 8px 8px 0 0; - -moz-border-radius: 8px 8px 0 0; - -ms-border-radius: 8px 8px 0 0; - -o-border-radius: 8px 8px 0 0; - border-radius: 8px 8px 0 0; - background: #C6EAFA; - background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ddfbfc), color-stop(100%, #c6eafa)); - background: -webkit-linear-gradient(#ddfbfc, #c6eafa); - background: -moz-linear-gradient(#ddfbfc, #c6eafa); - background: -o-linear-gradient(#ddfbfc, #c6eafa); - background: -ms-linear-gradient(#ddfbfc, #c6eafa); - background: linear-gradient(#ddfbfc, #c6eafa); - position: relative; - padding: 15px 20px; - border-bottom: 1px solid #B2D2E1; -} -header h1 { - margin: 0; - padding: 0; - font-size: 24px; - line-height: 1.2; - color: #069; - text-shadow: rgba(255, 255, 255, 0.9) 0 1px 0; -} -header.without-description h1 { - margin: 10px 0; -} -header p { - margin: 0; - color: #61778B; - width: 300px; - font-size: 13px; -} -header p.view { - display: none; - font-weight: 700; - text-shadow: rgba(255, 255, 255, 0.9) 0 1px 0; - -webkit-font-smoothing: antialiased; -} -header p.view a { - color: #06c; -} -header p.view small { - font-weight: 400; -} -header ul { - margin: 0; - padding: 0; - list-style: none; - position: absolute; - z-index: 1; - right: 20px; - top: 20px; - height: 38px; - padding: 1px 0; - background: #5198DF; - background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #77b9fb), color-stop(100%, #3782cd)); - background: -webkit-linear-gradient(#77b9fb, #3782cd); - background: -moz-linear-gradient(#77b9fb, #3782cd); - background: -o-linear-gradient(#77b9fb, #3782cd); - background: -ms-linear-gradient(#77b9fb, #3782cd); - background: linear-gradient(#77b9fb, #3782cd); - border-radius: 5px; - -webkit-box-shadow: inset rgba(255, 255, 255, 0.45) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 -1px 0; - -moz-box-shadow: inset rgba(255, 255, 255, 0.45) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 -1px 0; - box-shadow: inset rgba(255, 255, 255, 0.45) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 -1px 0; - width: auto; -} -header ul:before { - content: ''; - position: absolute; - z-index: -1; - left: -5px; - top: -4px; - right: -5px; - bottom: -6px; - background: rgba(0, 0, 0, 0.1); - -webkit-border-radius: 8px; - -moz-border-radius: 8px; - -ms-border-radius: 8px; - -o-border-radius: 8px; - border-radius: 8px; - -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0, inset rgba(255, 255, 255, 0.7) 0 -1px 0; - -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0, inset rgba(255, 255, 255, 0.7) 0 -1px 0; - box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0, inset rgba(255, 255, 255, 0.7) 0 -1px 0; -} -header ul li { - width: 79px; - float: left; - border-right: 1px solid #3A7CBE; - height: 38px; -} -header ul li.single { - border: none; -} -header ul li + li { - width: 78px; - border-left: 1px solid #8BBEF3; -} -header ul li + li + li { - border-right: none; - width: 79px; -} -header ul a { - line-height: 1; - font-size: 11px; - color: #fff; - color: rgba(255, 255, 255, 0.8); - display: block; - text-align: center; - font-weight: 400; - padding-top: 6px; - height: 40px; - text-shadow: rgba(0, 0, 0, 0.4) 0 -1px 0; -} -header ul a strong { - font-size: 14px; - display: block; - color: #fff; - -webkit-font-smoothing: antialiased; -} - -section { - padding: 15px 20px; - font-size: 15px; - border-top: 1px solid #fff; - background: -webkit-gradient(linear, 50% 0%, 50% 700, color-stop(0%, #fafafa), color-stop(100%, #dedede)); - background: -webkit-linear-gradient(#fafafa, #dedede 700px); - background: -moz-linear-gradient(#fafafa, #dedede 700px); - background: -o-linear-gradient(#fafafa, #dedede 700px); - background: -ms-linear-gradient(#fafafa, #dedede 700px); - background: linear-gradient(#fafafa, #dedede 700px); - -webkit-border-radius: 0 0 8px 8px; - -moz-border-radius: 0 0 8px 8px; - -ms-border-radius: 0 0 8px 8px; - -o-border-radius: 0 0 8px 8px; - border-radius: 0 0 8px 8px; - position: relative; -} - -h1, h2, h3, h4, h5, h6 { - color: #222; - padding: 0; - margin: 0 0 20px; - line-height: 1.2; -} - -p, ul, ol, table, pre, dl { - margin: 0 0 20px; -} - -h1, h2, h3 { - line-height: 1.1; -} - -h1 { - font-size: 28px; -} - -h2 { - color: #393939; -} - -h3, h4, h5, h6 { - color: #494949; -} - -blockquote { - margin: 0 -20px 20px; - padding: 15px 20px 1px 40px; - font-style: italic; - background: #ccc; - background: rgba(0, 0, 0, 0.06); - color: #222; -} - -img { - max-width: 100%; -} - -code, pre { - font-family: Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal; - color: #333; - font-size: 12px; - overflow-x: auto; -} - -pre { - padding: 20px; - background: #3A3C42; - color: #f8f8f2; - margin: 0 -20px 20px; -} -pre code { - color: #f8f8f2; -} -li pre { - margin-left: -60px; - padding-left: 60px; -} - -table { - width: 100%; - border-collapse: collapse; -} - -th, td { - text-align: left; - padding: 5px 10px; - border-bottom: 1px solid #aaa; -} - -dt { - color: #222; - font-weight: 700; -} - -th { - color: #222; -} - -small { - font-size: 11px; -} - -hr { - border: 0; - background: #aaa; - height: 1px; - margin: 0 0 20px; -} - -footer { - width: 640px; - margin: 0 auto; - padding: 20px 0 0; - color: #ccc; - overflow: hidden; -} -footer a { - color: #fff; - font-weight: bold; -} -footer p { - float: left; -} -footer p + p { - float: right; -} - -@media print, screen and (max-width: 740px) { - body { - padding: 0; - } - - .wrapper { - -webkit-border-radius: 0; - -moz-border-radius: 0; - -ms-border-radius: 0; - -o-border-radius: 0; - border-radius: 0; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - width: 100%; - } - - footer { - -webkit-border-radius: 0; - -moz-border-radius: 0; - -ms-border-radius: 0; - -o-border-radius: 0; - border-radius: 0; - padding: 20px; - width: auto; - } - footer p { - float: none; - margin: 0; - } - footer p + p { - float: none; - } -} -@media print, screen and (max-width:580px) { - header ul { - display: none; - } - - header p.view { - display: block; - } - - header p { - width: 100%; - } -} -@media print { - header p.view a small:before { - content: 'at https://github.com/'; - } -} diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css deleted file mode 100644 index b5f20c235ffda37acca9d177d47f34c7f77aab84..0000000000000000000000000000000000000000 --- a/stylesheets/stylesheet.css +++ /dev/null @@ -1,245 +0,0 @@ -* { - box-sizing: border-box; } - -body { - padding: 0; - margin: 0; - font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 16px; - line-height: 1.5; - color: #606c71; } - -a { - color: #1e6bb8; - text-decoration: none; } - a:hover { - text-decoration: underline; } - -.btn { - display: inline-block; - margin-bottom: 1rem; - color: rgba(255, 255, 255, 0.7); - background-color: rgba(255, 255, 255, 0.08); - border-color: rgba(255, 255, 255, 0.2); - border-style: solid; - border-width: 1px; - border-radius: 0.3rem; - transition: color 0.2s, background-color 0.2s, border-color 0.2s; } - .btn + .btn { - margin-left: 1rem; } - -.btn:hover { - color: rgba(255, 255, 255, 0.8); - text-decoration: none; - background-color: rgba(255, 255, 255, 0.2); - border-color: rgba(255, 255, 255, 0.3); } - -@media screen and (min-width: 64em) { - .btn { - padding: 0.75rem 1rem; } } - -@media screen and (min-width: 42em) and (max-width: 64em) { - .btn { - padding: 0.6rem 0.9rem; - font-size: 0.9rem; } } - -@media screen and (max-width: 42em) { - .btn { - display: block; - width: 100%; - padding: 0.75rem; - font-size: 0.9rem; } - .btn + .btn { - margin-top: 1rem; - margin-left: 0; } } - -.page-header { - color: #fff; - text-align: center; - background-color: #159957; - background-image: linear-gradient(120deg, #155799, #159957); } - -@media screen and (min-width: 64em) { - .page-header { - padding: 5rem 6rem; } } - -@media screen and (min-width: 42em) and (max-width: 64em) { - .page-header { - padding: 3rem 4rem; } } - -@media screen and (max-width: 42em) { - .page-header { - padding: 2rem 1rem; } } - -.project-name { - margin-top: 0; - margin-bottom: 0.1rem; } - -@media screen and (min-width: 64em) { - .project-name { - font-size: 3.25rem; } } - -@media screen and (min-width: 42em) and (max-width: 64em) { - .project-name { - font-size: 2.25rem; } } - -@media screen and (max-width: 42em) { - .project-name { - font-size: 1.75rem; } } - -.project-tagline { - margin-bottom: 2rem; - font-weight: normal; - opacity: 0.7; } - -@media screen and (min-width: 64em) { - .project-tagline { - font-size: 1.25rem; } } - -@media screen and (min-width: 42em) and (max-width: 64em) { - .project-tagline { - font-size: 1.15rem; } } - -@media screen and (max-width: 42em) { - .project-tagline { - font-size: 1rem; } } - -.main-content :first-child { - margin-top: 0; } -.main-content img { - max-width: 100%; } -.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 { - margin-top: 2rem; - margin-bottom: 1rem; - font-weight: normal; - color: #159957; } -.main-content p { - margin-bottom: 1em; } -.main-content code { - padding: 2px 4px; - font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; - font-size: 0.9rem; - color: #383e41; - background-color: #f3f6fa; - border-radius: 0.3rem; } -.main-content pre { - padding: 0.8rem; - margin-top: 0; - margin-bottom: 1rem; - font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace; - color: #567482; - word-wrap: normal; - background-color: #f3f6fa; - border: solid 1px #dce6f0; - border-radius: 0.3rem; } - .main-content pre > code { - padding: 0; - margin: 0; - font-size: 0.9rem; - color: #567482; - word-break: normal; - white-space: pre; - background: transparent; - border: 0; } -.main-content .highlight { - margin-bottom: 1rem; } - .main-content .highlight pre { - margin-bottom: 0; - word-break: normal; } -.main-content .highlight pre, .main-content pre { - padding: 0.8rem; - overflow: auto; - font-size: 0.9rem; - line-height: 1.45; - border-radius: 0.3rem; } -.main-content pre code, .main-content pre tt { - display: inline; - max-width: initial; - padding: 0; - margin: 0; - overflow: initial; - line-height: inherit; - word-wrap: normal; - background-color: transparent; - border: 0; } - .main-content pre code:before, .main-content pre code:after, .main-content pre tt:before, .main-content pre tt:after { - content: normal; } -.main-content ul, .main-content ol { - margin-top: 0; } -.main-content blockquote { - padding: 0 1rem; - margin-left: 0; - color: #819198; - border-left: 0.3rem solid #dce6f0; } - .main-content blockquote > :first-child { - margin-top: 0; } - .main-content blockquote > :last-child { - margin-bottom: 0; } -.main-content table { - display: block; - width: 100%; - overflow: auto; - word-break: normal; - word-break: keep-all; } - .main-content table th { - font-weight: bold; } - .main-content table th, .main-content table td { - padding: 0.5rem 1rem; - border: 1px solid #e9ebec; } -.main-content dl { - padding: 0; } - .main-content dl dt { - padding: 0; - margin-top: 1rem; - font-size: 1rem; - font-weight: bold; } - .main-content dl dd { - padding: 0; - margin-bottom: 1rem; } -.main-content hr { - height: 2px; - padding: 0; - margin: 1rem 0; - background-color: #eff0f1; - border: 0; } - -@media screen and (min-width: 64em) { - .main-content { - max-width: 64rem; - padding: 2rem 6rem; - margin: 0 auto; - font-size: 1.1rem; } } - -@media screen and (min-width: 42em) and (max-width: 64em) { - .main-content { - padding: 2rem 4rem; - font-size: 1.1rem; } } - -@media screen and (max-width: 42em) { - .main-content { - padding: 2rem 1rem; - font-size: 1rem; } } - -.site-footer { - padding-top: 2rem; - margin-top: 2rem; - border-top: solid 1px #eff0f1; } - -.site-footer-owner { - display: block; - font-weight: bold; } - -.site-footer-credits { - color: #819198; } - -@media screen and (min-width: 64em) { - .site-footer { - font-size: 1rem; } } - -@media screen and (min-width: 42em) and (max-width: 64em) { - .site-footer { - font-size: 1rem; } } - -@media screen and (max-width: 42em) { - .site-footer { - font-size: 0.9rem; } }