text
stringlengths 2
1.04M
| meta
dict |
---|---|
@interface UIView (Util)
- (UILabel *) labelWithTag:(NSInteger) tag;
- (UIButton *) buttonWithTag:(NSInteger) tag;
- (UIImageView *) imageViewWithTag:(NSInteger) tag;
- (void) setText:(NSString *) text toLabelWithTag:(NSInteger) tag;
- (CGFloat)x;
- (void)setX:(CGFloat)x;
- (CGFloat)y;
- (void)setY:(CGFloat)y;
- (CGFloat)height;
- (void)setHeight:(CGFloat)height;
- (CGFloat)width;
- (void)setWidth:(CGFloat)width;
@end
| {
"content_hash": "43de6f037e812416e8e39af9dbefb813",
"timestamp": "",
"source": "github",
"line_count": 20,
"max_line_length": 66,
"avg_line_length": 21.4,
"alnum_prop": 0.6939252336448598,
"repo_name": "YiQieSuiYuan/HealthMenu",
"id": "758b63801fb9837655c950260388a5a944b8fafe",
"size": "586",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "MVCTest/Utils/Tool/UIView+Util.h",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "C",
"bytes": "2571"
},
{
"name": "HTML",
"bytes": "1636"
},
{
"name": "Objective-C",
"bytes": "1803666"
}
],
"symlink_target": ""
} |
set -e
set -o pipefail
# Hack to make the Passenger RPM packaging tests on our Jenkins infrastructure work. Jenkins has UID 999 and GID 998.
# There is a user saslauth and group ssh_keys in the CentOS 7 container with these UID/GID, but we don't need them so we just delete them.
if grep -q 'release 7' /etc/redhat-release; then
userdel saslauth
groupdel ssh_keys
fi
# There is a user systemd-coredump and group render in the CentOS 8 container with these UID/GID, but we don't need them so we just delete them.
if grep -q 'release 8' /etc/redhat-release; then
userdel systemd-coredump
groupdel render
fi
if [[ "$APP_UID" -lt 1024 ]]; then
if awk -F: '{ print $3 }' < /etc/passwd | grep -q "^${APP_UID}$"; then
echo "ERROR: you can only run this script with a user whose UID is at least 1024, or whose UID does not already exist in the Docker container. Current UID: $APP_UID"
exit 1
fi
fi
if [[ "$APP_GID" -lt 1024 ]]; then
if awk -F: '{ print $3 }' < /etc/group | grep -q "^${APP_GID}$"; then
echo "ERROR: you can only run this script with a user whose GID is at least 1024, or whose GID does not already exist in the Docker container. Current GID: $APP_GID"
exit 1
fi
fi
chown -R "$APP_UID:$APP_GID" /home/app
groupmod -g "$APP_GID" app
usermod -u "$APP_UID" -g "$APP_GID" app
# There's something strange with either Docker or the kernel, so that
# the 'app' user cannot access its home directory even after a proper
# chown/chmod. We work around it like this.
mv /home/app /home/app2
cp -dpR /home/app2 /home/app
rm -rf /home/app2
if [[ $# -gt 0 ]]; then
exec "$@"
fi
| {
"content_hash": "e829d3f7a6dc010fa9e826b3a0143784",
"timestamp": "",
"source": "github",
"line_count": 44,
"max_line_length": 167,
"avg_line_length": 36.27272727272727,
"alnum_prop": 0.7011278195488722,
"repo_name": "phusion/passenger_rpm_automation",
"id": "ec16905689dc93eb939ecd4d0f98ae0b6fe83c79",
"size": "1699",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "internal/scripts/inituidgid.sh",
"mode": "33261",
"license": "mit",
"language": [
{
"name": "Dockerfile",
"bytes": "398"
},
{
"name": "HTML",
"bytes": "53416"
},
{
"name": "JavaScript",
"bytes": "202"
},
{
"name": "Makefile",
"bytes": "2220"
},
{
"name": "Python",
"bytes": "790"
},
{
"name": "Roff",
"bytes": "4476"
},
{
"name": "Ruby",
"bytes": "53075"
},
{
"name": "Shell",
"bytes": "44078"
}
],
"symlink_target": ""
} |
<?php
namespace Jmondi\Gut\DomainModel\Entity\DTO;
class CertKeyDTO
{
/** @var resource */
private $publicKey;
/** @var resource */
private $privateKey;
public function __construct(
string $privateKey,
string $publicKey
) {
$this->publicKey = $publicKey;
$this->privateKey = $privateKey;
}
public function getPublicKey(): string
{
return $this->publicKey;
}
public function getPrivateKey(): string
{
return $this->privateKey;
}
}
| {
"content_hash": "8b88cb35ec79a6821f776913ae961f5e",
"timestamp": "",
"source": "github",
"line_count": 28,
"max_line_length": 44,
"avg_line_length": 19.071428571428573,
"alnum_prop": 0.5898876404494382,
"repo_name": "jasonraimondi/command-query",
"id": "ad844958f4fa9a6fcf116c39a51f217baa611747",
"size": "534",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "domain/src/DomainModel/Entity/DTO/CertKeyDTO.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "ApacheConf",
"bytes": "553"
},
{
"name": "CSS",
"bytes": "38254"
},
{
"name": "HTML",
"bytes": "4742"
},
{
"name": "JavaScript",
"bytes": "9252"
},
{
"name": "Makefile",
"bytes": "1385"
},
{
"name": "Nginx",
"bytes": "707"
},
{
"name": "PHP",
"bytes": "167291"
},
{
"name": "TypeScript",
"bytes": "4624"
}
],
"symlink_target": ""
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Fri Jan 10 21:37:07 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage (HBase 0.94.16 API)
</TITLE>
<META NAME="date" CONTENT="2014-01-10">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage (HBase 0.94.16 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/hbase/protobuf/generated//class-useErrorHandlingProtos.GenericExceptionMessage.html" target="_top"><B>FRAMES</B></A>
<A HREF="ErrorHandlingProtos.GenericExceptionMessage.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.hbase.protobuf.generated"><B>org.apache.hadoop.hbase.protobuf.generated</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.hbase.protobuf.generated"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A> in <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</A> that return <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.Builder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.Builder.html#build()">build</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.Builder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.Builder.html#buildPartial()">buildPartial</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#getDefaultInstance()">getDefaultInstance</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#getDefaultInstanceForType()">getDefaultInstanceForType</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.Builder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.Builder.html#getDefaultInstanceForType()">getDefaultInstanceForType</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.ForeignExceptionMessageOrBuilder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.ForeignExceptionMessageOrBuilder.html#getGenericException()">getGenericException</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.ForeignExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.ForeignExceptionMessage.html#getGenericException()">getGenericException</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.ForeignExceptionMessage.Builder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.ForeignExceptionMessage.Builder.html#getGenericException()">getGenericException</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseDelimitedFrom(java.io.InputStream)">parseDelimitedFrom</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A> input)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseDelimitedFrom(java.io.InputStream, com.google.protobuf.ExtensionRegistryLite)">parseDelimitedFrom</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A> input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(byte[])">parseFrom</A></B>(byte[] data)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(byte[], com.google.protobuf.ExtensionRegistryLite)">parseFrom</A></B>(byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(com.google.protobuf.ByteString)">parseFrom</A></B>(com.google.protobuf.ByteString data)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite)">parseFrom</A></B>(com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(com.google.protobuf.CodedInputStream)">parseFrom</A></B>(com.google.protobuf.CodedInputStream input)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite)">parseFrom</A></B>(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(java.io.InputStream)">parseFrom</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A> input)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#parseFrom(java.io.InputStream, com.google.protobuf.ExtensionRegistryLite)">parseFrom</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A> input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</A> with parameters of type <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage.Builder</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.Builder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.Builder.html#mergeFrom(org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage)">mergeFrom</A></B>(<A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A> other)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.ForeignExceptionMessage.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.ForeignExceptionMessage.Builder</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.ForeignExceptionMessage.Builder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.ForeignExceptionMessage.Builder.html#mergeGenericException(org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage)">mergeGenericException</A></B>(<A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A> value)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage.Builder</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.GenericExceptionMessage.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html#newBuilder(org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage)">newBuilder</A></B>(<A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A> prototype)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.ForeignExceptionMessage.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.ForeignExceptionMessage.Builder</A></CODE></FONT></TD>
<TD><CODE><B>ErrorHandlingProtos.ForeignExceptionMessage.Builder.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.ForeignExceptionMessage.Builder.html#setGenericException(org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage)">setGenericException</A></B>(<A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ErrorHandlingProtos.GenericExceptionMessage</A> value)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ErrorHandlingProtos.GenericExceptionMessage.html" title="class in org.apache.hadoop.hbase.protobuf.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/hbase/protobuf/generated//class-useErrorHandlingProtos.GenericExceptionMessage.html" target="_top"><B>FRAMES</B></A>
<A HREF="ErrorHandlingProtos.GenericExceptionMessage.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
| {
"content_hash": "d2a3df8e7fc6373ab20b8823049e59c1",
"timestamp": "",
"source": "github",
"line_count": 362,
"max_line_length": 592,
"avg_line_length": 75.61878453038673,
"alnum_prop": 0.7065463578578213,
"repo_name": "wanhao/IRIndex",
"id": "b4c8458409e4e9ad52274dc6262b7f7624eaaddf",
"size": "27374",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "docs/apidocs/org/apache/hadoop/hbase/protobuf/generated/class-use/ErrorHandlingProtos.GenericExceptionMessage.html",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "C++",
"bytes": "9918"
},
{
"name": "CSS",
"bytes": "29691"
},
{
"name": "Java",
"bytes": "15679586"
},
{
"name": "PHP",
"bytes": "7350"
},
{
"name": "Perl",
"bytes": "8667"
},
{
"name": "Python",
"bytes": "14535"
},
{
"name": "Ruby",
"bytes": "396034"
},
{
"name": "Shell",
"bytes": "69638"
},
{
"name": "XSLT",
"bytes": "4379"
}
],
"symlink_target": ""
} |
package main
import (
"context"
"flag"
"fmt"
"io"
"os"
"time"
"github.com/jinzhu/gorm"
"github.com/oinume/lekcije/server/cli"
"github.com/oinume/lekcije/server/config"
"github.com/oinume/lekcije/server/crawler"
"github.com/oinume/lekcije/server/fetcher"
"github.com/oinume/lekcije/server/logger"
"github.com/oinume/lekcije/server/model"
"go.uber.org/zap"
"golang.org/x/sync/errgroup"
)
func main() {
m := &crawlerMain{
outStream: os.Stdout,
errStream: os.Stderr,
}
if err := m.run(os.Args); err != nil {
cli.WriteError(m.errStream, err)
os.Exit(cli.ExitError)
}
os.Exit(cli.ExitOK)
}
type crawlerMain struct {
outStream io.Writer
errStream io.Writer
}
func (m *crawlerMain) run(args []string) error {
flagSet := flag.NewFlagSet("crawler", flag.ContinueOnError)
flagSet.SetOutput(m.errStream)
var (
concurrency = flagSet.Int("concurrency", 1, "Concurrency of crawler. (default=1)")
continueOnError = flagSet.Bool("continue", true, "Continue to crawl if any error occurred. (default=true)")
specifiedIDs = flagSet.String("ids", "", "Teacher IDs")
followedOnly = flagSet.Bool("followedOnly", false, "Crawl followedOnly teachers")
all = flagSet.Bool("all", false, "Crawl all teachers ordered by evaluation")
newOnly = flagSet.Bool("new", false, "Crawl all teachers ordered by new")
interval = flagSet.Duration("interval", 1*time.Second, "Fetch interval. (default=1s)")
logLevel = flag.String("log-level", "info", "Log level")
)
if err := flagSet.Parse(args[1:]); err != nil {
return err
}
if *followedOnly && *specifiedIDs != "" {
return fmt.Errorf("can't specify -followedOnly and -ids flags both")
}
config.MustProcessDefault()
ctx := context.Background()
startedAt := time.Now().UTC()
appLogger := logger.NewAppLogger(os.Stderr, logger.NewLevel(*logLevel))
appLogger.Info("crawler started")
defer func() {
elapsed := time.Now().UTC().Sub(startedAt) / time.Millisecond
appLogger.Info("crawler finished", zap.Int("elapsed", int(elapsed)))
}()
db, err := model.OpenDB(config.DefaultVars.DBURL(), 1, config.DefaultVars.DebugSQL)
if err != nil {
return err
}
defer func() { _ = db.Close() }()
mCountryService := model.NewMCountryService(db)
mCountries, err := mCountryService.LoadAll(ctx)
if err != nil {
return err
}
loader := m.createLoader(db, *specifiedIDs, *followedOnly, *all, *newOnly)
lessonFetcher := fetcher.NewLessonFetcher(nil, *concurrency, false, mCountries, appLogger)
teacherService := model.NewTeacherService(db)
for cursor := loader.GetInitialCursor(); cursor != ""; {
var teacherIDs []uint32
var err error
teacherIDs, cursor, err = loader.Load(cursor)
if err != nil {
return err
}
// TODO: semaphore
var g errgroup.Group
for _, id := range teacherIDs {
id := id
g.Go(func() error {
teacher, _, err := lessonFetcher.Fetch(ctx, id)
if err != nil {
if *continueOnError {
appLogger.Error("Error during LessonFetcher.Fetch", zap.Error(err))
return nil
} else {
return err
}
}
if err := teacherService.CreateOrUpdate(teacher); err != nil {
if *continueOnError {
appLogger.Error("Error during TeacherService.CreateOrUpdate", zap.Error(err))
return nil
} else {
return err
}
}
// TODO: update lessons
return nil
})
}
if err := g.Wait(); err != nil {
return err
}
time.Sleep(*interval)
}
return nil
}
func (m *crawlerMain) createLoader(
db *gorm.DB,
specifiedIDs string,
followed bool,
all bool,
newOnly bool,
) crawler.TeacherIDLoader {
var loader crawler.TeacherIDLoader
if specifiedIDs != "" {
loader = crawler.NewSpecificTeacherIDLoader(specifiedIDs)
} else if followed {
loader = crawler.NewFollowedTeacherIDLoader(db)
} else if all {
loader = crawler.NewScrapingTeacherIDLoader(crawler.ByRating, nil)
} else if newOnly {
loader = crawler.NewScrapingTeacherIDLoader(crawler.ByNew, nil)
} else {
loader = crawler.NewScrapingTeacherIDLoader(crawler.ByRating, nil)
}
return loader
}
| {
"content_hash": "b9bb24e8b6e094a57badd48b5825f861",
"timestamp": "",
"source": "github",
"line_count": 150,
"max_line_length": 109,
"avg_line_length": 27.273333333333333,
"alnum_prop": 0.6810070887313615,
"repo_name": "oinume/dmm-eikaiwa-fft",
"id": "1fd69ce84cc149f05dd79aead47972d398b37974",
"size": "4091",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "server/cmd/crawler/main.go",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "95"
},
{
"name": "HTML",
"bytes": "1214"
},
{
"name": "JavaScript",
"bytes": "7475"
},
{
"name": "Python",
"bytes": "2932"
},
{
"name": "Shell",
"bytes": "206"
}
],
"symlink_target": ""
} |
package options
import (
"fmt"
"io"
"os"
"strings"
"time"
"github.com/spf13/pflag"
"gopkg.in/natefinch/lumberjack.v2"
"k8s.io/klog"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
auditv1 "k8s.io/apiserver/pkg/apis/audit/v1"
auditv1alpha1 "k8s.io/apiserver/pkg/apis/audit/v1alpha1"
auditv1beta1 "k8s.io/apiserver/pkg/apis/audit/v1beta1"
"k8s.io/apiserver/pkg/audit"
"k8s.io/apiserver/pkg/audit/policy"
"k8s.io/apiserver/pkg/features"
"k8s.io/apiserver/pkg/server"
utilfeature "k8s.io/apiserver/pkg/util/feature"
pluginbuffered "k8s.io/apiserver/plugin/pkg/audit/buffered"
plugindynamic "k8s.io/apiserver/plugin/pkg/audit/dynamic"
pluginenforced "k8s.io/apiserver/plugin/pkg/audit/dynamic/enforced"
pluginlog "k8s.io/apiserver/plugin/pkg/audit/log"
plugintruncate "k8s.io/apiserver/plugin/pkg/audit/truncate"
pluginwebhook "k8s.io/apiserver/plugin/pkg/audit/webhook"
"k8s.io/client-go/informers"
"k8s.io/client-go/kubernetes"
v1core "k8s.io/client-go/kubernetes/typed/core/v1"
restclient "k8s.io/client-go/rest"
)
const (
// Default configuration values for ModeBatch.
defaultBatchBufferSize = 10000 // Buffer up to 10000 events before starting discarding.
// These batch parameters are only used by the webhook backend.
defaultBatchMaxSize = 400 // Only send up to 400 events at a time.
defaultBatchMaxWait = 30 * time.Second // Send events at least twice a minute.
defaultBatchThrottleQPS = 10 // Limit the send rate by 10 QPS.
defaultBatchThrottleBurst = 15 // Allow up to 15 QPS burst.
)
func appendBackend(existing, newBackend audit.Backend) audit.Backend {
if existing == nil {
return newBackend
}
if newBackend == nil {
return existing
}
return audit.Union(existing, newBackend)
}
type AuditOptions struct {
// Policy configuration file for filtering audit events that are captured.
// If unspecified, a default is provided.
PolicyFile string
// Plugin options
LogOptions AuditLogOptions
WebhookOptions AuditWebhookOptions
DynamicOptions AuditDynamicOptions
}
const (
// ModeBatch indicates that the audit backend should buffer audit events
// internally, sending batch updates either once a certain number of
// events have been received or a certain amount of time has passed.
ModeBatch = "batch"
// ModeBlocking causes the audit backend to block on every attempt to process
// a set of events. This causes requests to the API server to wait for the
// flush before sending a response.
ModeBlocking = "blocking"
)
// AllowedModes is the modes known for audit backends.
var AllowedModes = []string{
ModeBatch,
ModeBlocking,
}
type AuditBatchOptions struct {
// Should the backend asynchronous batch events to the webhook backend or
// should the backend block responses?
//
// Defaults to asynchronous batch events.
Mode string
// Configuration for batching backend. Only used in batch mode.
BatchConfig pluginbuffered.BatchConfig
}
type AuditTruncateOptions struct {
// Whether truncating is enabled or not.
Enabled bool
// Truncating configuration.
TruncateConfig plugintruncate.Config
}
// AuditLogOptions determines the output of the structured audit log by default.
type AuditLogOptions struct {
Path string
MaxAge int
MaxBackups int
MaxSize int
Format string
BatchOptions AuditBatchOptions
TruncateOptions AuditTruncateOptions
// API group version used for serializing audit events.
GroupVersionString string
}
// AuditWebhookOptions control the webhook configuration for audit events.
type AuditWebhookOptions struct {
ConfigFile string
InitialBackoff time.Duration
BatchOptions AuditBatchOptions
TruncateOptions AuditTruncateOptions
// API group version used for serializing audit events.
GroupVersionString string
}
type AuditDynamicOptions struct {
// Enabled tells whether the dynamic audit capability is enabled.
Enabled bool
}
func NewAuditOptions() *AuditOptions {
return &AuditOptions{
WebhookOptions: AuditWebhookOptions{
InitialBackoff: pluginwebhook.DefaultInitialBackoff,
BatchOptions: AuditBatchOptions{
Mode: ModeBatch,
BatchConfig: defaultWebhookBatchConfig(),
},
TruncateOptions: NewAuditTruncateOptions(),
GroupVersionString: "audit.k8s.io/v1",
},
LogOptions: AuditLogOptions{
Format: pluginlog.FormatJson,
BatchOptions: AuditBatchOptions{
Mode: ModeBlocking,
BatchConfig: defaultLogBatchConfig(),
},
TruncateOptions: NewAuditTruncateOptions(),
GroupVersionString: "audit.k8s.io/v1",
},
DynamicOptions: AuditDynamicOptions{
Enabled: false,
},
}
}
func NewAuditTruncateOptions() AuditTruncateOptions {
return AuditTruncateOptions{
Enabled: false,
TruncateConfig: plugintruncate.Config{
MaxBatchSize: 10 * 1024 * 1024, // 10MB
MaxEventSize: 100 * 1024, // 100KB
},
}
}
// Validate checks invalid config combination
func (o *AuditOptions) Validate() []error {
if o == nil {
return nil
}
var allErrors []error
allErrors = append(allErrors, o.LogOptions.Validate()...)
allErrors = append(allErrors, o.WebhookOptions.Validate()...)
allErrors = append(allErrors, o.DynamicOptions.Validate()...)
return allErrors
}
func validateBackendMode(pluginName string, mode string) error {
for _, m := range AllowedModes {
if m == mode {
return nil
}
}
return fmt.Errorf("invalid audit %s mode %s, allowed modes are %q", pluginName, mode, strings.Join(AllowedModes, ","))
}
func validateBackendBatchOptions(pluginName string, options AuditBatchOptions) error {
if err := validateBackendMode(pluginName, options.Mode); err != nil {
return err
}
if options.Mode != ModeBatch {
// Don't validate the unused options.
return nil
}
config := options.BatchConfig
if config.BufferSize <= 0 {
return fmt.Errorf("invalid audit batch %s buffer size %v, must be a positive number", pluginName, config.BufferSize)
}
if config.MaxBatchSize <= 0 {
return fmt.Errorf("invalid audit batch %s max batch size %v, must be a positive number", pluginName, config.MaxBatchSize)
}
if config.ThrottleEnable {
if config.ThrottleQPS <= 0 {
return fmt.Errorf("invalid audit batch %s throttle QPS %v, must be a positive number", pluginName, config.ThrottleQPS)
}
if config.ThrottleBurst <= 0 {
return fmt.Errorf("invalid audit batch %s throttle burst %v, must be a positive number", pluginName, config.ThrottleBurst)
}
}
return nil
}
var knownGroupVersions = []schema.GroupVersion{
auditv1alpha1.SchemeGroupVersion,
auditv1beta1.SchemeGroupVersion,
auditv1.SchemeGroupVersion,
}
func validateGroupVersionString(groupVersion string) error {
gv, err := schema.ParseGroupVersion(groupVersion)
if err != nil {
return err
}
if !knownGroupVersion(gv) {
return fmt.Errorf("invalid group version, allowed versions are %q", knownGroupVersions)
}
return nil
}
func knownGroupVersion(gv schema.GroupVersion) bool {
for _, knownGv := range knownGroupVersions {
if gv == knownGv {
return true
}
}
return false
}
func (o *AuditOptions) AddFlags(fs *pflag.FlagSet) {
if o == nil {
return
}
fs.StringVar(&o.PolicyFile, "audit-policy-file", o.PolicyFile,
"Path to the file that defines the audit policy configuration.")
o.LogOptions.AddFlags(fs)
o.LogOptions.BatchOptions.AddFlags(pluginlog.PluginName, fs)
o.LogOptions.TruncateOptions.AddFlags(pluginlog.PluginName, fs)
o.WebhookOptions.AddFlags(fs)
o.WebhookOptions.BatchOptions.AddFlags(pluginwebhook.PluginName, fs)
o.WebhookOptions.TruncateOptions.AddFlags(pluginwebhook.PluginName, fs)
o.DynamicOptions.AddFlags(fs)
}
func (o *AuditOptions) ApplyTo(
c *server.Config,
kubeClientConfig *restclient.Config,
informers informers.SharedInformerFactory,
processInfo *ProcessInfo,
webhookOptions *WebhookOptions,
) error {
if o == nil {
return nil
}
if c == nil {
return fmt.Errorf("server config must be non-nil")
}
// 1. Build policy checker
checker, err := o.newPolicyChecker()
if err != nil {
return err
}
// 2. Build log backend
var logBackend audit.Backend
if w := o.LogOptions.getWriter(); w != nil {
if checker == nil {
klog.V(2).Info("No audit policy file provided, no events will be recorded for log backend")
} else {
logBackend = o.LogOptions.newBackend(w)
}
}
// 3. Build webhook backend
var webhookBackend audit.Backend
if o.WebhookOptions.enabled() {
if checker == nil {
klog.V(2).Info("No audit policy file provided, no events will be recorded for webhook backend")
} else {
webhookBackend, err = o.WebhookOptions.newUntruncatedBackend()
if err != nil {
return err
}
}
}
groupVersion, err := schema.ParseGroupVersion(o.WebhookOptions.GroupVersionString)
if err != nil {
return err
}
// 4. Apply dynamic options.
var dynamicBackend audit.Backend
if o.DynamicOptions.enabled() {
// if dynamic is enabled the webhook and log backends need to be wrapped in an enforced backend with the static policy
if webhookBackend != nil {
webhookBackend = pluginenforced.NewBackend(webhookBackend, checker)
}
if logBackend != nil {
logBackend = pluginenforced.NewBackend(logBackend, checker)
}
// build dynamic backend
dynamicBackend, checker, err = o.DynamicOptions.newBackend(c.ExternalAddress, kubeClientConfig, informers, processInfo, webhookOptions)
if err != nil {
return err
}
// union dynamic and webhook backends so that truncate options can be applied to both
dynamicBackend = appendBackend(webhookBackend, dynamicBackend)
dynamicBackend = o.WebhookOptions.TruncateOptions.wrapBackend(dynamicBackend, groupVersion)
} else if webhookBackend != nil {
// if only webhook is enabled wrap it in the truncate options
dynamicBackend = o.WebhookOptions.TruncateOptions.wrapBackend(webhookBackend, groupVersion)
}
// 5. Set the policy checker
c.AuditPolicyChecker = checker
// 6. Join the log backend with the webhooks
c.AuditBackend = appendBackend(logBackend, dynamicBackend)
if c.AuditBackend != nil {
klog.V(2).Infof("Using audit backend: %s", c.AuditBackend)
}
return nil
}
func (o *AuditOptions) newPolicyChecker() (policy.Checker, error) {
if o.PolicyFile == "" {
return nil, nil
}
p, err := policy.LoadPolicyFromFile(o.PolicyFile)
if err != nil {
return nil, fmt.Errorf("loading audit policy file: %v", err)
}
return policy.NewChecker(p), nil
}
func (o *AuditBatchOptions) AddFlags(pluginName string, fs *pflag.FlagSet) {
fs.StringVar(&o.Mode, fmt.Sprintf("audit-%s-mode", pluginName), o.Mode,
"Strategy for sending audit events. Blocking indicates sending events should block"+
" server responses. Batch causes the backend to buffer and write events"+
" asynchronously. Known modes are "+strings.Join(AllowedModes, ",")+".")
fs.IntVar(&o.BatchConfig.BufferSize, fmt.Sprintf("audit-%s-batch-buffer-size", pluginName),
o.BatchConfig.BufferSize, "The size of the buffer to store events before "+
"batching and writing. Only used in batch mode.")
fs.IntVar(&o.BatchConfig.MaxBatchSize, fmt.Sprintf("audit-%s-batch-max-size", pluginName),
o.BatchConfig.MaxBatchSize, "The maximum size of a batch. Only used in batch mode.")
fs.DurationVar(&o.BatchConfig.MaxBatchWait, fmt.Sprintf("audit-%s-batch-max-wait", pluginName),
o.BatchConfig.MaxBatchWait, "The amount of time to wait before force writing the "+
"batch that hadn't reached the max size. Only used in batch mode.")
fs.BoolVar(&o.BatchConfig.ThrottleEnable, fmt.Sprintf("audit-%s-batch-throttle-enable", pluginName),
o.BatchConfig.ThrottleEnable, "Whether batching throttling is enabled. Only used in batch mode.")
fs.Float32Var(&o.BatchConfig.ThrottleQPS, fmt.Sprintf("audit-%s-batch-throttle-qps", pluginName),
o.BatchConfig.ThrottleQPS, "Maximum average number of batches per second. "+
"Only used in batch mode.")
fs.IntVar(&o.BatchConfig.ThrottleBurst, fmt.Sprintf("audit-%s-batch-throttle-burst", pluginName),
o.BatchConfig.ThrottleBurst, "Maximum number of requests sent at the same "+
"moment if ThrottleQPS was not utilized before. Only used in batch mode.")
}
func (o *AuditBatchOptions) wrapBackend(delegate audit.Backend) audit.Backend {
if o.Mode == ModeBlocking {
return delegate
}
return pluginbuffered.NewBackend(delegate, o.BatchConfig)
}
func (o *AuditTruncateOptions) Validate(pluginName string) error {
config := o.TruncateConfig
if config.MaxEventSize <= 0 {
return fmt.Errorf("invalid audit truncate %s max event size %v, must be a positive number", pluginName, config.MaxEventSize)
}
if config.MaxBatchSize < config.MaxEventSize {
return fmt.Errorf("invalid audit truncate %s max batch size %v, must be greater than "+
"max event size (%v)", pluginName, config.MaxBatchSize, config.MaxEventSize)
}
return nil
}
func (o *AuditTruncateOptions) AddFlags(pluginName string, fs *pflag.FlagSet) {
fs.BoolVar(&o.Enabled, fmt.Sprintf("audit-%s-truncate-enabled", pluginName),
o.Enabled, "Whether event and batch truncating is enabled.")
fs.Int64Var(&o.TruncateConfig.MaxBatchSize, fmt.Sprintf("audit-%s-truncate-max-batch-size", pluginName),
o.TruncateConfig.MaxBatchSize, "Maximum size of the batch sent to the underlying backend. "+
"Actual serialized size can be several hundreds of bytes greater. If a batch exceeds this limit, "+
"it is split into several batches of smaller size.")
fs.Int64Var(&o.TruncateConfig.MaxEventSize, fmt.Sprintf("audit-%s-truncate-max-event-size", pluginName),
o.TruncateConfig.MaxEventSize, "Maximum size of the audit event sent to the underlying backend. "+
"If the size of an event is greater than this number, first request and response are removed, and "+
"if this doesn't reduce the size enough, event is discarded.")
}
func (o *AuditTruncateOptions) wrapBackend(delegate audit.Backend, gv schema.GroupVersion) audit.Backend {
if !o.Enabled {
return delegate
}
return plugintruncate.NewBackend(delegate, o.TruncateConfig, gv)
}
func (o *AuditLogOptions) AddFlags(fs *pflag.FlagSet) {
fs.StringVar(&o.Path, "audit-log-path", o.Path,
"If set, all requests coming to the apiserver will be logged to this file. '-' means standard out.")
fs.IntVar(&o.MaxAge, "audit-log-maxage", o.MaxAge,
"The maximum number of days to retain old audit log files based on the timestamp encoded in their filename.")
fs.IntVar(&o.MaxBackups, "audit-log-maxbackup", o.MaxBackups,
"The maximum number of old audit log files to retain.")
fs.IntVar(&o.MaxSize, "audit-log-maxsize", o.MaxSize,
"The maximum size in megabytes of the audit log file before it gets rotated.")
fs.StringVar(&o.Format, "audit-log-format", o.Format,
"Format of saved audits. \"legacy\" indicates 1-line text format for each event."+
" \"json\" indicates structured json format. Known formats are "+
strings.Join(pluginlog.AllowedFormats, ",")+".")
fs.StringVar(&o.GroupVersionString, "audit-log-version", o.GroupVersionString,
"API group and version used for serializing audit events written to log.")
}
func (o *AuditLogOptions) Validate() []error {
// Check whether the log backend is enabled based on the options.
if !o.enabled() {
return nil
}
var allErrors []error
if err := validateBackendBatchOptions(pluginlog.PluginName, o.BatchOptions); err != nil {
allErrors = append(allErrors, err)
}
if err := o.TruncateOptions.Validate(pluginlog.PluginName); err != nil {
allErrors = append(allErrors, err)
}
if err := validateGroupVersionString(o.GroupVersionString); err != nil {
allErrors = append(allErrors, err)
}
// Check log format
validFormat := false
for _, f := range pluginlog.AllowedFormats {
if f == o.Format {
validFormat = true
break
}
}
if !validFormat {
allErrors = append(allErrors, fmt.Errorf("invalid audit log format %s, allowed formats are %q", o.Format, strings.Join(pluginlog.AllowedFormats, ",")))
}
// Check validities of MaxAge, MaxBackups and MaxSize of log options, if file log backend is enabled.
if o.MaxAge < 0 {
allErrors = append(allErrors, fmt.Errorf("--audit-log-maxage %v can't be a negative number", o.MaxAge))
}
if o.MaxBackups < 0 {
allErrors = append(allErrors, fmt.Errorf("--audit-log-maxbackup %v can't be a negative number", o.MaxBackups))
}
if o.MaxSize < 0 {
allErrors = append(allErrors, fmt.Errorf("--audit-log-maxsize %v can't be a negative number", o.MaxSize))
}
return allErrors
}
// Check whether the log backend is enabled based on the options.
func (o *AuditLogOptions) enabled() bool {
return o != nil && o.Path != ""
}
func (o *AuditLogOptions) getWriter() io.Writer {
if !o.enabled() {
return nil
}
var w io.Writer = os.Stdout
if o.Path != "-" {
w = &lumberjack.Logger{
Filename: o.Path,
MaxAge: o.MaxAge,
MaxBackups: o.MaxBackups,
MaxSize: o.MaxSize,
}
}
return w
}
func (o *AuditLogOptions) newBackend(w io.Writer) audit.Backend {
groupVersion, _ := schema.ParseGroupVersion(o.GroupVersionString)
log := pluginlog.NewBackend(w, o.Format, groupVersion)
log = o.BatchOptions.wrapBackend(log)
log = o.TruncateOptions.wrapBackend(log, groupVersion)
return log
}
func (o *AuditWebhookOptions) AddFlags(fs *pflag.FlagSet) {
fs.StringVar(&o.ConfigFile, "audit-webhook-config-file", o.ConfigFile,
"Path to a kubeconfig formatted file that defines the audit webhook configuration.")
fs.DurationVar(&o.InitialBackoff, "audit-webhook-initial-backoff",
o.InitialBackoff, "The amount of time to wait before retrying the first failed request.")
fs.DurationVar(&o.InitialBackoff, "audit-webhook-batch-initial-backoff",
o.InitialBackoff, "The amount of time to wait before retrying the first failed request.")
fs.MarkDeprecated("audit-webhook-batch-initial-backoff",
"Deprecated, use --audit-webhook-initial-backoff instead.")
fs.StringVar(&o.GroupVersionString, "audit-webhook-version", o.GroupVersionString,
"API group and version used for serializing audit events written to webhook.")
}
func (o *AuditWebhookOptions) Validate() []error {
if !o.enabled() {
return nil
}
var allErrors []error
if err := validateBackendBatchOptions(pluginwebhook.PluginName, o.BatchOptions); err != nil {
allErrors = append(allErrors, err)
}
if err := o.TruncateOptions.Validate(pluginwebhook.PluginName); err != nil {
allErrors = append(allErrors, err)
}
if err := validateGroupVersionString(o.GroupVersionString); err != nil {
allErrors = append(allErrors, err)
}
return allErrors
}
func (o *AuditWebhookOptions) enabled() bool {
return o != nil && o.ConfigFile != ""
}
// newUntruncatedBackend returns a webhook backend without the truncate options applied
// this is done so that the same trucate backend can wrap both the webhook and dynamic backends
func (o *AuditWebhookOptions) newUntruncatedBackend() (audit.Backend, error) {
groupVersion, _ := schema.ParseGroupVersion(o.GroupVersionString)
webhook, err := pluginwebhook.NewBackend(o.ConfigFile, groupVersion, o.InitialBackoff)
if err != nil {
return nil, fmt.Errorf("initializing audit webhook: %v", err)
}
webhook = o.BatchOptions.wrapBackend(webhook)
return webhook, nil
}
func (o *AuditDynamicOptions) AddFlags(fs *pflag.FlagSet) {
fs.BoolVar(&o.Enabled, "audit-dynamic-configuration", o.Enabled,
"Enables dynamic audit configuration. This feature also requires the DynamicAudit feature flag")
}
func (o *AuditDynamicOptions) enabled() bool {
return o.Enabled && utilfeature.DefaultFeatureGate.Enabled(features.DynamicAuditing)
}
func (o *AuditDynamicOptions) Validate() []error {
var allErrors []error
if o.Enabled && !utilfeature.DefaultFeatureGate.Enabled(features.DynamicAuditing) {
allErrors = append(allErrors, fmt.Errorf("--audit-dynamic-configuration set, but DynamicAudit feature gate is not enabled"))
}
return allErrors
}
func (o *AuditDynamicOptions) newBackend(
hostname string,
kubeClientConfig *restclient.Config,
informers informers.SharedInformerFactory,
processInfo *ProcessInfo,
webhookOptions *WebhookOptions,
) (audit.Backend, policy.Checker, error) {
if err := validateProcessInfo(processInfo); err != nil {
return nil, nil, err
}
clientset, err := kubernetes.NewForConfig(kubeClientConfig)
if err != nil {
return nil, nil, err
}
if webhookOptions == nil {
webhookOptions = NewWebhookOptions()
}
checker := policy.NewDynamicChecker()
informer := informers.Auditregistration().V1alpha1().AuditSinks()
eventSink := &v1core.EventSinkImpl{Interface: clientset.CoreV1().Events(processInfo.Namespace)}
dc := &plugindynamic.Config{
Informer: informer,
BufferedConfig: plugindynamic.NewDefaultWebhookBatchConfig(),
EventConfig: plugindynamic.EventConfig{
Sink: eventSink,
Source: corev1.EventSource{
Component: processInfo.Name,
Host: hostname,
},
},
WebhookConfig: plugindynamic.WebhookConfig{
AuthInfoResolverWrapper: webhookOptions.AuthInfoResolverWrapper,
ServiceResolver: webhookOptions.ServiceResolver,
},
}
backend, err := plugindynamic.NewBackend(dc)
if err != nil {
return nil, nil, fmt.Errorf("could not create dynamic audit backend: %v", err)
}
return backend, checker, nil
}
// defaultWebhookBatchConfig returns the default BatchConfig used by the Webhook backend.
func defaultWebhookBatchConfig() pluginbuffered.BatchConfig {
return pluginbuffered.BatchConfig{
BufferSize: defaultBatchBufferSize,
MaxBatchSize: defaultBatchMaxSize,
MaxBatchWait: defaultBatchMaxWait,
ThrottleEnable: true,
ThrottleQPS: defaultBatchThrottleQPS,
ThrottleBurst: defaultBatchThrottleBurst,
AsyncDelegate: true,
}
}
// defaultLogBatchConfig returns the default BatchConfig used by the Log backend.
func defaultLogBatchConfig() pluginbuffered.BatchConfig {
return pluginbuffered.BatchConfig{
BufferSize: defaultBatchBufferSize,
// Batching is not useful for the log-file backend.
// MaxBatchWait ignored.
MaxBatchSize: 1,
ThrottleEnable: false,
// Asynchronous log threads just create lock contention.
AsyncDelegate: false,
}
}
| {
"content_hash": "62b140874df6018011a1bd3323e2f3aa",
"timestamp": "",
"source": "github",
"line_count": 647,
"max_line_length": 153,
"avg_line_length": 34.106646058732615,
"alnum_prop": 0.7435084062174288,
"repo_name": "ateleshev/kubernetes",
"id": "240f0a7cbf749d2cd3d16e93c1c504594c773451",
"size": "22636",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "staging/src/k8s.io/apiserver/pkg/server/options/audit.go",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "C",
"bytes": "2840"
},
{
"name": "Dockerfile",
"bytes": "61611"
},
{
"name": "Go",
"bytes": "46021624"
},
{
"name": "HTML",
"bytes": "1199455"
},
{
"name": "Lua",
"bytes": "17200"
},
{
"name": "Makefile",
"bytes": "73163"
},
{
"name": "Python",
"bytes": "3139140"
},
{
"name": "Ruby",
"bytes": "431"
},
{
"name": "Shell",
"bytes": "1546436"
},
{
"name": "sed",
"bytes": "11635"
}
],
"symlink_target": ""
} |
use exonum_merkledb::{
access::{CopyAccessExt, RawAccess},
proof_map::{Hashed, ToProofPath},
BinaryKey, BinaryValue, Database, MapProof, ObjectHash, ProofMapIndex, TemporaryDB,
};
use proptest::{
prelude::prop::{
array,
collection::{btree_map, vec},
},
prelude::*,
test_runner::{Config, TestCaseError, TestCaseResult},
};
use std::{
collections::{BTreeMap, BTreeSet},
fmt::Debug,
ops::{Range, RangeInclusive},
};
use crate::key::Key;
mod key;
const INDEX_NAME: &str = "index";
type Data = BTreeMap<[u8; 32], u64>;
fn check_map_proof<T, K, V>(
proof: &MapProof<K, V>,
key: Option<K>,
table: &ProofMapIndex<T, K, V>,
) -> TestCaseResult
where
T: RawAccess,
K: BinaryKey + ObjectHash + PartialEq + Debug,
V: BinaryValue + PartialEq + Debug,
{
let entry = key.map(|key| {
let value = table.get(&key).unwrap();
(key, value)
});
let proof = proof
.check_against_hash(table.object_hash())
.map_err(|e| TestCaseError::fail(e.to_string()))?;
prop_assert!(proof.entries().eq(entry.as_ref().map(|(k, v)| (k, v))));
Ok(())
}
fn check_map_multiproof<T, K, V>(
proof: &MapProof<K, V, Hashed>,
keys: BTreeSet<&K>,
table: &ProofMapIndex<T, K, V>,
) -> TestCaseResult
where
T: RawAccess,
K: BinaryKey + ObjectHash + PartialEq + Debug,
V: BinaryValue + PartialEq + Debug,
{
let mut entries: Vec<(&K, V)> = Vec::new();
let mut missing_keys: Vec<&K> = Vec::new();
for key in keys {
if table.contains(key) {
let value = table.get(key).unwrap();
entries.push((key, value));
} else {
missing_keys.push(key);
}
}
// Sort entries and missing keys by the order imposed by the `ProofPath`
// serialization of the keys
entries.sort_unstable_by(|(x, _), (y, _)| {
Hashed::transform_key(*x)
.partial_cmp(&Hashed::transform_key(*y))
.unwrap()
});
missing_keys.sort_unstable_by(|&x, &y| {
Hashed::transform_key(x)
.partial_cmp(&Hashed::transform_key(y))
.unwrap()
});
let unchecked_proof = proof;
let proof = proof
.check()
.map_err(|e| TestCaseError::fail(e.to_string()))?;
prop_assert!(proof
.all_entries()
.eq(unchecked_proof.all_entries_unchecked()));
prop_assert_eq!(proof.index_hash(), table.object_hash());
let mut actual_keys: Vec<&K> = proof.missing_keys().collect();
actual_keys.sort_unstable_by(|&x, &y| {
Hashed::transform_key(x)
.partial_cmp(&Hashed::transform_key(y))
.unwrap()
});
prop_assert_eq!(missing_keys, actual_keys);
let mut actual_entries: Vec<(&K, &V)> = proof.entries().collect();
actual_entries.sort_unstable_by(|&(x, _), &(y, _)| {
Hashed::transform_key(x)
.partial_cmp(&Hashed::transform_key(y))
.unwrap()
});
prop_assert!(entries.iter().map(|(k, v)| (*k, v)).eq(actual_entries));
Ok(())
}
/// Writes raw data to a database.
fn write_data(db: &TemporaryDB, data: Data) {
let fork = db.fork();
{
let mut table: ProofMapIndex<_, Key, _> = fork.get_proof_map(INDEX_NAME);
table.clear();
for (key, value) in data {
table.put(&key.into(), value);
}
}
db.merge(fork.into_patch()).unwrap();
}
/// Creates data for a random-filled `ProofMapIndex<_, [u8; 32], u64>`.
fn index_data(
key_bytes: impl Strategy<Value = u8>,
sizes: Range<usize>,
) -> impl Strategy<Value = Data> {
btree_map(array::uniform32(key_bytes), any::<u64>(), sizes)
}
fn absent_keys(key_bytes: RangeInclusive<u8>) -> impl Strategy<Value = Vec<Key>> {
vec(array::uniform32(key_bytes).prop_map(Key), 20)
}
/// Generates data to test a proof of presence.
fn data_for_proof_of_presence(
key_bytes: impl Strategy<Value = u8>,
sizes: Range<usize>,
) -> impl Strategy<Value = (Key, Data)> {
index_data(key_bytes, sizes)
.prop_flat_map(|data| (0..data.len(), Just(data)))
.prop_map(|(index, data)| (*data.keys().nth(index).unwrap(), data))
.prop_map(|(index, data)| (index.into(), data))
}
fn data_for_multiproof(
key_bytes: impl Strategy<Value = u8>,
sizes: Range<usize>,
) -> impl Strategy<Value = (Vec<Key>, Data)> {
index_data(key_bytes, sizes)
.prop_flat_map(|data| (vec(0..data.len(), data.len() / 5), Just(data)))
.prop_map(|(indexes, data)| {
// Note that keys may coincide; this is intentional.
let keys: Vec<Key> = indexes
.into_iter()
.map(|i| *data.keys().nth(i).unwrap())
.map(Key)
.collect();
(keys, data)
})
}
fn test_proof(db: &TemporaryDB, key: Key) -> TestCaseResult {
let snapshot = db.snapshot();
let table: ProofMapIndex<_, Key, u64> = snapshot.get_proof_map(INDEX_NAME);
let proof = table.get_proof(key);
let expected_key = if table.contains(&key) {
Some(key)
} else {
None
};
check_map_proof(&proof, expected_key, &table)
}
fn test_multiproof(db: &TemporaryDB, keys: &[Key]) -> TestCaseResult {
let snapshot = db.snapshot();
let table: ProofMapIndex<_, Key, u64> = snapshot.get_proof_map(INDEX_NAME);
let proof = table.get_multiproof(keys.to_vec());
let unique_keys: BTreeSet<_> = keys.iter().collect();
check_map_multiproof(&proof, unique_keys, &table)
}
#[derive(Debug, Clone)]
struct TestParams {
key_bytes: RangeInclusive<u8>,
index_sizes: Range<usize>,
test_cases_divider: u32,
}
impl TestParams {
fn key_bytes(&self) -> RangeInclusive<u8> {
self.key_bytes.clone()
}
fn index_sizes(&self) -> Range<usize> {
self.index_sizes.clone()
}
fn config(&self) -> Config {
Config::with_cases(Config::default().cases / self.test_cases_divider)
}
fn proof_of_presence(&self) {
let db = TemporaryDB::new();
let strategy = data_for_proof_of_presence(self.key_bytes(), self.index_sizes());
proptest!(self.config(), |((key, data) in strategy)| {
write_data(&db, data);
test_proof(&db, key)?;
});
}
fn proof_of_absence(&self) {
let db = TemporaryDB::new();
let key_strategy = array::uniform32(self.key_bytes()).prop_map(Key);
let data_strategy = index_data(self.key_bytes(), self.index_sizes());
proptest!(self.config(), |(key in key_strategy, data in data_strategy)| {
write_data(&db, data);
test_proof(&db, key)?;
});
}
fn multiproof_of_existing_elements(&self) {
let db = TemporaryDB::new();
let strategy = data_for_multiproof(self.key_bytes(), self.index_sizes());
proptest!(self.config(), |((keys, data) in strategy)| {
write_data(&db, data);
test_multiproof(&db, &keys)?;
});
}
fn multiproof_of_absent_elements(&self) {
let db = TemporaryDB::new();
let keys_strategy = absent_keys(self.key_bytes());
let data_strategy = index_data(self.key_bytes(), self.index_sizes());
proptest!(self.config(), |(keys in keys_strategy, data in data_strategy)| {
write_data(&db, data);
test_multiproof(&db, &keys)?;
});
}
fn mixed_multiproof(&self) {
let db = TemporaryDB::new();
let strategy = data_for_multiproof(self.key_bytes(), self.index_sizes());
let absent_keys_strategy = absent_keys(self.key_bytes());
proptest!(
self.config(),
|((mut keys, data) in strategy, absent_keys in absent_keys_strategy)| {
write_data(&db, data);
keys.extend_from_slice(&absent_keys);
test_multiproof(&db, &keys)?;
}
);
}
}
mod small_index {
use super::*;
const PARAMS: TestParams = TestParams {
key_bytes: 0..=255,
index_sizes: 10..100,
test_cases_divider: 1,
};
#[test]
fn proof_of_presence() {
PARAMS.proof_of_presence();
}
#[test]
fn proof_of_absence() {
PARAMS.proof_of_absence();
}
#[test]
fn multiproof_of_existing_elements() {
PARAMS.multiproof_of_existing_elements();
}
#[test]
fn multiproof_of_absent_elements() {
PARAMS.multiproof_of_absent_elements();
}
#[test]
fn mixed_multiproof() {
PARAMS.mixed_multiproof();
}
}
mod small_index_skewed {
use super::*;
const PARAMS: TestParams = TestParams {
key_bytes: 0..=2,
index_sizes: 10..100,
test_cases_divider: 1,
};
#[test]
fn proof_of_presence() {
PARAMS.proof_of_presence();
}
#[test]
fn proof_of_absence() {
PARAMS.proof_of_absence();
}
#[test]
fn multiproof_of_existing_elements() {
PARAMS.multiproof_of_existing_elements();
}
#[test]
fn multiproof_of_absent_elements() {
PARAMS.multiproof_of_absent_elements();
}
#[test]
fn mixed_multiproof() {
PARAMS.mixed_multiproof();
}
}
mod large_index {
use super::*;
const PARAMS: TestParams = TestParams {
key_bytes: 0..=255,
index_sizes: 5_000..10_000,
test_cases_divider: 32,
};
#[test]
fn proof_of_presence() {
PARAMS.proof_of_presence();
}
#[test]
fn proof_of_absence() {
PARAMS.proof_of_absence();
}
#[test]
fn multiproof_of_existing_elements() {
PARAMS.multiproof_of_existing_elements();
}
#[test]
fn multiproof_of_absent_elements() {
PARAMS.multiproof_of_absent_elements();
}
#[test]
fn mixed_multiproof() {
PARAMS.mixed_multiproof();
}
}
mod large_index_skewed {
use super::*;
const PARAMS: TestParams = TestParams {
key_bytes: 0..=2,
index_sizes: 5_000..10_000,
test_cases_divider: 32,
};
#[test]
fn proof_of_presence() {
PARAMS.proof_of_presence();
}
#[test]
fn proof_of_absence() {
PARAMS.proof_of_absence();
}
#[test]
fn multiproof_of_existing_elements() {
PARAMS.multiproof_of_existing_elements();
}
#[test]
fn multiproof_of_absent_elements() {
PARAMS.multiproof_of_absent_elements();
}
#[test]
fn mixed_multiproof() {
PARAMS.mixed_multiproof();
}
}
| {
"content_hash": "47458caa06e54f4fa756ee339501e4fe",
"timestamp": "",
"source": "github",
"line_count": 396,
"max_line_length": 88,
"avg_line_length": 26.636363636363637,
"alnum_prop": 0.5628555176336746,
"repo_name": "alekseysidorov/exonum",
"id": "2c591dc3f0e5dd486d8a43dbe570ac18d7630c46",
"size": "11635",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "components/merkledb/tests/proof_map_index.rs",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "JavaScript",
"bytes": "7043"
},
{
"name": "Python",
"bytes": "68358"
},
{
"name": "Rust",
"bytes": "3528710"
},
{
"name": "Shell",
"bytes": "820"
}
],
"symlink_target": ""
} |
package net.bytebuddy.test.utility;
import org.junit.rules.MethodRule;
import org.junit.runners.model.FrameworkMethod;
import org.junit.runners.model.Statement;
import org.newsclub.net.unix.AFUNIXSocket;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.logging.Logger;
public class UnixSocketRule implements MethodRule {
private final boolean enabled;
public UnixSocketRule() {
boolean enabled;
try {
Class.forName(AFUNIXSocket.class.getName(), true, UnixSocketRule.class.getClassLoader());
enabled = true;
} catch (Throwable ignored) {
enabled = false;
}
this.enabled = enabled;
}
@Override
public Statement apply(Statement base, FrameworkMethod method, Object target) {
return enabled || method.getAnnotation(Enforce.class) == null
? base
: new NoOpStatement();
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Enforce {
}
private static class NoOpStatement extends Statement {
@Override
public void evaluate() {
Logger.getLogger("net.bytebuddy").warning("Ignoring use Unix sockets on this VM");
}
}
}
| {
"content_hash": "f2e27fcde227274ed271d74fa876d82d",
"timestamp": "",
"source": "github",
"line_count": 50,
"max_line_length": 101,
"avg_line_length": 27.58,
"alnum_prop": 0.6765772298767223,
"repo_name": "CodingFabian/byte-buddy",
"id": "6f44d5c86e239161683a9df9aec7a89799ce507c",
"size": "1379",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "byte-buddy-agent/src/test/java/net/bytebuddy/test/utility/UnixSocketRule.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Java",
"bytes": "9640446"
}
],
"symlink_target": ""
} |
"use strict";
module.exports = require("./is-implemented")() ? globalThis : require("./implementation");
| {
"content_hash": "7da7fd05643c6a85ab66dd4d15eed884",
"timestamp": "",
"source": "github",
"line_count": 3,
"max_line_length": 90,
"avg_line_length": 35.333333333333336,
"alnum_prop": 0.6886792452830188,
"repo_name": "arvenil/resume",
"id": "8a99c25e50590dbdb29be27abae46818d8da01c3",
"size": "106",
"binary": false,
"copies": "12",
"ref": "refs/heads/master",
"path": "node_modules/ext/global-this/index.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "HTML",
"bytes": "1704"
}
],
"symlink_target": ""
} |
package technology.tikal.gae.system.security.dao;
import org.springframework.security.core.userdetails.UserDetailsService;
import technology.tikal.gae.dao.template.EntityDAO;
import technology.tikal.gae.dao.template.FiltroBusqueda;
import technology.tikal.gae.pagination.model.PaginationData;
import technology.tikal.gae.system.security.model.UserSession;
public interface UserSessionDao extends UserDetailsService, EntityDAO<UserSession, String, FiltroBusqueda, PaginationData<String>> {
}
| {
"content_hash": "e18862473871e3ec177ae086f80a75dd",
"timestamp": "",
"source": "github",
"line_count": 12,
"max_line_length": 132,
"avg_line_length": 42.25,
"alnum_prop": 0.8303747534516766,
"repo_name": "Nekorp/Tikal-Technology",
"id": "efc6e914f64ea8a4e49fb145b08d9e3af01f5adb",
"size": "507",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "gae-commons/src/main/java/technology/tikal/gae/system/security/dao/UserSessionDao.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "4685"
},
{
"name": "HTML",
"bytes": "188524"
},
{
"name": "Java",
"bytes": "763677"
},
{
"name": "JavaScript",
"bytes": "718669"
}
],
"symlink_target": ""
} |
@interface YKCastsCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *castsImage;
@property (weak, nonatomic) IBOutlet UILabel *castsLabel;
@property (weak, nonatomic) IBOutlet UILabel *characterLabel;
@end
| {
"content_hash": "c19baddf7c086292e1e947c2d8382494",
"timestamp": "",
"source": "github",
"line_count": 6,
"max_line_length": 61,
"avg_line_length": 38.166666666666664,
"alnum_prop": 0.8034934497816594,
"repo_name": "wyk111wyk/AmosMovie",
"id": "853a385184ab95fe93baab6352a6a43890f27ca7",
"size": "327",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "L04/L04/YKCastsCell.h",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "C",
"bytes": "13196"
},
{
"name": "C++",
"bytes": "76209"
},
{
"name": "Objective-C",
"bytes": "1353254"
},
{
"name": "Objective-C++",
"bytes": "102451"
},
{
"name": "Ruby",
"bytes": "207"
},
{
"name": "Shell",
"bytes": "4691"
}
],
"symlink_target": ""
} |
const mysql = require('mysql');
const config = require('./config')();
exports.query = function (sql) {
let connection;
function connect() {
connection = mysql.createConnection(config);
connection.connect(errorHandle);
connection.on('error', errorHandle)
}
function errorHandle(err) {
if (err) {
if (err.code === 'PROTOCOL_CONNECTION_LOST') {
connect();
} else {
console.log();
}
}
}
connect();
return new Promise(function (resolve, reject) {
connection.query(sql, function (err, result) {
if (err) {
reject(err)
} else {
resolve(result);
}
});
connection.end();
})
};
| {
"content_hash": "370acacb71d50f769fdaf840af2dfbb8",
"timestamp": "",
"source": "github",
"line_count": 35,
"max_line_length": 58,
"avg_line_length": 23,
"alnum_prop": 0.48695652173913045,
"repo_name": "newsolice/chefafa-library",
"id": "def89cfd58aa944bc2a8f397ed52fdee655ae049",
"size": "805",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "model/sql.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "2079"
},
{
"name": "HTML",
"bytes": "7573"
},
{
"name": "JavaScript",
"bytes": "7025"
}
],
"symlink_target": ""
} |
python convnet.py --load-file "$1" \
--multiview-test 0 --test-only 1 --logreg-name logprob --test-range 6
python convnet.py --load-file "$1" \
--multiview-test 1 --test-only 1 --logreg-name logprob --test-range 6
| {
"content_hash": "b7bda8a00ce72a14962072397e4eabae",
"timestamp": "",
"source": "github",
"line_count": 4,
"max_line_length": 73,
"avg_line_length": 55.5,
"alnum_prop": 0.6666666666666666,
"repo_name": "hunse/cuda-convnet2",
"id": "3ac66bdcd77eef85edac9e24e1b3ab79c6ab7b60",
"size": "222",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "test-cifar.sh",
"mode": "33261",
"license": "apache-2.0",
"language": [
{
"name": "C++",
"bytes": "59121"
},
{
"name": "Cuda",
"bytes": "1254306"
},
{
"name": "Jupyter Notebook",
"bytes": "10326"
},
{
"name": "Makefile",
"bytes": "13765"
},
{
"name": "Python",
"bytes": "274102"
},
{
"name": "Shell",
"bytes": "11563"
}
],
"symlink_target": ""
} |
<div class="col-md-12">
<section class="panel panel-featured panel-featured-primary">
<header class="panel-heading">
<h2 class="panel-title">Modificar Usuario</h2>
</header>
<ng-form id="Form" name="Form" ng-submit="submit()">
<div class="panel-body">
<div class="form-group">
<div ng-class="{ 'has-error' : Form.Nombre.$invalid && !Form.Nombre.$pristine }" class="col-md-3">
<label class="control-label" style="text-align: left;"><strong>*Nombre:</strong></label>
<input type="text" class="form-control" name="Nombre" id="Nombre" placeholder="Nombre" ng-model="posts.Nombre" required>
<p ng-show="Form.Nombre.$invalid && !Form.Nombre.$pristine" class="help-block">Ingrese Nombre.</p>
</div>
</div>
<div class="form-group">
<div ng-class="{ 'has-error' : Form.Username.$invalid && !Form.Username.$pristine }" class="col-md-3">
<label class="control-label" style="text-align: left;"><strong>*Nombre de usuario:</strong></label>
<input type="text" class="form-control" name="Username" id="Username" placeholder="Nombre de usuario" ng-model="posts.Username" required>
<p ng-show="Form.Username.$invalid && !Form.Username.$pristine" class="help-block">Ingrese Nombre de usuario.</p>
</div>
<div ng-class="{ 'has-error' : Form.Contrasena.$invalid && !Form.Contrasena.$pristine }" class="col-md-3">
<label class="control-label" style="text-align: left;"><strong>*Contraseña:</strong></label>
<input type="text" class="form-control" name="Contrasena" id="Contrasena" placeholder="Contraseña" ng-model="posts.Contrasena" required>
<p ng-show="Form.Contrasena.$invalid && !Form.Contrasena.$pristine" class="help-block">Ingrese Contraseña.</p>
</div>
<div ng-class="{ 'has-error' : Form.Correo.$invalid && !Form.Correo.$pristine }" class="col-md-3">
<label class="control-label" style="text-align: left;"><strong>*Correo Electrónico:</strong></label>
<input type="email" class="form-control" name="Correo" id="Correo" placeholder="Correo Electrónico" ng-model="posts.Correo" required>
<p ng-show="Form.Correo.$invalid && !Form.Correo.$pristine" class="help-block">Ingrese Correo Electrónico.</p>
</div>
<div ng-class="{ 'has-error' : Form.Privilegio.$invalid && !Form.Privilegio.$pristine }" class="col-md-3">
<label class="control-label" style="text-align: left;"><strong>*Privilegios:</strong></label>
<select id="Privilegio" name="Privilegio" class="form-control mb-md" ng-model="posts.Privilegio" required>
<option value="" disabled selected>Privilegio</option>
<option value='1'>Administrador</option>
<option value='2'>Editor</option>
<option value='3'>Lector</option>
</select>
<p ng-show="Form.Privilegio.$invalid && !Form.Privilegio.$pristine" class="help-block">Seleccione Privilegios.</p>
</div>
</div>
<div class="form-group">
<div class="col-md-4">
<button id="btn_modificar_usuario" type="submit" ng-click="submit()" ng-disabled="Form.$invalid" class="mb-xs mt-xs mr-xs btn btn-primary btn-block">Modificar Usuarios</button>
</div>
</div>
</div>
</ng-form>
<p>Los Campos que Poseen '*' Son Requeridos.</p>
</section>
</div>
| {
"content_hash": "531068e0b956ff909c4bcabb7229f776",
"timestamp": "",
"source": "github",
"line_count": 53,
"max_line_length": 203,
"avg_line_length": 80.16981132075472,
"alnum_prop": 0.5071781595669569,
"repo_name": "iglesiasdan/SAO",
"id": "c4f93b49b94a2b1999dbe1da5a8680a271f051c2",
"size": "4255",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "Views/Pages/modificar_usuario.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "1360953"
},
{
"name": "HTML",
"bytes": "3409792"
},
{
"name": "JavaScript",
"bytes": "3170166"
},
{
"name": "PHP",
"bytes": "3782618"
}
],
"symlink_target": ""
} |
<?php declare(strict_types=1);
namespace Shale\Test\Support\Mock\Model;
use Shale\Annotation;
use Shale\Traits\Accessors;
/**
* @Annotation\Model(name="banner")
*/
class BannerModel
{
use Accessors;
/**
* @Annotation\Property(name="imageUrl", type="string")
*/
protected $imageUrl;
/**
* @Annotation\Property(name="title", type="string", optional=true)
*/
protected $title;
}
| {
"content_hash": "48930f34cac08787bbdaa4174e82b836",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 71,
"avg_line_length": 17.708333333333332,
"alnum_prop": 0.6352941176470588,
"repo_name": "studionone/shale",
"id": "9d89f392e47890c4c41c5a726d519ae395379f7c",
"size": "425",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "tests/support/Mock/Model/BannerModel.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "PHP",
"bytes": "112990"
}
],
"symlink_target": ""
} |
// Github: https://github.com/shdwjk/Roll20API/blob/master/UniversalVTTImporter/UniversalVTTImporter.js
// By: The Aaron, Arcane Scriptomancer
// Contact: https://app.roll20.net/users/104025/the-aaron
const UniversalVTTImporter = (() => { // eslint-disable-line no-unused-vars
const scriptName = 'UniversalVTTImporter';
const version = '0.1.4';
const lastUpdate = 1604861007;
const schemaVersion = 0.1;
const clearURL = 'https://s3.amazonaws.com/files.d20.io/images/4277467/iQYjFOsYC5JsuOPUCI9RGA/thumb.png?1401938659';
const regex = {
colors: /(transparent|(?:#?[0-9a-fA-F]{3}(?:[0-9a-fA-F]{3})?))/
};
const assureHelpHandout = (create = false) => {
if(state.TheAaron && state.TheAaron.config && (false === state.TheAaron.config.makeHelpHandouts) ){
return;
}
const helpIcon = "https://s3.amazonaws.com/files.d20.io/images/127392204/tAiDP73rpSKQobEYm5QZUw/thumb.png?15878425385";
// find handout
let props = {type:'handout', name:`Help: ${scriptName}`};
let hh = findObjs(props)[0];
if(!hh) {
hh = createObj('handout',Object.assign(props, {avatar: helpIcon}));
create = true;
}
if(create || version !== state[scriptName].lastHelpVersion){
hh.set({
notes: helpParts.helpDoc({who:'handout',playerid:'handout'})
});
state[scriptName].lastHelpVersion = version;
log(' > Updating Help Handout to v'+version+' <');
}
};
const checkInstall = () => {
log(`-=> ${scriptName} v${version} <=- [${new Date(lastUpdate*1000)}]`);
if( ! state.hasOwnProperty(scriptName) || state[scriptName].version !== schemaVersion) {
log(` > Updating Schema to v${schemaVersion} <`);
switch(state[scriptName] && state[scriptName].version) {
case 0.1:
/* break; // intentional dropthrough */ /* falls through */
case 'UpdateSchemaVersion':
state[scriptName].version = schemaVersion;
break;
default:
state[scriptName] = {
version: schemaVersion,
config: {
wallColor: '#e4a21e',
wallWidth: 15,
doorColor: '#ff0000',
doorWidth: 5,
lightColor: '#9900ff',
createOpenPortals: true
}
};
break;
}
}
assureHelpHandout();
};
const ch = (c) => {
const entities = {
'<' : 'lt',
'>' : 'gt',
"'" : '#39',
'@' : '#64',
'{' : '#123',
'|' : '#124',
'}' : '#125',
'[' : '#91',
']' : '#93',
'"' : 'quot',
'*' : 'ast',
'/' : 'sol',
' ' : 'nbsp'
};
if( entities.hasOwnProperty(c) ){
return `&${entities[c]};`;
}
return '';
};
const defaults = {
css: {
button: {
'border': '1px solid #cccccc',
'border-radius': '1em',
'background-color': '#006dcc',
'margin': '0 .1em',
'font-weight': 'bold',
'padding': '.1em 1em',
'color': 'white'
},
configRow: {
'border': '1px solid #ccc;',
'border-radius': '.2em;',
'background-color': 'white;',
'margin': '0 1em;',
'padding': '.1em .3em;'
}
}
};
const css = (rules) => `style="${Object.keys(rules).map(k=>`${k}:${rules[k]};`).join('')}"`;
const _h = {
outer: (...o) => `<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">${o.join(' ')}</div>`,
title: (t,v) => `<div style="font-weight: bold; border-bottom: 1px solid black;font-size: 130%;">${t} v${v}</div>`,
subhead: (...o) => `<b>${o.join(' ')}</b>`,
minorhead: (...o) => `<u>${o.join(' ')}</u>`,
optional: (...o) => `${ch('[')}${o.join(` ${ch('|')} `)}${ch(']')}`,
required: (...o) => `${ch('<')}${o.join(` ${ch('|')} `)}${ch('>')}`,
header: (...o) => `<div style="padding-left:10px;margin-bottom:3px;">${o.join(' ')}</div>`,
section: (s,...o) => `${_h.subhead(s)}${_h.inset(...o)}`,
paragraph: (...o) => `<p>${o.join(' ')}</p>`,
group: (...o) => `${o.join(' ')}`,
items: (o) => `<li>${o.join('</li><li>')}</li>`,
ol: (...o) => `<ol>${_h.items(o)}</ol>`,
ul: (...o) => `<ul>${_h.items(o)}</ul>`,
clearBoth: () => `<div style="clear:both;"></div>`,
grid: (...o) => `<div style="padding: 12px 0;">${o.join('')}${_h.clearBoth()}</div>`,
cell: (o) => `<div style="width: 130px; padding: 0 3px; float: left;">${o}</div>`,
inset: (...o) => `<div style="padding-left: 10px;padding-right:20px">${o.join(' ')}</div>`,
join: (...o) => o.join(' '),
configRow: (...o) => `<div ${css(defaults.css.configRow)}>${o.join(' ')}</div>`,
makeButton: (c, l, bc, color) => `<a ${css({...defaults.css.button,...{color,'background-color':bc}})} href="${c}">${l}</a>`,
floatRight: (...o) => `<div style="float:right;">${o.join(' ')}</div>`,
pre: (...o) =>`<div style="border:1px solid #e1e1e8;border-radius:4px;padding:8.5px;margin-bottom:9px;font-size:12px;white-space:normal;word-break:normal;word-wrap:normal;background-color:#f7f7f9;font-family:monospace;overflow:auto;">${o.join(' ')}</div>`,
preformatted: (...o) =>_h.pre(o.join('<br>').replace(/\s/g,ch(' '))),
code: (...o) => `<code>${o.join(' ')}</code>`,
attr: {
bare: (o)=>`${ch('@')}${ch('{')}${o}${ch('}')}`,
selected: (o)=>`${ch('@')}${ch('{')}selected${ch('|')}${o}${ch('}')}`,
target: (o)=>`${ch('@')}${ch('{')}target${ch('|')}${o}${ch('}')}`,
char: (o,c)=>`${ch('@')}${ch('{')}${c||'CHARACTER NAME'}${ch('|')}${o}${ch('}')}`
},
bold: (...o) => `<b>${o.join(' ')}</b>`,
italic: (...o) => `<i>${o.join(' ')}</i>`,
font: {
command: (...o)=>`<b><span style="font-family:serif;">${o.join(' ')}</span></b>`
}
};
const checkerURL = 'https://s3.amazonaws.com/files.d20.io/images/16204335/MGS1pylFSsnd5Xb9jAzMqg/med.png?1455260461';
const makeConfigOption = (config,command,text) => {
const onOff = (config ? 'On' : 'Off' );
const color = (config ? '#5bb75b' : '#faa732' );
return _h.configRow(
_h.floatRight( _h.makeButton(command,onOff,color)),
text,
_h.clearBoth()
);
};
const makeConfigOptionNum = (config,command,text) => {
return _h.configRow(
_h.floatRight( _h.makeButton(command,"Set")),
text,
_h.clearBoth()
);
};
const makeConfigOptionColor = (config,command,text) => {
const color = ('transparent' === config ? "background-image: url('"+checkerURL+"');" : "background-color: "+config+";");
const buttonText =`<div style="border:1px solid #1d1d1d;width:40px;height:40px;display:inline-block;${color}"> </div>`;
return _h.configRow(
_h.floatRight( _h.makeButton(command,buttonText)),
text,
_h.clearBoth()
);
};
const getConfigOption_CreateOpenPortals = () => makeConfigOption(
state[scriptName].config.createOpenPortals,
`!uvtt-config --toggle-create-open-portals`,
`${_h.bold('Create Open Portals')} controls if open portals are drawn on the GM Layer. These are usually windows, so not drawing them can remove some clutter on the GM Layer if you never plan to close them.`
);
const getConfigOption_WallColor = () => makeConfigOptionColor(
state[scriptName].config.wallColor,
`!uvtt-config --wall-color|?{What color wall lines? (transparent for none, #RRGGBB for a color)|${state[scriptName].config.wallColor}}`,
`${_h.bold('Wall Color')} is the color that walls are drawn in on the Dynamic Lighting Layer.`
);
const getConfigOption_WallWidth = () => makeConfigOptionNum(
state[scriptName].config.wallWidth,
`!uvtt-config --wall-width|?{How many pixels wide for wall lines?|${state[scriptName].config.wallWidth}}`,
`${_h.bold('Wall Width')} is the width that walls are drawn in on the Dynamic Lighting Layer in pixels. Current value: ${_h.bold(state[scriptName].config.wallWidth)}`
);
const getConfigOption_DoorColor = () => makeConfigOptionColor(
state[scriptName].config.doorColor,
`!uvtt-config --door-color|?{What color door lines? (transparent for none, #RRGGBB for a color)|${state[scriptName].config.doorColor}}`,
`${_h.bold('Door Color')} is the color that doors are drawn in on the Dynamic Lighting Layer.`
);
const getConfigOption_DoorWidth = () => makeConfigOptionNum(
state[scriptName].config.doorWidth,
`!uvtt-config --door-width|?{How many pixels wide for door lines?|${state[scriptName].config.doorWidth}}`,
`${_h.bold('Door Width')} is the width that doors are drawn in on the Dynamic Lighting Layer in pixels. Current value: ${_h.bold(state[scriptName].config.doorWidth)}`
);
const getConfigOption_LightColor = () => makeConfigOptionColor(
state[scriptName].config.lightColor,
`!uvtt-config --light-color|?{What aura color lights? (transparent for none, #RRGGBB for a color)|${state[scriptName].config.lightColor}}`,
`${_h.bold('Light Color')} is the color of the aura around lights on the Dynamic Lighting Layer.`
);
const getAllConfigOptions = () => getConfigOption_CreateOpenPortals() +
getConfigOption_WallColor() +
getConfigOption_WallWidth() +
getConfigOption_DoorColor() +
getConfigOption_DoorWidth() +
getConfigOption_LightColor() ;
const helpParts = {
helpBody: (context) => _h.join(
_h.header(
_h.paragraph(`${scriptName} provides a way to setup Dynamic Lighting lines and Lights stored in Universal VTT format, ala Dungeondraft.`)
),
_h.subhead('Commands'),
_h.inset(
_h.font.command(
`!uvtt`,
_h.optional(
'--help',
`--clear`
)
),
_h.ul(
`${_h.bold('--help')} -- Displays this help`,
`${_h.bold('--clear')} -- Removes all imported content for the selected graphics.`,
)
),
_h.section('Import Process',
_h.paragraph(`The process for importing is pretty straight forward, but there are several steps, as follows:`),
_h.ol(
`From your Universal VTT supporting mapping program, such as Dungeondraft, export your map as a ${_h.code('.png')} or ${_h.code('.jpg')} file. The API cannot create images from the Universal VTT, so you will need to upload it manually.`,
`Next export the Universal VTT version into a ${_h.code('.dd2vtt')} file.`,
`Drop your map image file onto a page and scale it as desired.`,
`Open the properties by double clicking the image.`,
`Load the Universal VTT file in a text editor and copy the contents. You can use the <a href="http://roll20api.net/uvtti.html">Universal VTT Import Sanitizer</a> do this efficiently.`,
`Paste the contents into the GM Notes section of the map graphic and save changes.`,
`With the graphic selected, run ${_h.code('!uvtt')}`
),
_h.paragraph(`Your map should now have dynamic lighting lines, lines for doors and windows, and light sources from the original.`)
),
( playerIsGM(context.playerid)
? _h.group(
_h.subhead('Configuration'),
getAllConfigOptions()
)
: ''
)
),
helpConfig: (context) => _h.outer(
_h.title(scriptName, version),
( playerIsGM(context.playerid)
? _h.group(
_h.subhead('Configuration'),
getAllConfigOptions()
)
: ''
)
),
helpDoc: (context) => _h.join(
_h.title(scriptName, version),
helpParts.helpBody(context)
),
helpChat: (context) => _h.outer(
_h.title(scriptName, version),
helpParts.helpBody(context)
)
};
const showHelp = function(playerid) {
let who=(getObj('player',playerid)||{get:()=>'API'}).get('_displayname');
let context = {
who,
playerid
};
sendChat('', '/w "'+who+'" '+ helpParts.helpChat(context));
};
const showConfigHelp = function(playerid) {
let who=(getObj('player',playerid)||{get:()=>'API'}).get('_displayname');
let context = {
who,
playerid
};
sendChat('', '/w "'+who+'" '+ helpParts.helpConfig(context));
};
const sread = (o,p) => {
let v = o;
while(undefined !== v && p.length) {
v = v[p.shift()];
}
return v;
};
const validateData = (d)=>d.hasOwnProperty('resolution') && d.hasOwnProperty('format') && d.format>=0.2;
const importUVTTonGraphic = (token) => {
let rawNotes = token.get('gmnotes');
let notes = unescape(rawNotes).replace(/(?:<[^>]*>|\\t| )/g,'');
let data;
try {
data = JSON.parse(notes);
} catch( e ){
return {error: "Universal VTT Data is missing or corrupt.", token};
}
if(!validateData(data)){
return false;
}
// cleanup image for efficiency
if(data.hasOwnProperty('image') || notes.length !== rawNotes.length){
delete data.image;
token.set('gmnotes',JSON.stringify(data));
}
// calculate constants
const tokenWidth = parseInt(token.get('width'));
const tokenHeight = parseInt(token.get('height'));
const tokenOriginY = parseInt(token.get('top')) - (tokenHeight/2);
const tokenOriginX = parseInt(token.get('left')) - (tokenWidth/2);
const dataSizeX = sread(data,['resolution','map_size','x'])||1;
const dataSizeY = sread(data,['resolution','map_size','y'])||1;
const dataOriginX = sread(data,['resolution','map_origin','x'])||0;
const dataOriginY = sread(data,['resolution','map_origin','y'])||0;
//const dppg = sread(data,['resolution','pixels_per_grid'])||70;
const scaleFactorX = (tokenWidth/dataSizeX);
const scaleFactorY = (tokenHeight/dataSizeY);
const newX = (x) => tokenOriginX + ((x-dataOriginX)*scaleFactorX);
const newY = (y) => tokenOriginY + ((y-dataOriginY)*scaleFactorY);
const newPt = (pt) => ({x:newX(pt.x),y:newY(pt.y)});
let page = getObj('page',token.get('pageid'));
let stats = {token,lines:0,doors:0,lights:0};
const WallColor = state[scriptName].config.wallColor;
const WallWidth = state[scriptName].config.wallWidth;
const DoorColor = state[scriptName].config.doorColor;
const DoorWidth = state[scriptName].config.doorWidth;
const LightColor = state[scriptName].config.lightColor;
if(data.hasOwnProperty('line_of_sight')){
let lines = sread(data,['line_of_sight'])||[];
lines
.map((l)=>{
let minX = Number.MAX_SAFE_INTEGER;
let minY = Number.MAX_SAFE_INTEGER;
let maxX = 0;
let maxY = 0;
let pts = l
.reduce((m,pt)=>{
let t = m.length ? 'L' : 'M';
let npt = newPt(pt);
minX = Math.min(minX,npt.x);
minY = Math.min(minY,npt.y);
maxX = Math.max(maxX,npt.x);
maxY = Math.max(maxY,npt.y);
m.push([t,npt.x,npt.y]);
return m;
},[])
.map(pt=>[pt[0],pt[1]-minX,pt[2]-minY]);
return {
base: {x:minX, y:minY},
size: {x:maxX-minX, y:maxY-minY},
pts: pts
};
})
.forEach(ld=>{
stats.lines++;
createObj('path',{
fill: "transparent",
stroke: WallColor,
stroke_width: WallWidth,
rotation: 0,
width: ld.size.x,
height: ld.size.y,
top: ld.base.y+(ld.size.y/2),
left: ld.base.x+(ld.size.x/2),
scaleX: 1,
scaleY: 1,
controlledby: token.id,
layer: "walls",
path: JSON.stringify(ld.pts),
pageid: page.id
});
});
}
if(data.hasOwnProperty('portals')) {
let doors = sread(data,['portals'])||[];
doors
.map((d)=>{
let center = newPt(d.position||{x:0,y:0});
let pt0 = newPt(d.bounds[0]);
let pt1 = newPt(d.bounds[1]);
let size = { x: Math.abs(pt0.x-pt1.x), y: Math.abs(pt0.y-pt1.y) };
let line = [
['M',pt0.x-(center.x-(size.x/2)), pt0.y-(center.y-(size.y/2))],
['L',pt1.x-(center.x-(size.x/2)), pt1.y-(center.y-(size.y/2))]
];
return {
center,
size,
pts: line,
closed: d.closed
};
})
.forEach(dd=>{
if( dd.closed || state[scriptName].config.createOpenPortals) {
stats.doors++;
createObj('path',{
fill: "transparent",
stroke: DoorColor,
stroke_width: DoorWidth,
rotation: 0,
width: dd.size.x,
height: dd.size.y,
top: dd.center.y,
left: dd.center.x,
scaleX: 1,
scaleY: 1,
controlledby: token.id,
layer: dd.closed ? "walls" : 'gmlayer',
path: JSON.stringify(dd.pts),
pageid: page.id
});
}
});
}
if(data.hasOwnProperty('lights')) {
let pScale = parseFloat(page.get('scale_number'));
let lights = sread(data,['lights']);
lights
.map(l=>{
let pt = newPt(l.position);
let r = l.range*pScale;
let dr = ((r/2)*(Math.pow(l.intensity,2)));
return {pt,r,dr};
})
.forEach(ld => {
stats.lights++;
createObj('graphic',{
imgsrc: clearURL,
subtype: 'token',
name: '',
aura1_radius: -0.5,
aura1_color: LightColor,
// LDL
light_otherplayers: true,
light_dimradius: ld.dr,
light_radius: ld.r,
// UDL
emits_bright_light: true,
emits_low_light: true,
bright_light_distance: ld.r,
low_light_distance: ld.dr,
width:70,
height:70,
top: ld.pt.y,
left: ld.pt.x,
controlledby: token.id,
layer: "walls",
pageid: page.id
});
});
}
if(true === page.get('dynamic_lighting_enabled')){
page.set('dynamic_lighting_enabled',false);
setTimeout(()=>page.set('dynamic_lighting_enabled',true),100);
}
return stats;
};
const clearImportsFor = (id) => {
findObjs({controlledby: id}).forEach(o=>o.remove());
};
// !uvtt
// !uvtt --help
// !uvtt --clear
const handleInput = (msg) => {
if ( "api" === msg.type && /^!uvtt(\b\s|$)/i.test(msg.content) && playerIsGM(msg.playerid)) {
let who = (getObj('player',msg.playerid)||{get:()=>'API'}).get('_displayname');
let args = msg.content.split(/\s+--/);
if(args.includes('help')){
showHelp(msg.playerid);
return;
}
let graphics = (msg.selected || [])
.map(o=>getObj('graphic',o._id))
.filter(g=>undefined !== g)
;
if(graphics.length) {
if(args.includes('clear')){
graphics.forEach(g=>clearImportsFor(g.id));
} else {
graphics
.map(importUVTTonGraphic)
.forEach(r=>{
if(r.hasOwnProperty('error')){
sendChat('',`/w "${who}" <div>Error: ${r.error}</div>`);
} else {
sendChat('',`/w "${who}" <div>Import complete. Lines: ${r.lines}, Doors: ${r.doors}, Lights: ${r.lights}</div>`);
}
});
}
} else {
showHelp(msg.playerid);
}
} else if ( "api" === msg.type && /^!uvtt-config(\b\s|$)/i.test(msg.content) && playerIsGM(msg.playerid)) {
let args = msg.content.split(/\s+--/).slice(1);
let who = (getObj('player',msg.playerid)||{get:()=>'API'}).get('_displayname');
if(args.includes('--help')) {
showHelp(msg.playerid);
return;
}
if(!args.length) {
showConfigHelp(msg.playerid);
return;
}
args.forEach((a) => {
let opt=a.split(/\|/);
let omsg='';
switch(opt.shift()) {
case 'wall-color':
if(opt[0].match(regex.colors)) {
state[scriptName].config.wallColor=opt[0];
} else {
omsg='<div><b>Error:</b> Not a valid color: '+opt[0]+'</div>';
}
sendChat('','/w "'+who+'" '+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
omsg+
getConfigOption_WallColor()+
'</div>'
);
break;
case 'wall-width':
if(parseInt(opt[0])) {
state[scriptName].config.wallWidth=parseInt(opt[0]);
} else {
omsg='<div><b>Error:</b> Not a valid width: '+opt[0]+'</div>';
}
sendChat('','/w "'+who+'" '+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
omsg+
getConfigOption_WallWidth()+
'</div>'
);
break;
case 'door-color':
if(opt[0].match(regex.colors)) {
state[scriptName].config.doorColor=opt[0];
} else {
omsg='<div><b>Error:</b> Not a valid color: '+opt[0]+'</div>';
}
sendChat('','/w "'+who+'" '+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
omsg+
getConfigOption_DoorColor()+
'</div>'
);
break;
case 'door-width':
if(parseInt(opt[0])) {
state[scriptName].config.doorWidth=parseInt(opt[0]);
} else {
omsg='<div><b>Error:</b> Not a valid width: '+opt[0]+'</div>';
}
sendChat('','/w "'+who+'" '+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
omsg+
getConfigOption_DoorWidth()+
'</div>'
);
break;
case 'light-color':
if(opt[0].match(regex.colors)) {
state[scriptName].config.lightColor=opt[0];
} else {
omsg='<div><b>Error:</b> Not a valid color: '+opt[0]+'</div>';
}
sendChat('','/w "'+who+'" '+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
omsg+
getConfigOption_LightColor()+
'</div>'
);
break;
case 'toggle-create-open-portals':
state[scriptName].config.createOpenPortals=!state[scriptName].config.createOpenPortals;
sendChat('','/w "'+who+'" '+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
getConfigOption_CreateOpenPortals()+
'</div>'
);
break;
default:
sendChat('','/w "'+who+'" '+
'<div><b>Unsupported Option:</div> '+a+'</div>');
}
});
}
};
const registerEventHandlers = () => {
on('chat:message', handleInput);
};
on('ready', () => {
checkInstall();
registerEventHandlers();
});
return {
// Public interface here
};
})();
| {
"content_hash": "9a4ccde0db6c490a624e1ab712412720",
"timestamp": "",
"source": "github",
"line_count": 671,
"max_line_length": 260,
"avg_line_length": 35.47242921013413,
"alnum_prop": 0.5186959079068986,
"repo_name": "Roll20/roll20-api-scripts",
"id": "e627979d62ec42d4892fadfa5d956740c5d0e11b",
"size": "23802",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "UniversalVTTImporter/0.1.4/UniversalVTTImporter.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "HTML",
"bytes": "10585889"
},
{
"name": "JavaScript",
"bytes": "159005374"
},
{
"name": "Rich Text Format",
"bytes": "849817"
},
{
"name": "Shell",
"bytes": "703"
}
],
"symlink_target": ""
} |
/**
* Autogenerated by Thrift Compiler (0.9.2)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.kaaproject.kaa.server.common.thrift.gen.operations;
import org.apache.thrift.scheme.IScheme;
import org.apache.thrift.scheme.SchemeFactory;
import org.apache.thrift.scheme.StandardScheme;
import org.apache.thrift.scheme.TupleScheme;
import org.apache.thrift.protocol.TTupleProtocol;
import org.apache.thrift.protocol.TProtocolException;
import org.apache.thrift.EncodingUtils;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
import org.apache.thrift.server.AbstractNonblockingServer.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
@Generated(value = "Autogenerated by Thrift Compiler (0.9.2)", date = "2015-3-5")
public class EndpointRouteUpdate implements org.apache.thrift.TBase<EndpointRouteUpdate, EndpointRouteUpdate._Fields>, java.io.Serializable, Cloneable, Comparable<EndpointRouteUpdate> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("EndpointRouteUpdate");
private static final org.apache.thrift.protocol.TField TENANT_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("tenantId", org.apache.thrift.protocol.TType.STRING, (short)1);
private static final org.apache.thrift.protocol.TField USER_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("userId", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final org.apache.thrift.protocol.TField ROUTE_ADDRESS_FIELD_DESC = new org.apache.thrift.protocol.TField("routeAddress", org.apache.thrift.protocol.TType.STRUCT, (short)3);
private static final org.apache.thrift.protocol.TField UPDATE_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("updateType", org.apache.thrift.protocol.TType.I32, (short)4);
private static final org.apache.thrift.protocol.TField CF_SCHEMA_VERSION_FIELD_DESC = new org.apache.thrift.protocol.TField("cfSchemaVersion", org.apache.thrift.protocol.TType.I32, (short)5);
private static final org.apache.thrift.protocol.TField UCF_HASH_FIELD_DESC = new org.apache.thrift.protocol.TField("ucfHash", org.apache.thrift.protocol.TType.STRING, (short)6);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new EndpointRouteUpdateStandardSchemeFactory());
schemes.put(TupleScheme.class, new EndpointRouteUpdateTupleSchemeFactory());
}
public String tenantId; // required
public String userId; // required
public RouteAddress routeAddress; // required
/**
*
* @see EventRouteUpdateType
*/
public EventRouteUpdateType updateType; // required
public int cfSchemaVersion; // required
public ByteBuffer ucfHash; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
TENANT_ID((short)1, "tenantId"),
USER_ID((short)2, "userId"),
ROUTE_ADDRESS((short)3, "routeAddress"),
/**
*
* @see EventRouteUpdateType
*/
UPDATE_TYPE((short)4, "updateType"),
CF_SCHEMA_VERSION((short)5, "cfSchemaVersion"),
UCF_HASH((short)6, "ucfHash");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
static {
for (_Fields field : EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // TENANT_ID
return TENANT_ID;
case 2: // USER_ID
return USER_ID;
case 3: // ROUTE_ADDRESS
return ROUTE_ADDRESS;
case 4: // UPDATE_TYPE
return UPDATE_TYPE;
case 5: // CF_SCHEMA_VERSION
return CF_SCHEMA_VERSION;
case 6: // UCF_HASH
return UCF_HASH;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final int __CFSCHEMAVERSION_ISSET_ID = 0;
private byte __isset_bitfield = 0;
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.TENANT_ID, new org.apache.thrift.meta_data.FieldMetaData("tenantId", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "tenant_id")));
tmpMap.put(_Fields.USER_ID, new org.apache.thrift.meta_data.FieldMetaData("userId", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "user_id")));
tmpMap.put(_Fields.ROUTE_ADDRESS, new org.apache.thrift.meta_data.FieldMetaData("routeAddress", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, RouteAddress.class)));
tmpMap.put(_Fields.UPDATE_TYPE, new org.apache.thrift.meta_data.FieldMetaData("updateType", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, EventRouteUpdateType.class)));
tmpMap.put(_Fields.CF_SCHEMA_VERSION, new org.apache.thrift.meta_data.FieldMetaData("cfSchemaVersion", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32 , "int")));
tmpMap.put(_Fields.UCF_HASH, new org.apache.thrift.meta_data.FieldMetaData("ucfHash", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(EndpointRouteUpdate.class, metaDataMap);
}
public EndpointRouteUpdate() {
}
public EndpointRouteUpdate(
String tenantId,
String userId,
RouteAddress routeAddress,
EventRouteUpdateType updateType,
int cfSchemaVersion,
ByteBuffer ucfHash)
{
this();
this.tenantId = tenantId;
this.userId = userId;
this.routeAddress = routeAddress;
this.updateType = updateType;
this.cfSchemaVersion = cfSchemaVersion;
setCfSchemaVersionIsSet(true);
this.ucfHash = org.apache.thrift.TBaseHelper.copyBinary(ucfHash);
}
/**
* Performs a deep copy on <i>other</i>.
*/
public EndpointRouteUpdate(EndpointRouteUpdate other) {
__isset_bitfield = other.__isset_bitfield;
if (other.isSetTenantId()) {
this.tenantId = other.tenantId;
}
if (other.isSetUserId()) {
this.userId = other.userId;
}
if (other.isSetRouteAddress()) {
this.routeAddress = new RouteAddress(other.routeAddress);
}
if (other.isSetUpdateType()) {
this.updateType = other.updateType;
}
this.cfSchemaVersion = other.cfSchemaVersion;
if (other.isSetUcfHash()) {
this.ucfHash = org.apache.thrift.TBaseHelper.copyBinary(other.ucfHash);
}
}
public EndpointRouteUpdate deepCopy() {
return new EndpointRouteUpdate(this);
}
@Override
public void clear() {
this.tenantId = null;
this.userId = null;
this.routeAddress = null;
this.updateType = null;
setCfSchemaVersionIsSet(false);
this.cfSchemaVersion = 0;
this.ucfHash = null;
}
public String getTenantId() {
return this.tenantId;
}
public EndpointRouteUpdate setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public void unsetTenantId() {
this.tenantId = null;
}
/** Returns true if field tenantId is set (has been assigned a value) and false otherwise */
public boolean isSetTenantId() {
return this.tenantId != null;
}
public void setTenantIdIsSet(boolean value) {
if (!value) {
this.tenantId = null;
}
}
public String getUserId() {
return this.userId;
}
public EndpointRouteUpdate setUserId(String userId) {
this.userId = userId;
return this;
}
public void unsetUserId() {
this.userId = null;
}
/** Returns true if field userId is set (has been assigned a value) and false otherwise */
public boolean isSetUserId() {
return this.userId != null;
}
public void setUserIdIsSet(boolean value) {
if (!value) {
this.userId = null;
}
}
public RouteAddress getRouteAddress() {
return this.routeAddress;
}
public EndpointRouteUpdate setRouteAddress(RouteAddress routeAddress) {
this.routeAddress = routeAddress;
return this;
}
public void unsetRouteAddress() {
this.routeAddress = null;
}
/** Returns true if field routeAddress is set (has been assigned a value) and false otherwise */
public boolean isSetRouteAddress() {
return this.routeAddress != null;
}
public void setRouteAddressIsSet(boolean value) {
if (!value) {
this.routeAddress = null;
}
}
/**
*
* @see EventRouteUpdateType
*/
public EventRouteUpdateType getUpdateType() {
return this.updateType;
}
/**
*
* @see EventRouteUpdateType
*/
public EndpointRouteUpdate setUpdateType(EventRouteUpdateType updateType) {
this.updateType = updateType;
return this;
}
public void unsetUpdateType() {
this.updateType = null;
}
/** Returns true if field updateType is set (has been assigned a value) and false otherwise */
public boolean isSetUpdateType() {
return this.updateType != null;
}
public void setUpdateTypeIsSet(boolean value) {
if (!value) {
this.updateType = null;
}
}
public int getCfSchemaVersion() {
return this.cfSchemaVersion;
}
public EndpointRouteUpdate setCfSchemaVersion(int cfSchemaVersion) {
this.cfSchemaVersion = cfSchemaVersion;
setCfSchemaVersionIsSet(true);
return this;
}
public void unsetCfSchemaVersion() {
__isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __CFSCHEMAVERSION_ISSET_ID);
}
/** Returns true if field cfSchemaVersion is set (has been assigned a value) and false otherwise */
public boolean isSetCfSchemaVersion() {
return EncodingUtils.testBit(__isset_bitfield, __CFSCHEMAVERSION_ISSET_ID);
}
public void setCfSchemaVersionIsSet(boolean value) {
__isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __CFSCHEMAVERSION_ISSET_ID, value);
}
public byte[] getUcfHash() {
setUcfHash(org.apache.thrift.TBaseHelper.rightSize(ucfHash));
return ucfHash == null ? null : ucfHash.array();
}
public ByteBuffer bufferForUcfHash() {
return org.apache.thrift.TBaseHelper.copyBinary(ucfHash);
}
public EndpointRouteUpdate setUcfHash(byte[] ucfHash) {
this.ucfHash = ucfHash == null ? (ByteBuffer)null : ByteBuffer.wrap(Arrays.copyOf(ucfHash, ucfHash.length));
return this;
}
public EndpointRouteUpdate setUcfHash(ByteBuffer ucfHash) {
this.ucfHash = org.apache.thrift.TBaseHelper.copyBinary(ucfHash);
return this;
}
public void unsetUcfHash() {
this.ucfHash = null;
}
/** Returns true if field ucfHash is set (has been assigned a value) and false otherwise */
public boolean isSetUcfHash() {
return this.ucfHash != null;
}
public void setUcfHashIsSet(boolean value) {
if (!value) {
this.ucfHash = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case TENANT_ID:
if (value == null) {
unsetTenantId();
} else {
setTenantId((String)value);
}
break;
case USER_ID:
if (value == null) {
unsetUserId();
} else {
setUserId((String)value);
}
break;
case ROUTE_ADDRESS:
if (value == null) {
unsetRouteAddress();
} else {
setRouteAddress((RouteAddress)value);
}
break;
case UPDATE_TYPE:
if (value == null) {
unsetUpdateType();
} else {
setUpdateType((EventRouteUpdateType)value);
}
break;
case CF_SCHEMA_VERSION:
if (value == null) {
unsetCfSchemaVersion();
} else {
setCfSchemaVersion((Integer)value);
}
break;
case UCF_HASH:
if (value == null) {
unsetUcfHash();
} else {
setUcfHash((ByteBuffer)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case TENANT_ID:
return getTenantId();
case USER_ID:
return getUserId();
case ROUTE_ADDRESS:
return getRouteAddress();
case UPDATE_TYPE:
return getUpdateType();
case CF_SCHEMA_VERSION:
return Integer.valueOf(getCfSchemaVersion());
case UCF_HASH:
return getUcfHash();
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case TENANT_ID:
return isSetTenantId();
case USER_ID:
return isSetUserId();
case ROUTE_ADDRESS:
return isSetRouteAddress();
case UPDATE_TYPE:
return isSetUpdateType();
case CF_SCHEMA_VERSION:
return isSetCfSchemaVersion();
case UCF_HASH:
return isSetUcfHash();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof EndpointRouteUpdate)
return this.equals((EndpointRouteUpdate)that);
return false;
}
public boolean equals(EndpointRouteUpdate that) {
if (that == null)
return false;
boolean this_present_tenantId = true && this.isSetTenantId();
boolean that_present_tenantId = true && that.isSetTenantId();
if (this_present_tenantId || that_present_tenantId) {
if (!(this_present_tenantId && that_present_tenantId))
return false;
if (!this.tenantId.equals(that.tenantId))
return false;
}
boolean this_present_userId = true && this.isSetUserId();
boolean that_present_userId = true && that.isSetUserId();
if (this_present_userId || that_present_userId) {
if (!(this_present_userId && that_present_userId))
return false;
if (!this.userId.equals(that.userId))
return false;
}
boolean this_present_routeAddress = true && this.isSetRouteAddress();
boolean that_present_routeAddress = true && that.isSetRouteAddress();
if (this_present_routeAddress || that_present_routeAddress) {
if (!(this_present_routeAddress && that_present_routeAddress))
return false;
if (!this.routeAddress.equals(that.routeAddress))
return false;
}
boolean this_present_updateType = true && this.isSetUpdateType();
boolean that_present_updateType = true && that.isSetUpdateType();
if (this_present_updateType || that_present_updateType) {
if (!(this_present_updateType && that_present_updateType))
return false;
if (!this.updateType.equals(that.updateType))
return false;
}
boolean this_present_cfSchemaVersion = true;
boolean that_present_cfSchemaVersion = true;
if (this_present_cfSchemaVersion || that_present_cfSchemaVersion) {
if (!(this_present_cfSchemaVersion && that_present_cfSchemaVersion))
return false;
if (this.cfSchemaVersion != that.cfSchemaVersion)
return false;
}
boolean this_present_ucfHash = true && this.isSetUcfHash();
boolean that_present_ucfHash = true && that.isSetUcfHash();
if (this_present_ucfHash || that_present_ucfHash) {
if (!(this_present_ucfHash && that_present_ucfHash))
return false;
if (!this.ucfHash.equals(that.ucfHash))
return false;
}
return true;
}
@Override
public int hashCode() {
List<Object> list = new ArrayList<Object>();
boolean present_tenantId = true && (isSetTenantId());
list.add(present_tenantId);
if (present_tenantId)
list.add(tenantId);
boolean present_userId = true && (isSetUserId());
list.add(present_userId);
if (present_userId)
list.add(userId);
boolean present_routeAddress = true && (isSetRouteAddress());
list.add(present_routeAddress);
if (present_routeAddress)
list.add(routeAddress);
boolean present_updateType = true && (isSetUpdateType());
list.add(present_updateType);
if (present_updateType)
list.add(updateType.getValue());
boolean present_cfSchemaVersion = true;
list.add(present_cfSchemaVersion);
if (present_cfSchemaVersion)
list.add(cfSchemaVersion);
boolean present_ucfHash = true && (isSetUcfHash());
list.add(present_ucfHash);
if (present_ucfHash)
list.add(ucfHash);
return list.hashCode();
}
@Override
public int compareTo(EndpointRouteUpdate other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = Boolean.valueOf(isSetTenantId()).compareTo(other.isSetTenantId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetTenantId()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tenantId, other.tenantId);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetUserId()).compareTo(other.isSetUserId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetUserId()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.userId, other.userId);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetRouteAddress()).compareTo(other.isSetRouteAddress());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetRouteAddress()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.routeAddress, other.routeAddress);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetUpdateType()).compareTo(other.isSetUpdateType());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetUpdateType()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.updateType, other.updateType);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetCfSchemaVersion()).compareTo(other.isSetCfSchemaVersion());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetCfSchemaVersion()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.cfSchemaVersion, other.cfSchemaVersion);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetUcfHash()).compareTo(other.isSetUcfHash());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetUcfHash()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ucfHash, other.ucfHash);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
}
public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("EndpointRouteUpdate(");
boolean first = true;
sb.append("tenantId:");
if (this.tenantId == null) {
sb.append("null");
} else {
sb.append(this.tenantId);
}
first = false;
if (!first) sb.append(", ");
sb.append("userId:");
if (this.userId == null) {
sb.append("null");
} else {
sb.append(this.userId);
}
first = false;
if (!first) sb.append(", ");
sb.append("routeAddress:");
if (this.routeAddress == null) {
sb.append("null");
} else {
sb.append(this.routeAddress);
}
first = false;
if (!first) sb.append(", ");
sb.append("updateType:");
if (this.updateType == null) {
sb.append("null");
} else {
sb.append(this.updateType);
}
first = false;
if (!first) sb.append(", ");
sb.append("cfSchemaVersion:");
sb.append(this.cfSchemaVersion);
first = false;
if (!first) sb.append(", ");
sb.append("ucfHash:");
if (this.ucfHash == null) {
sb.append("null");
} else {
org.apache.thrift.TBaseHelper.toString(this.ucfHash, sb);
}
first = false;
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
if (routeAddress != null) {
routeAddress.validate();
}
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
try {
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
__isset_bitfield = 0;
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private static class EndpointRouteUpdateStandardSchemeFactory implements SchemeFactory {
public EndpointRouteUpdateStandardScheme getScheme() {
return new EndpointRouteUpdateStandardScheme();
}
}
private static class EndpointRouteUpdateStandardScheme extends StandardScheme<EndpointRouteUpdate> {
public void read(org.apache.thrift.protocol.TProtocol iprot, EndpointRouteUpdate struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
{
schemeField = iprot.readFieldBegin();
if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
break;
}
switch (schemeField.id) {
case 1: // TENANT_ID
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.tenantId = iprot.readString();
struct.setTenantIdIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // USER_ID
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.userId = iprot.readString();
struct.setUserIdIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // ROUTE_ADDRESS
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
struct.routeAddress = new RouteAddress();
struct.routeAddress.read(iprot);
struct.setRouteAddressIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 4: // UPDATE_TYPE
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
struct.updateType = org.kaaproject.kaa.server.common.thrift.gen.operations.EventRouteUpdateType.findByValue(iprot.readI32());
struct.setUpdateTypeIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 5: // CF_SCHEMA_VERSION
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
struct.cfSchemaVersion = iprot.readI32();
struct.setCfSchemaVersionIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 6: // UCF_HASH
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.ucfHash = iprot.readBinary();
struct.setUcfHashIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
struct.validate();
}
public void write(org.apache.thrift.protocol.TProtocol oprot, EndpointRouteUpdate struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.tenantId != null) {
oprot.writeFieldBegin(TENANT_ID_FIELD_DESC);
oprot.writeString(struct.tenantId);
oprot.writeFieldEnd();
}
if (struct.userId != null) {
oprot.writeFieldBegin(USER_ID_FIELD_DESC);
oprot.writeString(struct.userId);
oprot.writeFieldEnd();
}
if (struct.routeAddress != null) {
oprot.writeFieldBegin(ROUTE_ADDRESS_FIELD_DESC);
struct.routeAddress.write(oprot);
oprot.writeFieldEnd();
}
if (struct.updateType != null) {
oprot.writeFieldBegin(UPDATE_TYPE_FIELD_DESC);
oprot.writeI32(struct.updateType.getValue());
oprot.writeFieldEnd();
}
oprot.writeFieldBegin(CF_SCHEMA_VERSION_FIELD_DESC);
oprot.writeI32(struct.cfSchemaVersion);
oprot.writeFieldEnd();
if (struct.ucfHash != null) {
oprot.writeFieldBegin(UCF_HASH_FIELD_DESC);
oprot.writeBinary(struct.ucfHash);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class EndpointRouteUpdateTupleSchemeFactory implements SchemeFactory {
public EndpointRouteUpdateTupleScheme getScheme() {
return new EndpointRouteUpdateTupleScheme();
}
}
private static class EndpointRouteUpdateTupleScheme extends TupleScheme<EndpointRouteUpdate> {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, EndpointRouteUpdate struct) throws org.apache.thrift.TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
BitSet optionals = new BitSet();
if (struct.isSetTenantId()) {
optionals.set(0);
}
if (struct.isSetUserId()) {
optionals.set(1);
}
if (struct.isSetRouteAddress()) {
optionals.set(2);
}
if (struct.isSetUpdateType()) {
optionals.set(3);
}
if (struct.isSetCfSchemaVersion()) {
optionals.set(4);
}
if (struct.isSetUcfHash()) {
optionals.set(5);
}
oprot.writeBitSet(optionals, 6);
if (struct.isSetTenantId()) {
oprot.writeString(struct.tenantId);
}
if (struct.isSetUserId()) {
oprot.writeString(struct.userId);
}
if (struct.isSetRouteAddress()) {
struct.routeAddress.write(oprot);
}
if (struct.isSetUpdateType()) {
oprot.writeI32(struct.updateType.getValue());
}
if (struct.isSetCfSchemaVersion()) {
oprot.writeI32(struct.cfSchemaVersion);
}
if (struct.isSetUcfHash()) {
oprot.writeBinary(struct.ucfHash);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, EndpointRouteUpdate struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
BitSet incoming = iprot.readBitSet(6);
if (incoming.get(0)) {
struct.tenantId = iprot.readString();
struct.setTenantIdIsSet(true);
}
if (incoming.get(1)) {
struct.userId = iprot.readString();
struct.setUserIdIsSet(true);
}
if (incoming.get(2)) {
struct.routeAddress = new RouteAddress();
struct.routeAddress.read(iprot);
struct.setRouteAddressIsSet(true);
}
if (incoming.get(3)) {
struct.updateType = org.kaaproject.kaa.server.common.thrift.gen.operations.EventRouteUpdateType.findByValue(iprot.readI32());
struct.setUpdateTypeIsSet(true);
}
if (incoming.get(4)) {
struct.cfSchemaVersion = iprot.readI32();
struct.setCfSchemaVersionIsSet(true);
}
if (incoming.get(5)) {
struct.ucfHash = iprot.readBinary();
struct.setUcfHashIsSet(true);
}
}
}
}
| {
"content_hash": "dbe65bc22a2d64651f844c517f35bfdb",
"timestamp": "",
"source": "github",
"line_count": 952,
"max_line_length": 193,
"avg_line_length": 32.59348739495798,
"alnum_prop": 0.6632827355054949,
"repo_name": "vzhukovskyi/kaa",
"id": "2734e4fe6af143f75e25ca987e4d2421132b6962",
"size": "31029",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "server/common/thrift/src/main/thrift-java/org/kaaproject/kaa/server/common/thrift/gen/operations/EndpointRouteUpdate.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Arduino",
"bytes": "22520"
},
{
"name": "C",
"bytes": "1018980"
},
{
"name": "C++",
"bytes": "1255365"
},
{
"name": "CMake",
"bytes": "54170"
},
{
"name": "CSS",
"bytes": "18207"
},
{
"name": "HTML",
"bytes": "4788"
},
{
"name": "Java",
"bytes": "13789776"
},
{
"name": "Makefile",
"bytes": "1467"
},
{
"name": "Python",
"bytes": "128276"
},
{
"name": "Shell",
"bytes": "153256"
},
{
"name": "Thrift",
"bytes": "20997"
},
{
"name": "XSLT",
"bytes": "4062"
}
],
"symlink_target": ""
} |
namespace msgpack {
/// @cond
MSGPACK_API_VERSION_NAMESPACE(v1) {
/// @endcond
namespace adaptor {
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct as<
std::unordered_map<K, V, Hash, Compare, Alloc>,
typename std::enable_if<msgpack::has_as<K>::value && msgpack::has_as<V>::value>::type> {
std::unordered_map<K, V, Hash, Compare, Alloc> operator()(msgpack::object const& o) const {
if (o.type != msgpack::type::MAP) { THROW(msgpack::type_error); }
msgpack::object_kv* p(o.via.map.ptr);
msgpack::object_kv* const pend(o.via.map.ptr + o.via.map.size);
std::unordered_map<K, V, Hash, Compare, Alloc> v;
for (; p != pend; ++p) {
v.emplace(p->key.as<K>(), p->val.as<V>());
}
return v;
}
};
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct convert<std::unordered_map<K, V, Hash, Compare, Alloc>> {
msgpack::object const& operator()(msgpack::object const& o, std::unordered_map<K, V, Hash, Compare, Alloc>& v) const {
if(o.type != msgpack::type::MAP) { THROW(msgpack::type_error); }
msgpack::object_kv* p(o.via.map.ptr);
msgpack::object_kv* const pend(o.via.map.ptr + o.via.map.size);
std::unordered_map<K, V, Hash, Compare, Alloc> tmp;
for(; p != pend; ++p) {
K key;
p->key.convert(key);
p->val.convert(tmp[std::move(key)]);
}
v = std::move(tmp);
return o;
}
};
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct pack<std::unordered_map<K, V, Hash, Compare, Alloc>> {
template <typename Stream>
msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const std::unordered_map<K, V, Hash, Compare, Alloc>& v) const {
uint32_t size = checked_get_container_size(v.size());
o.pack_map(size);
for(typename std::unordered_map<K, V, Hash, Compare, Alloc>::const_iterator it(v.begin()), it_end(v.end());
it != it_end; ++it) {
o.pack(it->first);
o.pack(it->second);
}
return o;
}
};
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct object_with_zone<std::unordered_map<K, V, Hash, Compare, Alloc>> {
void operator()(msgpack::object::with_zone& o, const std::unordered_map<K, V, Hash, Compare, Alloc>& v) const {
o.type = msgpack::type::MAP;
if(v.empty()) {
o.via.map.ptr = nullptr;
o.via.map.size = 0;
} else {
uint32_t size = checked_get_container_size(v.size());
msgpack::object_kv* p = static_cast<msgpack::object_kv*>(o.zone.allocate_align(sizeof(msgpack::object_kv)*size));
msgpack::object_kv* const pend = p + size;
o.via.map.ptr = p;
o.via.map.size = size;
typename std::unordered_map<K, V, Hash, Compare, Alloc>::const_iterator it(v.begin());
do {
p->key = msgpack::object(it->first, o.zone);
p->val = msgpack::object(it->second, o.zone);
++p;
++it;
} while(p < pend);
}
}
};
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct as<
std::unordered_multimap<K, V, Hash, Compare, Alloc>,
typename std::enable_if<msgpack::has_as<K>::value && msgpack::has_as<V>::value>::type> {
std::unordered_multimap<K, V, Hash, Compare, Alloc> operator()(msgpack::object const& o) const {
if (o.type != msgpack::type::MAP) { THROW(msgpack::type_error); }
msgpack::object_kv* p(o.via.map.ptr);
msgpack::object_kv* const pend(o.via.map.ptr + o.via.map.size);
std::unordered_multimap<K, V, Hash, Compare, Alloc> v;
for (; p != pend; ++p) {
v.emplace(p->key.as<K>(), p->val.as<V>());
}
return v;
}
};
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct convert<std::unordered_multimap<K, V, Hash, Compare, Alloc>> {
msgpack::object const& operator()(msgpack::object const& o, std::unordered_multimap<K, V, Hash, Compare, Alloc>& v) const {
if(o.type != msgpack::type::MAP) { THROW(msgpack::type_error); }
msgpack::object_kv* p(o.via.map.ptr);
msgpack::object_kv* const pend(o.via.map.ptr + o.via.map.size);
std::unordered_multimap<K, V, Hash, Compare, Alloc> tmp;
for(; p != pend; ++p) {
std::pair<K, V> value;
p->key.convert(value.first);
p->val.convert(value.second);
tmp.insert(std::move(value));
}
v = std::move(tmp);
return o;
}
};
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct pack<std::unordered_multimap<K, V, Hash, Compare, Alloc>> {
template <typename Stream>
msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const std::unordered_multimap<K, V, Hash, Compare, Alloc>& v) const {
uint32_t size = checked_get_container_size(v.size());
o.pack_map(size);
for(typename std::unordered_multimap<K, V, Hash, Compare, Alloc>::const_iterator it(v.begin()), it_end(v.end());
it != it_end; ++it) {
o.pack(it->first);
o.pack(it->second);
}
return o;
}
};
template <typename K, typename V, typename Hash, typename Compare, typename Alloc>
struct object_with_zone<std::unordered_multimap<K, V, Hash, Compare, Alloc>> {
void operator()(msgpack::object::with_zone& o, const std::unordered_multimap<K, V, Hash, Compare, Alloc>& v) const {
o.type = msgpack::type::MAP;
if(v.empty()) {
o.via.map.ptr = nullptr;
o.via.map.size = 0;
} else {
uint32_t size = checked_get_container_size(v.size());
msgpack::object_kv* p = static_cast<msgpack::object_kv*>(o.zone.allocate_align(sizeof(msgpack::object_kv)*size));
msgpack::object_kv* const pend = p + size;
o.via.map.ptr = p;
o.via.map.size = size;
typename std::unordered_multimap<K, V, Hash, Compare, Alloc>::const_iterator it(v.begin());
do {
p->key = msgpack::object(it->first, o.zone);
p->val = msgpack::object(it->second, o.zone);
++p;
++it;
} while(p < pend);
}
}
};
} // namespace adaptor
/// @cond
} // MSGPACK_API_VERSION_NAMESPACE(v1)
/// @endcond
} // namespace msgpack
#endif // MSGPACK_TYPE_UNORDERED_MAP_HPP
| {
"content_hash": "d102e805d31fc7cf2156b0f650e7edfb",
"timestamp": "",
"source": "github",
"line_count": 164,
"max_line_length": 141,
"avg_line_length": 40.72560975609756,
"alnum_prop": 0.5759844288067076,
"repo_name": "Kronuz/Xapiand",
"id": "24ea17b9c0a747a9c1c91f5f824353cef05291a3",
"size": "7156",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/msgpack/adaptor/cpp11/unordered_map.hpp",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "C",
"bytes": "1671486"
},
{
"name": "C++",
"bytes": "13145654"
},
{
"name": "CMake",
"bytes": "82507"
},
{
"name": "Dockerfile",
"bytes": "1757"
},
{
"name": "JavaScript",
"bytes": "48668"
},
{
"name": "Perl",
"bytes": "24123"
},
{
"name": "Python",
"bytes": "272660"
},
{
"name": "Shell",
"bytes": "6416"
},
{
"name": "Tcl",
"bytes": "10851"
}
],
"symlink_target": ""
} |
<?php
/**
* @namespace
*/
namespace ZendTest\XmlRpc\Server;
use Zend\XmlRpc\Server;
/**
* Test case for Zend\XmlRpc\Server\Cache
*
* @category Zend
* @package Zend_XmlRpc
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_XmlRpc
*/
class CacheTest extends \PHPUnit_Framework_TestCase
{
/**
* Zend_XmlRpc_Server object
* @var Zend_XmlRpc_Server
*/
protected $_server;
/**
* Local file for caching
* @var string
*/
protected $_file;
/**
* Setup environment
*/
public function setUp()
{
$this->_file = realpath(__DIR__) . '/xmlrpc.cache';
$this->_server = new Server();
$this->_server->setClass('Zend\\XmlRpc\\Server\\Cache', 'cache');
}
/**
* Teardown environment
*/
public function tearDown()
{
if (file_exists($this->_file)) {
unlink($this->_file);
}
unset($this->_server);
}
/**
* Tests functionality of both get() and save()
*/
public function testGetSave()
{
if (!is_writeable('./')) {
$this->markTestIncomplete('Directory no writable');
}
$this->assertTrue(Server\Cache::save($this->_file, $this->_server));
$expected = $this->_server->listMethods();
$server = new Server();
$this->assertTrue(Server\Cache::get($this->_file, $server));
$actual = $server->listMethods();
$this->assertSame($expected, $actual);
}
/**
* Zend\XmlRpc\Server\Cache::delete() test
*/
public function testDelete()
{
if (!is_writeable('./')) {
$this->markTestIncomplete('Directory no writable');
}
$this->assertTrue(Server\Cache::save($this->_file, $this->_server));
$this->assertTrue(Server\Cache::delete($this->_file));
}
public function testShouldReturnFalseWithInvalidCache()
{
if (!is_writeable('./')) {
$this->markTestIncomplete('Directory no writable');
}
file_put_contents($this->_file, 'blahblahblah');
$server = new Server();
$this->assertFalse(Server\Cache::get($this->_file, $server));
}
}
| {
"content_hash": "56e9140e450da577d71dc1eaa731838b",
"timestamp": "",
"source": "github",
"line_count": 96,
"max_line_length": 87,
"avg_line_length": 24.5625,
"alnum_prop": 0.5602205258693809,
"repo_name": "whitefire/zf2",
"id": "cce71875a59113f1b2b6897486ce78bfd8937dea",
"size": "3055",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "tests/Zend/XmlRpc/Server/CacheTest.php",
"mode": "33188",
"license": "bsd-3-clause",
"language": [
{
"name": "JavaScript",
"bytes": "30072"
},
{
"name": "PHP",
"bytes": "27001014"
},
{
"name": "Shell",
"bytes": "5201"
}
],
"symlink_target": ""
} |
<?php
$factory->define(App\User::class, function (Faker\Generator $faker) {
return [
'first_name' => $faker->firstName,
'last_name' => $faker->lastName,
'email' => $faker->email,
'is_admin' => false,
'password' => str_random(10),
'remember_token' => str_random(10),
];
});
$factory->define(App\Circuit::class, function (Faker\Generator $faker) {
return [
'number' => $faker->randomDigitNotNull,
];
});
$factory->define(App\Congregation::class, function (Faker\Generator $faker) {
return [
'name' => $faker->city(),
'is_group' => false,
'public_meeting_at' => Carbon\Carbon::create(null, null, rand(1, 20), rand(10, 19), rand(0, 1) * 30, 0),
];
});
$factory->define(App\Locale::class, function (Faker\Generator $faker) {
$languageCode = $faker->languageCode();
return [
'code' => $languageCode,
'name' => $languageCode,
];
});
$factory->define(App\Speaker::class, function (Faker\Generator $faker) {
return [
'first_name' => $faker->firstName,
'last_name' => $faker->lastName,
'email' => $faker->email,
];
});
$factory->define(App\Talk::class, function (Faker\Generator $faker) {
return [
'number' => $faker->numberBetween(1, 200),
];
});
$factory->define(App\TalkTitle::class, function (Faker\Generator $faker) {
return [
'subject' => $faker->sentence(8),
];
});
$factory->define(App\ScheduledTalk::class, function (Faker\Generator $faker) {
$now = Carbon::now();
$from = Carbon::create($now->year, $now->month, 1, 0, 0, 0, null);
$to = $from->copy()->addMonth()->subSecond();
return [
'scheduled_at' => $faker->dateTimeBetween($from, $to),
];
});
| {
"content_hash": "e5369d119dd1324e2153fb05f21acd7f",
"timestamp": "",
"source": "github",
"line_count": 65,
"max_line_length": 112,
"avg_line_length": 28.307692307692307,
"alnum_prop": 0.5510869565217391,
"repo_name": "rmariuzzo/Pitimi",
"id": "19256e684d1fb5fe2797ef57c84d11f78908876e",
"size": "1840",
"binary": false,
"copies": "1",
"ref": "refs/heads/develop",
"path": "database/factories/ModelFactory.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "ApacheConf",
"bytes": "412"
},
{
"name": "CSS",
"bytes": "3402"
},
{
"name": "JavaScript",
"bytes": "1730200"
},
{
"name": "PHP",
"bytes": "247893"
}
],
"symlink_target": ""
} |
layout: kanji
v4: 465
v6: 504
kanji: 複
keyword: duplicate
elements: duplicate, cloak, fold back, double back, reclining, lying down, sun, day, walking legs
strokes: 14
image: E8A487
on-yomi: フク
permalink: /rtk/複/
prev: 腹
next: 欠
---
1) [<a href="http://kanji.koohii.com/profile/akimoto">akimoto</a>] 14-3-2007(238): My girlfiend saw someone wearing the exact same (duplicate) outfit at a party, so she doubled back to change!
2) [<a href="http://kanji.koohii.com/profile/ihatobu">ihatobu</a>] 13-8-2007(187): In <em>Harry Potter and the Prisoner of Azkaban</em>, Hermione uses a device called a "time-turner" to <em>double back</em> in time, but this creates<strong> duplicate</strong>s. The smart thing to do would be to combine Hermione's time-turner with Harry's invisibility cloak. That way, one could <em>double back</em> in time without creating any visible<strong> duplicate</strong>s.
3) [<a href="http://kanji.koohii.com/profile/crystalcastlecreature">crystalcastlecreature</a>] 13-7-2008(52): The magician took his CLOAK, FOLDED IT (DOUBLE BACKED IT) and <strong>DUPLICATED</strong> it!! Amaaaazing.
4) [<a href="http://kanji.koohii.com/profile/PepeSeco">PepeSeco</a>] 11-7-2007(32): St. Martin took his <em>cloak</em>, <em>doubled it back</em>, and cut it into two pieces effectively making a<strong> duplicate</strong> of his cape (duplicape) for the beggar.
5) [<a href="http://kanji.koohii.com/profile/Nihonnub">Nihonnub</a>] 29-5-2009(14): My girlfriend noticed that someone was wearing an exact<strong> duplicate</strong> of the <em>cloak</em> she was told was one of a kind! So, she <em>laid</em> there, <em>tongue wagging</em>, <em>legs</em> kicking throwing a right hissy fit![[I have trouble remembering 'double back'.. hope this helps anyone else who has the same problem! Also, thanks to akimoto for the girlfriend story]].
| {
"content_hash": "4bdff7c82a6deb5bc41fc2f0f0247c62",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 486,
"avg_line_length": 78.41666666666667,
"alnum_prop": 0.7364505844845909,
"repo_name": "hochanh/hochanh.github.io",
"id": "d4b8b572d318d450dc937f638ae6af8779dbba70",
"size": "1898",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "rtk/rtk1-v6/0504.md",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "6969"
},
{
"name": "JavaScript",
"bytes": "5041"
}
],
"symlink_target": ""
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="all_9.js"></script>
<script type="text/javascript" src="search.js"></script>
</head>
<body class="SRPage">
<div id="SRIndex">
<div class="SRStatus" id="Loading">Chargement...</div>
<div id="SRResults"></div>
<script type="text/javascript"><!--
createResults();
--></script>
<div class="SRStatus" id="Searching">Recherche...</div>
<div class="SRStatus" id="NoMatches">Aucune correspondance</div>
<script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults");
searchResults.Search();
--></script>
</div>
</body>
</html>
| {
"content_hash": "2746f97e71bb12ff000a012263ab87e2",
"timestamp": "",
"source": "github",
"line_count": 26,
"max_line_length": 121,
"avg_line_length": 39.53846153846154,
"alnum_prop": 0.708171206225681,
"repo_name": "ggamelas/it2-komtuve",
"id": "c0dfa9d6b7b6d65bfe95269def215e9a93c24799",
"size": "1028",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "doc/html/search/all_9.html",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "C",
"bytes": "179786"
},
{
"name": "Makefile",
"bytes": "1164"
}
],
"symlink_target": ""
} |
/**
*
*/
package com.jarp.tutorials.bigranchprohects.ch9;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import com.jarp.tutorials.bigranchprohects.R;
/**
* @author JARP
*
*/
public class CrimeActivity extends SingleFragmentActivity {
/*
@Override
public void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.ch9_activity_fragment);
FragmentManager fm = getSupportFragmentManager();
Fragment fragment = fm.findFragmentById(R.id.ch9_fragmentContainer);
if(fragment==null)
{
fragment = new CrimeFragment();
fm.beginTransaction()
.add(R.id.ch9_fragmentContainer, fragment)
.commit();
}
}*/
@Override
protected Fragment createFragment() {
// TODO Auto-generated method stub
return new CrimeFragment();
}
}
| {
"content_hash": "9ee1958095e28c61bf9944963cd0356f",
"timestamp": "",
"source": "github",
"line_count": 60,
"max_line_length": 70,
"avg_line_length": 16.45,
"alnum_prop": 0.7193515704154002,
"repo_name": "imjarp/big-ranch-examples",
"id": "e9ed063b2541aa4c80fca0dd3fd6cd01e4318d77",
"size": "987",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/com/jarp/tutorials/bigranchprohects/ch9/CrimeActivity.java",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Java",
"bytes": "207777"
}
],
"symlink_target": ""
} |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace VR
{
public class CameraFollowYRotation : MonoBehaviour {
public Camera cam;
public GameObject canvasParent;
public float timeMultiplier = 0.05f;
// Update is called once per frame
void Update () {
Vector3 rot = canvasParent.transform.eulerAngles;
float min = Calc.Angle.GetMinRotation(rot.y, cam.transform.eulerAngles.y);
rot.x = 0;
rot.z = 0;
rot.y += min * timeMultiplier * Time.deltaTime * 100f;
canvasParent.transform.rotation = Quaternion.Euler( rot );
}
}
}
| {
"content_hash": "944f76afcc1892d2a3383d84085abaf2",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 86,
"avg_line_length": 28.44,
"alnum_prop": 0.6258790436005626,
"repo_name": "schoffi92/Unity3D-Scripts",
"id": "20dfc6339ef5f6e6c99f51e4c8a4dd40d5005ef2",
"size": "711",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "VR/CameraFollowYRotation.cs",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "C#",
"bytes": "22500"
}
],
"symlink_target": ""
} |
import React, { Component } from 'react';
import { Button } from 'primereact/button';
import { ObjectUtils, DomHandler, classNames } from 'primereact/utils';
import { Ripple } from 'primereact/ripple';
function _arrayLikeToArray(arr, len) {
if (len == null || len > arr.length) len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++) {
arr2[i] = arr[i];
}
return arr2;
}
function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) return _arrayLikeToArray(arr);
}
function _iterableToArray(iter) {
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
}
function _unsupportedIterableToArray(o, minLen) {
if (!o) return;
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor) n = o.constructor.name;
if (n === "Map" || n === "Set") return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
}
function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
function _toConsumableArray(arr) {
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
}
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
Object.defineProperty(Constructor, "prototype", {
writable: false
});
return Constructor;
}
function _assertThisInitialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _setPrototypeOf(o, p);
}
function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function");
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
writable: true,
configurable: true
}
});
Object.defineProperty(subClass, "prototype", {
writable: false
});
if (superClass) _setPrototypeOf(subClass, superClass);
}
function _typeof(obj) {
"@babel/helpers - typeof";
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
return typeof obj;
} : function (obj) {
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
}, _typeof(obj);
}
function _possibleConstructorReturn(self, call) {
if (call && (_typeof(call) === "object" || typeof call === "function")) {
return call;
} else if (call !== void 0) {
throw new TypeError("Derived constructors may only return object or undefined");
}
return _assertThisInitialized(self);
}
function _getPrototypeOf(o) {
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
return o.__proto__ || Object.getPrototypeOf(o);
};
return _getPrototypeOf(o);
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
function _createSuper$2(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$2(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _isNativeReflectConstruct$2() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
var OrderListControls = /*#__PURE__*/function (_Component) {
_inherits(OrderListControls, _Component);
var _super = _createSuper$2(OrderListControls);
function OrderListControls() {
var _this;
_classCallCheck(this, OrderListControls);
_this = _super.call(this);
_this.moveUp = _this.moveUp.bind(_assertThisInitialized(_this));
_this.moveTop = _this.moveTop.bind(_assertThisInitialized(_this));
_this.moveDown = _this.moveDown.bind(_assertThisInitialized(_this));
_this.moveBottom = _this.moveBottom.bind(_assertThisInitialized(_this));
return _this;
}
_createClass(OrderListControls, [{
key: "moveUp",
value: function moveUp(event) {
if (this.props.selection) {
var value = _toConsumableArray(this.props.value);
for (var i = 0; i < this.props.selection.length; i++) {
var selectedItem = this.props.selection[i];
var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value, this.props.dataKey);
if (selectedItemIndex !== 0) {
var movedItem = value[selectedItemIndex];
var temp = value[selectedItemIndex - 1];
value[selectedItemIndex - 1] = movedItem;
value[selectedItemIndex] = temp;
} else {
break;
}
}
if (this.props.onReorder) {
this.props.onReorder({
originalEvent: event,
value: value,
direction: 'up'
});
}
}
}
}, {
key: "moveTop",
value: function moveTop(event) {
if (this.props.selection) {
var value = _toConsumableArray(this.props.value);
for (var i = 0; i < this.props.selection.length; i++) {
var selectedItem = this.props.selection[i];
var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value, this.props.dataKey);
if (selectedItemIndex !== 0) {
var movedItem = value.splice(selectedItemIndex, 1)[0];
value.unshift(movedItem);
} else {
break;
}
}
if (this.props.onReorder) {
this.props.onReorder({
originalEvent: event,
value: value,
direction: 'top'
});
}
}
}
}, {
key: "moveDown",
value: function moveDown(event) {
if (this.props.selection) {
var value = _toConsumableArray(this.props.value);
for (var i = this.props.selection.length - 1; i >= 0; i--) {
var selectedItem = this.props.selection[i];
var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value, this.props.dataKey);
if (selectedItemIndex !== value.length - 1) {
var movedItem = value[selectedItemIndex];
var temp = value[selectedItemIndex + 1];
value[selectedItemIndex + 1] = movedItem;
value[selectedItemIndex] = temp;
} else {
break;
}
}
if (this.props.onReorder) {
this.props.onReorder({
originalEvent: event,
value: value,
direction: 'down'
});
}
}
}
}, {
key: "moveBottom",
value: function moveBottom(event) {
if (this.props.selection) {
var value = _toConsumableArray(this.props.value);
for (var i = this.props.selection.length - 1; i >= 0; i--) {
var selectedItem = this.props.selection[i];
var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value, this.props.dataKey);
if (selectedItemIndex !== value.length - 1) {
var movedItem = value.splice(selectedItemIndex, 1)[0];
value.push(movedItem);
} else {
break;
}
}
if (this.props.onReorder) {
this.props.onReorder({
originalEvent: event,
value: value,
direction: 'bottom'
});
}
}
}
}, {
key: "render",
value: function render() {
return /*#__PURE__*/React.createElement("div", {
className: "p-orderlist-controls"
}, /*#__PURE__*/React.createElement(Button, {
type: "button",
icon: "pi pi-angle-up",
onClick: this.moveUp
}), /*#__PURE__*/React.createElement(Button, {
type: "button",
icon: "pi pi-angle-double-up",
onClick: this.moveTop
}), /*#__PURE__*/React.createElement(Button, {
type: "button",
icon: "pi pi-angle-down",
onClick: this.moveDown
}), /*#__PURE__*/React.createElement(Button, {
type: "button",
icon: "pi pi-angle-double-down",
onClick: this.moveBottom
}));
}
}]);
return OrderListControls;
}(Component);
function _createSuper$1(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _isNativeReflectConstruct$1() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
var OrderListSubList = /*#__PURE__*/function (_Component) {
_inherits(OrderListSubList, _Component);
var _super = _createSuper$1(OrderListSubList);
function OrderListSubList(props) {
var _this;
_classCallCheck(this, OrderListSubList);
_this = _super.call(this, props);
_this.onDragEnd = _this.onDragEnd.bind(_assertThisInitialized(_this));
_this.onDragLeave = _this.onDragLeave.bind(_assertThisInitialized(_this));
_this.onDrop = _this.onDrop.bind(_assertThisInitialized(_this));
_this.onListMouseMove = _this.onListMouseMove.bind(_assertThisInitialized(_this));
return _this;
}
_createClass(OrderListSubList, [{
key: "isSelected",
value: function isSelected(item) {
return ObjectUtils.findIndexInList(item, this.props.selection, this.props.dataKey) !== -1;
}
}, {
key: "onDragStart",
value: function onDragStart(event, index) {
this.dragging = true;
this.draggedItemIndex = index;
if (this.props.dragdropScope) {
event.dataTransfer.setData('text', 'orderlist');
}
}
}, {
key: "onDragOver",
value: function onDragOver(event, index) {
if (this.draggedItemIndex !== index && this.draggedItemIndex + 1 !== index) {
this.dragOverItemIndex = index;
DomHandler.addClass(event.target, 'p-orderlist-droppoint-highlight');
event.preventDefault();
}
}
}, {
key: "onDragLeave",
value: function onDragLeave(event) {
this.dragOverItemIndex = null;
DomHandler.removeClass(event.target, 'p-orderlist-droppoint-highlight');
}
}, {
key: "onDrop",
value: function onDrop(event) {
var dropIndex = this.draggedItemIndex > this.dragOverItemIndex ? this.dragOverItemIndex : this.dragOverItemIndex === 0 ? 0 : this.dragOverItemIndex - 1;
var value = _toConsumableArray(this.props.value);
ObjectUtils.reorderArray(value, this.draggedItemIndex, dropIndex);
this.dragOverItemIndex = null;
DomHandler.removeClass(event.target, 'p-orderlist-droppoint-highlight');
if (this.props.onChange) {
this.props.onChange({
originalEvent: event,
value: value
});
}
}
}, {
key: "onDragEnd",
value: function onDragEnd(event) {
this.dragging = false;
}
}, {
key: "onListMouseMove",
value: function onListMouseMove(event) {
if (this.dragging) {
var offsetY = this.listElement.getBoundingClientRect().top + DomHandler.getWindowScrollTop();
var bottomDiff = offsetY + this.listElement.clientHeight - event.pageY;
var topDiff = event.pageY - offsetY;
if (bottomDiff < 25 && bottomDiff > 0) this.listElement.scrollTop += 15;else if (topDiff < 25 && topDiff > 0) this.listElement.scrollTop -= 15;
}
}
}, {
key: "renderDropPoint",
value: function renderDropPoint(index, key) {
var _this2 = this;
return /*#__PURE__*/React.createElement("li", {
key: key,
className: "p-orderlist-droppoint",
onDragOver: function onDragOver(e) {
return _this2.onDragOver(e, index + 1);
},
onDragLeave: this.onDragLeave,
onDrop: this.onDrop
});
}
}, {
key: "render",
value: function render() {
var _this3 = this;
var header = null;
var items = null;
if (this.props.header) {
header = /*#__PURE__*/React.createElement("div", {
className: "p-orderlist-header"
}, this.props.header);
}
if (this.props.value) {
items = this.props.value.map(function (item, i) {
var content = _this3.props.itemTemplate ? _this3.props.itemTemplate(item) : item;
var itemClassName = classNames('p-orderlist-item', {
'p-highlight': _this3.isSelected(item)
}, _this3.props.className);
var key = JSON.stringify(item);
if (_this3.props.dragdrop) {
var _items = [_this3.renderDropPoint(i, key + '_droppoint'), /*#__PURE__*/React.createElement("li", {
key: key,
className: itemClassName,
onClick: function onClick(e) {
return _this3.props.onItemClick({
originalEvent: e,
value: item,
index: i
});
},
onKeyDown: function onKeyDown(e) {
return _this3.props.onItemKeyDown({
originalEvent: e,
value: item,
index: i
});
},
role: "option",
"aria-selected": _this3.isSelected(item),
draggable: "true",
onDragStart: function onDragStart(e) {
return _this3.onDragStart(e, i);
},
onDragEnd: _this3.onDragEnd,
tabIndex: _this3.props.tabIndex
}, content, /*#__PURE__*/React.createElement(Ripple, null))];
if (i === _this3.props.value.length - 1) {
_items.push(_this3.renderDropPoint(item, i, key + '_droppoint_end'));
}
return _items;
} else {
return /*#__PURE__*/React.createElement("li", {
key: JSON.stringify(item),
className: itemClassName,
role: "option",
"aria-selected": _this3.isSelected(item),
onClick: function onClick(e) {
return _this3.props.onItemClick({
originalEvent: e,
value: item,
index: i
});
},
onKeyDown: function onKeyDown(e) {
return _this3.props.onItemKeyDown({
originalEvent: e,
value: item,
index: i
});
},
tabIndex: _this3.props.tabIndex
}, content);
}
});
}
return /*#__PURE__*/React.createElement("div", {
className: "p-orderlist-list-container"
}, header, /*#__PURE__*/React.createElement("ul", {
ref: function ref(el) {
return _this3.listElement = el;
},
className: "p-orderlist-list",
style: this.props.listStyle,
onDragOver: this.onListMouseMove,
role: "listbox",
"aria-multiselectable": true
}, items));
}
}]);
return OrderListSubList;
}(Component);
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
var OrderList = /*#__PURE__*/function (_Component) {
_inherits(OrderList, _Component);
var _super = _createSuper(OrderList);
function OrderList(props) {
var _this;
_classCallCheck(this, OrderList);
_this = _super.call(this, props);
_this.state = {
selection: []
};
_this.onItemClick = _this.onItemClick.bind(_assertThisInitialized(_this));
_this.onItemKeyDown = _this.onItemKeyDown.bind(_assertThisInitialized(_this));
_this.onReorder = _this.onReorder.bind(_assertThisInitialized(_this));
return _this;
}
_createClass(OrderList, [{
key: "onItemClick",
value: function onItemClick(event) {
var metaKey = event.originalEvent.metaKey || event.originalEvent.ctrlKey;
var index = ObjectUtils.findIndexInList(event.value, this.state.selection, this.props.dataKey);
var selected = index !== -1;
var selection;
if (selected) {
if (metaKey) selection = this.state.selection.filter(function (val, i) {
return i !== index;
});else selection = [event.value];
} else {
if (metaKey) selection = [].concat(_toConsumableArray(this.state.selection), [event.value]);else selection = [event.value];
}
this.setState({
selection: selection
});
}
}, {
key: "onItemKeyDown",
value: function onItemKeyDown(event) {
var listItem = event.originalEvent.currentTarget;
switch (event.originalEvent.which) {
//down
case 40:
var nextItem = this.findNextItem(listItem);
if (nextItem) {
nextItem.focus();
}
event.originalEvent.preventDefault();
break;
//up
case 38:
var prevItem = this.findPrevItem(listItem);
if (prevItem) {
prevItem.focus();
}
event.originalEvent.preventDefault();
break;
//enter
case 13:
this.onItemClick(event);
event.originalEvent.preventDefault();
break;
}
}
}, {
key: "findNextItem",
value: function findNextItem(item) {
var nextItem = item.nextElementSibling;
if (nextItem) return !DomHandler.hasClass(nextItem, 'p-orderlist-item') ? this.findNextItem(nextItem) : nextItem;else return null;
}
}, {
key: "findPrevItem",
value: function findPrevItem(item) {
var prevItem = item.previousElementSibling;
if (prevItem) return !DomHandler.hasClass(prevItem, 'p-orderlist-item') ? this.findPrevItem(prevItem) : prevItem;else return null;
}
}, {
key: "onReorder",
value: function onReorder(event) {
if (this.props.onChange) {
this.props.onChange({
event: event.originalEvent,
value: event.value
});
}
this.reorderDirection = event.direction;
}
}, {
key: "componentDidUpdate",
value: function componentDidUpdate() {
if (this.reorderDirection) {
this.updateListScroll();
this.reorderDirection = null;
}
}
}, {
key: "updateListScroll",
value: function updateListScroll() {
var listItems = DomHandler.find(this.subList.listElement, '.p-orderlist-item.p-highlight');
if (listItems && listItems.length) {
switch (this.reorderDirection) {
case 'up':
DomHandler.scrollInView(this.subList.listElement, listItems[0]);
break;
case 'top':
this.subList.listElement.scrollTop = 0;
break;
case 'down':
DomHandler.scrollInView(this.subList.listElement, listItems[listItems.length - 1]);
break;
case 'bottom':
this.subList.listElement.scrollTop = this.subList.listElement.scrollHeight;
break;
}
}
}
}, {
key: "render",
value: function render() {
var _this2 = this;
var className = classNames('p-orderlist p-component', this.props.className);
return /*#__PURE__*/React.createElement("div", {
ref: function ref(el) {
return _this2.element = el;
},
id: this.props.id,
className: className,
style: this.props.style
}, /*#__PURE__*/React.createElement(OrderListControls, {
value: this.props.value,
selection: this.state.selection,
onReorder: this.onReorder,
dataKey: this.props.dataKey
}), /*#__PURE__*/React.createElement(OrderListSubList, {
ref: function ref(el) {
return _this2.subList = el;
},
value: this.props.value,
selection: this.state.selection,
onItemClick: this.onItemClick,
onItemKeyDown: this.onItemKeyDown,
itemTemplate: this.props.itemTemplate,
header: this.props.header,
listStyle: this.props.listStyle,
dataKey: this.props.dataKey,
dragdrop: this.props.dragdrop,
onDragStart: this.onDragStart,
onDragEnter: this.onDragEnter,
onDragEnd: this.onDragEnd,
onDragLeave: this.onDragEnter,
onDrop: this.onDrop,
onChange: this.props.onChange,
tabIndex: this.props.tabIndex
}));
}
}]);
return OrderList;
}(Component);
_defineProperty(OrderList, "defaultProps", {
id: null,
value: null,
header: null,
style: null,
className: null,
listStyle: null,
dragdrop: false,
tabIndex: 0,
dataKey: null,
onChange: null,
itemTemplate: null
});
export { OrderList };
| {
"content_hash": "6c3b67dff65a1b2496003cf0b19264ff",
"timestamp": "",
"source": "github",
"line_count": 696,
"max_line_length": 429,
"avg_line_length": 33.49856321839081,
"alnum_prop": 0.6051469011366073,
"repo_name": "cdnjs/cdnjs",
"id": "2fe7f8a4fb16dd6ad9f3baab8040c7bcb298de5c",
"size": "23315",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "ajax/libs/primereact/7.2.1/orderlist/orderlist.esm.js",
"mode": "33188",
"license": "mit",
"language": [],
"symlink_target": ""
} |
<?php
class Dlayer_DesignerTool_ContentManager_Html_SubTool_Typography_Ribbon extends Dlayer_Ribbon_Content
{
/**
* Fetch the view data for the current tool tab, typically the returned array will have at least two indexes,
* one for the form and another with the data required by the preview functions
*
* @param array $tool Tool and environment data
*
* @return array
*/
public function viewData(array $tool)
{
$this->tool = $tool;
$this->contentData();
$this->elementData();
$this->previewData();
return array(
'form' => new Dlayer_DesignerTool_ContentManager_Html_SubTool_Typography_Form(
$tool,
$this->content_data,
$this->instancesOfData(),
$this->element_data
),
'preview' => $this->preview_data
);
}
/**
* Fetch the data array for the content item, if in edit mode mode populate the values otherwise every value is
* set to FALSE, the tool form can simply check to see if the value is FALSe or not and then set the existing value
*
* @return void Writes to $this->content_data
*/
protected function contentData()
{
if ($this->content_fetched === false) {
$this->content_data = array(
'font_family_id' => false,
'text_weight_id' => false
);
if ($this->tool['content_id'] !== null) {
$model = new Dlayer_DesignerTool_ContentManager_Shared_Model_Content_Typography();
$font_weight = $model->fontWeight(
$this->tool['site_id'],
$this->tool['page_id'],
$this->tool['content_id']
);
$font_family = $model->fontFamily(
$this->tool['site_id'],
$this->tool['page_id'],
$this->tool['content_id']
);
if ($font_weight !== false) {
$this->content_data['text_weight_id'] = $font_weight;
}
if ($font_family !== false) {
$this->content_data['font_family_id'] = $font_family;
}
}
$this->content_fetched = true;
}
}
/**
* Element data, data required to build the inputs
*
* @return array
*/
protected function elementData()
{
if ($this->element_data_fetched === false) {
$this->element_data = array(
'font_families' => false,
'text_weights' => false
);
$model = new Dlayer_Model_DesignerTool_ContentManager_Typography();
$font_families = $model->fontFamiliesForSelect();
if ($font_families !== false) {
$this->element_data['font_families'] = $font_families;
}
$text_weights = $model->fontWeightsForSelect();
if ($text_weights !== false) {
$this->element_data['text_weights'] = $text_weights;
}
$this->element_data_fetched = true;
}
}
/**
* Fetch the data required by the preview functions
*
* @return array
*/
protected function previewData()
{
if ($this->element_data_fetched === false || $this->preview_data_fetched === false) {
$this->contentData();
$this->preview_data = array(
'id' => $this->tool['content_id'],
'font_family_id' => $this->content_data['font_family_id'],
'font_families' => false,
'text_weights' => false
);
$model = new Dlayer_Model_DesignerTool_ContentManager_Typography();
$font_families = $model->fontFamiliesForPreview();
if ($font_families !== false) {
$this->preview_data['font_families'] = $font_families;
}
$text_weights = $model->fontWeightsForPreview();
if ($text_weights !== false) {
$this->preview_data['text_weights'] = $text_weights;
}
$this->preview_data_fetched = true;
}
}
/**
* Fetch the number of instances for the content items data
*
* @return integer
*/
protected function instancesOfData()
{
return 0;
}
}
| {
"content_hash": "397ddcc51b03b69d169cc9ecee38a273",
"timestamp": "",
"source": "github",
"line_count": 148,
"max_line_length": 119,
"avg_line_length": 30.25,
"alnum_prop": 0.5054724145633237,
"repo_name": "Dlayer/dlayer",
"id": "5e862ee2ae434544b68cc20a828da7ed01407637",
"size": "4678",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "library/Dlayer/DesignerTool/ContentManager/Html/SubTool/Typography/Ribbon.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "ApacheConf",
"bytes": "178"
},
{
"name": "Batchfile",
"bytes": "1036"
},
{
"name": "CSS",
"bytes": "5185"
},
{
"name": "HTML",
"bytes": "137813"
},
{
"name": "JavaScript",
"bytes": "101730"
},
{
"name": "PHP",
"bytes": "16742312"
},
{
"name": "PowerShell",
"bytes": "1028"
}
],
"symlink_target": ""
} |
package com.netflix.raigad.objectmapper;
import org.codehaus.jackson.JsonFactory;
import org.codehaus.jackson.Version;
import org.codehaus.jackson.map.DeserializationConfig;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.SerializationConfig;
import org.codehaus.jackson.map.module.SimpleModule;
public class DefaultMasterNodeInfoMapper extends ObjectMapper
{
public DefaultMasterNodeInfoMapper() {
this(null);
}
public DefaultMasterNodeInfoMapper(JsonFactory factory) {
super(factory);
SimpleModule serializerModule = new SimpleModule("default serializers", new Version(1, 0, 0, null));
registerModule(serializerModule);
configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES, false);
configure(SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS, false);
}
}
| {
"content_hash": "3d60ae6bf4c6b79a79f996c14b6dffdc",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 108,
"avg_line_length": 34.72,
"alnum_prop": 0.7707373271889401,
"repo_name": "Netflix/Raigad",
"id": "d07be4e29e12781233b1b9e0f07d7f1ac26fa724",
"size": "1465",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "raigad/src/main/java/com/netflix/raigad/objectmapper/DefaultMasterNodeInfoMapper.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Java",
"bytes": "566915"
},
{
"name": "Shell",
"bytes": "2125"
}
],
"symlink_target": ""
} |
import { EventEmitter } from 'events';
import { Meteor } from 'meteor/meteor';
import { Random } from 'meteor/random';
import { EJSON } from 'meteor/ejson';
import { Log } from 'meteor/logging';
import { settings } from '../../settings';
import notifications from '../../notifications/server/lib/Notifications';
export const processString = function(string, date) {
let obj;
try {
if (string[0] === '{') {
obj = EJSON.parse(string);
} else {
obj = {
message: string,
time: date,
level: 'info',
};
}
return Log.format(obj, { color: true });
} catch (error) {
return string;
}
};
export const StdOut = new class extends EventEmitter {
constructor() {
super();
const { write } = process.stdout;
this.queue = [];
process.stdout.write = (...args) => {
write.apply(process.stdout, args);
const date = new Date();
const string = processString(args[0], date);
const item = {
id: Random.id(),
string,
ts: date,
};
this.queue.push(item);
const limit = settings.get('Log_View_Limit') || 1000;
if (limit && this.queue.length > limit) {
this.queue.shift();
}
this.emit('write', string, item);
};
}
}();
Meteor.startup(() => {
const handler = (string, item) => {
// TODO having this as 'emitWithoutBroadcast' will not sent this data to ddp-streamer, so this data
// won't be available when using micro services.
notifications.streamStdout.emitWithoutBroadcast('stdout', {
...item,
});
};
// do not emit to StdOut if moleculer log level set to debug because it creates an infinite loop
if (String(process.env.MOLECULER_LOG_LEVEL).toLowerCase() !== 'debug') {
StdOut.on('write', handler);
}
});
| {
"content_hash": "b45ce02576330270fe2f10532f9cc3e4",
"timestamp": "",
"source": "github",
"line_count": 68,
"max_line_length": 101,
"avg_line_length": 24.970588235294116,
"alnum_prop": 0.6336866902237926,
"repo_name": "VoiSmart/Rocket.Chat",
"id": "3bff9032aafbe039cc9dffa9100b3f45d345a69e",
"size": "1698",
"binary": false,
"copies": "2",
"ref": "refs/heads/ng_integration",
"path": "app/logger/server/streamer.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Batchfile",
"bytes": "549"
},
{
"name": "CSS",
"bytes": "818469"
},
{
"name": "Dockerfile",
"bytes": "1895"
},
{
"name": "HTML",
"bytes": "701096"
},
{
"name": "JavaScript",
"bytes": "5470868"
},
{
"name": "Shell",
"bytes": "25172"
},
{
"name": "Smarty",
"bytes": "1052"
},
{
"name": "Standard ML",
"bytes": "1843"
}
],
"symlink_target": ""
} |
<?php
?>
<?php include("includes/header.php"); ?>
<div id="content">
<h6 class="clear">Diary</h6>
<div class="thumbnail"><a href="images/yoga.png" rel="lightbox[diary]" title="Yoga"><img src="images/yoga_thumb.png" height="46px" width="42px" alt="Yoga" /></a></div>
<div class="thumbnail"><a href="images/diary13.png" rel="lightbox[diary]" title="Ink Week"><img src="images/diary13_thumb.png" height="46px" width="42px" alt="Ink Week" /></a></div>
<div class="thumbnail"><a href="images/diary11.png" rel="lightbox[diary]" title="Ignorance"><img src="images/diary11_thumb.png" height="46px" width="42px" alt="Ignorance" /></a></div>
<h6 class="clear">Watercolor</h6>
<div class="thumbnail"><a href="images/dino_batman.png" rel="lightbox[watercolor]" title="Watercolor Dino"><img src="images/dino_batman_thumb.png" height="46px" width="42px" alt="Watercolor Dino" /></a></div>
<div class="thumbnail"><a href="images/euoplocephalus_batman.png" rel="lightbox[watercolor]" title="Watercolor Dino"><img src="images/euoplocephalus_batman_thumb.png" height="46px" width="42px" alt="Watercolor Dino" /></a></div>
</div>
<?php include("includes/footer.php"); ?> | {
"content_hash": "df913f531dedc7223606b1c880f6a023",
"timestamp": "",
"source": "github",
"line_count": 14,
"max_line_length": 232,
"avg_line_length": 84.78571428571429,
"alnum_prop": 0.6798652064026959,
"repo_name": "donnasaur/portfolio",
"id": "bc4060ee2c7eda84d62c14f025cd357b1b498b7d",
"size": "1412",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "sketchbook.php",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "JavaScript",
"bytes": "44479"
},
{
"name": "PHP",
"bytes": "25131"
}
],
"symlink_target": ""
} |
Convolve
========
.. automodule:: sdf.convolve
:members: | {
"content_hash": "2fa304ff3937089397622f2bc1c6440a",
"timestamp": "",
"source": "github",
"line_count": 5,
"max_line_length": 28,
"avg_line_length": 12,
"alnum_prop": 0.6,
"repo_name": "drgmk/sdf",
"id": "837bce221fb3484004c8de139b8e2cbce8e7015b",
"size": "60",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "docs/convolve.rst",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "HTML",
"bytes": "9390"
},
{
"name": "IDL",
"bytes": "2187"
},
{
"name": "Python",
"bytes": "474584"
}
],
"symlink_target": ""
} |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Attribute542643598.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Collections.WriteOnlyAttribute
struct WriteOnlyAttribute_t14323075 : public Attribute_t542643598
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| {
"content_hash": "cadc45b07977593a19455166649a5833",
"timestamp": "",
"source": "github",
"line_count": 35,
"max_line_length": 67,
"avg_line_length": 15.485714285714286,
"alnum_prop": 0.7546125461254612,
"repo_name": "WestlakeAPC/unity-game",
"id": "1643507d96560064ec6d111db26eb7f8242e4c20",
"size": "544",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "Xcode Project/Classes/Native/UnityEngine_UnityEngine_Collections_WriteOnlyAttribu14323075.h",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "C",
"bytes": "2203895"
},
{
"name": "C++",
"bytes": "30788244"
},
{
"name": "Objective-C",
"bytes": "60881"
},
{
"name": "Objective-C++",
"bytes": "297711"
},
{
"name": "Shell",
"bytes": "1736"
}
],
"symlink_target": ""
} |
def allLongestStrings(in_array):
# Given an array of strings, return another containing only
# the longest strings (all strings with longest length equal).
lengths = [(len(str), str) for str in in_array]
max_len = max(lengths)
# Filter only lengths of strings with same length as max.
# These tuples will also contain the original string, in
# the same originally occurring order.
res = filter(lambda x: x[0] == max_len[0], lengths)
# Return just the string part of the filtered tuples.
return list(map(lambda x: x[1], res))
| {
"content_hash": "0a54281006b176221ec8fae9ca5691cf",
"timestamp": "",
"source": "github",
"line_count": 12,
"max_line_length": 66,
"avg_line_length": 47.166666666666664,
"alnum_prop": 0.6908127208480566,
"repo_name": "Zubieta/CPP",
"id": "5eb1108fab75a71f9204b17a3582bc357cbe4cd1",
"size": "634",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "CodeSignal/Arcade/Intro/Level_03/01_All_Longest_Strings.py",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "C++",
"bytes": "290798"
}
],
"symlink_target": ""
} |
<?xml version="1.0" encoding="UTF-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5.0dip" />
<gradient android:startColor="#656666" android:endColor="#dbdedf" android:angle="270.0" android:centerY="0.75" android:centerColor="#bbbbbc" />
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="8.0dip" />
<gradient android:startColor="#e71a5e" android:endColor="#6c213a" android:angle="90.0" android:centerY="0.75" android:centerColor="#ac6079" />
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="8.0dip" />
<gradient android:startColor="#464647" android:endColor="#2d9ae7" android:angle="270.0" />
</shape>
</clip>
</item>
</layer-list> | {
"content_hash": "ae2f11bd1fba4c835123a969299f6921",
"timestamp": "",
"source": "github",
"line_count": 27,
"max_line_length": 158,
"avg_line_length": 39.7037037037037,
"alnum_prop": 0.566231343283582,
"repo_name": "zoozooll/MyExercise",
"id": "a15404f97a47e7dc106c1334fed132e7f45d3ea4",
"size": "1072",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "meep/MeepStore2/res/drawable/progressbar.xml",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "C",
"bytes": "1495689"
},
{
"name": "C#",
"bytes": "190108"
},
{
"name": "C++",
"bytes": "8719269"
},
{
"name": "CMake",
"bytes": "46692"
},
{
"name": "CSS",
"bytes": "149067"
},
{
"name": "GLSL",
"bytes": "1069"
},
{
"name": "HTML",
"bytes": "5933291"
},
{
"name": "Java",
"bytes": "20935928"
},
{
"name": "JavaScript",
"bytes": "420263"
},
{
"name": "Kotlin",
"bytes": "13567"
},
{
"name": "Makefile",
"bytes": "40498"
},
{
"name": "Objective-C",
"bytes": "1149532"
},
{
"name": "Objective-C++",
"bytes": "248482"
},
{
"name": "Python",
"bytes": "23625"
},
{
"name": "RenderScript",
"bytes": "3899"
},
{
"name": "Shell",
"bytes": "18962"
},
{
"name": "TSQL",
"bytes": "184481"
}
],
"symlink_target": ""
} |
package eais
//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.
//
// Code generated by Alibaba Cloud SDK Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
// Regions is a nested struct in eais response
type Regions struct {
Region []Region `json:"Region" xml:"Region"`
}
| {
"content_hash": "f4b71a15a33e823310a9f414f0d7d984",
"timestamp": "",
"source": "github",
"line_count": 21,
"max_line_length": 84,
"avg_line_length": 38.904761904761905,
"alnum_prop": 0.7600979192166463,
"repo_name": "aliyun/alibaba-cloud-sdk-go",
"id": "94ad6017e2fb929fc00063bf7256fd1d03e83358",
"size": "817",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "services/eais/struct_regions.go",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Go",
"bytes": "734307"
},
{
"name": "Makefile",
"bytes": "183"
}
],
"symlink_target": ""
} |
ACCEPTED
#### According to
Index Fungorum
#### Published in
null
#### Original name
Cylindrocolla tenuis P. Karst.
### Remarks
null | {
"content_hash": "e4882129f8d3fb1d256b4b6e1edd56a7",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 30,
"avg_line_length": 10.384615384615385,
"alnum_prop": 0.7037037037037037,
"repo_name": "mdoering/backbone",
"id": "0d18fe70e6dddeac5f7973d3a9d17363f38a96c1",
"size": "189",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "life/Fungi/Ascomycota/Leotiomycetes/Helotiales/Cylindrocolla/Cylindrocolla tenuis/README.md",
"mode": "33188",
"license": "apache-2.0",
"language": [],
"symlink_target": ""
} |
package org.apache.directory.server.core.partition.impl.btree.jdbm;
import java.io.IOException;
import jdbm.helper.Serializer;
import org.apache.directory.api.util.Strings;
/**
* A custom String serializer to [de]serialize Strings.
*
* @author <a href="mailto:[email protected]">Apache Directory Project</a>
*/
public final class StringSerializer implements Serializer
{
private static final long serialVersionUID = -173163945773783649L;
/** A static instance of a StringSerializer */
public static final StringSerializer INSTANCE = new StringSerializer();
/**
* Default private constructor
*/
private StringSerializer()
{
}
/* (non-Javadoc)
* @see jdbm.helper.Serializer#deserialize(byte[])
*/
public Object deserialize( byte[] bytes ) throws IOException
{
if ( bytes.length == 0 )
{
return "";
}
char[] strchars = new char[bytes.length >> 1];
int pos = 0;
for ( int i = 0; i < bytes.length; i += 2 )
{
strchars[pos++] = ( char ) ( ( ( bytes[i] << 8 ) & 0x0000FF00 ) | ( bytes[i + 1] & 0x000000FF ) );
}
return new String( strchars );
}
/* (non-Javadoc)
* @see jdbm.helper.Serializer#serialize(java.lang.Object)
*/
public byte[] serialize( Object str ) throws IOException
{
if ( ( ( String ) str ).length() == 0 )
{
return Strings.EMPTY_BYTES;
}
char[] strchars = ( ( String ) str ).toCharArray();
byte[] bites = new byte[strchars.length << 1];
int pos = 0;
for ( char c : strchars )
{
bites[pos++] = ( byte ) ( c >> 8 & 0x00FF );
bites[pos++] = ( byte ) ( c & 0x00FF );
}
return bites;
}
}
| {
"content_hash": "cf16fbce8c1abdad7a31e296ad5fbfdd",
"timestamp": "",
"source": "github",
"line_count": 77,
"max_line_length": 110,
"avg_line_length": 23.7012987012987,
"alnum_prop": 0.5621917808219178,
"repo_name": "drankye/directory-server",
"id": "67853b17e32a054fcddc4a27520d01f889f2903d",
"size": "2656",
"binary": false,
"copies": "3",
"ref": "refs/heads/trunk",
"path": "jdbm-partition/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/StringSerializer.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Batchfile",
"bytes": "4590"
},
{
"name": "Java",
"bytes": "13237996"
},
{
"name": "NSIS",
"bytes": "19538"
},
{
"name": "Shell",
"bytes": "95348"
}
],
"symlink_target": ""
} |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>sniffy-parent</artifactId>
<groupId>io.sniffy</groupId>
<version>3.1.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sniffy-module-nio</artifactId>
<name>Sniffy NIO Module</name>
<url>http://sniffy.io/</url>
<description>Sniffy NIO Module</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
</properties>
<dependencies>
<dependency>
<groupId>io.sniffy</groupId>
<artifactId>sniffy-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.sniffy</groupId>
<artifactId>sniffy-core</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>jdk9plus</id>
<activation>
<activeByDefault>false</activeByDefault>
<jdk>[1.9,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<compilerArgs>
<arg>--add-exports=java.base/sun.nio.ch=ALL-UNNAMED</arg>
</compilerArgs>
<source>1.9</source>
<target>1.9</target>
<testSource>1.9</testSource>
<testTarget>1.9</testTarget>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project> | {
"content_hash": "15c77266fb8fe1df1ae91c73d8a30e7a",
"timestamp": "",
"source": "github",
"line_count": 68,
"max_line_length": 131,
"avg_line_length": 35.1764705882353,
"alnum_prop": 0.5179765886287625,
"repo_name": "bedrin/jdbc-sniffer",
"id": "685e5a78b95c6f40525da39c78608fd8042a899b",
"size": "2392",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "sniffy-module-nio/pom.xml",
"mode": "33188",
"license": "bsd-3-clause",
"language": [
{
"name": "Groovy",
"bytes": "909"
},
{
"name": "Java",
"bytes": "257341"
}
],
"symlink_target": ""
} |
using System;
using Microsoft.Data.Entity;
using Microsoft.Data.Entity.Infrastructure;
namespace Pyrotech.IdentityServer3.AspNetIdentity3.EntityFramework7.DbContexts
{
public abstract class BaseDbContext : DbContext
{
protected BaseDbContext(DbContextOptions options)
: base(options)
{
}
protected BaseDbContext(IServiceProvider provider)
: base(provider)
{
}
protected BaseDbContext(IServiceProvider provider, DbContextOptions options)
: base(provider,options)
{
}
}
} | {
"content_hash": "ea04728060237d85ffdc44b3fe511c04",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 84,
"avg_line_length": 24.708333333333332,
"alnum_prop": 0.6559865092748736,
"repo_name": "Bartthefish/PyrotechIdsrv3",
"id": "f2c643ad23d0ff8e0ff96243d810a799e50f61e0",
"size": "595",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "source/Pyrotech.IdentityServer3.AspNetIdentity3.EntityFramework7/DbContexts/BaseDbContext.cs",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "C#",
"bytes": "71107"
}
],
"symlink_target": ""
} |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.casadocodigo</groupId>
<artifactId>casadocodigo</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<finalName>casadocodigo</finalName>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/milestone</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-servlet-api</artifactId>
<version>7.0.30</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jstl-impl</artifactId>
<version>1.2</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.6.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<scope>runtime</scope>
</dependency>
<!-- configuracao jpa e driver -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.3.0.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.3.0.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.0.Final</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>4.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.1.0.Final</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.15</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.5.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.5.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.5.4</version>
</dependency>
<!-- Cache -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>4.1.0.RELEASE</version>
</dependency>
<!-- Spring Security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>4.0.0.M2</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>4.0.0.M2</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>4.0.0.M2</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>4.0.0.M2</version>
</dependency>
<!-- Testes com Spring -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.1.0.RELEASE</version>
</dependency>
</dependencies>
</project> | {
"content_hash": "4ba90e48bea2162416216a5446a98d51",
"timestamp": "",
"source": "github",
"line_count": 229,
"max_line_length": 104,
"avg_line_length": 25.16593886462882,
"alnum_prop": 0.6906125281971196,
"repo_name": "tuliof/fj-27",
"id": "1f52ec251038b39b90db19497d65804d45dc71f5",
"size": "5763",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "pom.xml",
"mode": "33261",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "31653"
},
{
"name": "Java",
"bytes": "67681"
}
],
"symlink_target": ""
} |
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/docnet.iml" filepath="$PROJECT_DIR$/.idea/docnet.iml" />
</modules>
</component>
</project>
| {
"content_hash": "257e130a026eb6fc44bd4d1afa29d0d1",
"timestamp": "",
"source": "github",
"line_count": 9,
"max_line_length": 106,
"avg_line_length": 29.555555555555557,
"alnum_prop": 0.650375939849624,
"repo_name": "kevstessens/docnetrails",
"id": "27555400445f47d3fd67f9d7e3b0f254ef6114a4",
"size": "266",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": ".idea/modules.xml",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "100801"
},
{
"name": "CoffeeScript",
"bytes": "3893"
},
{
"name": "JavaScript",
"bytes": "282009"
},
{
"name": "Ruby",
"bytes": "100228"
}
],
"symlink_target": ""
} |
namespace Network_Manager.Gadget.ControlPanel.InterfacePerformance
{
partial class InterfacePerformanceForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InterfacePerformanceForm));
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(303, 350);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(12, 12);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox1.Size = new System.Drawing.Size(645, 332);
this.textBox1.TabIndex = 1;
//
// InterfacePerformanceForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(669, 385);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "InterfacePerformanceForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Interface Performance";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
}
} | {
"content_hash": "efb49d9a2f0b4332249cb56efc0ce57b",
"timestamp": "",
"source": "github",
"line_count": 76,
"max_line_length": 156,
"avg_line_length": 40.723684210526315,
"alnum_prop": 0.5751211631663974,
"repo_name": "SortByte/Network-Manager",
"id": "983664675cd4b5db0c5393d9fa692745cc791c49",
"size": "3097",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "Network_Manager/Gadget/ControlPanel/InterfacePerformance/InterfacePerformanceForm.Designer.cs",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Batchfile",
"bytes": "220"
},
{
"name": "C",
"bytes": "3032"
},
{
"name": "C#",
"bytes": "924881"
},
{
"name": "C++",
"bytes": "32419"
}
],
"symlink_target": ""
} |
declare namespace __React {
//
// React Elements
// ----------------------------------------------------------------------
type ReactType = ComponentClass<any> | string;
interface ReactElement<P> {
type: string | ComponentClass<P>;
props: P;
key: string | number;
ref: string | ((component: Component<P, any>) => any);
}
interface ClassicElement<P> extends ReactElement<P> {
type: string | ClassicComponentClass<P>;
ref: string | ((component: ClassicComponent<P, any>) => any);
}
interface DOMElement<P> extends ClassicElement<P> {
type: string;
ref: string | ((component: DOMComponent<P>) => any);
}
type HTMLElement = DOMElement<HTMLAttributes>;
type SVGElement = DOMElement<SVGAttributes>;
//
// Factories
// ----------------------------------------------------------------------
interface Factory<P> {
(props?: P, ...children: ReactNode[]): ReactElement<P>;
}
interface ClassicFactory<P> extends Factory<P> {
(props?: P, ...children: ReactNode[]): ClassicElement<P>;
}
interface DOMFactory<P> extends ClassicFactory<P> {
(props?: P, ...children: ReactNode[]): DOMElement<P>;
}
type HTMLFactory = DOMFactory<HTMLAttributes>;
type SVGFactory = DOMFactory<SVGAttributes>;
type SVGElementFactory = DOMFactory<SVGElementAttributes>;
//
// React Nodes
// http://facebook.github.io/react/docs/glossary.html
// ----------------------------------------------------------------------
type ReactText = string | number;
type ReactChild = ReactElement<any> | ReactText;
// Should be Array<ReactNode> but type aliases cannot be recursive
type ReactFragment = {} | Array<ReactChild | any[] | boolean>;
type ReactNode = ReactChild | ReactFragment | boolean;
//
// Top Level API
// ----------------------------------------------------------------------
function createClass<P, S>(spec: ComponentSpec<P, S>): ClassicComponentClass<P>;
function createFactory<P>(type: string): DOMFactory<P>;
function createFactory<P>(type: ClassicComponentClass<P> | string): ClassicFactory<P>;
function createFactory<P>(type: ComponentClass<P>): Factory<P>;
function createElement<P>(
type: string,
props?: P,
...children: ReactNode[]): DOMElement<P>;
function createElement<P>(
type: ClassicComponentClass<P> | string,
props?: P,
...children: ReactNode[]): ClassicElement<P>;
function createElement<P>(
type: ComponentClass<P>,
props?: P,
...children: ReactNode[]): ReactElement<P>;
function cloneElement<P>(
element: DOMElement<P>,
props?: P,
...children: ReactNode[]): DOMElement<P>;
function cloneElement<P>(
element: ClassicElement<P>,
props?: P,
...children: ReactNode[]): ClassicElement<P>;
function cloneElement<P>(
element: ReactElement<P>,
props?: P,
...children: ReactNode[]): ReactElement<P>;
function render<P>(
element: DOMElement<P>,
container: Element,
callback?: () => any): DOMComponent<P>;
function render<P, S>(
element: ClassicElement<P>,
container: Element,
callback?: () => any): ClassicComponent<P, S>;
function render<P, S>(
element: ReactElement<P>,
container: Element,
callback?: () => any): Component<P, S>;
function unmountComponentAtNode(container: Element): boolean;
function renderToString(element: ReactElement<any>): string;
function renderToStaticMarkup(element: ReactElement<any>): string;
function isValidElement(object: {}): boolean;
function initializeTouchEvents(shouldUseTouch: boolean): void;
function findDOMNode<TElement extends Element>(
componentOrElement: Component<any, any> | Element): TElement;
function findDOMNode(
componentOrElement: Component<any, any> | Element): Element;
var DOM: ReactDOM;
var PropTypes: ReactPropTypes;
var Children: ReactChildren;
//
// Component API
// ----------------------------------------------------------------------
// Base component for plain JS classes
class Component<P, S> implements ComponentLifecycle<P, S> {
static propTypes: ValidationMap<any>;
static contextTypes: ValidationMap<any>;
static childContextTypes: ValidationMap<any>;
static defaultProps: Props<any>;
constructor(props?: P, context?: any);
setState(f: (prevState: S, props: P) => S, callback?: () => any): void;
setState(state: S, callback?: () => any): void;
forceUpdate(callBack?: () => any): void;
render(): JSX.Element;
props: P;
state: S;
context: {};
refs: {
[key: string]: Component<any, any>
};
}
interface ClassicComponent<P, S> extends Component<P, S> {
replaceState(nextState: S, callback?: () => any): void;
getDOMNode<TElement extends Element>(): TElement;
getDOMNode(): Element;
isMounted(): boolean;
getInitialState?(): S;
setProps(nextProps: P, callback?: () => any): void;
replaceProps(nextProps: P, callback?: () => any): void;
}
interface DOMComponent<P> extends ClassicComponent<P, any> {
tagName: string;
}
type HTMLComponent = DOMComponent<HTMLAttributes>;
type SVGComponent = DOMComponent<SVGAttributes>;
interface ChildContextProvider<CC> {
getChildContext(): CC;
}
//
// Class Interfaces
// ----------------------------------------------------------------------
interface ComponentClass<P> {
new (props?: P, context?: any): Component<P, any>;
propTypes?: ValidationMap<P>;
contextTypes?: ValidationMap<any>;
childContextTypes?: ValidationMap<any>;
defaultProps?: P;
}
interface ClassicComponentClass<P> extends ComponentClass<P> {
new (props?: P, context?: any): ClassicComponent<P, any>;
getDefaultProps?(): P;
displayName?: string;
}
//
// Component Specs and Lifecycle
// ----------------------------------------------------------------------
interface ComponentLifecycle<P, S> {
componentWillMount?(): void;
componentDidMount?(): void;
componentWillReceiveProps?(nextProps: P, nextContext: any): void;
shouldComponentUpdate?(nextProps: P, nextState: S, nextContext: any): boolean;
componentWillUpdate?(nextProps: P, nextState: S, nextContext: any): void;
componentDidUpdate?(prevProps: P, prevState: S, prevContext: any): void;
componentWillUnmount?(): void;
}
interface Mixin<P, S> extends ComponentLifecycle<P, S> {
mixins?: Mixin<P, S>;
statics?: {
[key: string]: any;
};
displayName?: string;
propTypes?: ValidationMap<any>;
contextTypes?: ValidationMap<any>;
childContextTypes?: ValidationMap<any>
getDefaultProps?(): P;
getInitialState?(): S;
}
interface ComponentSpec<P, S> extends Mixin<P, S> {
render(): ReactElement<any>;
[propertyName: string]: any;
}
//
// Event System
// ----------------------------------------------------------------------
interface SyntheticEvent {
bubbles: boolean;
cancelable: boolean;
currentTarget: EventTarget;
defaultPrevented: boolean;
eventPhase: number;
isTrusted: boolean;
nativeEvent: Event;
preventDefault(): void;
stopPropagation(): void;
target: EventTarget;
timeStamp: Date;
type: string;
}
interface DragEvent extends SyntheticEvent {
dataTransfer: DataTransfer;
}
interface ClipboardEvent extends SyntheticEvent {
clipboardData: DataTransfer;
}
interface KeyboardEvent extends SyntheticEvent {
altKey: boolean;
charCode: number;
ctrlKey: boolean;
getModifierState(key: string): boolean;
key: string;
keyCode: number;
locale: string;
location: number;
metaKey: boolean;
repeat: boolean;
shiftKey: boolean;
which: number;
}
interface FocusEvent extends SyntheticEvent {
relatedTarget: EventTarget;
}
interface FormEvent extends SyntheticEvent {
}
interface MouseEvent extends SyntheticEvent {
altKey: boolean;
button: number;
buttons: number;
clientX: number;
clientY: number;
ctrlKey: boolean;
getModifierState(key: string): boolean;
metaKey: boolean;
pageX: number;
pageY: number;
relatedTarget: EventTarget;
screenX: number;
screenY: number;
shiftKey: boolean;
}
interface TouchEvent extends SyntheticEvent {
altKey: boolean;
changedTouches: TouchList;
ctrlKey: boolean;
getModifierState(key: string): boolean;
metaKey: boolean;
shiftKey: boolean;
targetTouches: TouchList;
touches: TouchList;
}
interface UIEvent extends SyntheticEvent {
detail: number;
view: AbstractView;
}
interface WheelEvent extends SyntheticEvent {
deltaMode: number;
deltaX: number;
deltaY: number;
deltaZ: number;
}
//
// Event Handler Types
// ----------------------------------------------------------------------
interface EventHandler<E extends SyntheticEvent> {
(event: E): void;
}
interface DragEventHandler extends EventHandler<DragEvent> { }
interface ClipboardEventHandler extends EventHandler<ClipboardEvent> { }
interface KeyboardEventHandler extends EventHandler<KeyboardEvent> { }
interface FocusEventHandler extends EventHandler<FocusEvent> { }
interface FormEventHandler extends EventHandler<FormEvent> { }
interface MouseEventHandler extends EventHandler<MouseEvent> { }
interface TouchEventHandler extends EventHandler<TouchEvent> { }
interface UIEventHandler extends EventHandler<UIEvent> { }
interface WheelEventHandler extends EventHandler<WheelEvent> { }
//
// Props / DOM Attributes
// ----------------------------------------------------------------------
interface Props<T> {
children?: ReactNode;
key?: string | number;
ref?: string | ((component: T) => any);
}
interface DOMAttributesBase<T> extends Props<T> {
onCopy?: ClipboardEventHandler;
onCut?: ClipboardEventHandler;
onPaste?: ClipboardEventHandler;
onKeyDown?: KeyboardEventHandler;
onKeyPress?: KeyboardEventHandler;
onKeyUp?: KeyboardEventHandler;
onFocus?: FocusEventHandler;
onBlur?: FocusEventHandler;
onChange?: FormEventHandler;
onInput?: FormEventHandler;
onSubmit?: FormEventHandler;
onClick?: MouseEventHandler;
onContextMenu?: MouseEventHandler;
onDoubleClick?: MouseEventHandler;
onDrag?: DragEventHandler;
onDragEnd?: DragEventHandler;
onDragEnter?: DragEventHandler;
onDragExit?: DragEventHandler;
onDragLeave?: DragEventHandler;
onDragOver?: DragEventHandler;
onDragStart?: DragEventHandler;
onDrop?: DragEventHandler;
onMouseDown?: MouseEventHandler;
onMouseEnter?: MouseEventHandler;
onMouseLeave?: MouseEventHandler;
onMouseMove?: MouseEventHandler;
onMouseOut?: MouseEventHandler;
onMouseOver?: MouseEventHandler;
onMouseUp?: MouseEventHandler;
onTouchCancel?: TouchEventHandler;
onTouchEnd?: TouchEventHandler;
onTouchMove?: TouchEventHandler;
onTouchStart?: TouchEventHandler;
onScroll?: UIEventHandler;
onWheel?: WheelEventHandler;
className?: string;
id?: string;
dangerouslySetInnerHTML?: {
__html: string;
};
}
interface DOMAttributes extends DOMAttributesBase<DOMComponent<any>> {
}
// This interface is not complete. Only properties accepting
// unitless numbers are listed here (see CSSProperty.js in React)
interface CSSProperties {
boxFlex?: number;
boxFlexGroup?: number;
columnCount?: number;
flex?: number | string;
flexGrow?: number;
flexShrink?: number;
fontWeight?: number | string;
lineClamp?: number;
lineHeight?: number | string;
opacity?: number;
order?: number;
orphans?: number;
widows?: number;
zIndex?: number;
zoom?: number;
fontSize?: number | string;
// SVG-related properties
fillOpacity?: number;
strokeOpacity?: number;
strokeWidth?: number;
[propertyName: string]: any;
}
interface HTMLAttributesBase<T> extends DOMAttributesBase<T> {
accept?: string;
acceptCharset?: string;
accessKey?: string;
action?: string;
allowFullScreen?: boolean;
allowTransparency?: boolean;
alt?: string;
async?: boolean;
autoComplete?: string;
autoFocus?: boolean;
autoPlay?: boolean;
cellPadding?: number | string;
cellSpacing?: number | string;
charSet?: string;
checked?: boolean;
classID?: string;
cols?: number;
colSpan?: number;
content?: string;
contentEditable?: boolean;
contextMenu?: string;
controls?: any;
coords?: string;
crossOrigin?: string;
data?: string;
dateTime?: string;
defaultChecked?: boolean;
defaultValue?: string;
defer?: boolean;
dir?: string;
disabled?: boolean;
download?: any;
draggable?: boolean;
encType?: string;
form?: string;
formAction?: string;
formEncType?: string;
formMethod?: string;
formNoValidate?: boolean;
formTarget?: string;
frameBorder?: number | string;
headers?: string;
height?: number | string;
hidden?: boolean;
high?: number;
href?: string;
hrefLang?: string;
htmlFor?: string;
httpEquiv?: string;
icon?: string;
label?: string;
lang?: string;
list?: string;
loop?: boolean;
low?: number;
manifest?: string;
marginHeight?: number;
marginWidth?: number;
max?: number | string;
maxLength?: number;
media?: string;
mediaGroup?: string;
method?: string;
min?: number | string;
multiple?: boolean;
muted?: boolean;
name?: string;
noValidate?: boolean;
open?: boolean;
optimum?: number;
pattern?: string;
placeholder?: string;
poster?: string;
preload?: string;
radioGroup?: string;
readOnly?: boolean;
rel?: string;
required?: boolean;
role?: string;
rows?: number;
rowSpan?: number;
sandbox?: string;
scope?: string;
scoped?: boolean;
scrolling?: string;
seamless?: boolean;
selected?: boolean;
shape?: string;
size?: number;
sizes?: string;
span?: number;
spellCheck?: boolean;
src?: string;
srcDoc?: string;
srcSet?: string;
start?: number;
step?: number | string;
style?: CSSProperties;
tabIndex?: number;
target?: string;
title?: string;
type?: string;
useMap?: string;
value?: string;
width?: number | string;
wmode?: string;
// Non-standard Attributes
autoCapitalize?: boolean;
autoCorrect?: boolean;
property?: string;
itemProp?: string;
itemScope?: boolean;
itemType?: string;
unselectable?: boolean;
}
interface HTMLAttributes extends HTMLAttributesBase<HTMLComponent> {
}
interface SVGElementAttributes extends HTMLAttributes {
viewBox?: string;
preserveAspectRatio?: string;
}
interface SVGAttributes extends DOMAttributes {
ref?: string | ((component: SVGComponent) => void);
cx?: number | string;
cy?: number | string;
d?: string;
dx?: number | string;
dy?: number | string;
fill?: string;
fillOpacity?: number | string;
fontFamily?: string;
fontSize?: number | string;
fx?: number | string;
fy?: number | string;
gradientTransform?: string;
gradientUnits?: string;
height?: number | string;
markerEnd?: string;
markerMid?: string;
markerStart?: string;
offset?: number | string;
opacity?: number | string;
patternContentUnits?: string;
patternUnits?: string;
points?: string;
preserveAspectRatio?: string;
r?: number | string;
rx?: number | string;
ry?: number | string;
spreadMethod?: string;
stopColor?: string;
stopOpacity?: number | string;
stroke?: string;
strokeDasharray?: string;
strokeLinecap?: string;
strokeMiterlimit?: string;
strokeOpacity?: number | string;
strokeWidth?: number | string;
textAnchor?: string;
transform?: string;
version?: string;
viewBox?: string;
width?: number | string;
x1?: number | string;
x2?: number | string;
x?: number | string;
y1?: number | string;
y2?: number | string
y?: number | string;
}
//
// React.DOM
// ----------------------------------------------------------------------
interface ReactDOM {
// HTML
a: HTMLFactory;
abbr: HTMLFactory;
address: HTMLFactory;
area: HTMLFactory;
article: HTMLFactory;
aside: HTMLFactory;
audio: HTMLFactory;
b: HTMLFactory;
base: HTMLFactory;
bdi: HTMLFactory;
bdo: HTMLFactory;
big: HTMLFactory;
blockquote: HTMLFactory;
body: HTMLFactory;
br: HTMLFactory;
button: HTMLFactory;
canvas: HTMLFactory;
caption: HTMLFactory;
cite: HTMLFactory;
code: HTMLFactory;
col: HTMLFactory;
colgroup: HTMLFactory;
data: HTMLFactory;
datalist: HTMLFactory;
dd: HTMLFactory;
del: HTMLFactory;
details: HTMLFactory;
dfn: HTMLFactory;
dialog: HTMLFactory;
div: HTMLFactory;
dl: HTMLFactory;
dt: HTMLFactory;
em: HTMLFactory;
embed: HTMLFactory;
fieldset: HTMLFactory;
figcaption: HTMLFactory;
figure: HTMLFactory;
footer: HTMLFactory;
form: HTMLFactory;
h1: HTMLFactory;
h2: HTMLFactory;
h3: HTMLFactory;
h4: HTMLFactory;
h5: HTMLFactory;
h6: HTMLFactory;
head: HTMLFactory;
header: HTMLFactory;
hr: HTMLFactory;
html: HTMLFactory;
i: HTMLFactory;
iframe: HTMLFactory;
img: HTMLFactory;
input: HTMLFactory;
ins: HTMLFactory;
kbd: HTMLFactory;
keygen: HTMLFactory;
label: HTMLFactory;
legend: HTMLFactory;
li: HTMLFactory;
link: HTMLFactory;
main: HTMLFactory;
map: HTMLFactory;
mark: HTMLFactory;
menu: HTMLFactory;
menuitem: HTMLFactory;
meta: HTMLFactory;
meter: HTMLFactory;
nav: HTMLFactory;
noscript: HTMLFactory;
object: HTMLFactory;
ol: HTMLFactory;
optgroup: HTMLFactory;
option: HTMLFactory;
output: HTMLFactory;
p: HTMLFactory;
param: HTMLFactory;
picture: HTMLFactory;
pre: HTMLFactory;
progress: HTMLFactory;
q: HTMLFactory;
rp: HTMLFactory;
rt: HTMLFactory;
ruby: HTMLFactory;
s: HTMLFactory;
samp: HTMLFactory;
script: HTMLFactory;
section: HTMLFactory;
select: HTMLFactory;
small: HTMLFactory;
source: HTMLFactory;
span: HTMLFactory;
strong: HTMLFactory;
style: HTMLFactory;
sub: HTMLFactory;
summary: HTMLFactory;
sup: HTMLFactory;
table: HTMLFactory;
tbody: HTMLFactory;
td: HTMLFactory;
textarea: HTMLFactory;
tfoot: HTMLFactory;
th: HTMLFactory;
thead: HTMLFactory;
time: HTMLFactory;
title: HTMLFactory;
tr: HTMLFactory;
track: HTMLFactory;
u: HTMLFactory;
ul: HTMLFactory;
"var": HTMLFactory;
video: HTMLFactory;
wbr: HTMLFactory;
// SVG
svg: SVGElementFactory;
circle: SVGFactory;
defs: SVGFactory;
ellipse: SVGFactory;
g: SVGFactory;
line: SVGFactory;
linearGradient: SVGFactory;
mask: SVGFactory;
path: SVGFactory;
pattern: SVGFactory;
polygon: SVGFactory;
polyline: SVGFactory;
radialGradient: SVGFactory;
rect: SVGFactory;
stop: SVGFactory;
text: SVGFactory;
tspan: SVGFactory;
}
//
// React.PropTypes
// ----------------------------------------------------------------------
interface Validator<T> {
(object: T, key: string, componentName: string): Error;
}
interface Requireable<T> extends Validator<T> {
isRequired: Validator<T>;
}
interface ValidationMap<T> {
[key: string]: Validator<T>;
}
interface ReactPropTypes {
any: Requireable<any>;
array: Requireable<any>;
bool: Requireable<any>;
func: Requireable<any>;
number: Requireable<any>;
object: Requireable<any>;
string: Requireable<any>;
node: Requireable<any>;
element: Requireable<any>;
instanceOf(expectedClass: {}): Requireable<any>;
oneOf(types: any[]): Requireable<any>;
oneOfType(types: Validator<any>[]): Requireable<any>;
arrayOf(type: Validator<any>): Requireable<any>;
objectOf(type: Validator<any>): Requireable<any>;
shape(type: ValidationMap<any>): Requireable<any>;
}
//
// React.Children
// ----------------------------------------------------------------------
interface ReactChildren {
map<T>(children: ReactNode, fn: (child: ReactChild, index: number) => T): { [key: string]: T };
forEach(children: ReactNode, fn: (child: ReactChild, index: number) => any): void;
count(children: ReactNode): number;
only(children: ReactNode): ReactChild;
}
//
// Browser Interfaces
// https://github.com/nikeee/2048-typescript/blob/master/2048/js/touch.d.ts
// ----------------------------------------------------------------------
interface AbstractView {
styleMedia: StyleMedia;
document: Document;
}
interface Touch {
identifier: number;
target: EventTarget;
screenX: number;
screenY: number;
clientX: number;
clientY: number;
pageX: number;
pageY: number;
}
interface TouchList {
[index: number]: Touch;
length: number;
item(index: number): Touch;
identifiedTouch(identifier: number): Touch;
}
}
declare module "react" {
export = __React;
}
declare module "react/addons" {
//
// React Elements
// ----------------------------------------------------------------------
type ReactType = ComponentClass<any> | string;
interface ReactElement<P> {
type: string | ComponentClass<P>;
props: P;
key: string | number;
ref: string | ((component: Component<P, any>) => any);
}
interface ClassicElement<P> extends ReactElement<P> {
type: string | ClassicComponentClass<P>;
ref: string | ((component: ClassicComponent<P, any>) => any);
}
interface DOMElement<P> extends ClassicElement<P> {
type: string;
ref: string | ((component: DOMComponent<P>) => any);
}
type HTMLElement = DOMElement<HTMLAttributes>;
type SVGElement = DOMElement<SVGAttributes>;
//
// Factories
// ----------------------------------------------------------------------
interface Factory<P> {
(props?: P, ...children: ReactNode[]): ReactElement<P>;
}
interface ClassicFactory<P> extends Factory<P> {
(props?: P, ...children: ReactNode[]): ClassicElement<P>;
}
interface DOMFactory<P> extends ClassicFactory<P> {
(props?: P, ...children: ReactNode[]): DOMElement<P>;
}
type HTMLFactory = DOMFactory<HTMLAttributes>;
type SVGFactory = DOMFactory<SVGAttributes>;
type SVGElementFactory = DOMFactory<SVGElementAttributes>;
//
// React Nodes
// http://facebook.github.io/react/docs/glossary.html
// ----------------------------------------------------------------------
type ReactText = string | number;
type ReactChild = ReactElement<any> | ReactText;
// Should be Array<ReactNode> but type aliases cannot be recursive
type ReactFragment = {} | Array<ReactChild | any[] | boolean>;
type ReactNode = ReactChild | ReactFragment | boolean;
//
// Top Level API
// ----------------------------------------------------------------------
function createClass<P, S>(spec: ComponentSpec<P, S>): ClassicComponentClass<P>;
function createFactory<P>(type: string): DOMFactory<P>;
function createFactory<P>(type: ClassicComponentClass<P> | string): ClassicFactory<P>;
function createFactory<P>(type: ComponentClass<P>): Factory<P>;
function createElement<P>(
type: string,
props?: P,
...children: ReactNode[]): DOMElement<P>;
function createElement<P>(
type: ClassicComponentClass<P> | string,
props?: P,
...children: ReactNode[]): ClassicElement<P>;
function createElement<P>(
type: ComponentClass<P>,
props?: P,
...children: ReactNode[]): ReactElement<P>;
function cloneElement<P>(
element: DOMElement<P>,
props?: P,
...children: ReactNode[]): DOMElement<P>;
function cloneElement<P>(
element: ClassicElement<P>,
props?: P,
...children: ReactNode[]): ClassicElement<P>;
function cloneElement<P>(
element: ReactElement<P>,
props?: P,
...children: ReactNode[]): ReactElement<P>;
function render<P>(
element: DOMElement<P>,
container: Element,
callback?: () => any): DOMComponent<P>;
function render<P, S>(
element: ClassicElement<P>,
container: Element,
callback?: () => any): ClassicComponent<P, S>;
function render<P, S>(
element: ReactElement<P>,
container: Element,
callback?: () => any): Component<P, S>;
function unmountComponentAtNode(container: Element): boolean;
function renderToString(element: ReactElement<any>): string;
function renderToStaticMarkup(element: ReactElement<any>): string;
function isValidElement(object: {}): boolean;
function initializeTouchEvents(shouldUseTouch: boolean): void;
function findDOMNode<TElement extends Element>(
componentOrElement: Component<any, any> | Element): TElement;
function findDOMNode(
componentOrElement: Component<any, any> | Element): Element;
var DOM: ReactDOM;
var PropTypes: ReactPropTypes;
var Children: ReactChildren;
//
// Component API
// ----------------------------------------------------------------------
// Base component for plain JS classes
class Component<P, S> implements ComponentLifecycle<P, S> {
static propTypes: ValidationMap<any>;
static contextTypes: ValidationMap<any>;
static childContextTypes: ValidationMap<any>;
static defaultProps: Props<any>;
constructor(props?: P, context?: any);
setState(f: (prevState: S, props: P) => S, callback?: () => any): void;
setState(state: S, callback?: () => any): void;
forceUpdate(callBack?: () => any): void;
render(): JSX.Element;
props: P;
state: S;
context: {};
refs: {
[key: string]: Component<any, any>
};
}
interface ClassicComponent<P, S> extends Component<P, S> {
replaceState(nextState: S, callback?: () => any): void;
getDOMNode<TElement extends Element>(): TElement;
getDOMNode(): Element;
isMounted(): boolean;
getInitialState?(): S;
setProps(nextProps: P, callback?: () => any): void;
replaceProps(nextProps: P, callback?: () => any): void;
}
interface DOMComponent<P> extends ClassicComponent<P, any> {
tagName: string;
}
type HTMLComponent = DOMComponent<HTMLAttributes>;
type SVGComponent = DOMComponent<SVGAttributes>;
interface ChildContextProvider<CC> {
getChildContext(): CC;
}
//
// Class Interfaces
// ----------------------------------------------------------------------
interface ComponentClass<P> {
new (props?: P, context?: any): Component<P, any>;
propTypes?: ValidationMap<P>;
contextTypes?: ValidationMap<any>;
childContextTypes?: ValidationMap<any>;
defaultProps?: P;
}
interface ClassicComponentClass<P> extends ComponentClass<P> {
new (props?: P, context?: any): ClassicComponent<P, any>;
getDefaultProps?(): P;
displayName?: string;
}
//
// Component Specs and Lifecycle
// ----------------------------------------------------------------------
interface ComponentLifecycle<P, S> {
componentWillMount?(): void;
componentDidMount?(): void;
componentWillReceiveProps?(nextProps: P, nextContext: any): void;
shouldComponentUpdate?(nextProps: P, nextState: S, nextContext: any): boolean;
componentWillUpdate?(nextProps: P, nextState: S, nextContext: any): void;
componentDidUpdate?(prevProps: P, prevState: S, prevContext: any): void;
componentWillUnmount?(): void;
}
interface Mixin<P, S> extends ComponentLifecycle<P, S> {
mixins?: Mixin<P, S>;
statics?: {
[key: string]: any;
};
displayName?: string;
propTypes?: ValidationMap<any>;
contextTypes?: ValidationMap<any>;
childContextTypes?: ValidationMap<any>
getDefaultProps?(): P;
getInitialState?(): S;
}
interface ComponentSpec<P, S> extends Mixin<P, S> {
render(): ReactElement<any>;
[propertyName: string]: any;
}
//
// Event System
// ----------------------------------------------------------------------
interface SyntheticEvent {
bubbles: boolean;
cancelable: boolean;
currentTarget: EventTarget;
defaultPrevented: boolean;
eventPhase: number;
isTrusted: boolean;
nativeEvent: Event;
preventDefault(): void;
stopPropagation(): void;
target: EventTarget;
timeStamp: Date;
type: string;
}
interface DragEvent extends SyntheticEvent {
dataTransfer: DataTransfer;
}
interface ClipboardEvent extends SyntheticEvent {
clipboardData: DataTransfer;
}
interface KeyboardEvent extends SyntheticEvent {
altKey: boolean;
charCode: number;
ctrlKey: boolean;
getModifierState(key: string): boolean;
key: string;
keyCode: number;
locale: string;
location: number;
metaKey: boolean;
repeat: boolean;
shiftKey: boolean;
which: number;
}
interface FocusEvent extends SyntheticEvent {
relatedTarget: EventTarget;
}
interface FormEvent extends SyntheticEvent {
}
interface MouseEvent extends SyntheticEvent {
altKey: boolean;
button: number;
buttons: number;
clientX: number;
clientY: number;
ctrlKey: boolean;
getModifierState(key: string): boolean;
metaKey: boolean;
pageX: number;
pageY: number;
relatedTarget: EventTarget;
screenX: number;
screenY: number;
shiftKey: boolean;
}
interface TouchEvent extends SyntheticEvent {
altKey: boolean;
changedTouches: TouchList;
ctrlKey: boolean;
getModifierState(key: string): boolean;
metaKey: boolean;
shiftKey: boolean;
targetTouches: TouchList;
touches: TouchList;
}
interface UIEvent extends SyntheticEvent {
detail: number;
view: AbstractView;
}
interface WheelEvent extends SyntheticEvent {
deltaMode: number;
deltaX: number;
deltaY: number;
deltaZ: number;
}
//
// Event Handler Types
// ----------------------------------------------------------------------
interface EventHandler<E extends SyntheticEvent> {
(event: E): void;
}
interface DragEventHandler extends EventHandler<DragEvent> { }
interface ClipboardEventHandler extends EventHandler<ClipboardEvent> { }
interface KeyboardEventHandler extends EventHandler<KeyboardEvent> { }
interface FocusEventHandler extends EventHandler<FocusEvent> { }
interface FormEventHandler extends EventHandler<FormEvent> { }
interface MouseEventHandler extends EventHandler<MouseEvent> { }
interface TouchEventHandler extends EventHandler<TouchEvent> { }
interface UIEventHandler extends EventHandler<UIEvent> { }
interface WheelEventHandler extends EventHandler<WheelEvent> { }
//
// Props / DOM Attributes
// ----------------------------------------------------------------------
interface Props<T> {
children?: ReactNode;
key?: string | number;
ref?: string | ((component: T) => any);
}
interface DOMAttributesBase<T> extends Props<T> {
onCopy?: ClipboardEventHandler;
onCut?: ClipboardEventHandler;
onPaste?: ClipboardEventHandler;
onKeyDown?: KeyboardEventHandler;
onKeyPress?: KeyboardEventHandler;
onKeyUp?: KeyboardEventHandler;
onFocus?: FocusEventHandler;
onBlur?: FocusEventHandler;
onChange?: FormEventHandler;
onInput?: FormEventHandler;
onSubmit?: FormEventHandler;
onClick?: MouseEventHandler;
onDoubleClick?: MouseEventHandler;
onDrag?: DragEventHandler;
onDragEnd?: DragEventHandler;
onDragEnter?: DragEventHandler;
onDragExit?: DragEventHandler;
onDragLeave?: DragEventHandler;
onDragOver?: DragEventHandler;
onDragStart?: DragEventHandler;
onDrop?: DragEventHandler;
onMouseDown?: MouseEventHandler;
onMouseEnter?: MouseEventHandler;
onMouseLeave?: MouseEventHandler;
onMouseMove?: MouseEventHandler;
onMouseOut?: MouseEventHandler;
onMouseOver?: MouseEventHandler;
onMouseUp?: MouseEventHandler;
onTouchCancel?: TouchEventHandler;
onTouchEnd?: TouchEventHandler;
onTouchMove?: TouchEventHandler;
onTouchStart?: TouchEventHandler;
onScroll?: UIEventHandler;
onWheel?: WheelEventHandler;
className?: string;
id?: string;
dangerouslySetInnerHTML?: {
__html: string;
};
}
interface DOMAttributes extends DOMAttributesBase<DOMComponent<any>> {
}
// This interface is not complete. Only properties accepting
// unitless numbers are listed here (see CSSProperty.js in React)
interface CSSProperties {
boxFlex?: number;
boxFlexGroup?: number;
columnCount?: number;
flex?: number | string;
flexGrow?: number;
flexShrink?: number;
fontWeight?: number | string;
lineClamp?: number;
lineHeight?: number | string;
opacity?: number;
order?: number;
orphans?: number;
widows?: number;
zIndex?: number;
zoom?: number;
fontSize?: number | string;
// SVG-related properties
fillOpacity?: number;
strokeOpacity?: number;
strokeWidth?: number;
[propertyName: string]: any;
}
interface HTMLAttributesBase<T> extends DOMAttributesBase<T> {
accept?: string;
acceptCharset?: string;
accessKey?: string;
action?: string;
allowFullScreen?: boolean;
allowTransparency?: boolean;
alt?: string;
async?: boolean;
autoComplete?: boolean;
autoFocus?: boolean;
autoPlay?: boolean;
cellPadding?: number | string;
cellSpacing?: number | string;
charSet?: string;
checked?: boolean;
classID?: string;
cols?: number;
colSpan?: number;
content?: string;
contentEditable?: boolean;
contextMenu?: string;
controls?: any;
coords?: string;
crossOrigin?: string;
data?: string;
dateTime?: string;
defaultChecked?: boolean;
defaultValue?: string;
defer?: boolean;
dir?: string;
disabled?: boolean;
download?: any;
draggable?: boolean;
encType?: string;
form?: string;
formAction?: string;
formEncType?: string;
formMethod?: string;
formNoValidate?: boolean;
formTarget?: string;
frameBorder?: number | string;
headers?: string;
height?: number | string;
hidden?: boolean;
high?: number;
href?: string;
hrefLang?: string;
htmlFor?: string;
httpEquiv?: string;
icon?: string;
label?: string;
lang?: string;
list?: string;
loop?: boolean;
low?: number;
manifest?: string;
marginHeight?: number;
marginWidth?: number;
max?: number | string;
maxLength?: number;
media?: string;
mediaGroup?: string;
method?: string;
min?: number | string;
multiple?: boolean;
muted?: boolean;
name?: string;
noValidate?: boolean;
open?: boolean;
optimum?: number;
pattern?: string;
placeholder?: string;
poster?: string;
preload?: string;
radioGroup?: string;
readOnly?: boolean;
rel?: string;
required?: boolean;
role?: string;
rows?: number;
rowSpan?: number;
sandbox?: string;
scope?: string;
scoped?: boolean;
scrolling?: string;
seamless?: boolean;
selected?: boolean;
shape?: string;
size?: number;
sizes?: string;
span?: number;
spellCheck?: boolean;
src?: string;
srcDoc?: string;
srcSet?: string;
start?: number;
step?: number | string;
style?: CSSProperties;
tabIndex?: number;
target?: string;
title?: string;
type?: string;
useMap?: string;
value?: string;
width?: number | string;
wmode?: string;
// Non-standard Attributes
autoCapitalize?: boolean;
autoCorrect?: boolean;
property?: string;
itemProp?: string;
itemScope?: boolean;
itemType?: string;
unselectable?: boolean;
}
interface HTMLAttributes extends HTMLAttributesBase<HTMLComponent> {
}
interface SVGElementAttributes extends HTMLAttributes {
viewBox?: string;
preserveAspectRatio?: string;
}
interface SVGAttributes extends DOMAttributes {
ref?: string | ((component: SVGComponent) => void);
cx?: number | string;
cy?: number | string;
d?: string;
dx?: number | string;
dy?: number | string;
fill?: string;
fillOpacity?: number | string;
fontFamily?: string;
fontSize?: number | string;
fx?: number | string;
fy?: number | string;
gradientTransform?: string;
gradientUnits?: string;
height?: number | string;
markerEnd?: string;
markerMid?: string;
markerStart?: string;
offset?: number | string;
opacity?: number | string;
patternContentUnits?: string;
patternUnits?: string;
points?: string;
preserveAspectRatio?: string;
r?: number | string;
rx?: number | string;
ry?: number | string;
spreadMethod?: string;
stopColor?: string;
stopOpacity?: number | string;
stroke?: string;
strokeDasharray?: string;
strokeLinecap?: string;
strokeMiterlimit?: string;
strokeOpacity?: number | string;
strokeWidth?: number | string;
textAnchor?: string;
transform?: string;
version?: string;
viewBox?: string;
width?: number | string;
x1?: number | string;
x2?: number | string;
x?: number | string;
y1?: number | string;
y2?: number | string
y?: number | string;
}
//
// React.DOM
// ----------------------------------------------------------------------
interface ReactDOM {
// HTML
a: HTMLFactory;
abbr: HTMLFactory;
address: HTMLFactory;
area: HTMLFactory;
article: HTMLFactory;
aside: HTMLFactory;
audio: HTMLFactory;
b: HTMLFactory;
base: HTMLFactory;
bdi: HTMLFactory;
bdo: HTMLFactory;
big: HTMLFactory;
blockquote: HTMLFactory;
body: HTMLFactory;
br: HTMLFactory;
button: HTMLFactory;
canvas: HTMLFactory;
caption: HTMLFactory;
cite: HTMLFactory;
code: HTMLFactory;
col: HTMLFactory;
colgroup: HTMLFactory;
data: HTMLFactory;
datalist: HTMLFactory;
dd: HTMLFactory;
del: HTMLFactory;
details: HTMLFactory;
dfn: HTMLFactory;
dialog: HTMLFactory;
div: HTMLFactory;
dl: HTMLFactory;
dt: HTMLFactory;
em: HTMLFactory;
embed: HTMLFactory;
fieldset: HTMLFactory;
figcaption: HTMLFactory;
figure: HTMLFactory;
footer: HTMLFactory;
form: HTMLFactory;
h1: HTMLFactory;
h2: HTMLFactory;
h3: HTMLFactory;
h4: HTMLFactory;
h5: HTMLFactory;
h6: HTMLFactory;
head: HTMLFactory;
header: HTMLFactory;
hr: HTMLFactory;
html: HTMLFactory;
i: HTMLFactory;
iframe: HTMLFactory;
img: HTMLFactory;
input: HTMLFactory;
ins: HTMLFactory;
kbd: HTMLFactory;
keygen: HTMLFactory;
label: HTMLFactory;
legend: HTMLFactory;
li: HTMLFactory;
link: HTMLFactory;
main: HTMLFactory;
map: HTMLFactory;
mark: HTMLFactory;
menu: HTMLFactory;
menuitem: HTMLFactory;
meta: HTMLFactory;
meter: HTMLFactory;
nav: HTMLFactory;
noscript: HTMLFactory;
object: HTMLFactory;
ol: HTMLFactory;
optgroup: HTMLFactory;
option: HTMLFactory;
output: HTMLFactory;
p: HTMLFactory;
param: HTMLFactory;
picture: HTMLFactory;
pre: HTMLFactory;
progress: HTMLFactory;
q: HTMLFactory;
rp: HTMLFactory;
rt: HTMLFactory;
ruby: HTMLFactory;
s: HTMLFactory;
samp: HTMLFactory;
script: HTMLFactory;
section: HTMLFactory;
select: HTMLFactory;
small: HTMLFactory;
source: HTMLFactory;
span: HTMLFactory;
strong: HTMLFactory;
style: HTMLFactory;
sub: HTMLFactory;
summary: HTMLFactory;
sup: HTMLFactory;
table: HTMLFactory;
tbody: HTMLFactory;
td: HTMLFactory;
textarea: HTMLFactory;
tfoot: HTMLFactory;
th: HTMLFactory;
thead: HTMLFactory;
time: HTMLFactory;
title: HTMLFactory;
tr: HTMLFactory;
track: HTMLFactory;
u: HTMLFactory;
ul: HTMLFactory;
"var": HTMLFactory;
video: HTMLFactory;
wbr: HTMLFactory;
// SVG
svg: SVGElementFactory;
circle: SVGFactory;
defs: SVGFactory;
ellipse: SVGFactory;
g: SVGFactory;
line: SVGFactory;
linearGradient: SVGFactory;
mask: SVGFactory;
path: SVGFactory;
pattern: SVGFactory;
polygon: SVGFactory;
polyline: SVGFactory;
radialGradient: SVGFactory;
rect: SVGFactory;
stop: SVGFactory;
text: SVGFactory;
tspan: SVGFactory;
}
//
// React.PropTypes
// ----------------------------------------------------------------------
interface Validator<T> {
(object: T, key: string, componentName: string): Error;
}
interface Requireable<T> extends Validator<T> {
isRequired: Validator<T>;
}
interface ValidationMap<T> {
[key: string]: Validator<T>;
}
interface ReactPropTypes {
any: Requireable<any>;
array: Requireable<any>;
bool: Requireable<any>;
func: Requireable<any>;
number: Requireable<any>;
object: Requireable<any>;
string: Requireable<any>;
node: Requireable<any>;
element: Requireable<any>;
instanceOf(expectedClass: {}): Requireable<any>;
oneOf(types: any[]): Requireable<any>;
oneOfType(types: Validator<any>[]): Requireable<any>;
arrayOf(type: Validator<any>): Requireable<any>;
objectOf(type: Validator<any>): Requireable<any>;
shape(type: ValidationMap<any>): Requireable<any>;
}
//
// React.Children
// ----------------------------------------------------------------------
interface ReactChildren {
map<T>(children: ReactNode, fn: (child: ReactChild, index: number) => T): { [key: string]: T };
forEach(children: ReactNode, fn: (child: ReactChild, index: number) => any): void;
count(children: ReactNode): number;
only(children: ReactNode): ReactChild;
}
//
// Browser Interfaces
// https://github.com/nikeee/2048-typescript/blob/master/2048/js/touch.d.ts
// ----------------------------------------------------------------------
interface AbstractView {
styleMedia: StyleMedia;
document: Document;
}
interface Touch {
identifier: number;
target: EventTarget;
screenX: number;
screenY: number;
clientX: number;
clientY: number;
pageX: number;
pageY: number;
}
interface TouchList {
[index: number]: Touch;
length: number;
item(index: number): Touch;
identifiedTouch(identifier: number): Touch;
}
//
// React.addons
// ----------------------------------------------------------------------
export module addons {
export var CSSTransitionGroup: CSSTransitionGroup;
export var TransitionGroup: TransitionGroup;
export var LinkedStateMixin: LinkedStateMixin;
export var PureRenderMixin: PureRenderMixin;
export function batchedUpdates<A, B>(
callback: (a: A, b: B) => any, a: A, b: B): void;
export function batchedUpdates<A>(callback: (a: A) => any, a: A): void;
export function batchedUpdates(callback: () => any): void;
// deprecated: use petehunt/react-classset or JedWatson/classnames
export function classSet(cx: { [key: string]: boolean }): string;
export function classSet(...classList: string[]): string;
export function cloneWithProps<P>(
element: DOMElement<P>, props: P): DOMElement<P>;
export function cloneWithProps<P>(
element: ClassicElement<P>, props: P): ClassicElement<P>;
export function cloneWithProps<P>(
element: ReactElement<P>, props: P): ReactElement<P>;
export function createFragment(
object: { [key: string]: ReactNode }): ReactFragment;
export function update(value: any[], spec: UpdateArraySpec): any[];
export function update(value: {}, spec: UpdateSpec): any;
// Development tools
export import Perf = ReactPerf;
export import TestUtils = ReactTestUtils;
}
//
// React.addons (Transitions)
// ----------------------------------------------------------------------
interface TransitionGroupProps {
component?: ReactType;
childFactory?: (child: ReactElement<any>) => ReactElement<any>;
}
interface CSSTransitionGroupProps extends TransitionGroupProps {
transitionName: string;
transitionAppear?: boolean;
transitionEnter?: boolean;
transitionLeave?: boolean;
}
type CSSTransitionGroup = ComponentClass<CSSTransitionGroupProps>;
type TransitionGroup = ComponentClass<TransitionGroupProps>;
//
// React.addons (Mixins)
// ----------------------------------------------------------------------
interface ReactLink<T> {
value: T;
requestChange(newValue: T): void;
}
interface LinkedStateMixin extends Mixin<any, any> {
linkState<T>(key: string): ReactLink<T>;
}
interface PureRenderMixin extends Mixin<any, any> {
}
//
// Reat.addons.update
// ----------------------------------------------------------------------
interface UpdateSpecCommand {
$set?: any;
$merge?: {};
$apply?(value: any): any;
}
interface UpdateSpecPath {
[key: string]: UpdateSpec;
}
type UpdateSpec = UpdateSpecCommand | UpdateSpecPath;
interface UpdateArraySpec extends UpdateSpecCommand {
$push?: any[];
$unshift?: any[];
$splice?: any[][];
}
//
// React.addons.Perf
// ----------------------------------------------------------------------
interface ComponentPerfContext {
current: string;
owner: string;
}
interface NumericPerfContext {
[key: string]: number;
}
interface Measurements {
exclusive: NumericPerfContext;
inclusive: NumericPerfContext;
render: NumericPerfContext;
counts: NumericPerfContext;
writes: NumericPerfContext;
displayNames: {
[key: string]: ComponentPerfContext;
};
totalTime: number;
}
module ReactPerf {
export function start(): void;
export function stop(): void;
export function printInclusive(measurements: Measurements[]): void;
export function printExclusive(measurements: Measurements[]): void;
export function printWasted(measurements: Measurements[]): void;
export function printDOM(measurements: Measurements[]): void;
export function getLastMeasurements(): Measurements[];
}
//
// React.addons.TestUtils
// ----------------------------------------------------------------------
interface MockedComponentClass {
new (): any;
}
module ReactTestUtils {
export import Simulate = ReactSimulate;
export function renderIntoDocument<P>(
element: ReactElement<P>): Component<P, any>;
export function renderIntoDocument<C extends Component<any, any>>(
element: ReactElement<any>): C;
export function mockComponent(
mocked: MockedComponentClass, mockTagName?: string): typeof ReactTestUtils;
export function isElementOfType(
element: ReactElement<any>, type: ReactType): boolean;
export function isTextComponent(instance: Component<any, any>): boolean;
export function isDOMComponent(instance: Component<any, any>): boolean;
export function isCompositeComponent(instance: Component<any, any>): boolean;
export function isCompositeComponentWithType(
instance: Component<any, any>,
type: ComponentClass<any>): boolean;
export function findAllInRenderedTree(
tree: Component<any, any>,
fn: (i: Component<any, any>) => boolean): Component<any, any>;
export function scryRenderedDOMComponentsWithClass(
tree: Component<any, any>,
className: string): DOMComponent<any>[];
export function findRenderedDOMComponentWithClass(
tree: Component<any, any>,
className: string): DOMComponent<any>;
export function scryRenderedDOMComponentsWithTag(
tree: Component<any, any>,
tagName: string): DOMComponent<any>[];
export function findRenderedDOMComponentWithTag(
tree: Component<any, any>,
tagName: string): DOMComponent<any>;
export function scryRenderedComponentsWithType<P>(
tree: Component<any, any>,
type: ComponentClass<P>): Component<P, {}>[];
export function scryRenderedComponentsWithType<C extends Component<any, any>>(
tree: Component<any, any>,
type: ComponentClass<any>): C[];
export function findRenderedComponentWithType<P>(
tree: Component<any, any>,
type: ComponentClass<P>): Component<P, {}>;
export function findRenderedComponentWithType<C extends Component<any, any>>(
tree: Component<any, any>,
type: ComponentClass<any>): C;
export function createRenderer(): ShallowRenderer;
}
interface SyntheticEventData {
altKey?: boolean;
button?: number;
buttons?: number;
clientX?: number;
clientY?: number;
changedTouches?: TouchList;
charCode?: boolean;
clipboardData?: DataTransfer;
ctrlKey?: boolean;
deltaMode?: number;
deltaX?: number;
deltaY?: number;
deltaZ?: number;
detail?: number;
getModifierState?(key: string): boolean;
key?: string;
keyCode?: number;
locale?: string;
location?: number;
metaKey?: boolean;
pageX?: number;
pageY?: number;
relatedTarget?: EventTarget;
repeat?: boolean;
screenX?: number;
screenY?: number;
shiftKey?: boolean;
targetTouches?: TouchList;
touches?: TouchList;
view?: AbstractView;
which?: number;
}
interface EventSimulator {
(element: Element, eventData?: SyntheticEventData): void;
(component: Component<any, any>, eventData?: SyntheticEventData): void;
}
module ReactSimulate {
export var blur: EventSimulator;
export var change: EventSimulator;
export var click: EventSimulator;
export var cut: EventSimulator;
export var doubleClick: EventSimulator;
export var drag: EventSimulator;
export var dragEnd: EventSimulator;
export var dragEnter: EventSimulator;
export var dragExit: EventSimulator;
export var dragLeave: EventSimulator;
export var dragOver: EventSimulator;
export var dragStart: EventSimulator;
export var drop: EventSimulator;
export var focus: EventSimulator;
export var input: EventSimulator;
export var keyDown: EventSimulator;
export var keyPress: EventSimulator;
export var keyUp: EventSimulator;
export var mouseDown: EventSimulator;
export var mouseEnter: EventSimulator;
export var mouseLeave: EventSimulator;
export var mouseMove: EventSimulator;
export var mouseOut: EventSimulator;
export var mouseOver: EventSimulator;
export var mouseUp: EventSimulator;
export var paste: EventSimulator;
export var scroll: EventSimulator;
export var submit: EventSimulator;
export var touchCancel: EventSimulator;
export var touchEnd: EventSimulator;
export var touchMove: EventSimulator;
export var touchStart: EventSimulator;
export var wheel: EventSimulator;
}
class ShallowRenderer {
getRenderOutput<E extends ReactElement<any>>(): E;
getRenderOutput(): ReactElement<any>;
render(element: ReactElement<any>, context?: any): void;
unmount(): void;
}
}
declare namespace JSX {
import React = __React;
interface Element extends React.ReactElement<any> { }
interface ElementClass extends React.Component<any, any> {
render(): JSX.Element;
}
interface ElementAttributesProperty { props: {}; }
interface IntrinsicElements {
// HTML
a: React.HTMLAttributes;
abbr: React.HTMLAttributes;
address: React.HTMLAttributes;
area: React.HTMLAttributes;
article: React.HTMLAttributes;
aside: React.HTMLAttributes;
audio: React.HTMLAttributes;
b: React.HTMLAttributes;
base: React.HTMLAttributes;
bdi: React.HTMLAttributes;
bdo: React.HTMLAttributes;
big: React.HTMLAttributes;
blockquote: React.HTMLAttributes;
body: React.HTMLAttributes;
br: React.HTMLAttributes;
button: React.HTMLAttributes;
canvas: React.HTMLAttributes;
caption: React.HTMLAttributes;
cite: React.HTMLAttributes;
code: React.HTMLAttributes;
col: React.HTMLAttributes;
colgroup: React.HTMLAttributes;
data: React.HTMLAttributes;
datalist: React.HTMLAttributes;
dd: React.HTMLAttributes;
del: React.HTMLAttributes;
details: React.HTMLAttributes;
dfn: React.HTMLAttributes;
dialog: React.HTMLAttributes;
div: React.HTMLAttributes;
dl: React.HTMLAttributes;
dt: React.HTMLAttributes;
em: React.HTMLAttributes;
embed: React.HTMLAttributes;
fieldset: React.HTMLAttributes;
figcaption: React.HTMLAttributes;
figure: React.HTMLAttributes;
footer: React.HTMLAttributes;
form: React.HTMLAttributes;
h1: React.HTMLAttributes;
h2: React.HTMLAttributes;
h3: React.HTMLAttributes;
h4: React.HTMLAttributes;
h5: React.HTMLAttributes;
h6: React.HTMLAttributes;
head: React.HTMLAttributes;
header: React.HTMLAttributes;
hr: React.HTMLAttributes;
html: React.HTMLAttributes;
i: React.HTMLAttributes;
iframe: React.HTMLAttributes;
img: React.HTMLAttributes;
input: React.HTMLAttributes;
ins: React.HTMLAttributes;
kbd: React.HTMLAttributes;
keygen: React.HTMLAttributes;
label: React.HTMLAttributes;
legend: React.HTMLAttributes;
li: React.HTMLAttributes;
link: React.HTMLAttributes;
main: React.HTMLAttributes;
map: React.HTMLAttributes;
mark: React.HTMLAttributes;
menu: React.HTMLAttributes;
menuitem: React.HTMLAttributes;
meta: React.HTMLAttributes;
meter: React.HTMLAttributes;
nav: React.HTMLAttributes;
noscript: React.HTMLAttributes;
object: React.HTMLAttributes;
ol: React.HTMLAttributes;
optgroup: React.HTMLAttributes;
option: React.HTMLAttributes;
output: React.HTMLAttributes;
p: React.HTMLAttributes;
param: React.HTMLAttributes;
picture: React.HTMLAttributes;
pre: React.HTMLAttributes;
progress: React.HTMLAttributes;
q: React.HTMLAttributes;
rp: React.HTMLAttributes;
rt: React.HTMLAttributes;
ruby: React.HTMLAttributes;
s: React.HTMLAttributes;
samp: React.HTMLAttributes;
script: React.HTMLAttributes;
section: React.HTMLAttributes;
select: React.HTMLAttributes;
small: React.HTMLAttributes;
source: React.HTMLAttributes;
span: React.HTMLAttributes;
strong: React.HTMLAttributes;
style: React.HTMLAttributes;
sub: React.HTMLAttributes;
summary: React.HTMLAttributes;
sup: React.HTMLAttributes;
table: React.HTMLAttributes;
tbody: React.HTMLAttributes;
td: React.HTMLAttributes;
textarea: React.HTMLAttributes;
tfoot: React.HTMLAttributes;
th: React.HTMLAttributes;
thead: React.HTMLAttributes;
time: React.HTMLAttributes;
title: React.HTMLAttributes;
tr: React.HTMLAttributes;
track: React.HTMLAttributes;
u: React.HTMLAttributes;
ul: React.HTMLAttributes;
"var": React.HTMLAttributes;
video: React.HTMLAttributes;
wbr: React.HTMLAttributes;
// SVG
svg: React.SVGElementAttributes;
circle: React.SVGAttributes;
defs: React.SVGAttributes;
ellipse: React.SVGAttributes;
g: React.SVGAttributes;
line: React.SVGAttributes;
linearGradient: React.SVGAttributes;
mask: React.SVGAttributes;
path: React.SVGAttributes;
pattern: React.SVGAttributes;
polygon: React.SVGAttributes;
polyline: React.SVGAttributes;
radialGradient: React.SVGAttributes;
rect: React.SVGAttributes;
stop: React.SVGAttributes;
text: React.SVGAttributes;
tspan: React.SVGAttributes;
}
} | {
"content_hash": "52628ef6d684e2332424956c59d4523f",
"timestamp": "",
"source": "github",
"line_count": 2033,
"max_line_length": 103,
"avg_line_length": 30.73290703393999,
"alnum_prop": 0.576056338028169,
"repo_name": "JoshuaKGoldberg/Todo-Backbone-React-TypeScript",
"id": "428a8fea414eb6bebb665266e2f02e649abde280",
"size": "62747",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "js/lib/react.d.ts",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "HTML",
"bytes": "725"
},
{
"name": "JavaScript",
"bytes": "977284"
},
{
"name": "TypeScript",
"bytes": "10196"
}
],
"symlink_target": ""
} |
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (c) 2016, 2013, Oracle and/or its affiliates. All rights reserved.
-->
<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
<task-flow-definition id="WelcomeToTheRDKFlow">
<default-activity id="__1">WelcomeToTheRDK</default-activity>
<view id="WelcomeToTheRDK">
<page>/oracle/apps/uikit/page/WelcomeToTheRDK.jsff</page>
</view>
<use-page-fragments/>
</task-flow-definition>
</adfc-config>
| {
"content_hash": "364ee5134f54df5b5c0f516b9f0e244e",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 76,
"avg_line_length": 37.84615384615385,
"alnum_prop": 0.6910569105691057,
"repo_name": "oracle-adf/apps-cloud-ui-kit",
"id": "1d50ce9634edc118a6d3c54c23c4496d42e729ae",
"size": "492",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "DemoMaster/public_html/WEB-INF/oracle/apps/uikit/flow/WelcomeToTheRDKFlow.xml",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "211310"
},
{
"name": "HTML",
"bytes": "230"
},
{
"name": "Java",
"bytes": "174000"
}
],
"symlink_target": ""
} |
"""Command line tool help you debug your event definitions.
Feed it a list of test notifications in json format, and it will show
you what events will be generated.
"""
import json
import sys
from oslo.config import cfg
from stevedore import extension
from ceilometer.event import converter
from ceilometer import service
cfg.CONF.register_cli_opts([
cfg.StrOpt('input-file',
short='i',
help='File to read test notifications from.'
' (Containing a json list of notifications.)'
' defaults to stdin.'),
cfg.StrOpt('output-file',
short='o',
help='File to write results to. Defaults to stdout'),
])
TYPES = {1: 'text',
2: 'int',
3: 'float',
4: 'datetime'}
service.prepare_service()
config_file = converter.get_config_file()
output_file = cfg.CONF.output_file
input_file = cfg.CONF.input_file
if output_file is None:
out = sys.stdout
else:
out = open(output_file, 'w')
if input_file is None:
notifications = json.load(sys.stdin)
else:
with open(input_file, 'r') as f:
notifications = json.load(f)
out.write("Definitions file: %s\n" % config_file)
out.write("Notifications tested: %s\n" % len(notifications))
event_converter = converter.setup_events(
extension.ExtensionManager(
namespace='ceilometer.event.trait_plugin'))
for notification in notifications:
event = event_converter.to_event(notification)
if event is None:
out.write("Dropped notification: %s\n" %
notification['message_id'])
continue
out.write("Event: %s at %s\n" % (event.event_name, event.generated))
for trait in event.traits:
dtype = TYPES[trait.dtype]
out.write(" Trait: name: %s, type: %s, value: %s\n" % (
trait.name, dtype, trait.value))
| {
"content_hash": "06d5f62889b234b65958a6dccfeccd9f",
"timestamp": "",
"source": "github",
"line_count": 68,
"max_line_length": 72,
"avg_line_length": 27.426470588235293,
"alnum_prop": 0.6375335120643432,
"repo_name": "lexxito/monitoring",
"id": "d9b6d70bfcc170fe6b78a4f351094d48e8b9a6f4",
"size": "2553",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "bin/ceilometer-test-event.py",
"mode": "33261",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "6284"
},
{
"name": "HTML",
"bytes": "5892"
},
{
"name": "JavaScript",
"bytes": "63538"
},
{
"name": "Mako",
"bytes": "412"
},
{
"name": "Python",
"bytes": "2077479"
},
{
"name": "Shell",
"bytes": "8171"
}
],
"symlink_target": ""
} |
sudo apt-get update && sudo apt-get -y upgrade
sudo apt-get install -y python python-dev python-pip
sudo apt-get install -y libblas-dev liblapack-dev libatlas-base-dev gfortran
sudo pip install numpy==1.12.1
sudo pip install scipy==0.19.0
sudo pip install pyamg==3.2.1
sudo pip install psutil
sudo apt-get install -y python-wxgtk3.0
sudo apt-get install -y python-pythoncard
sudo pip install circuitscape
| {
"content_hash": "e5cff026ffee472dd31945817faf1f70",
"timestamp": "",
"source": "github",
"line_count": 16,
"max_line_length": 76,
"avg_line_length": 25.75,
"alnum_prop": 0.7718446601941747,
"repo_name": "clemsonciti/singularity-images",
"id": "abcddc152fdc83c7a7b01d57eae80152d0ab577a",
"size": "412",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "circuitscape/install_circuitscape.sh",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Shell",
"bytes": "22063"
}
],
"symlink_target": ""
} |
module Servant
module Mixin
class Trigger
def has_config
return @has
end
def get_poll
@poll
end
def get_periodical
@periodical
end
def initialize
@has = false
@poll
@periodical
end
def poll(sched)
@has = true
@poll = sched
end
def periodical(sched)
@has = true
@periodical = sched
end
end
end
end | {
"content_hash": "27aca7a6d934210ca6121ca280a7a1b4",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 27,
"avg_line_length": 14.588235294117647,
"alnum_prop": 0.4576612903225806,
"repo_name": "chobie/Servant",
"id": "9b8a1c20d1b3f66a998c2ebb90bc8e912549f80e",
"size": "496",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "lib/servant/mixin/trigger.rb",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Ruby",
"bytes": "20004"
}
],
"symlink_target": ""
} |
/**
*
*/
package com.jettmarks.clue.server.service;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;
import com.jettmarks.clue.client.service.RevealLevelService;
import com.jettmarks.clue.server.domain.Group;
/**
* @author jett
*
*/
public class RevealLevelServiceImpl extends RemoteServiceServlet implements
RevealLevelService {
/**
*
*/
private static final long serialVersionUID = -5943620817773835942L;
private int currentPage = 0;
/**
* Implementation of service that returns the current page that can be
* revealed in the application.
*
* The groupId identifies which instance of the game is being played by the
* group.
*
* @see com.jettmarks.clue.client.service.RevealLevelService#getCurrentPage()
*/
@Override
public int getCurrentPage(int groupId) {
Group group = SessionManagerImpl.getGroup(groupId);
return group.getRevealLevel();
}
public int bumpCurrentPage(int groupId) {
Group group = SessionManagerImpl.getGroup(groupId);
group.bumpCurrentPage();
return group.getRevealLevel();
}
public void setCurrentPage(int groupId, int newCurrentPage) {
Group group = SessionManagerImpl.getGroup(groupId);
group.setRevealLevel(newCurrentPage);
}
}
| {
"content_hash": "67f5ebae6b2cc600896a52029c27ed39",
"timestamp": "",
"source": "github",
"line_count": 50,
"max_line_length": 78,
"avg_line_length": 25.64,
"alnum_prop": 0.7215288611544461,
"repo_name": "jettmarks/clueRide",
"id": "3d7fabc7104ec257c7a43ebe4e4d00b1c7883fb6",
"size": "1282",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "cluepageMGWT/src/main/java/com/jettmarks/clue/server/service/RevealLevelServiceImpl.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "2440"
},
{
"name": "HTML",
"bytes": "13577"
},
{
"name": "Java",
"bytes": "87142"
}
],
"symlink_target": ""
} |
<?php
namespace Crmp\AccountingBundle\CoreDomain\DeliveryTicket;
use Crmp\AcquisitionBundle\Entity\Contract;
/**
* Delivery tickets
*
* Delivery tickets are the sum up of what has been delivered
* and will be part of an invoice.
* The delivery ticket helps keeping track of the work,
* what has been finished
* and how it has been solved.
*
* @package Crmp\AccountingBundle\CoreDomain\DeliveryTicket
*/
class DeliveryTicket
{
/**
* Relation to a contract
*
* Every ticket can be related to a contract.
* The ticket either is the fulfillment
* or just a part of the whole contract.
*
* Delivery tickets can exist without a contract
* for support hours on the phone,
* a license
* or other minor stuff.
*
* @var Contract
*/
protected $contract;
/**
* Subject what has been delivered
*
* The title of a ticket sums up the underlying work that has been done.
* It it a line that might go straight into the output of invoices.
*
* @var string
*/
protected $title;
/**
* Net value of the delivery
*
* Each delivery has its value.
*
* @var float
*/
protected $value;
/**
* Relating contract
*
* Get the contract that relates to that ticket.
*
* @return Contract
*/
public function getContract()
{
return $this->contract;
}
/**
* Get the current subject.
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Get the net value.
*
* @return float
*/
public function getValue()
{
return $this->value;
}
/**
* Set the current contract.
*
* @param Contract|null $contract Related contract.
*/
public function setContract(Contract $contract = null)
{
$this->contract = $contract;
}
/**
* Set the current subject.
*
* @param string $title Sum up what has been done.
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* Set the net value of the ticket.
*
* @param float $netValue Net value of the delivered goods.
*/
public function setValue($netValue)
{
$this->value = $netValue;
}
}
| {
"content_hash": "5c7016277e0f0db1631fd713189748af",
"timestamp": "",
"source": "github",
"line_count": 115,
"max_line_length": 76,
"avg_line_length": 20.52173913043478,
"alnum_prop": 0.5792372881355933,
"repo_name": "sourcerer-mike/crmp",
"id": "1aabdb8bee974ac1fee96c03009a7b5d79b35b0c",
"size": "2360",
"binary": false,
"copies": "1",
"ref": "refs/heads/develop",
"path": "src/Crmp/AccountingBundle/CoreDomain/DeliveryTicket/DeliveryTicket.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "ApacheConf",
"bytes": "286"
},
{
"name": "CSS",
"bytes": "3022"
},
{
"name": "Cucumber",
"bytes": "13067"
},
{
"name": "GCC Machine Description",
"bytes": "268"
},
{
"name": "HTML",
"bytes": "90001"
},
{
"name": "PHP",
"bytes": "367798"
},
{
"name": "Shell",
"bytes": "1879"
}
],
"symlink_target": ""
} |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | {
"content_hash": "a42aa818b5f9eae8f7a8107a7c0c6d46",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 31,
"avg_line_length": 9.692307692307692,
"alnum_prop": 0.7063492063492064,
"repo_name": "mdoering/backbone",
"id": "b35d1ddf80db456dcdb818da284491159960baae",
"size": "194",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Rosaceae/Rubus/Rubus pyramidalis/Rubus pyramidalis parvifolius/README.md",
"mode": "33188",
"license": "apache-2.0",
"language": [],
"symlink_target": ""
} |
require 'test_helper'
class UsersProjectTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
| {
"content_hash": "75b779de6ac1e6dc7007ae38a10335d0",
"timestamp": "",
"source": "github",
"line_count": 7,
"max_line_length": 48,
"avg_line_length": 18,
"alnum_prop": 0.7063492063492064,
"repo_name": "GDG-Regensburg/campusasyl_projectsdb",
"id": "70b97f0adffc93f89fe0478a981c4531df12f7a6",
"size": "126",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "test/models/users_project_test.rb",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "4300"
},
{
"name": "CoffeeScript",
"bytes": "2785"
},
{
"name": "HTML",
"bytes": "40873"
},
{
"name": "JavaScript",
"bytes": "757"
},
{
"name": "Ruby",
"bytes": "117820"
}
],
"symlink_target": ""
} |
package com.github.eventasia.eventstore.event;
public interface EventasiaMessageConverter {
public byte[] serialize(EventasiaMessage message);
public EventasiaMessage deserialize(byte[] message);
}
| {
"content_hash": "3fc983a3c7a2a7bdb84506a372bf8ffd",
"timestamp": "",
"source": "github",
"line_count": 8,
"max_line_length": 56,
"avg_line_length": 26.125,
"alnum_prop": 0.7942583732057417,
"repo_name": "Eventasia/eventasia",
"id": "73938574fdcb660518d16839a985f71c231da5d6",
"size": "209",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "eventasia-starter/src/main/java/com/github/eventasia/eventstore/event/EventasiaMessageConverter.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Java",
"bytes": "39340"
}
],
"symlink_target": ""
} |
package co.mewf.minirs.servlet;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import co.mewf.minirs.internal.javax.ws.rs.WebApplicationException;
import co.mewf.minirs.internal.javax.ws.rs.core.MediaType;
import co.mewf.minirs.internal.javax.ws.rs.core.MultivaluedMap;
import co.mewf.minirs.internal.javax.ws.rs.ext.MessageBodyWriter;
public class FirstPartyMessageBodyWriter implements MessageBodyWriter<String> {
@Override
public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
return true;
}
@Override
public long getSize(String t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
return 0;
}
@Override
public void writeTo(String t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType,
MultivaluedMap<String, Object> httpHeaders, OutputStream entityStream) throws IOException, WebApplicationException {}
}
| {
"content_hash": "757e02892960b4359d0476565dace8e9",
"timestamp": "",
"source": "github",
"line_count": 29,
"max_line_length": 123,
"avg_line_length": 35.93103448275862,
"alnum_prop": 0.7869481765834933,
"repo_name": "mewf/minirs-core",
"id": "4866b5d4fcfbab763bd20596a6d6f934d7cb5689",
"size": "1042",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/test/java/co/mewf/minirs/servlet/FirstPartyMessageBodyWriter.java",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Java",
"bytes": "885851"
}
],
"symlink_target": ""
} |
<?php
class Tritac_ChannelEngine_Model_Carrier_Channelengine
extends Mage_Shipping_Model_Carrier_Abstract
implements Mage_Shipping_Model_Carrier_Interface
{
/** @var string Shipping method system code */
protected $_code = 'channelengine';
protected $_isFixed = true;
/**
* Collect and get shipping rates
*
* @param Mage_Shipping_Model_Rate_Request $request
* @return bool|false|Mage_Core_Model_Abstract|Mage_Shipping_Model_Rate_Result|null
*/
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
{
if (!$this->getConfigFlag('active')) {
return false;
}
// Check if the rates were requested by ChannelEngine and not by the frontend
if (!Mage::registry('channelengine_shipping')) {
return false;
}
Mage::unregister('channelengine_shipping');
$result = Mage::getModel('shipping/rate_result');
$shippingPrice = 0;
if (Mage::registry('channelengine_shipping_amount')) {
$shippingPrice = Mage::registry('channelengine_shipping_amount');
}
Mage::unregister('channelengine_shipping_amount');
$method = Mage::getModel('shipping/rate_result_method');
$method->setCarrier($this->_code);
$method->setCarrierTitle($this->getConfigData('title'));
$method->setMethod($this->_code);
$method->setMethodTitle($this->getConfigData('name'));
$method->setPrice($shippingPrice);
$method->setCost($shippingPrice);
$result->append($method);
return $result;
}
public function isActive()
{
}
public function getAllowedMethods()
{
return array('channelengine' => 'ChannelEngine');
}
}
| {
"content_hash": "c6891cab34d8859d75b7dfeb213a1f7e",
"timestamp": "",
"source": "github",
"line_count": 68,
"max_line_length": 87,
"avg_line_length": 26.279411764705884,
"alnum_prop": 0.6245103525461667,
"repo_name": "channelengine/magento",
"id": "bb735aa46bcca6265b7331ab43999f65e476521a",
"size": "1787",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "app/code/community/Tritac/ChannelEngine/Model/Carrier/Channelengine.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Batchfile",
"bytes": "959"
},
{
"name": "HTML",
"bytes": "3736"
},
{
"name": "PHP",
"bytes": "84048"
},
{
"name": "Shell",
"bytes": "802"
}
],
"symlink_target": ""
} |
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
return YES;
}
- (void)applicationWillResignActive:(UIApplication *)application
{
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
@end
| {
"content_hash": "2822c24e48595f4840ae8f69d5457335",
"timestamp": "",
"source": "github",
"line_count": 36,
"max_line_length": 281,
"avg_line_length": 51.27777777777778,
"alnum_prop": 0.7849404117009751,
"repo_name": "yuyedaidao/AmazingButton",
"id": "cb8ea34f887e4dff2a1838c358d54884f8af560b",
"size": "2002",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "AmazingButton/AppDelegate.m",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Objective-C",
"bytes": "27588"
},
{
"name": "Ruby",
"bytes": "108"
}
],
"symlink_target": ""
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.10"/>
<title>XLabs: Class Members - Variables</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="XLabs_logo.psd"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">XLabs
</div>
<div id="projectbrief">Cross-platform reusable C# libraries</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.10 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Packages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li class="current"><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_prop.html"><span>Properties</span></a></li>
<li><a href="functions_evnt.html"><span>Events</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions_vars.html#index_a"><span>a</span></a></li>
<li><a href="functions_vars_b.html#index_b"><span>b</span></a></li>
<li><a href="functions_vars_c.html#index_c"><span>c</span></a></li>
<li><a href="functions_vars_d.html#index_d"><span>d</span></a></li>
<li class="current"><a href="functions_vars_e.html#index_e"><span>e</span></a></li>
<li><a href="functions_vars_f.html#index_f"><span>f</span></a></li>
<li><a href="functions_vars_g.html#index_g"><span>g</span></a></li>
<li><a href="functions_vars_h.html#index_h"><span>h</span></a></li>
<li><a href="functions_vars_i.html#index_i"><span>i</span></a></li>
<li><a href="functions_vars_k.html#index_k"><span>k</span></a></li>
<li><a href="functions_vars_l.html#index_l"><span>l</span></a></li>
<li><a href="functions_vars_m.html#index_m"><span>m</span></a></li>
<li><a href="functions_vars_n.html#index_n"><span>n</span></a></li>
<li><a href="functions_vars_o.html#index_o"><span>o</span></a></li>
<li><a href="functions_vars_p.html#index_p"><span>p</span></a></li>
<li><a href="functions_vars_r.html#index_r"><span>r</span></a></li>
<li><a href="functions_vars_s.html#index_s"><span>s</span></a></li>
<li><a href="functions_vars_t.html#index_t"><span>t</span></a></li>
<li><a href="functions_vars_u.html#index_u"><span>u</span></a></li>
<li><a href="functions_vars_v.html#index_v"><span>v</span></a></li>
<li><a href="functions_vars_w.html#index_w"><span>w</span></a></li>
<li><a href="functions_vars_x.html#index_x"><span>x</span></a></li>
<li><a href="functions_vars_y.html#index_y"><span>y</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('functions_vars_e.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 
<h3><a class="anchor" id="index_e"></a>- e -</h3><ul>
<li>ElementProperty
: <a class="el" href="class_x_labs_1_1_forms_1_1_validation_1_1_action.html#adb2d79eaca89e6010c9c0064a2e23d95">XLabs.Forms.Validation.Action</a>
, <a class="el" href="class_x_labs_1_1_forms_1_1_validation_1_1_rule.html#aadb6645cf10b8b5fde0bb9b8d2133cb3">XLabs.Forms.Validation.Rule</a>
</li>
<li>ExceptionOnNoMatchProperty
: <a class="el" href="class_x_labs_1_1_forms_1_1_controls_1_1_template_selector.html#a43f7e83c4753e725168e5fe50e3ebca4">XLabs.Forms.Controls.TemplateSelector</a>
</li>
<li>ExcludeChildrenProperty
: <a class="el" href="class_x_labs_1_1_forms_1_1_controls_1_1_gestures_content_view.html#a5018db8d9ecda98571f0317acedaf175">XLabs.Forms.Controls.GesturesContentView</a>
</li>
<li>ExecuteOnSuggestionClickProperty
: <a class="el" href="class_x_labs_1_1_forms_1_1_controls_1_1_auto_complete_view.html#a00e4c93ffe5f8b38b6f55f0e9d2fa98e">XLabs.Forms.Controls.AutoCompleteView</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li>
</ul>
</div>
</body>
</html>
| {
"content_hash": "d578693537d88d2a4ea417274161ffe3",
"timestamp": "",
"source": "github",
"line_count": 175,
"max_line_length": 168,
"avg_line_length": 45.97714285714286,
"alnum_prop": 0.6400695998011434,
"repo_name": "XLabs/xlabs.github.io",
"id": "e08a9eedf0d19794faa3cd4f3c3b730629a3de6a",
"size": "8046",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "html/functions_vars_e.html",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "33201"
},
{
"name": "HTML",
"bytes": "25233456"
},
{
"name": "JavaScript",
"bytes": "1159419"
}
],
"symlink_target": ""
} |
<?php
namespace Floppy\Server\FileHandler;
use Symfony\Component\HttpFoundation\Response;
use Floppy\Common\FileHandler\PathMatcher;
use Floppy\Common\FileId;
use Floppy\Common\FileSource;
use Floppy\Common\FileType;
abstract class AbstractFileHandler implements FileHandler
{
private $pathMatcher;
private $responseFilters;
public function __construct(PathMatcher $pathMatcher, array $responseFilters)
{
$this->pathMatcher = $pathMatcher;
$this->responseFilters = $responseFilters;
}
public function match($variantFilepath)
{
return $this->pathMatcher->match($variantFilepath);
}
public function matches($variantFilepath)
{
return $this->pathMatcher->matches($variantFilepath);
}
public function beforeSendProcess(FileSource $file, FileId $fileId)
{
return $file;
}
public function beforeStoreProcess(FileSource $file)
{
return $file;
}
public function getStoreAttributes(FileSource $file)
{
$content = $file->content();
return array(
'mime-type' => $file->fileType()->mimeType(),
'extension' => $file->fileType()->extension(),
'size' => strlen($content),
) + $this->doGetStoreAttributes($file);
}
protected function doGetStoreAttributes(FileSource $file)
{
return array();
}
public function supports(FileType $fileType)
{
return in_array($fileType->mimeType(), $this->supportedMimeTypes()) && in_array($fileType->extension(), $this->supportedExtensions());
}
protected abstract function supportedMimeTypes();
protected abstract function supportedExtensions();
public function filterResponse(Response $response, FileSource $fileSource, FileId $fileId)
{
foreach($this->responseFilters as $filter) {
$filter->filterResponse($response, $fileSource, $fileId);
}
}
} | {
"content_hash": "3bffc4cf6fcdb4879013cdfd5993adb3",
"timestamp": "",
"source": "github",
"line_count": 73,
"max_line_length": 142,
"avg_line_length": 26.767123287671232,
"alnum_prop": 0.6622313203684749,
"repo_name": "zineinc/floppy-server",
"id": "a6e0134663db1e67f3499e0bc4cddefba6f8ab54",
"size": "1954",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/Floppy/Server/FileHandler/AbstractFileHandler.php",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "PHP",
"bytes": "165633"
}
],
"symlink_target": ""
} |
package apps::antivirus::kaspersky::snmp::mode::logicalnetwork;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
my $instance_mode;
sub custom_status_threshold {
my ($self, %options) = @_;
my $status = 'ok';
my $message;
eval {
local $SIG{__WARN__} = sub { $message = $_[0]; };
local $SIG{__DIE__} = sub { $message = $_[0]; };
if (defined($instance_mode->{option_results}->{critical_status}) && $instance_mode->{option_results}->{critical_status} ne '' &&
eval "$instance_mode->{option_results}->{critical_status}") {
$status = 'critical';
} elsif (defined($instance_mode->{option_results}->{warning_status}) && $instance_mode->{option_results}->{warning_status} ne '' &&
eval "$instance_mode->{option_results}->{warning_status}") {
$status = 'warning';
}
};
if (defined($message)) {
$self->{output}->output_add(long_msg => 'filter status issue: ' . $message);
}
return $status;
}
sub custom_status_output {
my ($self, %options) = @_;
my $msg = sprintf("Logical network status is '%s'", $self->{result_values}->{status});
return $msg;
}
sub custom_status_calc {
my ($self, %options) = @_;
$self->{result_values}->{status} = $options{new_datas}->{$self->{instance} . '_logicalNetworkStatus'};
return 0;
}
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'global', type => 0, message_separator => ' - ' },
];
$self->{maps_counters}->{global} = [
{ label => 'status', set => {
key_values => [ { name => 'logicalNetworkStatus' } ],
closure_custom_calc => $self->can('custom_status_calc'),
closure_custom_output => $self->can('custom_status_output'),
closure_custom_perfdata => sub { return 0; },
closure_custom_threshold_check => $self->can('custom_status_threshold'),
}
},
{ label => 'new-hosts', set => {
key_values => [ { name => 'hostsFound' } ],
output_template => '%d new host(s) found',
perfdatas => [
{ label => 'new_hosts', value => 'hostsFound_absolute', template => '%d', min => 0 },
],
}
},
{ label => 'groups', set => {
key_values => [ { name => 'groupsCount' } ],
output_template => '%d group(s) on the server',
perfdatas => [
{ label => 'groups', value => 'groupsCount_absolute', template => '%d', min => 0 },
],
}
},
{ label => 'not-connected-long-time', set => {
key_values => [ { name => 'hostsNotConnectedLongTime' } ],
output_template => '%d host(s) has not connected for a long time',
perfdatas => [
{ label => 'not_connected_long_time', value => 'hostsNotConnectedLongTime_absolute', template => '%d', min => 0 },
],
}
},
{ label => 'not-controlled', set => {
key_values => [ { name => 'hostsControlLost' } ],
output_template => '%d host(s) are not controlled',
perfdatas => [
{ label => 'not_controlled', value => 'hostsControlLost_absolute', template => '%d', min => 0 },
],
}
},
];
}
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$self->{version} = '1.0';
$options{options}->add_options(arguments =>
{
"warning-status:s" => { name => 'warning_status', default => '%{status} =~ /Warning/i' },
"critical-status:s" => { name => 'critical_status', default => '%{status} =~ /Critical/i' },
});
return $self;
}
sub change_macros {
my ($self, %options) = @_;
foreach ('warning_status', 'critical_status') {
if (defined($self->{option_results}->{$_})) {
$self->{option_results}->{$_} =~ s/%\{(.*?)\}/\$self->{result_values}->{$1}/g;
}
}
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::check_options(%options);
$instance_mode = $self;
$self->change_macros();
}
my %map_status = (
0 => 'OK',
1 => 'Info',
2 => 'Warning',
3 => 'Critical',
);
my $oid_logicalNetworkStatus = '.1.3.6.1.4.1.23668.1093.1.5.1';
my $oid_hostsFound = '.1.3.6.1.4.1.23668.1093.1.5.3';
my $oid_groupsCount = '.1.3.6.1.4.1.23668.1093.1.5.4';
my $oid_hostsNotConnectedLongTime = '.1.3.6.1.4.1.23668.1093.1.5.5';
my $oid_hostsControlLost = '.1.3.6.1.4.1.23668.1093.1.5.6';
sub manage_selection {
my ($self, %options) = @_;
my $snmp_result = $options{snmp}->get_leef(oids => [ $oid_logicalNetworkStatus, $oid_hostsFound,
$oid_groupsCount, $oid_hostsNotConnectedLongTime,
$oid_hostsControlLost ],
nothing_quit => 1);
$self->{global} = {};
$self->{global} = {
logicalNetworkStatus => $map_status{$snmp_result->{$oid_logicalNetworkStatus}},
hostsFound => $snmp_result->{$oid_hostsFound},
groupsCount => $snmp_result->{$oid_groupsCount},
hostsNotConnectedLongTime => $snmp_result->{$oid_hostsNotConnectedLongTime},
hostsControlLost => $snmp_result->{$oid_hostsControlLost},
};
}
1;
__END__
=head1 MODE
Check logical network status.
=over 8
=item B<--warning-status>
Set warning threshold for status. (Default: '%{status} =~ /Warning/i').
Can use special variables like: %{status}
=item B<--critical-status>
Set critical threshold for status. (Default: '%{status} =~ /Critical/i').
Can use special variables like: %{status}
=item B<--warning-*>
Threshold warning.
Can be: 'new-hosts', 'groups', 'not-connected-long-time', 'not-controlled'.
=item B<--critical-*>
Threshold critical.
Can be: 'new-hosts', 'groups', 'not-connected-long-time', 'not-controlled'.
=back
=cut
| {
"content_hash": "a9d741f2cc371fb6dcb7c8257a50530c",
"timestamp": "",
"source": "github",
"line_count": 195,
"max_line_length": 139,
"avg_line_length": 32.56410256410256,
"alnum_prop": 0.512755905511811,
"repo_name": "wilfriedcomte/centreon-plugins",
"id": "ba5743ff2fbe919555a9fa63e714c2a089a8a47a",
"size": "7110",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "apps/antivirus/kaspersky/snmp/mode/logicalnetwork.pm",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Perl",
"bytes": "5844487"
}
],
"symlink_target": ""
} |
MySafenet is complementary to the [SAFE Demo App](https://maidsafe.readme.io/docs/demo-app) and aims to help you explore
the capabilities of the SAFE Network and serve as a sample of a non trivial application built on it.
Once given authorization the main screen shows most of what is offered. You can manage Public IDs and
services and manage files and folders by simply dragging and dropping them.
## Changelog
### v0.0.0.2
* Downloads file & folders from explorer view.
### v0.0.0.1
* Initial release, configure public ids, upload files.
[MySafenet-v0.0.0.2.zip](Files/MySafenet-v0.0.0.2.zip) (.NET + Winforms)\
You find the [source on GitHub](https://github.com/drunkcod/Safenet)

| {
"content_hash": "76a4cb67fcf30c01ca81a57758003c01",
"timestamp": "",
"source": "github",
"line_count": 18,
"max_line_length": 122,
"avg_line_length": 41.94444444444444,
"alnum_prop": 0.7390728476821192,
"repo_name": "drunkcod/Safenet",
"id": "ddc3f7b96388670fa63da1112ea42d5d99df669f",
"size": "777",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "Docs/MySafenet.md",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Batchfile",
"bytes": "117"
},
{
"name": "C#",
"bytes": "76200"
},
{
"name": "CSS",
"bytes": "659"
},
{
"name": "HTML",
"bytes": "256"
}
],
"symlink_target": ""
} |
/* **********************************************
Begin TL.js
********************************************** */
/*!
TL
*/
(function (root) {
root.TL = {
VERSION: '0.1',
_originalL: root.TL
};
}(this));
/* TL.Debug
Debug mode
================================================== */
TL.debug = false;
/* TL.Bind
================================================== */
TL.Bind = function (/*Function*/ fn, /*Object*/ obj) /*-> Object*/ {
return function () {
return fn.apply(obj, arguments);
};
};
/* Trace (console.log)
================================================== */
trace = function( msg ) {
if (TL.debug) {
if (window.console) {
console.log(msg);
} else if ( typeof( jsTrace ) != 'undefined' ) {
jsTrace.send( msg );
} else {
//alert(msg);
}
}
}
/* **********************************************
Begin TL.Error.js
********************************************** */
/* Timeline Error class */
function TL_Error(message_key, detail) {
this.name = 'TL.Error';
this.message = message_key || 'error';
this.message_key = this.message;
this.detail = detail || '';
// Grab stack?
var e = new Error();
if(e.hasOwnProperty('stack')) {
this.stack = e.stack;
}
}
TL_Error.prototype = Object.create(Error.prototype);
TL_Error.prototype.constructor = TL_Error;
TL.Error = TL_Error;
/* **********************************************
Begin TL.Util.js
********************************************** */
/* TL.Util
Class of utilities
================================================== */
TL.Util = {
mergeData: function(data_main, data_to_merge) {
var x;
for (x in data_to_merge) {
if (Object.prototype.hasOwnProperty.call(data_to_merge, x)) {
data_main[x] = data_to_merge[x];
}
}
return data_main;
},
// like TL.Util.mergeData but takes an arbitrarily long list of sources to merge.
extend: function (/*Object*/ dest) /*-> Object*/ { // merge src properties into dest
var sources = Array.prototype.slice.call(arguments, 1);
for (var j = 0, len = sources.length, src; j < len; j++) {
src = sources[j] || {};
TL.Util.mergeData(dest, src);
}
return dest;
},
isEven: function(n) {
return n == parseFloat(n)? !(n%2) : void 0;
},
isTrue: function(s) {
if (s == null) return false;
return s == true || String(s).toLowerCase() == 'true' || Number(s) == 1;
},
findArrayNumberByUniqueID: function(id, array, prop, defaultVal) {
var _n = defaultVal || 0;
for (var i = 0; i < array.length; i++) {
if (array[i].data[prop] == id) {
_n = i;
}
};
return _n;
},
convertUnixTime: function(str) {
var _date, _months, _year, _month, _day, _time, _date_array = [],
_date_str = {
ymd:"",
time:"",
time_array:[],
date_array:[],
full_array:[]
};
_date_str.ymd = str.split(" ")[0];
_date_str.time = str.split(" ")[1];
_date_str.date_array = _date_str.ymd.split("-");
_date_str.time_array = _date_str.time.split(":");
_date_str.full_array = _date_str.date_array.concat(_date_str.time_array)
for(var i = 0; i < _date_str.full_array.length; i++) {
_date_array.push( parseInt(_date_str.full_array[i]) )
}
_date = new Date(_date_array[0], _date_array[1], _date_array[2], _date_array[3], _date_array[4], _date_array[5]);
_months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
_year = _date.getFullYear();
_month = _months[_date.getMonth()];
_day = _date.getDate();
_time = _month + ', ' + _day + ' ' + _year;
return _time;
},
setData: function (obj, data) {
obj.data = TL.Util.extend({}, obj.data, data);
if (obj.data.unique_id === "") {
obj.data.unique_id = TL.Util.unique_ID(6);
}
},
stamp: (function () {
var lastId = 0, key = '_tl_id';
return function (/*Object*/ obj) {
obj[key] = obj[key] || ++lastId;
return obj[key];
};
}()),
isArray: (function () {
// Use compiler's own isArray when available
if (Array.isArray) {
return Array.isArray;
}
// Retain references to variables for performance
// optimization
var objectToStringFn = Object.prototype.toString,
arrayToStringResult = objectToStringFn.call([]);
return function (subject) {
return objectToStringFn.call(subject) === arrayToStringResult;
};
}()),
getRandomNumber: function(range) {
return Math.floor(Math.random() * range);
},
unique_ID: function(size, prefix) {
var getRandomNumber = function(range) {
return Math.floor(Math.random() * range);
};
var getRandomChar = function() {
var chars = "abcdefghijklmnopqurstuvwxyz";
return chars.substr( getRandomNumber(32), 1 );
};
var randomID = function(size) {
var str = "";
for(var i = 0; i < size; i++) {
str += getRandomChar();
}
return str;
};
if (prefix) {
return prefix + "-" + randomID(size);
} else {
return "tl-" + randomID(size);
}
},
ensureUniqueKey: function(obj, candidate) {
if (!candidate) { candidate = TL.Util.unique_ID(6); }
if (!(candidate in obj)) { return candidate; }
var root = candidate.match(/^(.+)(-\d+)?$/)[1];
var similar_ids = [];
// get an alternative
for (key in obj) {
if (key.match(/^(.+?)(-\d+)?$/)[1] == root) {
similar_ids.push(key);
}
}
candidate = root + "-" + (similar_ids.length + 1);
for (var counter = similar_ids.length; similar_ids.indexOf(candidate) != -1; counter++) {
candidate = root + '-' + counter;
}
return candidate;
},
htmlify: function(str) {
//if (str.match(/<\s*p[^>]*>([^<]*)<\s*\/\s*p\s*>/)) {
if (str.match(/<p>[\s\S]*?<\/p>/)) {
return str;
} else {
return "<p>" + str + "</p>";
}
},
/* * Turns plain text links into real links
================================================== */
linkify: function(text,targets,is_touch) {
var make_link = function(url, link_text, prefix) {
if (!prefix) {
prefix = "";
}
var MAX_LINK_TEXT_LENGTH = 30;
if (link_text && link_text.length > MAX_LINK_TEXT_LENGTH) {
link_text = link_text.substring(0,MAX_LINK_TEXT_LENGTH) + "\u2026"; // unicode ellipsis
}
return prefix + "<a class='tl-makelink' href='" + url + "' onclick='void(0)'>" + link_text + "</a>";
}
// http://, https://, ftp://
var urlPattern = /\b(?:https?|ftp):\/\/([a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|])/gim;
// www. sans http:// or https://
var pseudoUrlPattern = /(^|[^\/>])(www\.[\S]+(\b|$))/gim;
// Email addresses
var emailAddressPattern = /([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)/gim;
return text
.replace(urlPattern, function(match, url_sans_protocol, offset, string) {
// Javascript doesn't support negative lookbehind assertions, so
// we need to handle risk of matching URLs in legit hrefs
if (offset > 0) {
var prechar = string[offset-1];
if (prechar == '"' || prechar == "'" || prechar == "=") {
return match;
}
}
return make_link(match, url_sans_protocol);
})
.replace(pseudoUrlPattern, function(match, beforePseudo, pseudoUrl, offset, string) {
return make_link('http://' + pseudoUrl, pseudoUrl, beforePseudo);
})
.replace(emailAddressPattern, function(match, email, offset, string) {
return make_link('mailto:' + email, email);
});
},
unlinkify: function(text) {
if(!text) return text;
text = text.replace(/<a\b[^>]*>/i,"");
text = text.replace(/<\/a>/i, "");
return text;
},
getParamString: function (obj) {
var params = [];
for (var i in obj) {
if (obj.hasOwnProperty(i)) {
params.push(i + '=' + obj[i]);
}
}
return '?' + params.join('&');
},
formatNum: function (num, digits) {
var pow = Math.pow(10, digits || 5);
return Math.round(num * pow) / pow;
},
falseFn: function () {
return false;
},
requestAnimFrame: (function () {
function timeoutDefer(callback) {
window.setTimeout(callback, 1000 / 60);
}
var requestFn = window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
timeoutDefer;
return function (callback, context, immediate, contextEl) {
callback = context ? TL.Util.bind(callback, context) : callback;
if (immediate && requestFn === timeoutDefer) {
callback();
} else {
requestFn(callback, contextEl);
}
};
}()),
bind: function (/*Function*/ fn, /*Object*/ obj) /*-> Object*/ {
return function () {
return fn.apply(obj, arguments);
};
},
template: function (str, data) {
return str.replace(/\{ *([\w_]+) *\}/g, function (str, key) {
var value = data[key];
if (!data.hasOwnProperty(key)) {
throw new TL.Error("template_value_err", str);
}
return value;
});
},
hexToRgb: function(hex) {
// Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
if (TL.Util.css_named_colors[hex.toLowerCase()]) {
hex = TL.Util.css_named_colors[hex.toLowerCase()];
}
var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
hex = hex.replace(shorthandRegex, function(m, r, g, b) {
return r + r + g + g + b + b;
});
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
return result ? {
r: parseInt(result[1], 16),
g: parseInt(result[2], 16),
b: parseInt(result[3], 16)
} : null;
},
// given an object with r, g, and b keys, or a string of the form 'rgb(mm,nn,ll)', return a CSS hex string including the leading '#' character
rgbToHex: function(rgb) {
var r,g,b;
if (typeof(rgb) == 'object') {
r = rgb.r;
g = rgb.g;
b = rgb.b;
} else if (typeof(rgb.match) == 'function'){
var parts = rgb.match(/^rgb\((\d+),(\d+),(\d+)\)$/);
if (parts) {
r = parts[1];
g = parts[2];
b = parts[3];
}
}
if (isNaN(r) || isNaN(b) || isNaN(g)) {
throw new TL.Error("invalid_rgb_err");
}
return "#" + TL.Util.intToHexString(r) + TL.Util.intToHexString(g) + TL.Util.intToHexString(b);
},
colorObjToHex: function(o) {
var parts = [o.r, o.g, o.b];
return TL.Util.rgbToHex("rgb(" + parts.join(',') + ")")
},
css_named_colors: {
"aliceblue": "#f0f8ff",
"antiquewhite": "#faebd7",
"aqua": "#00ffff",
"aquamarine": "#7fffd4",
"azure": "#f0ffff",
"beige": "#f5f5dc",
"bisque": "#ffe4c4",
"black": "#000000",
"blanchedalmond": "#ffebcd",
"blue": "#0000ff",
"blueviolet": "#8a2be2",
"brown": "#a52a2a",
"burlywood": "#deb887",
"cadetblue": "#5f9ea0",
"chartreuse": "#7fff00",
"chocolate": "#d2691e",
"coral": "#ff7f50",
"cornflowerblue": "#6495ed",
"cornsilk": "#fff8dc",
"crimson": "#dc143c",
"cyan": "#00ffff",
"darkblue": "#00008b",
"darkcyan": "#008b8b",
"darkgoldenrod": "#b8860b",
"darkgray": "#a9a9a9",
"darkgreen": "#006400",
"darkkhaki": "#bdb76b",
"darkmagenta": "#8b008b",
"darkolivegreen": "#556b2f",
"darkorange": "#ff8c00",
"darkorchid": "#9932cc",
"darkred": "#8b0000",
"darksalmon": "#e9967a",
"darkseagreen": "#8fbc8f",
"darkslateblue": "#483d8b",
"darkslategray": "#2f4f4f",
"darkturquoise": "#00ced1",
"darkviolet": "#9400d3",
"deeppink": "#ff1493",
"deepskyblue": "#00bfff",
"dimgray": "#696969",
"dodgerblue": "#1e90ff",
"firebrick": "#b22222",
"floralwhite": "#fffaf0",
"forestgreen": "#228b22",
"fuchsia": "#ff00ff",
"gainsboro": "#dcdcdc",
"ghostwhite": "#f8f8ff",
"gold": "#ffd700",
"goldenrod": "#daa520",
"gray": "#808080",
"green": "#008000",
"greenyellow": "#adff2f",
"honeydew": "#f0fff0",
"hotpink": "#ff69b4",
"indianred": "#cd5c5c",
"indigo": "#4b0082",
"ivory": "#fffff0",
"khaki": "#f0e68c",
"lavender": "#e6e6fa",
"lavenderblush": "#fff0f5",
"lawngreen": "#7cfc00",
"lemonchiffon": "#fffacd",
"lightblue": "#add8e6",
"lightcoral": "#f08080",
"lightcyan": "#e0ffff",
"lightgoldenrodyellow": "#fafad2",
"lightgray": "#d3d3d3",
"lightgreen": "#90ee90",
"lightpink": "#ffb6c1",
"lightsalmon": "#ffa07a",
"lightseagreen": "#20b2aa",
"lightskyblue": "#87cefa",
"lightslategray": "#778899",
"lightsteelblue": "#b0c4de",
"lightyellow": "#ffffe0",
"lime": "#00ff00",
"limegreen": "#32cd32",
"linen": "#faf0e6",
"magenta": "#ff00ff",
"maroon": "#800000",
"mediumaquamarine": "#66cdaa",
"mediumblue": "#0000cd",
"mediumorchid": "#ba55d3",
"mediumpurple": "#9370db",
"mediumseagreen": "#3cb371",
"mediumslateblue": "#7b68ee",
"mediumspringgreen": "#00fa9a",
"mediumturquoise": "#48d1cc",
"mediumvioletred": "#c71585",
"midnightblue": "#191970",
"mintcream": "#f5fffa",
"mistyrose": "#ffe4e1",
"moccasin": "#ffe4b5",
"navajowhite": "#ffdead",
"navy": "#000080",
"oldlace": "#fdf5e6",
"olive": "#808000",
"olivedrab": "#6b8e23",
"orange": "#ffa500",
"orangered": "#ff4500",
"orchid": "#da70d6",
"palegoldenrod": "#eee8aa",
"palegreen": "#98fb98",
"paleturquoise": "#afeeee",
"palevioletred": "#db7093",
"papayawhip": "#ffefd5",
"peachpuff": "#ffdab9",
"peru": "#cd853f",
"pink": "#ffc0cb",
"plum": "#dda0dd",
"powderblue": "#b0e0e6",
"purple": "#800080",
"rebeccapurple": "#663399",
"red": "#ff0000",
"rosybrown": "#bc8f8f",
"royalblue": "#4169e1",
"saddlebrown": "#8b4513",
"salmon": "#fa8072",
"sandybrown": "#f4a460",
"seagreen": "#2e8b57",
"seashell": "#fff5ee",
"sienna": "#a0522d",
"silver": "#c0c0c0",
"skyblue": "#87ceeb",
"slateblue": "#6a5acd",
"slategray": "#708090",
"snow": "#fffafa",
"springgreen": "#00ff7f",
"steelblue": "#4682b4",
"tan": "#d2b48c",
"teal": "#008080",
"thistle": "#d8bfd8",
"tomato": "#ff6347",
"turquoise": "#40e0d0",
"violet": "#ee82ee",
"wheat": "#f5deb3",
"white": "#ffffff",
"whitesmoke": "#f5f5f5",
"yellow": "#ffff00",
"yellowgreen": "#9acd32"
},
ratio: {
square: function(size) {
var s = {
w: 0,
h: 0
}
if (size.w > size.h && size.h > 0) {
s.h = size.h;
s.w = size.h;
} else {
s.w = size.w;
s.h = size.w;
}
return s;
},
r16_9: function(size) {
if (size.w !== null && size.w !== "") {
return Math.round((size.w / 16) * 9);
} else if (size.h !== null && size.h !== "") {
return Math.round((size.h / 9) * 16);
} else {
return 0;
}
},
r4_3: function(size) {
if (size.w !== null && size.w !== "") {
return Math.round((size.w / 4) * 3);
} else if (size.h !== null && size.h !== "") {
return Math.round((size.h / 3) * 4);
}
}
},
getObjectAttributeByIndex: function(obj, index) {
if(typeof obj != 'undefined') {
var i = 0;
for (var attr in obj){
if (index === i){
return obj[attr];
}
i++;
}
return "";
} else {
return "";
}
},
getUrlVars: function(string) {
var str,
vars = [],
hash,
hashes;
str = string.toString();
if (str.match('&')) {
str = str.replace("&", "&");
} else if (str.match('&')) {
str = str.replace("&", "&");
} else if (str.match('&')) {
str = str.replace("&", "&");
}
hashes = str.slice(str.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++) {
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
},
/**
* Remove any leading or trailing whitespace from the given string.
* If `str` is undefined or does not have a `replace` function, return
* an empty string.
*/
trim: function(str) {
if (str && typeof(str.replace) == 'function') {
return str.replace(/^\s+|\s+$/g, '');
}
return "";
},
slugify: function(str) {
// borrowed from http://stackoverflow.com/a/5782563/102476
str = TL.Util.trim(str);
str = str.toLowerCase();
// remove accents, swap ñ for n, etc
var from = "ãàáäâẽèéëêìíïîõòóöôùúüûñç·/_,:;";
var to = "aaaaaeeeeeiiiiooooouuuunc------";
for (var i=0, l=from.length ; i<l ; i++) {
str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
}
str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
.replace(/\s+/g, '-') // collapse whitespace and replace by -
.replace(/-+/g, '-'); // collapse dashes
str = str.replace(/^([0-9])/,'_$1');
return str;
},
maxDepth: function(ary) {
// given a sorted array of 2-tuples of numbers, count how many "deep" the items are.
// that is, what is the maximum number of tuples that occupy any one moment
// each tuple should also be sorted
var stack = [];
var max_depth = 0;
for (var i = 0; i < ary.length; i++) {
stack.push(ary[i]);
if (stack.length > 1) {
var top = stack[stack.length - 1]
var bottom_idx = -1;
for (var j = 0; j < stack.length - 1; j++) {
if (stack[j][1] < top[0]) {
bottom_idx = j;
}
};
if (bottom_idx >= 0) {
stack = stack.slice(bottom_idx + 1);
}
}
if (stack.length > max_depth) {
max_depth = stack.length;
}
};
return max_depth;
},
pad: function (val, len) {
val = String(val);
len = len || 2;
while (val.length < len) val = "0" + val;
return val;
},
intToHexString: function(i) {
return TL.Util.pad(parseInt(i,10).toString(16));
},
findNextGreater: function(list, current, default_value) {
// given a sorted list and a current value which *might* be in the list,
// return the next greatest value if the current value is >= the last item in the list, return default,
// or if default is undefined, return input value
for (var i = 0; i < list.length; i++) {
if (current < list[i]) {
return list[i];
}
}
return (default_value) ? default_value : current;
},
findNextLesser: function(list, current, default_value) {
// given a sorted list and a current value which *might* be in the list,
// return the next lesser value if the current value is <= the last item in the list, return default,
// or if default is undefined, return input value
for (var i = list.length - 1; i >= 0; i--) {
if (current > list[i]) {
return list[i];
}
}
return (default_value) ? default_value : current;
},
isEmptyObject: function(o) {
var properties = []
if (Object.keys) {
properties = Object.keys(o);
} else { // all this to support IE 8
for (var p in o) if (Object.prototype.hasOwnProperty.call(o,p)) properties.push(p);
}
for (var i = 0; i < properties.length; i++) {
var k = properties[i];
if (o[k] != null && typeof o[k] != "string") return false;
if (TL.Util.trim(o[k]).length != 0) return false;
}
return true;
},
parseYouTubeTime: function(s) {
// given a YouTube start time string in a reasonable format, reduce it to a number of seconds as an integer.
if (typeof(s) == 'string') {
parts = s.match(/^\s*(\d+h)?(\d+m)?(\d+s)?\s*/i);
if (parts) {
var hours = parseInt(parts[1]) || 0;
var minutes = parseInt(parts[2]) || 0;
var seconds = parseInt(parts[3]) || 0;
return seconds + (minutes * 60) + (hours * 60 * 60);
}
} else if (typeof(s) == 'number') {
return s;
}
return 0;
},
/**
* Try to make seamless the process of interpreting a URL to a web page which embeds an image for sharing purposes
* as a direct image link. Some services have predictable transformations we can use rather than explain to people
* this subtlety.
*/
transformImageURL: function(url) {
return url.replace(/(.*)www.dropbox.com\/(.*)/, '$1dl.dropboxusercontent.com/$2')
},
base58: (function(alpha) {
var alphabet = alpha || '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ',
base = alphabet.length;
return {
encode: function(enc) {
if(typeof enc!=='number' || enc !== parseInt(enc))
throw '"encode" only accepts integers.';
var encoded = '';
while(enc) {
var remainder = enc % base;
enc = Math.floor(enc / base);
encoded = alphabet[remainder].toString() + encoded;
}
return encoded;
},
decode: function(dec) {
if(typeof dec!=='string')
throw '"decode" only accepts strings.';
var decoded = 0;
while(dec) {
var alphabetPosition = alphabet.indexOf(dec[0]);
if (alphabetPosition < 0)
throw '"decode" can\'t find "' + dec[0] + '" in the alphabet: "' + alphabet + '"';
var powerOf = dec.length - 1;
decoded += alphabetPosition * (Math.pow(base, powerOf));
dec = dec.substring(1);
}
return decoded;
}
};
})()
};
/* **********************************************
Begin TL.Data.js
********************************************** */
// Expects TL to be visible in scope
;(function(TL){
/* Zepto v1.1.2-15-g59d3fe5 - zepto event ajax form ie - zeptojs.com/license */
var Zepto = (function() {
var undefined, key, $, classList, emptyArray = [], slice = emptyArray.slice, filter = emptyArray.filter,
document = window.document,
elementDisplay = {}, classCache = {},
cssNumber = { 'column-count': 1, 'columns': 1, 'font-weight': 1, 'line-height': 1,'opacity': 1, 'z-index': 1, 'zoom': 1 },
fragmentRE = /^\s*<(\w+|!)[^>]*>/,
singleTagRE = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
tagExpanderRE = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,
rootNodeRE = /^(?:body|html)$/i,
capitalRE = /([A-Z])/g,
// special attributes that should be get/set via method calls
methodAttributes = ['val', 'css', 'html', 'text', 'data', 'width', 'height', 'offset'],
adjacencyOperators = [ 'after', 'prepend', 'before', 'append' ],
table = document.createElement('table'),
tableRow = document.createElement('tr'),
containers = {
'tr': document.createElement('tbody'),
'tbody': table, 'thead': table, 'tfoot': table,
'td': tableRow, 'th': tableRow,
'*': document.createElement('div')
},
readyRE = /complete|loaded|interactive/,
classSelectorRE = /^\.([\w-]+)$/,
idSelectorRE = /^#([\w-]*)$/,
simpleSelectorRE = /^[\w-]*$/,
class2type = {},
toString = class2type.toString,
zepto = {},
camelize, uniq,
tempParent = document.createElement('div'),
propMap = {
'tabindex': 'tabIndex',
'readonly': 'readOnly',
'for': 'htmlFor',
'class': 'className',
'maxlength': 'maxLength',
'cellspacing': 'cellSpacing',
'cellpadding': 'cellPadding',
'rowspan': 'rowSpan',
'colspan': 'colSpan',
'usemap': 'useMap',
'frameborder': 'frameBorder',
'contenteditable': 'contentEditable'
},
isArray = Array.isArray ||
function(object){ return object instanceof Array }
zepto.matches = function(element, selector) {
if (!selector || !element || element.nodeType !== 1) return false
var matchesSelector = element.webkitMatchesSelector || element.mozMatchesSelector ||
element.oMatchesSelector || element.matchesSelector
if (matchesSelector) return matchesSelector.call(element, selector)
// fall back to performing a selector:
var match, parent = element.parentNode, temp = !parent
if (temp) (parent = tempParent).appendChild(element)
match = ~zepto.qsa(parent, selector).indexOf(element)
temp && tempParent.removeChild(element)
return match
}
function type(obj) {
return obj == null ? String(obj) :
class2type[toString.call(obj)] || "object"
}
function isFunction(value) { return type(value) == "function" }
function isWindow(obj) { return obj != null && obj == obj.window }
function isDocument(obj) { return obj != null && obj.nodeType == obj.DOCUMENT_NODE }
function isObject(obj) { return type(obj) == "object" }
function isPlainObject(obj) {
return isObject(obj) && !isWindow(obj) && Object.getPrototypeOf(obj) == Object.prototype
}
function likeArray(obj) { return typeof obj.length == 'number' }
function compact(array) { return filter.call(array, function(item){ return item != null }) }
function flatten(array) { return array.length > 0 ? $.fn.concat.apply([], array) : array }
camelize = function(str){ return str.replace(/-+(.)?/g, function(match, chr){ return chr ? chr.toUpperCase() : '' }) }
function dasherize(str) {
return str.replace(/::/g, '/')
.replace(/([A-Z]+)([A-Z][a-z])/g, '$1_$2')
.replace(/([a-z\d])([A-Z])/g, '$1_$2')
.replace(/_/g, '-')
.toLowerCase()
}
uniq = function(array){ return filter.call(array, function(item, idx){ return array.indexOf(item) == idx }) }
function classRE(name) {
return name in classCache ?
classCache[name] : (classCache[name] = new RegExp('(^|\\s)' + name + '(\\s|$)'))
}
function maybeAddPx(name, value) {
return (typeof value == "number" && !cssNumber[dasherize(name)]) ? value + "px" : value
}
function defaultDisplay(nodeName) {
var element, display
if (!elementDisplay[nodeName]) {
element = document.createElement(nodeName)
document.body.appendChild(element)
display = getComputedStyle(element, '').getPropertyValue("display")
element.parentNode.removeChild(element)
display == "none" && (display = "block")
elementDisplay[nodeName] = display
}
return elementDisplay[nodeName]
}
function children(element) {
return 'children' in element ?
slice.call(element.children) :
$.map(element.childNodes, function(node){ if (node.nodeType == 1) return node })
}
// `$.zepto.fragment` takes a html string and an optional tag name
// to generate DOM nodes nodes from the given html string.
// The generated DOM nodes are returned as an array.
// This function can be overriden in plugins for example to make
// it compatible with browsers that don't support the DOM fully.
zepto.fragment = function(html, name, properties) {
var dom, nodes, container
// A special case optimization for a single tag
if (singleTagRE.test(html)) dom = $(document.createElement(RegExp.$1))
if (!dom) {
if (html.replace) html = html.replace(tagExpanderRE, "<$1></$2>")
if (name === undefined) name = fragmentRE.test(html) && RegExp.$1
if (!(name in containers)) name = '*'
container = containers[name]
container.innerHTML = '' + html
dom = $.each(slice.call(container.childNodes), function(){
container.removeChild(this)
})
}
if (isPlainObject(properties)) {
nodes = $(dom)
$.each(properties, function(key, value) {
if (methodAttributes.indexOf(key) > -1) nodes[key](value)
else nodes.attr(key, value)
})
}
return dom
}
// `$.zepto.Z` swaps out the prototype of the given `dom` array
// of nodes with `$.fn` and thus supplying all the Zepto functions
// to the array. Note that `__proto__` is not supported on Internet
// Explorer. This method can be overriden in plugins.
zepto.Z = function(dom, selector) {
dom = dom || []
dom.__proto__ = $.fn
dom.selector = selector || ''
return dom
}
// `$.zepto.isZ` should return `true` if the given object is a Zepto
// collection. This method can be overriden in plugins.
zepto.isZ = function(object) {
return object instanceof zepto.Z
}
// `$.zepto.init` is Zepto's counterpart to jQuery's `$.fn.init` and
// takes a CSS selector and an optional context (and handles various
// special cases).
// This method can be overriden in plugins.
zepto.init = function(selector, context) {
var dom
// If nothing given, return an empty Zepto collection
if (!selector) return zepto.Z()
// Optimize for string selectors
else if (typeof selector == 'string') {
selector = selector.trim()
// If it's a html fragment, create nodes from it
// Note: In both Chrome 21 and Firefox 15, DOM error 12
// is thrown if the fragment doesn't begin with <
if (selector[0] == '<' && fragmentRE.test(selector))
dom = zepto.fragment(selector, RegExp.$1, context), selector = null
// If there's a context, create a collection on that context first, and select
// nodes from there
else if (context !== undefined) return $(context).find(selector)
// If it's a CSS selector, use it to select nodes.
else dom = zepto.qsa(document, selector)
}
// If a function is given, call it when the DOM is ready
else if (isFunction(selector)) return $(document).ready(selector)
// If a Zepto collection is given, just return it
else if (zepto.isZ(selector)) return selector
else {
// normalize array if an array of nodes is given
if (isArray(selector)) dom = compact(selector)
// Wrap DOM nodes.
else if (isObject(selector))
dom = [selector], selector = null
// If it's a html fragment, create nodes from it
else if (fragmentRE.test(selector))
dom = zepto.fragment(selector.trim(), RegExp.$1, context), selector = null
// If there's a context, create a collection on that context first, and select
// nodes from there
else if (context !== undefined) return $(context).find(selector)
// And last but no least, if it's a CSS selector, use it to select nodes.
else dom = zepto.qsa(document, selector)
}
// create a new Zepto collection from the nodes found
return zepto.Z(dom, selector)
}
// `$` will be the base `Zepto` object. When calling this
// function just call `$.zepto.init, which makes the implementation
// details of selecting nodes and creating Zepto collections
// patchable in plugins.
$ = function(selector, context){
return zepto.init(selector, context)
}
function extend(target, source, deep) {
for (key in source)
if (deep && (isPlainObject(source[key]) || isArray(source[key]))) {
if (isPlainObject(source[key]) && !isPlainObject(target[key]))
target[key] = {}
if (isArray(source[key]) && !isArray(target[key]))
target[key] = []
extend(target[key], source[key], deep)
}
else if (source[key] !== undefined) target[key] = source[key]
}
// Copy all but undefined properties from one or more
// objects to the `target` object.
$.extend = function(target){
var deep, args = slice.call(arguments, 1)
if (typeof target == 'boolean') {
deep = target
target = args.shift()
}
args.forEach(function(arg){ extend(target, arg, deep) })
return target
}
// `$.zepto.qsa` is Zepto's CSS selector implementation which
// uses `document.querySelectorAll` and optimizes for some special cases, like `#id`.
// This method can be overriden in plugins.
zepto.qsa = function(element, selector){
var found,
maybeID = selector[0] == '#',
maybeClass = !maybeID && selector[0] == '.',
nameOnly = maybeID || maybeClass ? selector.slice(1) : selector, // Ensure that a 1 char tag name still gets checked
isSimple = simpleSelectorRE.test(nameOnly)
return (isDocument(element) && isSimple && maybeID) ?
( (found = element.getElementById(nameOnly)) ? [found] : [] ) :
(element.nodeType !== 1 && element.nodeType !== 9) ? [] :
slice.call(
isSimple && !maybeID ?
maybeClass ? element.getElementsByClassName(nameOnly) : // If it's simple, it could be a class
element.getElementsByTagName(selector) : // Or a tag
element.querySelectorAll(selector) // Or it's not simple, and we need to query all
)
}
function filtered(nodes, selector) {
return selector == null ? $(nodes) : $(nodes).filter(selector)
}
$.contains = function(parent, node) {
return parent !== node && parent.contains(node)
}
function funcArg(context, arg, idx, payload) {
return isFunction(arg) ? arg.call(context, idx, payload) : arg
}
function setAttribute(node, name, value) {
value == null ? node.removeAttribute(name) : node.setAttribute(name, value)
}
// access className property while respecting SVGAnimatedString
function className(node, value){
var klass = node.className,
svg = klass && klass.baseVal !== undefined
if (value === undefined) return svg ? klass.baseVal : klass
svg ? (klass.baseVal = value) : (node.className = value)
}
// "true" => true
// "false" => false
// "null" => null
// "42" => 42
// "42.5" => 42.5
// "08" => "08"
// JSON => parse if valid
// String => self
function deserializeValue(value) {
var num
try {
return value ?
value == "true" ||
( value == "false" ? false :
value == "null" ? null :
!/^0/.test(value) && !isNaN(num = Number(value)) ? num :
/^[\[\{]/.test(value) ? $.parseJSON(value) :
value )
: value
} catch(e) {
return value
}
}
$.type = type
$.isFunction = isFunction
$.isWindow = isWindow
$.isArray = isArray
$.isPlainObject = isPlainObject
$.isEmptyObject = function(obj) {
var name
for (name in obj) return false
return true
}
$.inArray = function(elem, array, i){
return emptyArray.indexOf.call(array, elem, i)
}
$.camelCase = camelize
$.trim = function(str) {
return str == null ? "" : String.prototype.trim.call(str)
}
// plugin compatibility
$.uuid = 0
$.support = { }
$.expr = { }
$.map = function(elements, callback){
var value, values = [], i, key
if (likeArray(elements))
for (i = 0; i < elements.length; i++) {
value = callback(elements[i], i)
if (value != null) values.push(value)
}
else
for (key in elements) {
value = callback(elements[key], key)
if (value != null) values.push(value)
}
return flatten(values)
}
$.each = function(elements, callback){
var i, key
if (likeArray(elements)) {
for (i = 0; i < elements.length; i++)
if (callback.call(elements[i], i, elements[i]) === false) return elements
} else {
for (key in elements)
if (callback.call(elements[key], key, elements[key]) === false) return elements
}
return elements
}
$.grep = function(elements, callback){
return filter.call(elements, callback)
}
if (window.JSON) $.parseJSON = JSON.parse
// Populate the class2type map
$.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
class2type[ "[object " + name + "]" ] = name.toLowerCase()
})
// Define methods that will be available on all
// Zepto collections
$.fn = {
// Because a collection acts like an array
// copy over these useful array functions.
forEach: emptyArray.forEach,
reduce: emptyArray.reduce,
push: emptyArray.push,
sort: emptyArray.sort,
indexOf: emptyArray.indexOf,
concat: emptyArray.concat,
// `map` and `slice` in the jQuery API work differently
// from their array counterparts
map: function(fn){
return $($.map(this, function(el, i){ return fn.call(el, i, el) }))
},
slice: function(){
return $(slice.apply(this, arguments))
},
ready: function(callback){
// need to check if document.body exists for IE as that browser reports
// document ready when it hasn't yet created the body element
if (readyRE.test(document.readyState) && document.body) callback($)
else document.addEventListener('DOMContentLoaded', function(){ callback($) }, false)
return this
},
get: function(idx){
return idx === undefined ? slice.call(this) : this[idx >= 0 ? idx : idx + this.length]
},
toArray: function(){ return this.get() },
size: function(){
return this.length
},
remove: function(){
return this.each(function(){
if (this.parentNode != null)
this.parentNode.removeChild(this)
})
},
each: function(callback){
emptyArray.every.call(this, function(el, idx){
return callback.call(el, idx, el) !== false
})
return this
},
filter: function(selector){
if (isFunction(selector)) return this.not(this.not(selector))
return $(filter.call(this, function(element){
return zepto.matches(element, selector)
}))
},
add: function(selector,context){
return $(uniq(this.concat($(selector,context))))
},
is: function(selector){
return this.length > 0 && zepto.matches(this[0], selector)
},
not: function(selector){
var nodes=[]
if (isFunction(selector) && selector.call !== undefined)
this.each(function(idx){
if (!selector.call(this,idx)) nodes.push(this)
})
else {
var excludes = typeof selector == 'string' ? this.filter(selector) :
(likeArray(selector) && isFunction(selector.item)) ? slice.call(selector) : $(selector)
this.forEach(function(el){
if (excludes.indexOf(el) < 0) nodes.push(el)
})
}
return $(nodes)
},
has: function(selector){
return this.filter(function(){
return isObject(selector) ?
$.contains(this, selector) :
$(this).find(selector).size()
})
},
eq: function(idx){
return idx === -1 ? this.slice(idx) : this.slice(idx, + idx + 1)
},
first: function(){
var el = this[0]
return el && !isObject(el) ? el : $(el)
},
last: function(){
var el = this[this.length - 1]
return el && !isObject(el) ? el : $(el)
},
find: function(selector){
var result, $this = this
if (typeof selector == 'object')
result = $(selector).filter(function(){
var node = this
return emptyArray.some.call($this, function(parent){
return $.contains(parent, node)
})
})
else if (this.length == 1) result = $(zepto.qsa(this[0], selector))
else result = this.map(function(){ return zepto.qsa(this, selector) })
return result
},
closest: function(selector, context){
var node = this[0], collection = false
if (typeof selector == 'object') collection = $(selector)
while (node && !(collection ? collection.indexOf(node) >= 0 : zepto.matches(node, selector)))
node = node !== context && !isDocument(node) && node.parentNode
return $(node)
},
parents: function(selector){
var ancestors = [], nodes = this
while (nodes.length > 0)
nodes = $.map(nodes, function(node){
if ((node = node.parentNode) && !isDocument(node) && ancestors.indexOf(node) < 0) {
ancestors.push(node)
return node
}
})
return filtered(ancestors, selector)
},
parent: function(selector){
return filtered(uniq(this.pluck('parentNode')), selector)
},
children: function(selector){
return filtered(this.map(function(){ return children(this) }), selector)
},
contents: function() {
return this.map(function() { return slice.call(this.childNodes) })
},
siblings: function(selector){
return filtered(this.map(function(i, el){
return filter.call(children(el.parentNode), function(child){ return child!==el })
}), selector)
},
empty: function(){
return this.each(function(){ this.innerHTML = '' })
},
// `pluck` is borrowed from Prototype.js
pluck: function(property){
return $.map(this, function(el){ return el[property] })
},
show: function(){
return this.each(function(){
this.style.display == "none" && (this.style.display = '')
if (getComputedStyle(this, '').getPropertyValue("display") == "none")
this.style.display = defaultDisplay(this.nodeName)
})
},
replaceWith: function(newContent){
return this.before(newContent).remove()
},
wrap: function(structure){
var func = isFunction(structure)
if (this[0] && !func)
var dom = $(structure).get(0),
clone = dom.parentNode || this.length > 1
return this.each(function(index){
$(this).wrapAll(
func ? structure.call(this, index) :
clone ? dom.cloneNode(true) : dom
)
})
},
wrapAll: function(structure){
if (this[0]) {
$(this[0]).before(structure = $(structure))
var children
// drill down to the inmost element
while ((children = structure.children()).length) structure = children.first()
$(structure).append(this)
}
return this
},
wrapInner: function(structure){
var func = isFunction(structure)
return this.each(function(index){
var self = $(this), contents = self.contents(),
dom = func ? structure.call(this, index) : structure
contents.length ? contents.wrapAll(dom) : self.append(dom)
})
},
unwrap: function(){
this.parent().each(function(){
$(this).replaceWith($(this).children())
})
return this
},
clone: function(){
return this.map(function(){ return this.cloneNode(true) })
},
hide: function(){
return this.css("display", "none")
},
toggle: function(setting){
return this.each(function(){
var el = $(this)
;(setting === undefined ? el.css("display") == "none" : setting) ? el.show() : el.hide()
})
},
prev: function(selector){ return $(this.pluck('previousElementSibling')).filter(selector || '*') },
next: function(selector){ return $(this.pluck('nextElementSibling')).filter(selector || '*') },
html: function(html){
return arguments.length === 0 ?
(this.length > 0 ? this[0].innerHTML : null) :
this.each(function(idx){
var originHtml = this.innerHTML
$(this).empty().append( funcArg(this, html, idx, originHtml) )
})
},
text: function(text){
return arguments.length === 0 ?
(this.length > 0 ? this[0].textContent : null) :
this.each(function(){ this.textContent = (text === undefined) ? '' : ''+text })
},
attr: function(name, value){
var result
return (typeof name == 'string' && value === undefined) ?
(this.length == 0 || this[0].nodeType !== 1 ? undefined :
(name == 'value' && this[0].nodeName == 'INPUT') ? this.val() :
(!(result = this[0].getAttribute(name)) && name in this[0]) ? this[0][name] : result
) :
this.each(function(idx){
if (this.nodeType !== 1) return
if (isObject(name)) for (key in name) setAttribute(this, key, name[key])
else setAttribute(this, name, funcArg(this, value, idx, this.getAttribute(name)))
})
},
removeAttr: function(name){
return this.each(function(){ this.nodeType === 1 && setAttribute(this, name) })
},
prop: function(name, value){
name = propMap[name] || name
return (value === undefined) ?
(this[0] && this[0][name]) :
this.each(function(idx){
this[name] = funcArg(this, value, idx, this[name])
})
},
data: function(name, value){
var data = this.attr('data-' + name.replace(capitalRE, '-$1').toLowerCase(), value)
return data !== null ? deserializeValue(data) : undefined
},
val: function(value){
return arguments.length === 0 ?
(this[0] && (this[0].multiple ?
$(this[0]).find('option').filter(function(){ return this.selected }).pluck('value') :
this[0].value)
) :
this.each(function(idx){
this.value = funcArg(this, value, idx, this.value)
})
},
offset: function(coordinates){
if (coordinates) return this.each(function(index){
var $this = $(this),
coords = funcArg(this, coordinates, index, $this.offset()),
parentOffset = $this.offsetParent().offset(),
props = {
top: coords.top - parentOffset.top,
left: coords.left - parentOffset.left
}
if ($this.css('position') == 'static') props['position'] = 'relative'
$this.css(props)
})
if (this.length==0) return null
var obj = this[0].getBoundingClientRect()
return {
left: obj.left + window.pageXOffset,
top: obj.top + window.pageYOffset,
width: Math.round(obj.width),
height: Math.round(obj.height)
}
},
css: function(property, value){
if (arguments.length < 2) {
var element = this[0], computedStyle = getComputedStyle(element, '')
if(!element) return
if (typeof property == 'string')
return element.style[camelize(property)] || computedStyle.getPropertyValue(property)
else if (isArray(property)) {
var props = {}
$.each(isArray(property) ? property: [property], function(_, prop){
props[prop] = (element.style[camelize(prop)] || computedStyle.getPropertyValue(prop))
})
return props
}
}
var css = ''
if (type(property) == 'string') {
if (!value && value !== 0)
this.each(function(){ this.style.removeProperty(dasherize(property)) })
else
css = dasherize(property) + ":" + maybeAddPx(property, value)
} else {
for (key in property)
if (!property[key] && property[key] !== 0)
this.each(function(){ this.style.removeProperty(dasherize(key)) })
else
css += dasherize(key) + ':' + maybeAddPx(key, property[key]) + ';'
}
return this.each(function(){ this.style.cssText += ';' + css })
},
index: function(element){
return element ? this.indexOf($(element)[0]) : this.parent().children().indexOf(this[0])
},
hasClass: function(name){
if (!name) return false
return emptyArray.some.call(this, function(el){
return this.test(className(el))
}, classRE(name))
},
addClass: function(name){
if (!name) return this
return this.each(function(idx){
classList = []
var cls = className(this), newName = funcArg(this, name, idx, cls)
newName.split(/\s+/g).forEach(function(klass){
if (!$(this).hasClass(klass)) classList.push(klass)
}, this)
classList.length && className(this, cls + (cls ? " " : "") + classList.join(" "))
})
},
removeClass: function(name){
return this.each(function(idx){
if (name === undefined) return className(this, '')
classList = className(this)
funcArg(this, name, idx, classList).split(/\s+/g).forEach(function(klass){
classList = classList.replace(classRE(klass), " ")
})
className(this, classList.trim())
})
},
toggleClass: function(name, when){
if (!name) return this
return this.each(function(idx){
var $this = $(this), names = funcArg(this, name, idx, className(this))
names.split(/\s+/g).forEach(function(klass){
(when === undefined ? !$this.hasClass(klass) : when) ?
$this.addClass(klass) : $this.removeClass(klass)
})
})
},
scrollTop: function(value){
if (!this.length) return
var hasScrollTop = 'scrollTop' in this[0]
if (value === undefined) return hasScrollTop ? this[0].scrollTop : this[0].pageYOffset
return this.each(hasScrollTop ?
function(){ this.scrollTop = value } :
function(){ this.scrollTo(this.scrollX, value) })
},
scrollLeft: function(value){
if (!this.length) return
var hasScrollLeft = 'scrollLeft' in this[0]
if (value === undefined) return hasScrollLeft ? this[0].scrollLeft : this[0].pageXOffset
return this.each(hasScrollLeft ?
function(){ this.scrollLeft = value } :
function(){ this.scrollTo(value, this.scrollY) })
},
position: function() {
if (!this.length) return
var elem = this[0],
// Get *real* offsetParent
offsetParent = this.offsetParent(),
// Get correct offsets
offset = this.offset(),
parentOffset = rootNodeRE.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset()
// Subtract element margins
// note: when an element has margin: auto the offsetLeft and marginLeft
// are the same in Safari causing offset.left to incorrectly be 0
offset.top -= parseFloat( $(elem).css('margin-top') ) || 0
offset.left -= parseFloat( $(elem).css('margin-left') ) || 0
// Add offsetParent borders
parentOffset.top += parseFloat( $(offsetParent[0]).css('border-top-width') ) || 0
parentOffset.left += parseFloat( $(offsetParent[0]).css('border-left-width') ) || 0
// Subtract the two offsets
return {
top: offset.top - parentOffset.top,
left: offset.left - parentOffset.left
}
},
offsetParent: function() {
return this.map(function(){
var parent = this.offsetParent || document.body
while (parent && !rootNodeRE.test(parent.nodeName) && $(parent).css("position") == "static")
parent = parent.offsetParent
return parent
})
}
}
// for now
$.fn.detach = $.fn.remove
// Generate the `width` and `height` functions
;['width', 'height'].forEach(function(dimension){
var dimensionProperty =
dimension.replace(/./, function(m){ return m[0].toUpperCase() })
$.fn[dimension] = function(value){
var offset, el = this[0]
if (value === undefined) return isWindow(el) ? el['inner' + dimensionProperty] :
isDocument(el) ? el.documentElement['scroll' + dimensionProperty] :
(offset = this.offset()) && offset[dimension]
else return this.each(function(idx){
el = $(this)
el.css(dimension, funcArg(this, value, idx, el[dimension]()))
})
}
})
function traverseNode(node, fun) {
fun(node)
for (var key in node.childNodes) traverseNode(node.childNodes[key], fun)
}
// Generate the `after`, `prepend`, `before`, `append`,
// `insertAfter`, `insertBefore`, `appendTo`, and `prependTo` methods.
adjacencyOperators.forEach(function(operator, operatorIndex) {
var inside = operatorIndex % 2 //=> prepend, append
$.fn[operator] = function(){
// arguments can be nodes, arrays of nodes, Zepto objects and HTML strings
var argType, nodes = $.map(arguments, function(arg) {
argType = type(arg)
return argType == "object" || argType == "array" || arg == null ?
arg : zepto.fragment(arg)
}),
parent, copyByClone = this.length > 1
if (nodes.length < 1) return this
return this.each(function(_, target){
parent = inside ? target : target.parentNode
// convert all methods to a "before" operation
target = operatorIndex == 0 ? target.nextSibling :
operatorIndex == 1 ? target.firstChild :
operatorIndex == 2 ? target :
null
nodes.forEach(function(node){
if (copyByClone) node = node.cloneNode(true)
else if (!parent) return $(node).remove()
traverseNode(parent.insertBefore(node, target), function(el){
if (el.nodeName != null && el.nodeName.toUpperCase() === 'SCRIPT' &&
(!el.type || el.type === 'text/javascript') && !el.src)
window['eval'].call(window, el.innerHTML)
})
})
})
}
// after => insertAfter
// prepend => prependTo
// before => insertBefore
// append => appendTo
$.fn[inside ? operator+'To' : 'insert'+(operatorIndex ? 'Before' : 'After')] = function(html){
$(html)[operator](this)
return this
}
})
zepto.Z.prototype = $.fn
// Export internal API functions in the `$.zepto` namespace
zepto.uniq = uniq
zepto.deserializeValue = deserializeValue
$.zepto = zepto
return $
})()
window.Zepto = Zepto
window.$ === undefined && (window.$ = Zepto)
;(function($){
var $$ = $.zepto.qsa, _zid = 1, undefined,
slice = Array.prototype.slice,
isFunction = $.isFunction,
isString = function(obj){ return typeof obj == 'string' },
handlers = {},
specialEvents={},
focusinSupported = 'onfocusin' in window,
focus = { focus: 'focusin', blur: 'focusout' },
hover = { mouseenter: 'mouseover', mouseleave: 'mouseout' }
specialEvents.click = specialEvents.mousedown = specialEvents.mouseup = specialEvents.mousemove = 'MouseEvents'
function zid(element) {
return element._zid || (element._zid = _zid++)
}
function findHandlers(element, event, fn, selector) {
event = parse(event)
if (event.ns) var matcher = matcherFor(event.ns)
return (handlers[zid(element)] || []).filter(function(handler) {
return handler
&& (!event.e || handler.e == event.e)
&& (!event.ns || matcher.test(handler.ns))
&& (!fn || zid(handler.fn) === zid(fn))
&& (!selector || handler.sel == selector)
})
}
function parse(event) {
var parts = ('' + event).split('.')
return {e: parts[0], ns: parts.slice(1).sort().join(' ')}
}
function matcherFor(ns) {
return new RegExp('(?:^| )' + ns.replace(' ', ' .* ?') + '(?: |$)')
}
function eventCapture(handler, captureSetting) {
return handler.del &&
(!focusinSupported && (handler.e in focus)) ||
!!captureSetting
}
function realEvent(type) {
return hover[type] || (focusinSupported && focus[type]) || type
}
function add(element, events, fn, data, selector, delegator, capture){
var id = zid(element), set = (handlers[id] || (handlers[id] = []))
events.split(/\s/).forEach(function(event){
if (event == 'ready') return $(document).ready(fn)
var handler = parse(event)
handler.fn = fn
handler.sel = selector
// emulate mouseenter, mouseleave
if (handler.e in hover) fn = function(e){
var related = e.relatedTarget
if (!related || (related !== this && !$.contains(this, related)))
return handler.fn.apply(this, arguments)
}
handler.del = delegator
var callback = delegator || fn
handler.proxy = function(e){
e = compatible(e)
if (e.isImmediatePropagationStopped()) return
e.data = data
var result = callback.apply(element, e._args == undefined ? [e] : [e].concat(e._args))
if (result === false) e.preventDefault(), e.stopPropagation()
return result
}
handler.i = set.length
set.push(handler)
if ('addEventListener' in element)
element.addEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
})
}
function remove(element, events, fn, selector, capture){
var id = zid(element)
;(events || '').split(/\s/).forEach(function(event){
findHandlers(element, event, fn, selector).forEach(function(handler){
delete handlers[id][handler.i]
if ('removeEventListener' in element)
element.removeEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
})
})
}
$.event = { add: add, remove: remove }
$.proxy = function(fn, context) {
if (isFunction(fn)) {
var proxyFn = function(){ return fn.apply(context, arguments) }
proxyFn._zid = zid(fn)
return proxyFn
} else if (isString(context)) {
return $.proxy(fn[context], fn)
} else {
throw new TypeError("expected function")
}
}
$.fn.bind = function(event, data, callback){
return this.on(event, data, callback)
}
$.fn.unbind = function(event, callback){
return this.off(event, callback)
}
$.fn.one = function(event, selector, data, callback){
return this.on(event, selector, data, callback, 1)
}
var returnTrue = function(){return true},
returnFalse = function(){return false},
ignoreProperties = /^([A-Z]|returnValue$|layer[XY]$)/,
eventMethods = {
preventDefault: 'isDefaultPrevented',
stopImmediatePropagation: 'isImmediatePropagationStopped',
stopPropagation: 'isPropagationStopped'
}
function compatible(event, source) {
if (source || !event.isDefaultPrevented) {
source || (source = event)
$.each(eventMethods, function(name, predicate) {
var sourceMethod = source[name]
event[name] = function(){
this[predicate] = returnTrue
return sourceMethod && sourceMethod.apply(source, arguments)
}
event[predicate] = returnFalse
})
if (source.defaultPrevented !== undefined ? source.defaultPrevented :
'returnValue' in source ? source.returnValue === false :
source.getPreventDefault && source.getPreventDefault())
event.isDefaultPrevented = returnTrue
}
return event
}
function createProxy(event) {
var key, proxy = { originalEvent: event }
for (key in event)
if (!ignoreProperties.test(key) && event[key] !== undefined) proxy[key] = event[key]
return compatible(proxy, event)
}
$.fn.delegate = function(selector, event, callback){
return this.on(event, selector, callback)
}
$.fn.undelegate = function(selector, event, callback){
return this.off(event, selector, callback)
}
$.fn.live = function(event, callback){
$(document.body).delegate(this.selector, event, callback)
return this
}
$.fn.die = function(event, callback){
$(document.body).undelegate(this.selector, event, callback)
return this
}
$.fn.on = function(event, selector, data, callback, one){
var autoRemove, delegator, $this = this
if (event && !isString(event)) {
$.each(event, function(type, fn){
$this.on(type, selector, data, fn, one)
})
return $this
}
if (!isString(selector) && !isFunction(callback) && callback !== false)
callback = data, data = selector, selector = undefined
if (isFunction(data) || data === false)
callback = data, data = undefined
if (callback === false) callback = returnFalse
return $this.each(function(_, element){
if (one) autoRemove = function(e){
remove(element, e.type, callback)
return callback.apply(this, arguments)
}
if (selector) delegator = function(e){
var evt, match = $(e.target).closest(selector, element).get(0)
if (match && match !== element) {
evt = $.extend(createProxy(e), {currentTarget: match, liveFired: element})
return (autoRemove || callback).apply(match, [evt].concat(slice.call(arguments, 1)))
}
}
add(element, event, callback, data, selector, delegator || autoRemove)
})
}
$.fn.off = function(event, selector, callback){
var $this = this
if (event && !isString(event)) {
$.each(event, function(type, fn){
$this.off(type, selector, fn)
})
return $this
}
if (!isString(selector) && !isFunction(callback) && callback !== false)
callback = selector, selector = undefined
if (callback === false) callback = returnFalse
return $this.each(function(){
remove(this, event, callback, selector)
})
}
$.fn.trigger = function(event, args){
event = (isString(event) || $.isPlainObject(event)) ? $.Event(event) : compatible(event)
event._args = args
return this.each(function(){
// items in the collection might not be DOM elements
if('dispatchEvent' in this) this.dispatchEvent(event)
else $(this).triggerHandler(event, args)
})
}
// triggers event handlers on current element just as if an event occurred,
// doesn't trigger an actual event, doesn't bubble
$.fn.triggerHandler = function(event, args){
var e, result
this.each(function(i, element){
e = createProxy(isString(event) ? $.Event(event) : event)
e._args = args
e.target = element
$.each(findHandlers(element, event.type || event), function(i, handler){
result = handler.proxy(e)
if (e.isImmediatePropagationStopped()) return false
})
})
return result
}
// shortcut methods for `.bind(event, fn)` for each event type
;('focusin focusout load resize scroll unload click dblclick '+
'mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave '+
'change select keydown keypress keyup error').split(' ').forEach(function(event) {
$.fn[event] = function(callback) {
return callback ?
this.bind(event, callback) :
this.trigger(event)
}
})
;['focus', 'blur'].forEach(function(name) {
$.fn[name] = function(callback) {
if (callback) this.bind(name, callback)
else this.each(function(){
try { this[name]() }
catch(e) {}
})
return this
}
})
$.Event = function(type, props) {
if (!isString(type)) props = type, type = props.type
var event = document.createEvent(specialEvents[type] || 'Events'), bubbles = true
if (props) for (var name in props) (name == 'bubbles') ? (bubbles = !!props[name]) : (event[name] = props[name])
event.initEvent(type, bubbles, true)
return compatible(event)
}
})(Zepto)
;(function($){
var jsonpID = 0,
document = window.document,
key,
name,
rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
scriptTypeRE = /^(?:text|application)\/javascript/i,
xmlTypeRE = /^(?:text|application)\/xml/i,
jsonType = 'application/json',
htmlType = 'text/html',
blankRE = /^\s*$/
// trigger a custom event and return false if it was cancelled
function triggerAndReturn(context, eventName, data) {
var event = $.Event(eventName)
$(context).trigger(event, data)
return !event.isDefaultPrevented()
}
// trigger an Ajax "global" event
function triggerGlobal(settings, context, eventName, data) {
if (settings.global) return triggerAndReturn(context || document, eventName, data)
}
// Number of active Ajax requests
$.active = 0
function ajaxStart(settings) {
if (settings.global && $.active++ === 0) triggerGlobal(settings, null, 'ajaxStart')
}
function ajaxStop(settings) {
if (settings.global && !(--$.active)) triggerGlobal(settings, null, 'ajaxStop')
}
// triggers an extra global event "ajaxBeforeSend" that's like "ajaxSend" but cancelable
function ajaxBeforeSend(xhr, settings) {
var context = settings.context
if (settings.beforeSend.call(context, xhr, settings) === false ||
triggerGlobal(settings, context, 'ajaxBeforeSend', [xhr, settings]) === false)
return false
triggerGlobal(settings, context, 'ajaxSend', [xhr, settings])
}
function ajaxSuccess(data, xhr, settings, deferred) {
var context = settings.context, status = 'success'
settings.success.call(context, data, status, xhr)
if (deferred) deferred.resolveWith(context, [data, status, xhr])
triggerGlobal(settings, context, 'ajaxSuccess', [xhr, settings, data])
ajaxComplete(status, xhr, settings)
}
// type: "timeout", "error", "abort", "parsererror"
function ajaxError(error, type, xhr, settings, deferred) {
var context = settings.context
settings.error.call(context, xhr, type, error)
if (deferred) deferred.rejectWith(context, [xhr, type, error])
triggerGlobal(settings, context, 'ajaxError', [xhr, settings, error || type])
ajaxComplete(type, xhr, settings)
}
// status: "success", "notmodified", "error", "timeout", "abort", "parsererror"
function ajaxComplete(status, xhr, settings) {
var context = settings.context
settings.complete.call(context, xhr, status)
triggerGlobal(settings, context, 'ajaxComplete', [xhr, settings])
ajaxStop(settings)
}
// Empty function, used as default callback
function empty() {}
$.ajaxJSONP = function(options, deferred){
if (!('type' in options)) return $.ajax(options)
var _callbackName = options.jsonpCallback,
callbackName = ($.isFunction(_callbackName) ?
_callbackName() : _callbackName) || ('jsonp' + (++jsonpID)),
script = document.createElement('script'),
originalCallback = window[callbackName],
responseData,
abort = function(errorType) {
$(script).triggerHandler('error', errorType || 'abort')
},
xhr = { abort: abort }, abortTimeout
if (deferred) deferred.promise(xhr)
$(script).on('load error', function(e, errorType){
clearTimeout(abortTimeout)
$(script).off().remove()
if (e.type == 'error' || !responseData) {
ajaxError(null, errorType || 'error', xhr, options, deferred)
} else {
ajaxSuccess(responseData[0], xhr, options, deferred)
}
window[callbackName] = originalCallback
if (responseData && $.isFunction(originalCallback))
originalCallback(responseData[0])
originalCallback = responseData = undefined
})
if (ajaxBeforeSend(xhr, options) === false) {
abort('abort')
return xhr
}
window[callbackName] = function(){
responseData = arguments
}
script.src = options.url.replace(/\?(.+)=\?/, '?$1=' + callbackName)
document.head.appendChild(script)
if (options.timeout > 0) abortTimeout = setTimeout(function(){
abort('timeout')
}, options.timeout)
return xhr
}
$.ajaxSettings = {
// Default type of request
type: 'GET',
// Callback that is executed before request
beforeSend: empty,
// Callback that is executed if the request succeeds
success: empty,
// Callback that is executed the the server drops error
error: empty,
// Callback that is executed on request complete (both: error and success)
complete: empty,
// The context for the callbacks
context: null,
// Whether to trigger "global" Ajax events
global: true,
// Transport
xhr: function () {
return new window.XMLHttpRequest()
},
// MIME types mapping
// IIS returns Javascript as "application/x-javascript"
accepts: {
script: 'text/javascript, application/javascript, application/x-javascript',
json: jsonType,
xml: 'application/xml, text/xml',
html: htmlType,
text: 'text/plain'
},
// Whether the request is to another domain
crossDomain: false,
// Default timeout
timeout: 0,
// Whether data should be serialized to string
processData: true,
// Whether the browser should be allowed to cache GET responses
cache: true
}
function mimeToDataType(mime) {
if (mime) mime = mime.split(';', 2)[0]
return mime && ( mime == htmlType ? 'html' :
mime == jsonType ? 'json' :
scriptTypeRE.test(mime) ? 'script' :
xmlTypeRE.test(mime) && 'xml' ) || 'text'
}
function appendQuery(url, query) {
if (query == '') return url
return (url + '&' + query).replace(/[&?]{1,2}/, '?')
}
// serialize payload and append it to the URL for GET requests
function serializeData(options) {
if (options.processData && options.data && $.type(options.data) != "string")
options.data = $.param(options.data, options.traditional)
if (options.data && (!options.type || options.type.toUpperCase() == 'GET'))
options.url = appendQuery(options.url, options.data), options.data = undefined
}
$.ajax = function(options){
var settings = $.extend({}, options || {}),
deferred = $.Deferred && $.Deferred()
for (key in $.ajaxSettings) if (settings[key] === undefined) settings[key] = $.ajaxSettings[key]
ajaxStart(settings)
if (!settings.crossDomain) settings.crossDomain = /^([\w-]+:)?\/\/([^\/]+)/.test(settings.url) &&
RegExp.$2 != window.location.host
if (!settings.url) settings.url = window.location.toString()
serializeData(settings)
if (settings.cache === false) settings.url = appendQuery(settings.url, '_=' + Date.now())
var dataType = settings.dataType, hasPlaceholder = /\?.+=\?/.test(settings.url)
if (dataType == 'jsonp' || hasPlaceholder) {
if (!hasPlaceholder)
settings.url = appendQuery(settings.url,
settings.jsonp ? (settings.jsonp + '=?') : settings.jsonp === false ? '' : 'callback=?')
return $.ajaxJSONP(settings, deferred)
}
var mime = settings.accepts[dataType],
headers = { },
setHeader = function(name, value) { headers[name.toLowerCase()] = [name, value] },
protocol = /^([\w-]+:)\/\//.test(settings.url) ? RegExp.$1 : window.location.protocol,
xhr = settings.xhr(),
nativeSetHeader = xhr.setRequestHeader,
abortTimeout
if (deferred) deferred.promise(xhr)
if (!settings.crossDomain) setHeader('X-Requested-With', 'XMLHttpRequest')
setHeader('Accept', mime || '*/*')
if (mime = settings.mimeType || mime) {
if (mime.indexOf(',') > -1) mime = mime.split(',', 2)[0]
xhr.overrideMimeType && xhr.overrideMimeType(mime)
}
if (settings.contentType || (settings.contentType !== false && settings.data && settings.type.toUpperCase() != 'GET'))
setHeader('Content-Type', settings.contentType || 'application/x-www-form-urlencoded')
if (settings.headers) for (name in settings.headers) setHeader(name, settings.headers[name])
xhr.setRequestHeader = setHeader
xhr.onreadystatechange = function(){
if (xhr.readyState == 4) {
xhr.onreadystatechange = empty
clearTimeout(abortTimeout)
var result, error = false
if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304 || (xhr.status == 0 && protocol == 'file:')) {
dataType = dataType || mimeToDataType(settings.mimeType || xhr.getResponseHeader('content-type'))
result = xhr.responseText
try {
// http://perfectionkills.com/global-eval-what-are-the-options/
if (dataType == 'script') (1,eval)(result)
else if (dataType == 'xml') result = xhr.responseXML
else if (dataType == 'json') result = blankRE.test(result) ? null : $.parseJSON(result)
} catch (e) { error = e }
if (error) ajaxError(error, 'parsererror', xhr, settings, deferred)
else ajaxSuccess(result, xhr, settings, deferred)
} else {
ajaxError(xhr.statusText || null, xhr.status ? 'error' : 'abort', xhr, settings, deferred)
}
}
}
if (ajaxBeforeSend(xhr, settings) === false) {
xhr.abort()
ajaxError(null, 'abort', xhr, settings, deferred)
return xhr
}
if (settings.xhrFields) for (name in settings.xhrFields) xhr[name] = settings.xhrFields[name]
var async = 'async' in settings ? settings.async : true
xhr.open(settings.type, settings.url, async, settings.username, settings.password)
for (name in headers) nativeSetHeader.apply(xhr, headers[name])
if (settings.timeout > 0) abortTimeout = setTimeout(function(){
xhr.onreadystatechange = empty
xhr.abort()
ajaxError(null, 'timeout', xhr, settings, deferred)
}, settings.timeout)
// avoid sending empty string (#319)
xhr.send(settings.data ? settings.data : null)
return xhr
}
// handle optional data/success arguments
function parseArguments(url, data, success, dataType) {
var hasData = !$.isFunction(data)
return {
url: url,
data: hasData ? data : undefined,
success: !hasData ? data : $.isFunction(success) ? success : undefined,
dataType: hasData ? dataType || success : success
}
}
$.get = function(url, data, success, dataType){
return $.ajax(parseArguments.apply(null, arguments))
}
$.post = function(url, data, success, dataType){
var options = parseArguments.apply(null, arguments)
options.type = 'POST'
return $.ajax(options)
}
$.getJSON = function(url, data, success){
var options = parseArguments.apply(null, arguments)
options.dataType = 'json'
return $.ajax(options)
}
$.fn.load = function(url, data, success){
if (!this.length) return this
var self = this, parts = url.split(/\s/), selector,
options = parseArguments(url, data, success),
callback = options.success
if (parts.length > 1) options.url = parts[0], selector = parts[1]
options.success = function(response){
self.html(selector ?
$('<div>').html(response.replace(rscript, "")).find(selector)
: response)
callback && callback.apply(self, arguments)
}
$.ajax(options)
return this
}
var escape = encodeURIComponent
function serialize(params, obj, traditional, scope){
var type, array = $.isArray(obj), hash = $.isPlainObject(obj)
$.each(obj, function(key, value) {
type = $.type(value)
if (scope) key = traditional ? scope :
scope + '[' + (hash || type == 'object' || type == 'array' ? key : '') + ']'
// handle data in serializeArray() format
if (!scope && array) params.add(value.name, value.value)
// recurse into nested objects
else if (type == "array" || (!traditional && type == "object"))
serialize(params, value, traditional, key)
else params.add(key, value)
})
}
$.param = function(obj, traditional){
var params = []
params.add = function(k, v){ this.push(escape(k) + '=' + escape(v)) }
serialize(params, obj, traditional)
return params.join('&').replace(/%20/g, '+')
}
})(Zepto)
;(function($){
$.fn.serializeArray = function() {
var result = [], el
$([].slice.call(this.get(0).elements)).each(function(){
el = $(this)
var type = el.attr('type')
if (this.nodeName.toLowerCase() != 'fieldset' &&
!this.disabled && type != 'submit' && type != 'reset' && type != 'button' &&
((type != 'radio' && type != 'checkbox') || this.checked))
result.push({
name: el.attr('name'),
value: el.val()
})
})
return result
}
$.fn.serialize = function(){
var result = []
this.serializeArray().forEach(function(elm){
result.push(encodeURIComponent(elm.name) + '=' + encodeURIComponent(elm.value))
})
return result.join('&')
}
$.fn.submit = function(callback) {
if (callback) this.bind('submit', callback)
else if (this.length) {
var event = $.Event('submit')
this.eq(0).trigger(event)
if (!event.isDefaultPrevented()) this.get(0).submit()
}
return this
}
})(Zepto)
;(function($){
// __proto__ doesn't exist on IE<11, so redefine
// the Z function to use object extension instead
if (!('__proto__' in {})) {
$.extend($.zepto, {
Z: function(dom, selector){
dom = dom || []
$.extend(dom, $.fn)
dom.selector = selector || ''
dom.__Z = true
return dom
},
// this is a kludge but works
isZ: function(object){
return $.type(object) === 'array' && '__Z' in object
}
})
}
// getComputedStyle shouldn't freak out when called
// without a valid element as argument
try {
getComputedStyle(undefined)
} catch(e) {
var nativeGetComputedStyle = getComputedStyle;
window.getComputedStyle = function(element){
try {
return nativeGetComputedStyle(element)
} catch(e) {
return null
}
}
}
})(Zepto)
TL.getJSON = Zepto.getJSON;
TL.ajax = Zepto.ajax;
})(TL)
// Based on https://github.com/madrobby/zepto/blob/5585fe00f1828711c04208372265a5d71e3238d1/src/ajax.js
// Zepto.js
// (c) 2010-2012 Thomas Fuchs
// Zepto.js may be freely distributed under the MIT license.
/*
Copyright (c) 2010-2012 Thomas Fuchs
http://zeptojs.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/* **********************************************
Begin TL.Class.js
********************************************** */
/* TL.Class
Class powers the OOP facilities of the library.
================================================== */
TL.Class = function () {};
TL.Class.extend = function (/*Object*/ props) /*-> Class*/ {
// extended class with the new prototype
var NewClass = function () {
if (this.initialize) {
this.initialize.apply(this, arguments);
}
};
// instantiate class without calling constructor
var F = function () {};
F.prototype = this.prototype;
var proto = new F();
proto.constructor = NewClass;
NewClass.prototype = proto;
// add superclass access
NewClass.superclass = this.prototype;
// add class name
//proto.className = props;
//inherit parent's statics
for (var i in this) {
if (this.hasOwnProperty(i) && i !== 'prototype' && i !== 'superclass') {
NewClass[i] = this[i];
}
}
// mix static properties into the class
if (props.statics) {
TL.Util.extend(NewClass, props.statics);
delete props.statics;
}
// mix includes into the prototype
if (props.includes) {
TL.Util.extend.apply(null, [proto].concat(props.includes));
delete props.includes;
}
// merge options
if (props.options && proto.options) {
props.options = TL.Util.extend({}, proto.options, props.options);
}
// mix given properties into the prototype
TL.Util.extend(proto, props);
// allow inheriting further
NewClass.extend = TL.Class.extend;
// method for adding properties to prototype
NewClass.include = function (props) {
TL.Util.extend(this.prototype, props);
};
return NewClass;
};
/* **********************************************
Begin TL.Events.js
********************************************** */
/* TL.Events
adds custom events functionality to TL classes
================================================== */
TL.Events = {
addEventListener: function (/*String*/ type, /*Function*/ fn, /*(optional) Object*/ context) {
var events = this._tl_events = this._tl_events || {};
events[type] = events[type] || [];
events[type].push({
action: fn,
context: context || this
});
return this;
},
hasEventListeners: function (/*String*/ type) /*-> Boolean*/ {
var k = '_tl_events';
return (k in this) && (type in this[k]) && (this[k][type].length > 0);
},
removeEventListener: function (/*String*/ type, /*Function*/ fn, /*(optional) Object*/ context) {
if (!this.hasEventListeners(type)) {
return this;
}
for (var i = 0, events = this._tl_events, len = events[type].length; i < len; i++) {
if (
(events[type][i].action === fn) &&
(!context || (events[type][i].context === context))
) {
events[type].splice(i, 1);
return this;
}
}
return this;
},
fireEvent: function (/*String*/ type, /*(optional) Object*/ data) {
if (!this.hasEventListeners(type)) {
return this;
}
var event = TL.Util.mergeData({
type: type,
target: this
}, data);
var listeners = this._tl_events[type].slice();
for (var i = 0, len = listeners.length; i < len; i++) {
listeners[i].action.call(listeners[i].context || this, event);
}
return this;
}
};
TL.Events.on = TL.Events.addEventListener;
TL.Events.off = TL.Events.removeEventListener;
TL.Events.fire = TL.Events.fireEvent;
/* **********************************************
Begin TL.Browser.js
********************************************** */
/*
Based on Leaflet Browser
TL.Browser handles different browser and feature detections for internal use.
*/
(function() {
var ua = navigator.userAgent.toLowerCase(),
doc = document.documentElement,
ie = 'ActiveXObject' in window,
webkit = ua.indexOf('webkit') !== -1,
phantomjs = ua.indexOf('phantom') !== -1,
android23 = ua.search('android [23]') !== -1,
mobile = typeof orientation !== 'undefined',
msPointer = navigator.msPointerEnabled && navigator.msMaxTouchPoints && !window.PointerEvent,
pointer = (window.PointerEvent && navigator.pointerEnabled && navigator.maxTouchPoints) || msPointer,
ie3d = ie && ('transition' in doc.style),
webkit3d = ('WebKitCSSMatrix' in window) && ('m11' in new window.WebKitCSSMatrix()) && !android23,
gecko3d = 'MozPerspective' in doc.style,
opera3d = 'OTransition' in doc.style,
opera = window.opera;
var retina = 'devicePixelRatio' in window && window.devicePixelRatio > 1;
if (!retina && 'matchMedia' in window) {
var matches = window.matchMedia('(min-resolution:144dpi)');
retina = matches && matches.matches;
}
var touch = !window.L_NO_TOUCH && !phantomjs && (pointer || 'ontouchstart' in window || (window.DocumentTouch && document instanceof window.DocumentTouch));
TL.Browser = {
ie: ie,
ua: ua,
ie9: Boolean(ie && ua.match(/MSIE 9/i)),
ielt9: ie && !document.addEventListener,
webkit: webkit,
//gecko: (ua.indexOf('gecko') !== -1) && !webkit && !window.opera && !ie,
firefox: (ua.indexOf('gecko') !== -1) && !webkit && !window.opera && !ie,
android: ua.indexOf('android') !== -1,
android23: android23,
chrome: ua.indexOf('chrome') !== -1,
edge: ua.indexOf('edge/') !== -1,
ie3d: ie3d,
webkit3d: webkit3d,
gecko3d: gecko3d,
opera3d: opera3d,
any3d: !window.L_DISABLE_3D && (ie3d || webkit3d || gecko3d || opera3d) && !phantomjs,
mobile: mobile,
mobileWebkit: mobile && webkit,
mobileWebkit3d: mobile && webkit3d,
mobileOpera: mobile && window.opera,
touch: !! touch,
msPointer: !! msPointer,
pointer: !! pointer,
retina: !! retina,
orientation: function() {
var w = window.innerWidth,
h = window.innerHeight,
_orientation = "portrait";
if (w > h) {
_orientation = "landscape";
}
if (Math.abs(window.orientation) == 90) {
//_orientation = "landscape";
}
trace(_orientation);
return _orientation;
}
};
}());
/* **********************************************
Begin TL.Load.js
********************************************** */
/* TL.Load
Loads External Javascript and CSS
================================================== */
TL.Load = (function (doc) {
var loaded = [];
function isLoaded(url) {
var i = 0,
has_loaded = false;
for (i = 0; i < loaded.length; i++) {
if (loaded[i] == url) {
has_loaded = true;
}
}
if (has_loaded) {
return true;
} else {
loaded.push(url);
return false;
}
}
return {
css: function (urls, callback, obj, context) {
if (!isLoaded(urls)) {
TL.LoadIt.css(urls, callback, obj, context);
} else {
callback();
}
},
js: function (urls, callback, obj, context) {
if (!isLoaded(urls)) {
TL.LoadIt.js(urls, callback, obj, context);
} else {
callback();
}
}
};
})(this.document);
/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */
/*
LazyLoad makes it easy and painless to lazily load one or more external
JavaScript or CSS files on demand either during or after the rendering of a web
page.
Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
are not officially supported.
Visit https://github.com/rgrove/lazyload/ for more info.
Copyright (c) 2011 Ryan Grove <[email protected]>
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the 'Software'), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@module lazyload
@class LazyLoad
@static
@version 2.0.3 (git)
*/
TL.LoadIt = (function (doc) {
// -- Private Variables ------------------------------------------------------
// User agent and feature test information.
var env,
// Reference to the <head> element (populated lazily).
head,
// Requests currently in progress, if any.
pending = {},
// Number of times we've polled to check whether a pending stylesheet has
// finished loading. If this gets too high, we're probably stalled.
pollCount = 0,
// Queued requests.
queue = {css: [], js: []},
// Reference to the browser's list of stylesheets.
styleSheets = doc.styleSheets;
// -- Private Methods --------------------------------------------------------
/**
Creates and returns an HTML element with the specified name and attributes.
@method createNode
@param {String} name element name
@param {Object} attrs name/value mapping of element attributes
@return {HTMLElement}
@private
*/
function createNode(name, attrs) {
var node = doc.createElement(name), attr;
for (attr in attrs) {
if (attrs.hasOwnProperty(attr)) {
node.setAttribute(attr, attrs[attr]);
}
}
return node;
}
/**
Called when the current pending resource of the specified type has finished
loading. Executes the associated callback (if any) and loads the next
resource in the queue.
@method finish
@param {String} type resource type ('css' or 'js')
@private
*/
function finish(type) {
var p = pending[type],
callback,
urls;
if (p) {
callback = p.callback;
urls = p.urls;
urls.shift();
pollCount = 0;
// If this is the last of the pending URLs, execute the callback and
// start the next request in the queue (if any).
if (!urls.length) {
callback && callback.call(p.context, p.obj);
pending[type] = null;
queue[type].length && load(type);
}
}
}
/**
Populates the <code>env</code> variable with user agent and feature test
information.
@method getEnv
@private
*/
function getEnv() {
var ua = navigator.userAgent;
env = {
// True if this browser supports disabling async mode on dynamically
// created script nodes. See
// http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order
async: doc.createElement('script').async === true
};
(env.webkit = /AppleWebKit\//.test(ua))
|| (env.ie = /MSIE/.test(ua))
|| (env.opera = /Opera/.test(ua))
|| (env.gecko = /Gecko\//.test(ua))
|| (env.unknown = true);
}
/**
Loads the specified resources, or the next resource of the specified type
in the queue if no resources are specified. If a resource of the specified
type is already being loaded, the new request will be queued until the
first request has been finished.
When an array of resource URLs is specified, those URLs will be loaded in
parallel if it is possible to do so while preserving execution order. All
browsers support parallel loading of CSS, but only Firefox and Opera
support parallel loading of scripts. In other browsers, scripts will be
queued and loaded one at a time to ensure correct execution order.
@method load
@param {String} type resource type ('css' or 'js')
@param {String|Array} urls (optional) URL or array of URLs to load
@param {Function} callback (optional) callback function to execute when the
resource is loaded
@param {Object} obj (optional) object to pass to the callback function
@param {Object} context (optional) if provided, the callback function will
be executed in this object's context
@private
*/
function load(type, urls, callback, obj, context) {
var _finish = function () { finish(type); },
isCSS = type === 'css',
nodes = [],
i, len, node, p, pendingUrls, url;
env || getEnv();
if (urls) {
// If urls is a string, wrap it in an array. Otherwise assume it's an
// array and create a copy of it so modifications won't be made to the
// original.
urls = typeof urls === 'string' ? [urls] : urls.concat();
// Create a request object for each URL. If multiple URLs are specified,
// the callback will only be executed after all URLs have been loaded.
//
// Sadly, Firefox and Opera are the only browsers capable of loading
// scripts in parallel while preserving execution order. In all other
// browsers, scripts must be loaded sequentially.
//
// All browsers respect CSS specificity based on the order of the link
// elements in the DOM, regardless of the order in which the stylesheets
// are actually downloaded.
if (isCSS || env.async || env.gecko || env.opera) {
// Load in parallel.
queue[type].push({
urls : urls,
callback: callback,
obj : obj,
context : context
});
} else {
// Load sequentially.
for (i = 0, len = urls.length; i < len; ++i) {
queue[type].push({
urls : [urls[i]],
callback: i === len - 1 ? callback : null, // callback is only added to the last URL
obj : obj,
context : context
});
}
}
}
// If a previous load request of this type is currently in progress, we'll
// wait our turn. Otherwise, grab the next item in the queue.
if (pending[type] || !(p = pending[type] = queue[type].shift())) {
return;
}
head || (head = doc.head || doc.getElementsByTagName('head')[0]);
pendingUrls = p.urls;
for (i = 0, len = pendingUrls.length; i < len; ++i) {
url = pendingUrls[i];
if (isCSS) {
node = env.gecko ? createNode('style') : createNode('link', {
href: url,
rel : 'stylesheet'
});
} else {
node = createNode('script', {src: url});
node.async = false;
}
node.className = 'lazyload';
node.setAttribute('charset', 'utf-8');
if (env.ie && !isCSS) {
node.onreadystatechange = function () {
if (/loaded|complete/.test(node.readyState)) {
node.onreadystatechange = null;
_finish();
}
};
} else if (isCSS && (env.gecko || env.webkit)) {
// Gecko and WebKit don't support the onload event on link nodes.
if (env.webkit) {
// In WebKit, we can poll for changes to document.styleSheets to
// figure out when stylesheets have loaded.
p.urls[i] = node.href; // resolve relative URLs (or polling won't work)
pollWebKit();
} else {
// In Gecko, we can import the requested URL into a <style> node and
// poll for the existence of node.sheet.cssRules. Props to Zach
// Leatherman for calling my attention to this technique.
node.innerHTML = '@import "' + url + '";';
pollGecko(node);
}
} else {
node.onload = node.onerror = _finish;
}
nodes.push(node);
}
for (i = 0, len = nodes.length; i < len; ++i) {
head.appendChild(nodes[i]);
}
}
/**
Begins polling to determine when the specified stylesheet has finished loading
in Gecko. Polling stops when all pending stylesheets have loaded or after 10
seconds (to prevent stalls).
Thanks to Zach Leatherman for calling my attention to the @import-based
cross-domain technique used here, and to Oleg Slobodskoi for an earlier
same-domain implementation. See Zach's blog for more details:
http://www.zachleat.com/web/2010/07/29/load-css-dynamically/
@method pollGecko
@param {HTMLElement} node Style node to poll.
@private
*/
function pollGecko(node) {
var hasRules;
try {
// We don't really need to store this value or ever refer to it again, but
// if we don't store it, Closure Compiler assumes the code is useless and
// removes it.
hasRules = !!node.sheet.cssRules;
} catch (ex) {
// An exception means the stylesheet is still loading.
pollCount += 1;
if (pollCount < 200) {
setTimeout(function () { pollGecko(node); }, 50);
} else {
// We've been polling for 10 seconds and nothing's happened. Stop
// polling and finish the pending requests to avoid blocking further
// requests.
hasRules && finish('css');
}
return;
}
// If we get here, the stylesheet has loaded.
finish('css');
}
/**
Begins polling to determine when pending stylesheets have finished loading
in WebKit. Polling stops when all pending stylesheets have loaded or after 10
seconds (to prevent stalls).
@method pollWebKit
@private
*/
function pollWebKit() {
var css = pending.css, i;
if (css) {
i = styleSheets.length;
// Look for a stylesheet matching the pending URL.
while (--i >= 0) {
if (styleSheets[i].href === css.urls[0]) {
finish('css');
break;
}
}
pollCount += 1;
if (css) {
if (pollCount < 200) {
setTimeout(pollWebKit, 50);
} else {
// We've been polling for 10 seconds and nothing's happened, which may
// indicate that the stylesheet has been removed from the document
// before it had a chance to load. Stop polling and finish the pending
// request to prevent blocking further requests.
finish('css');
}
}
}
}
return {
/**
Requests the specified CSS URL or URLs and executes the specified
callback (if any) when they have finished loading. If an array of URLs is
specified, the stylesheets will be loaded in parallel and the callback
will be executed after all stylesheets have finished loading.
@method css
@param {String|Array} urls CSS URL or array of CSS URLs to load
@param {Function} callback (optional) callback function to execute when
the specified stylesheets are loaded
@param {Object} obj (optional) object to pass to the callback function
@param {Object} context (optional) if provided, the callback function
will be executed in this object's context
@static
*/
css: function (urls, callback, obj, context) {
load('css', urls, callback, obj, context);
},
/**
Requests the specified JavaScript URL or URLs and executes the specified
callback (if any) when they have finished loading. If an array of URLs is
specified and the browser supports it, the scripts will be loaded in
parallel and the callback will be executed after all scripts have
finished loading.
Currently, only Firefox and Opera support parallel loading of scripts while
preserving execution order. In other browsers, scripts will be
queued and loaded one at a time to ensure correct execution order.
@method js
@param {String|Array} urls JS URL or array of JS URLs to load
@param {Function} callback (optional) callback function to execute when
the specified scripts are loaded
@param {Object} obj (optional) object to pass to the callback function
@param {Object} context (optional) if provided, the callback function
will be executed in this object's context
@static
*/
js: function (urls, callback, obj, context) {
load('js', urls, callback, obj, context);
}
};
})(this.document);
/* **********************************************
Begin TL.TimelineConfig.js
********************************************** */
/* TL.TimelineConfig
separate the configuration from the display (TL.Timeline)
to make testing easier
================================================== */
TL.TimelineConfig = TL.Class.extend({
includes: [],
initialize: function (data) {
this.title = '';
this.scale = '';
this.events = [];
this.eras = [];
this.event_dict = {}; // despite name, all slides (events + title) indexed by slide.unique_id
this.messages = {
errors: [],
warnings: []
};
// Initialize the data
if (typeof data === 'object' && data.events) {
this.scale = data.scale;
this.events = [];
this._ensureValidScale(data.events);
if (data.title) {
var title_id = this._assignID(data.title);
this._tidyFields(data.title);
this.title = data.title;
this.event_dict[title_id] = this.title;
}
for (var i = 0; i < data.events.length; i++) {
try {
this.addEvent(data.events[i], true);
} catch (e) {
this.logError(e);
}
}
if (data.eras) {
for (var i = 0; i < data.eras.length; i++) {
try {
this.addEra(data.eras[i], true);
} catch (e) {
this.logError("Era " + i + ": " + e);
}
}
}
TL.DateUtil.sortByDate(this.events);
TL.DateUtil.sortByDate(this.eras);
}
},
logError: function(msg) {
trace(msg);
this.messages.errors.push(msg);
},
/*
* Return any accumulated error messages. If `sep` is passed, it should be a string which will be used to join all messages, resulting in a string return value. Otherwise,
* errors will be returned as an array.
*/
getErrors: function(sep) {
if (sep) {
return this.messages.errors.join(sep);
} else {
return this.messages.errors;
}
},
/*
* Perform any sanity checks we can before trying to use this to make a timeline. Returns nothing, but errors will be logged
* such that after this is called, one can test `this.isValid()` to see if everything is OK.
*/
validate: function() {
if (typeof(this.events) == "undefined" || typeof(this.events.length) == "undefined" || this.events.length == 0) {
this.logError("Timeline configuration has no events.")
}
// make sure all eras have start and end dates
for (var i = 0; i < this.eras.length; i++) {
if (typeof(this.eras[i].start_date) == 'undefined' || typeof(this.eras[i].end_date) == 'undefined') {
var era_identifier;
if (this.eras[i].text && this.eras[i].text.headline) {
era_identifier = this.eras[i].text.headline
} else {
era_identifier = "era " + (i+1);
}
this.logError("All eras must have start and end dates. [" + era_identifier + "]") // add internationalization (I18N) and context
}
};
},
isValid: function() {
return this.messages.errors.length == 0;
},
/* Add an event (including cleaning/validation) and return the unique id.
* All event data validation should happen in here.
* Throws: TL.Error for any validation problems.
*/
addEvent: function(data, defer_sort) {
var event_id = this._assignID(data);
if (typeof(data.start_date) == 'undefined') {
throw new TL.Error("missing_start_date_err", event_id);
} else {
this._processDates(data);
this._tidyFields(data);
}
this.events.push(data);
this.event_dict[event_id] = data;
if (!defer_sort) {
TL.DateUtil.sortByDate(this.events);
}
return event_id;
},
addEra: function(data, defer_sort) {
var event_id = this._assignID(data);
if (typeof(data.start_date) == 'undefined') {
throw new TL.Error("missing_start_date_err", event_id);
} else {
this._processDates(data);
this._tidyFields(data);
}
this.eras.push(data);
this.event_dict[event_id] = data;
if (!defer_sort) {
TL.DateUtil.sortByDate(this.eras);
}
return event_id;
},
/**
* Given a slide, verify that its ID is unique, or assign it one which is.
* The assignment happens in this function, and the assigned ID is also
* the return value. Not thread-safe, because ids are not reserved
* when assigned here.
*/
_assignID: function(slide) {
var slide_id = slide.unique_id;
if (!TL.Util.trim(slide_id)) {
// give it an ID if it doesn't have one
slide_id = (slide.text) ? TL.Util.slugify(slide.text.headline) : null;
}
// make sure it's unique and add it.
slide.unique_id = TL.Util.ensureUniqueKey(this.event_dict,slide_id);
return slide.unique_id
},
/**
* Given an array of slide configs (the events), ensure that each one has a distinct unique_id. The id of the title
* is also passed in because in most ways it functions as an event slide, and the event IDs must also all be unique
* from the title ID.
*/
_makeUniqueIdentifiers: function(title_id, array) {
var used = [title_id];
// establish which IDs are assigned and if any appear twice, clear out successors.
for (var i = 0; i < array.length; i++) {
if (TL.Util.trim(array[i].unique_id)) {
array[i].unique_id = TL.Util.slugify(array[i].unique_id); // enforce valid
if (used.indexOf(array[i].unique_id) == -1) {
used.push(array[i].unique_id);
} else { // it was already used, wipe it out
array[i].unique_id = '';
}
}
};
if (used.length != (array.length + 1)) {
// at least some are yet to be assigned
for (var i = 0; i < array.length; i++) {
if (!array[i].unique_id) {
// use the headline for the unique ID if it's available
var slug = (array[i].text) ? TL.Util.slugify(array[i].text.headline) : null;
if (!slug) {
slug = TL.Util.unique_ID(6); // or generate a random ID
}
if (used.indexOf(slug) != -1) {
slug = slug + '-' + i; // use the index to get a unique ID.
}
used.push(slug);
array[i].unique_id = slug;
}
}
}
},
_ensureValidScale: function(events) {
if(!this.scale) {
trace("Determining scale dynamically");
this.scale = "human"; // default to human unless there's a slide which is explicitly 'cosmological' or one which has a cosmological year
for (var i = 0; i < events.length; i++) {
if (events[i].scale == 'cosmological') {
this.scale = 'cosmological';
break;
}
if (events[i].start_date && typeof(events[i].start_date.year) != "undefined") {
var d = new TL.BigDate(events[i].start_date);
var year = d.data.date_obj.year;
if(year < -271820 || year > 275759) {
this.scale = "cosmological";
break;
}
}
}
}
var dateCls = TL.DateUtil.SCALE_DATE_CLASSES[this.scale];
if (!dateCls) { this.logError("Don't know how to process dates on scale "+this.scale); }
},
/*
Given a thing which has a start_date and optionally an end_date, make sure that it is an instance
of the correct date class (for human or cosmological scale). For slides, remove redundant end dates
(people frequently configure an end date which is the same as the start date).
*/
_processDates: function(slide_or_era) {
var dateCls = TL.DateUtil.SCALE_DATE_CLASSES[this.scale];
if(!(slide_or_era.start_date instanceof dateCls)) {
var start_date = slide_or_era.start_date;
slide_or_era.start_date = new dateCls(start_date);
// eliminate redundant end dates.
if (typeof(slide_or_era.end_date) != 'undefined' && !(slide_or_era.end_date instanceof dateCls)) {
var end_date = slide_or_era.end_date;
var equal = true;
for (property in start_date) {
equal = equal && (start_date[property] == end_date[property]);
}
if (equal) {
trace("End date same as start date is redundant; dropping end date");
delete slide_or_era.end_date;
} else {
slide_or_era.end_date = new dateCls(end_date);
}
}
}
},
/**
* Return the earliest date that this config knows about, whether it's a slide or an era
*/
getEarliestDate: function() {
// counting that dates were sorted in initialization
var date = this.events[0].start_date;
if (this.eras && this.eras.length > 0) {
if (this.eras[0].start_date.isBefore(date)) {
return this.eras[0].start_date;
}
}
return date;
},
/**
* Return the latest date that this config knows about, whether it's a slide or an era, taking end_dates into account.
*/
getLatestDate: function() {
var dates = [];
for (var i = 0; i < this.events.length; i++) {
if (this.events[i].end_date) {
dates.push({ date: this.events[i].end_date });
} else {
dates.push({ date: this.events[i].start_date });
}
}
for (var i = 0; i < this.eras.length; i++) {
if (this.eras[i].end_date) {
dates.push({ date: this.eras[i].end_date });
} else {
dates.push({ date: this.eras[i].start_date });
}
}
TL.DateUtil.sortByDate(dates, 'date');
return dates.slice(-1)[0].date;
},
_tidyFields: function(slide) {
function fillIn(obj,key,default_value) {
if (!default_value) default_value = '';
if (!obj.hasOwnProperty(key)) { obj[key] = default_value }
}
if (slide.group) {
slide.group = TL.Util.trim(slide.group);
}
if (!slide.text) {
slide.text = {};
}
fillIn(slide.text,'text');
fillIn(slide.text,'headline');
}
});
/* **********************************************
Begin TL.ConfigFactory.js
********************************************** */
/* TL.ConfigFactory.js
* Build TimelineConfig objects from other data sources
*/
;(function(TL){
/*
* Convert a URL to a Google Spreadsheet (typically a /pubhtml version but somewhat flexible) into an object with the spreadsheet key (ID) and worksheet ID.
If `url` is actually a string which is only letters, numbers, '-' and '_', then it's assumed to be an ID already. If we had a more precise way of testing to see if the input argument was a valid key, we might apply it, but I don't know where that's documented.
If we're pretty sure this isn't a bare key or a url that could be used to find a Google spreadsheet then return null.
*/
function parseGoogleSpreadsheetURL(url) {
parts = {
key: null,
worksheet: 0 // not really sure how to use this to get the feed for that sheet, so this is not ready except for first sheet right now
}
// key as url parameter (old-fashioned)
var key_pat = /\bkey=([-_A-Za-z0-9]+)&?/i;
var url_pat = /docs.google.com\/spreadsheets(.*?)\/d\//; // fixing issue of URLs with u/0/d
if (url.match(key_pat)) {
parts.key = url.match(key_pat)[1];
// can we get a worksheet from this form?
} else if (url.match(url_pat)) {
var pos = url.search(url_pat) + url.match(url_pat)[0].length;
var tail = url.substr(pos);
parts.key = tail.split('/')[0]
if (url.match(/\?gid=(\d+)/)) {
parts.worksheet = url.match(/\?gid=(\d+)/)[1];
}
} else if (url.match(/^\b[-_A-Za-z0-9]+$/)) {
parts.key = url;
}
if (parts.key) {
return parts;
} else {
return null;
}
}
function extractGoogleEntryData_V1(item) {
var item_data = {}
for (k in item) {
if (k.indexOf('gsx$') == 0) {
item_data[k.substr(4)] = item[k].$t;
}
}
if (TL.Util.isEmptyObject(item_data)) return null;
var d = {
media: {
caption: item_data.mediacaption || '',
credit: item_data.mediacredit || '',
url: item_data.media || '',
thumbnail: item_data.mediathumbnail || ''
},
text: {
headline: item_data.headline || '',
text: item_data.text || ''
},
group: item_data.tag || '',
type: item_data.type || ''
}
if (item_data.startdate) {
d['start_date'] = TL.Date.parseDate(item_data.startdate);
}
if (item_data.enddate) {
d['end_date'] = TL.Date.parseDate(item_data.enddate);
}
return d;
}
function extractGoogleEntryData_V3(item) {
function clean_integer(s) {
if (s) {
return s.replace(/[\s,]+/g,''); // doesn't handle '.' as comma separator, but how to distinguish that from decimal separator?
}
}
var item_data = {}
for (k in item) {
if (k.indexOf('gsx$') == 0) {
item_data[k.substr(4)] = TL.Util.trim(item[k].$t);
}
}
if (TL.Util.isEmptyObject(item_data)) return null;
var d = {
media: {
caption: item_data.mediacaption || '',
credit: item_data.mediacredit || '',
url: item_data.media || '',
thumbnail: item_data.mediathumbnail || ''
},
text: {
headline: item_data.headline || '',
text: item_data.text || ''
},
start_date: {
year: clean_integer(item_data.year),
month: clean_integer(item_data.month) || '',
day: clean_integer(item_data.day) || ''
},
end_date: {
year: clean_integer(item_data.endyear) || '',
month: clean_integer(item_data.endmonth) || '',
day: clean_integer(item_data.endday) || ''
},
display_date: item_data.displaydate || '',
type: item_data.type || ''
}
if (item_data.time) {
TL.Util.mergeData(d.start_date,TL.DateUtil.parseTime(item_data.time));
}
if (item_data.endtime) {
TL.Util.mergeData(d.end_date,TL.DateUtil.parseTime(item_data.endtime));
}
if (item_data.group) {
d.group = item_data.group;
}
if (d.end_date.year == '') {
var bad_date = d.end_date;
delete d.end_date;
if (bad_date.month != '' || bad_date.day != '' || bad_date.time != '') {
var label = d.text.headline ||
trace("Invalid end date for spreadsheet row. Must have a year if any other date fields are specified.");
trace(item);
}
}
if (item_data.background) {
if (item_data.background.match(/^(https?:)?\/\/?/)) { // support http, https, protocol relative, site relative
d['background'] = { 'url': item_data.background }
} else { // for now we'll trust it's a color
d['background'] = { 'color': item_data.background }
}
}
return d;
}
var getGoogleItemExtractor = function(data) {
if (typeof data.feed.entry === 'undefined'
|| data.feed.entry.length == 0) {
throw new TL.Error("empty_feed_err");
}
var entry = data.feed.entry[0];
if (typeof entry.gsx$startdate !== 'undefined') {
// check headers V1
// var headers_V1 = ['startdate', 'enddate', 'headline','text','media','mediacredit','mediacaption','mediathumbnail','media','type','tag'];
// for (var i = 0; i < headers_V1.length; i++) {
// if (typeof entry['gsx$' + headers_V1[i]] == 'undefined') {
// throw new TL.Error("invalid_data_format_err");
// }
// }
return extractGoogleEntryData_V1;
} else if (typeof entry.gsx$year !== 'undefined') {
// check rest of V3 headers
var headers_V3 = ['month', 'day', 'time', 'endmonth', 'endyear', 'endday', 'endtime', 'displaydate', 'headline','text','media','mediacredit','mediacaption','mediathumbnail','type','group','background'];
// for (var i = 0; i < headers_V3.length; i++) {
// if (typeof entry['gsx$' + headers_V3[i]] == 'undefined') {
// throw new TL.Error("invalid_data_format_err");
// }
// }
return extractGoogleEntryData_V3;
}
throw new TL.Error("invalid_data_format_err");
}
var buildGoogleFeedURL = function(parts) {
return "https://spreadsheets.google.com/feeds/list/" + parts.key + "/1/public/values?alt=json";
}
var jsonFromGoogleURL = function(url) {
var url = buildGoogleFeedURL(parseGoogleSpreadsheetURL(url));
var timeline_config = { 'events': [] };
var data = TL.ajax({
url: url,
async: false
});
data = JSON.parse(data.responseText);
return googleFeedJSONtoTimelineJSON(data);
}
var googleFeedJSONtoTimelineJSON = function(data) {
var timeline_config = { 'events': [], 'errors': [], 'warnings': [], 'eras': [] }
var extract = getGoogleItemExtractor(data);
for (var i = 0; i < data.feed.entry.length; i++) {
try {
var event = extract(data.feed.entry[i]);
if (event) { // blank rows return null
var row_type = 'event';
if (typeof(event.type) != 'undefined') {
row_type = event.type;
delete event.type;
}
if (row_type == 'title') {
if (!timeline_config.title) {
timeline_config.title = event;
} else {
timeline_config.warnings.push("Multiple title slides detected.");
timeline_config.events.push(event);
}
} else if (row_type == 'era') {
timeline_config.eras.push(event);
} else {
timeline_config.events.push(event);
}
}
} catch(e) {
if (e.message) {
e = e.message;
}
timeline_config.errors.push(e + " ["+ i +"]");
}
};
return timeline_config;
}
var makeConfig = function(url, callback) {
var tc,
key = parseGoogleSpreadsheetURL(url);
if (key) {
try {
var json = jsonFromGoogleURL(url);
} catch(e) {
tc = new TL.TimelineConfig();
if (e.name == 'NetworkError') {
tc.logError(new TL.Error("network_err"));
} else if(e.name == 'TL.Error') {
tc.logError(e);
} else {
tc.logError(new TL.Error("unknown_read_err", e.name));
}
callback(tc);
return;
}
tc = new TL.TimelineConfig(json);
if (json.errors) {
for (var i = 0; i < json.errors.length; i++) {
tc.logError(json.errors[i]);
};
}
callback(tc);
} else {
TL.getJSON(url, function(data){
try {
tc = new TL.TimelineConfig(data);
} catch(e) {
tc = new TL.TimelineConfig();
tc.logError(e);
}
callback(tc);
});
}
}
TL.ConfigFactory = {
// export for unit testing and use by authoring tool
parseGoogleSpreadsheetURL: parseGoogleSpreadsheetURL,
// export for unit testing
googleFeedJSONtoTimelineJSON: googleFeedJSONtoTimelineJSON,
fromGoogle: function(url) {
console.warn("TL.ConfigFactory.fromGoogle is deprecated and will be removed soon. Use TL.ConfigFactory.makeConfig(url,callback)")
return jsonFromGoogleURL(url);
},
/*
* Given a URL to a Timeline data source, read the data, create a TimelineConfig
* object, and call the given `callback` function passing the created config as
* the only argument. This should be the main public interface to getting configs
* from any kind of URL, Google or direct JSON.
*/
makeConfig: makeConfig,
}
})(TL)
/* **********************************************
Begin TL.Language.js
********************************************** */
TL.Language = function(options) {
// borrowed from http://stackoverflow.com/a/14446414/102476
for (k in TL.Language.languages.en) {
this[k] = TL.Language.languages.en[k];
}
if (options && options.language && typeof(options.language) == 'string' && options.language != 'en') {
var code = options.language;
if (!(code in TL.Language.languages)) {
if (/\.json$/.test(code)) {
var url = code;
} else {
var fragment = "/locale/" + code + ".json";
var script_path = options.script_path || TL.Timeline.source_path;
if (/\/$/.test(script_path)) { fragment = fragment.substr(1)}
var url = script_path + fragment;
}
var self = this;
var xhr = TL.ajax({
url: url, async: false
});
if (xhr.status == 200) {
TL.Language.languages[code] = JSON.parse(xhr.responseText);
} else {
throw "Could not load language [" + code + "]: " + xhr.statusText;
}
}
TL.Util.mergeData(this,TL.Language.languages[code]);
}
}
TL.Language.formatNumber = function(val,mask) {
if (mask.match(/%(\.(\d+))?f/)) {
var match = mask.match(/%(\.(\d+))?f/);
var token = match[0];
if (match[2]) {
val = val.toFixed(match[2]);
}
return mask.replace(token,val);
}
// use mask as literal display value.
return mask;
}
/* TL.Util.mergeData is shallow, we have nested dicts.
This is a simplistic handling but should work.
*/
TL.Language.prototype.mergeData = function(lang_json) {
for (k in TL.Language.languages.en) {
if (lang_json[k]) {
if (typeof(this[k]) == 'object') {
TL.Util.mergeData(lang_json[k], this[k]);
} else {
this[k] = lang_json[k]; // strings, mostly
}
}
}
}
TL.Language.fallback = { messages: {} }; // placeholder to satisfy IE8 early compilation
TL.Language.prototype.getMessage = function(k) {
return this.messages[k] || TL.Language.fallback.messages[k] || k;
}
TL.Language.prototype._ = TL.Language.prototype.getMessage; // keep it concise
TL.Language.prototype.formatDate = function(date, format_name) {
if (date.constructor == Date) {
return this.formatJSDate(date, format_name);
}
if (date.constructor == TL.BigYear) {
return this.formatBigYear(date, format_name);
}
if (date.data && date.data.date_obj) {
return this.formatDate(date.data.date_obj, format_name);
}
trace("Unfamiliar date presented for formatting");
return date.toString();
}
TL.Language.prototype.formatBigYear = function(bigyear, format_name) {
var the_year = bigyear.year;
var format_list = this.bigdateformats[format_name] || this.bigdateformats['fallback'];
if (format_list) {
for (var i = 0; i < format_list.length; i++) {
var tuple = format_list[i];
if (Math.abs(the_year / tuple[0]) > 1) {
// will we ever deal with distant future dates?
return TL.Language.formatNumber(Math.abs(the_year / tuple[0]),tuple[1])
}
};
return the_year.toString();
} else {
trace("Language file dateformats missing cosmological. Falling back.");
return TL.Language.formatNumber(the_year,format_name);
}
}
TL.Language.prototype.formatJSDate = function(js_date, format_name) {
// ultimately we probably want this to work with TL.Date instead of (in addition to?) JS Date
// utc, timezone and timezoneClip are carry over from Steven Levithan implementation. We probably aren't going to use them.
var self = this;
var formatPeriod = function(fmt, value) {
var formats = self.period_labels[fmt];
if (formats) {
var fmt = (value < 12) ? formats[0] : formats[1];
}
return "<span class='tl-timeaxis-timesuffix'>" + fmt + "</span>";
}
var utc = false,
timezone = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,
timezoneClip = /[^-+\dA-Z]/g;
if (!format_name) {
format_name = 'full';
}
var mask = this.dateformats[format_name] || TL.Language.fallback.dateformats[format_name];
if (!mask) {
mask = format_name; // allow custom format strings
}
var _ = utc ? "getUTC" : "get",
d = js_date[_ + "Date"](),
D = js_date[_ + "Day"](),
m = js_date[_ + "Month"](),
y = js_date[_ + "FullYear"](),
H = js_date[_ + "Hours"](),
M = js_date[_ + "Minutes"](),
s = js_date[_ + "Seconds"](),
L = js_date[_ + "Milliseconds"](),
o = utc ? 0 : js_date.getTimezoneOffset(),
year = "",
flags = {
d: d,
dd: TL.Util.pad(d),
ddd: this.date.day_abbr[D],
dddd: this.date.day[D],
m: m + 1,
mm: TL.Util.pad(m + 1),
mmm: this.date.month_abbr[m],
mmmm: this.date.month[m],
yy: String(y).slice(2),
yyyy: (y < 0 && this.has_negative_year_modifier()) ? Math.abs(y) : y,
h: H % 12 || 12,
hh: TL.Util.pad(H % 12 || 12),
H: H,
HH: TL.Util.pad(H),
M: M,
MM: TL.Util.pad(M),
s: s,
ss: TL.Util.pad(s),
l: TL.Util.pad(L, 3),
L: TL.Util.pad(L > 99 ? Math.round(L / 10) : L),
t: formatPeriod('t',H),
tt: formatPeriod('tt',H),
T: formatPeriod('T',H),
TT: formatPeriod('TT',H),
Z: utc ? "UTC" : (String(js_date).match(timezone) || [""]).pop().replace(timezoneClip, ""),
o: (o > 0 ? "-" : "+") + TL.Util.pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4),
S: ["th", "st", "nd", "rd"][d % 10 > 3 ? 0 : (d % 100 - d % 10 != 10) * d % 10]
};
var formatted = mask.replace(TL.Language.DATE_FORMAT_TOKENS, function ($0) {
return $0 in flags ? flags[$0] : $0.slice(1, $0.length - 1);
});
return this._applyEra(formatted, y);
}
TL.Language.prototype.has_negative_year_modifier = function() {
return Boolean(this.era_labels.negative_year.prefix || this.era_labels.negative_year.suffix);
}
TL.Language.prototype._applyEra = function(formatted_date, original_year) {
// trusts that the formatted_date was property created with a non-negative year if there are
// negative affixes to be applied
var labels = (original_year < 0) ? this.era_labels.negative_year : this.era_labels.positive_year;
var result = '';
if (labels.prefix) { result += '<span>' + labels.prefix + '</span> ' }
result += formatted_date;
if (labels.suffix) { result += ' <span>' + labels.suffix + '</span>' }
return result;
}
TL.Language.DATE_FORMAT_TOKENS = /d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g;
TL.Language.languages = {
/*
This represents the canonical list of message keys which translation files should handle. The existence of the 'en.json' file should not mislead you.
It is provided more as a starting point for someone who wants to provide a
new translation since the form for non-default languages (JSON not JS) is slightly different from what appears below. Also, those files have some message keys grandfathered in from TimelineJS2 which we'd rather not have to
get "re-translated" if we use them.
*/
en: {
name: "English",
lang: "en",
api: {
wikipedia: "en" // the two letter code at the beginning of the Wikipedia subdomain for this language
},
messages: {
loading: "Loading",
wikipedia: "From Wikipedia, the free encyclopedia",
error: "Error",
contract_timeline: "Contract Timeline",
return_to_title: "Return to Title",
loading_content: "Loading Content",
expand_timeline: "Expand Timeline",
loading_timeline: "Loading Timeline... ",
swipe_to_navigate: "Swipe to Navigate<br><span class='tl-button'>OK</span>",
unknown_read_err: "An unexpected error occurred trying to read your spreadsheet data",
network_err: "Unable to read your Google Spreadsheet. Make sure you have published it to the web.",
empty_feed_err: "No data entries found",
missing_start_date_err: "Missing start_date",
invalid_data_format_err: "Header row has been modified.",
date_compare_err: "Can't compare TL.Dates on different scales",
invalid_scale_err: "Invalid scale",
invalid_date_err: "Invalid date: month, day and year must be numbers.",
invalid_separator_error: "Invalid time: misuse of : or . as separator.",
invalid_hour_err: "Invalid time (hour)",
invalid_minute_err: "Invalid time (minute)",
invalid_second_err: "Invalid time (second)",
invalid_fractional_err: "Invalid time (fractional seconds)",
invalid_second_fractional_err: "Invalid time (seconds and fractional seconds)",
invalid_year_err: "Invalid year",
flickr_notfound_err: "Photo not found or private",
flickr_invalidurl_err: "Invalid Flickr URL",
imgur_invalidurl_err: "Invalid Imgur URL",
twitter_invalidurl_err: "Invalid Twitter URL",
twitter_load_err: "Unable to load Tweet",
twitterembed_invalidurl_err: "Invalid Twitter Embed url",
wikipedia_load_err: "Unable to load Wikipedia entry",
youtube_invalidurl_err: "Invalid YouTube URL",
spotify_invalid_url: "Invalid Spotify URL",
template_value_err: "No value provided for variable",
invalid_rgb_err: "Invalid RGB argument",
time_scale_scale_err: "Don't know how to get date from time for scale",
axis_helper_no_options_err: "Axis helper must be configured with options",
axis_helper_scale_err: "No AxisHelper available for scale",
invalid_integer_option: "Invalid option value—must be a whole number."
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
},
era_labels: { // specify prefix or suffix to apply to formatted date. Blanks mean no change.
positive_year: {
prefix: '',
suffix: ''
},
negative_year: { // if either of these is specified, the year will be converted to positive before they are applied
prefix: '',
suffix: 'BCE'
}
},
period_labels: { // use of t/tt/T/TT legacy of original Timeline date format
t: ['a', 'p'],
tt: ['am', 'pm'],
T: ['A', 'P'],
TT: ['AM', 'PM']
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "mmm d",
full: "mmmm d',' yyyy",
time: "h:MM:ss TT' <small>'mmmm d',' yyyy'</small>'",
time_short: "h:MM:ss TT",
time_no_seconds_short: "h:MM TT",
time_no_minutes_short: "h TT",
time_no_seconds_small_date: "h:MM TT' <small>'mmmm d',' yyyy'</small>'",
time_milliseconds: "l",
full_long: "mmm d',' yyyy 'at' h:MM TT",
full_long_small_date: "h:MM TT' <small>mmm d',' yyyy'</small>'"
},
bigdateformats: {
fallback: [ // a list of tuples, with t[0] an order of magnitude and t[1] a format string. format string syntax may change...
[1000000000,"%.2f billion years ago"],
[1000000,"%.1f million years ago"],
[1000,"%.1f thousand years ago"],
[1, "%f years ago"]
],
compact: [
[1000000000,"%.2f bya"],
[1000000,"%.1f mya"],
[1000,"%.1f kya"],
[1, "%f years ago"]
],
verbose: [
[1000000000,"%.2f billion years ago"],
[1000000,"%.1f million years ago"],
[1000,"%.1f thousand years ago"],
[1, "%f years ago"]
]
}
}
}
TL.Language.fallback = new TL.Language();
/* **********************************************
Begin TL.I18NMixins.js
********************************************** */
/* TL.I18NMixins
assumes that its class has an options object with a TL.Language instance
================================================== */
TL.I18NMixins = {
getLanguage: function() {
if (this.options && this.options.language) {
return this.options.language;
}
trace("Expected a language option");
return TL.Language.fallback;
},
_: function(msg) {
return this.getLanguage()._(msg);
}
}
/* **********************************************
Begin TL.Ease.js
********************************************** */
/* The equations defined here are open source under BSD License.
* http://www.robertpenner.com/easing_terms_of_use.html (c) 2003 Robert Penner
* Adapted to single time-based by
* Brian Crescimanno <[email protected]>
* Ken Snyder <[email protected]>
*/
/** MIT License
*
* KeySpline - use bezier curve for transition easing function
* Copyright (c) 2012 Gaetan Renaudeau <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/**
* KeySpline - use bezier curve for transition easing function
* is inspired from Firefox's nsSMILKeySpline.cpp
* Usage:
* var spline = new KeySpline(0.25, 0.1, 0.25, 1.0)
* spline.get(x) => returns the easing value | x must be in [0, 1] range
*/
TL.Easings = {
ease: [0.25, 0.1, 0.25, 1.0],
linear: [0.00, 0.0, 1.00, 1.0],
easein: [0.42, 0.0, 1.00, 1.0],
easeout: [0.00, 0.0, 0.58, 1.0],
easeinout: [0.42, 0.0, 0.58, 1.0]
};
TL.Ease = {
KeySpline: function(a) {
//KeySpline: function(mX1, mY1, mX2, mY2) {
this.get = function(aX) {
if (a[0] == a[1] && a[2] == a[3]) return aX; // linear
return CalcBezier(GetTForX(aX), a[1], a[3]);
}
function A(aA1, aA2) {
return 1.0 - 3.0 * aA2 + 3.0 * aA1;
}
function B(aA1, aA2) {
return 3.0 * aA2 - 6.0 * aA1;
}
function C(aA1) {
return 3.0 * aA1;
}
// Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.
function CalcBezier(aT, aA1, aA2) {
return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT;
}
// Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.
function GetSlope(aT, aA1, aA2) {
return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1);
}
function GetTForX(aX) {
// Newton raphson iteration
var aGuessT = aX;
for (var i = 0; i < 4; ++i) {
var currentSlope = GetSlope(aGuessT, a[0], a[2]);
if (currentSlope == 0.0) return aGuessT;
var currentX = CalcBezier(aGuessT, a[0], a[2]) - aX;
aGuessT -= currentX / currentSlope;
}
return aGuessT;
}
},
easeInSpline: function(t) {
var spline = new TL.Ease.KeySpline(TL.Easings.easein);
return spline.get(t);
},
easeInOutExpo: function(t) {
var spline = new TL.Ease.KeySpline(TL.Easings.easein);
return spline.get(t);
},
easeOut: function(t) {
return Math.sin(t * Math.PI / 2);
},
easeOutStrong: function(t) {
return (t == 1) ? 1 : 1 - Math.pow(2, - 10 * t);
},
easeIn: function(t) {
return t * t;
},
easeInStrong: function(t) {
return (t == 0) ? 0 : Math.pow(2, 10 * (t - 1));
},
easeOutBounce: function(pos) {
if ((pos) < (1 / 2.75)) {
return (7.5625 * pos * pos);
} else if (pos < (2 / 2.75)) {
return (7.5625 * (pos -= (1.5 / 2.75)) * pos + .75);
} else if (pos < (2.5 / 2.75)) {
return (7.5625 * (pos -= (2.25 / 2.75)) * pos + .9375);
} else {
return (7.5625 * (pos -= (2.625 / 2.75)) * pos + .984375);
}
},
easeInBack: function(pos) {
var s = 1.70158;
return (pos) * pos * ((s + 1) * pos - s);
},
easeOutBack: function(pos) {
var s = 1.70158;
return (pos = pos - 1) * pos * ((s + 1) * pos + s) + 1;
},
bounce: function(t) {
if (t < (1 / 2.75)) {
return 7.5625 * t * t;
}
if (t < (2 / 2.75)) {
return 7.5625 * (t -= (1.5 / 2.75)) * t + 0.75;
}
if (t < (2.5 / 2.75)) {
return 7.5625 * (t -= (2.25 / 2.75)) * t + 0.9375;
}
return 7.5625 * (t -= (2.625 / 2.75)) * t + 0.984375;
},
bouncePast: function(pos) {
if (pos < (1 / 2.75)) {
return (7.5625 * pos * pos);
} else if (pos < (2 / 2.75)) {
return 2 - (7.5625 * (pos -= (1.5 / 2.75)) * pos + .75);
} else if (pos < (2.5 / 2.75)) {
return 2 - (7.5625 * (pos -= (2.25 / 2.75)) * pos + .9375);
} else {
return 2 - (7.5625 * (pos -= (2.625 / 2.75)) * pos + .984375);
}
},
swingTo: function(pos) {
var s = 1.70158;
return (pos -= 1) * pos * ((s + 1) * pos + s) + 1;
},
swingFrom: function(pos) {
var s = 1.70158;
return pos * pos * ((s + 1) * pos - s);
},
elastic: function(pos) {
return -1 * Math.pow(4, - 8 * pos) * Math.sin((pos * 6 - 1) * (2 * Math.PI) / 2) + 1;
},
spring: function(pos) {
return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6));
},
blink: function(pos, blinks) {
return Math.round(pos * (blinks || 5)) % 2;
},
pulse: function(pos, pulses) {
return (-Math.cos((pos * ((pulses || 5) - .5) * 2) * Math.PI) / 2) + .5;
},
wobble: function(pos) {
return (-Math.cos(pos * Math.PI * (9 * pos)) / 2) + 0.5;
},
sinusoidal: function(pos) {
return (-Math.cos(pos * Math.PI) / 2) + 0.5;
},
flicker: function(pos) {
var pos = pos + (Math.random() - 0.5) / 5;
return easings.sinusoidal(pos < 0 ? 0 : pos > 1 ? 1 : pos);
},
mirror: function(pos) {
if (pos < 0.5) return easings.sinusoidal(pos * 2);
else return easings.sinusoidal(1 - (pos - 0.5) * 2);
},
// accelerating from zero velocity
easeInQuad: function (t) { return t*t },
// decelerating to zero velocity
easeOutQuad: function (t) { return t*(2-t) },
// acceleration until halfway, then deceleration
easeInOutQuad: function (t) { return t<.5 ? 2*t*t : -1+(4-2*t)*t },
// accelerating from zero velocity
easeInCubic: function (t) { return t*t*t },
// decelerating to zero velocity
easeOutCubic: function (t) { return (--t)*t*t+1 },
// acceleration until halfway, then deceleration
easeInOutCubic: function (t) { return t<.5 ? 4*t*t*t : (t-1)*(2*t-2)*(2*t-2)+1 },
// accelerating from zero velocity
easeInQuart: function (t) { return t*t*t*t },
// decelerating to zero velocity
easeOutQuart: function (t) { return 1-(--t)*t*t*t },
// acceleration until halfway, then deceleration
easeInOutQuart: function (t) { return t<.5 ? 8*t*t*t*t : 1-8*(--t)*t*t*t },
// accelerating from zero velocity
easeInQuint: function (t) { return t*t*t*t*t },
// decelerating to zero velocity
easeOutQuint: function (t) { return 1+(--t)*t*t*t*t },
// acceleration until halfway, then deceleration
easeInOutQuint: function (t) { return t<.5 ? 16*t*t*t*t*t : 1+16*(--t)*t*t*t*t }
};
/*
Math.easeInExpo = function (t, b, c, d) {
return c * Math.pow( 2, 10 * (t/d - 1) ) + b;
};
// exponential easing out - decelerating to zero velocity
Math.easeOutExpo = function (t, b, c, d) {
return c * ( -Math.pow( 2, -10 * t/d ) + 1 ) + b;
};
// exponential easing in/out - accelerating until halfway, then decelerating
Math.easeInOutExpo = function (t, b, c, d) {
t /= d/2;
if (t < 1) return c/2 * Math.pow( 2, 10 * (t - 1) ) + b;
t--;
return c/2 * ( -Math.pow( 2, -10 * t) + 2 ) + b;
};
*/
/* **********************************************
Begin TL.Animate.js
********************************************** */
/* TL.Animate
Basic animation
================================================== */
TL.Animate = function(el, options) {
var animation = new tlanimate(el, options),
webkit_timeout;
/*
// POSSIBLE ISSUE WITH WEBKIT FUTURE BUILDS
var onWebKitTimeout = function() {
animation.stop(true);
}
if (TL.Browser.webkit) {
webkit_timeout = setTimeout(function(){onWebKitTimeout()}, options.duration);
}
*/
return animation;
};
/* Based on: Morpheus
https://github.com/ded/morpheus - (c) Dustin Diaz 2011
License MIT
================================================== */
window.tlanimate = (function() {
var doc = document,
win = window,
perf = win.performance,
perfNow = perf && (perf.now || perf.webkitNow || perf.msNow || perf.mozNow),
now = perfNow ? function () { return perfNow.call(perf) } : function () { return +new Date() },
html = doc.documentElement,
fixTs = false, // feature detected below
thousand = 1000,
rgbOhex = /^rgb\(|#/,
relVal = /^([+\-])=([\d\.]+)/,
numUnit = /^(?:[\+\-]=?)?\d+(?:\.\d+)?(%|in|cm|mm|em|ex|pt|pc|px)$/,
rotate = /rotate\(((?:[+\-]=)?([\-\d\.]+))deg\)/,
scale = /scale\(((?:[+\-]=)?([\d\.]+))\)/,
skew = /skew\(((?:[+\-]=)?([\-\d\.]+))deg, ?((?:[+\-]=)?([\-\d\.]+))deg\)/,
translate = /translate\(((?:[+\-]=)?([\-\d\.]+))px, ?((?:[+\-]=)?([\-\d\.]+))px\)/,
// these elements do not require 'px'
unitless = { lineHeight: 1, zoom: 1, zIndex: 1, opacity: 1, transform: 1};
// which property name does this browser use for transform
var transform = function () {
var styles = doc.createElement('a').style,
props = ['webkitTransform', 'MozTransform', 'OTransform', 'msTransform', 'Transform'],
i;
for (i = 0; i < props.length; i++) {
if (props[i] in styles) return props[i]
};
}();
// does this browser support the opacity property?
var opacity = function () {
return typeof doc.createElement('a').style.opacity !== 'undefined'
}();
// initial style is determined by the elements themselves
var getStyle = doc.defaultView && doc.defaultView.getComputedStyle ?
function (el, property) {
property = property == 'transform' ? transform : property
property = camelize(property)
var value = null,
computed = doc.defaultView.getComputedStyle(el, '');
computed && (value = computed[property]);
return el.style[property] || value;
} : html.currentStyle ?
function (el, property) {
property = camelize(property)
if (property == 'opacity') {
var val = 100
try {
val = el.filters['DXImageTransform.Microsoft.Alpha'].opacity
} catch (e1) {
try {
val = el.filters('alpha').opacity
} catch (e2) {
}
}
return val / 100
}
var value = el.currentStyle ? el.currentStyle[property] : null
return el.style[property] || value
} :
function (el, property) {
return el.style[camelize(property)]
}
var frame = function () {
// native animation frames
// http://webstuff.nfshost.com/anim-timing/Overview.html
// http://dev.chromium.org/developers/design-documents/requestanimationframe-implementation
return win.requestAnimationFrame ||
win.webkitRequestAnimationFrame ||
win.mozRequestAnimationFrame ||
win.msRequestAnimationFrame ||
win.oRequestAnimationFrame ||
function (callback) {
win.setTimeout(function () {
callback(+new Date())
}, 17) // when I was 17..
}
}()
var children = []
frame(function(timestamp) {
// feature-detect if rAF and now() are of the same scale (epoch or high-res),
// if not, we have to do a timestamp fix on each frame
fixTs = timestamp > 1e12 != now() > 1e12
})
function has(array, elem, i) {
if (Array.prototype.indexOf) return array.indexOf(elem)
for (i = 0; i < array.length; ++i) {
if (array[i] === elem) return i
}
}
function render(timestamp) {
var i, count = children.length
// if we're using a high res timer, make sure timestamp is not the old epoch-based value.
// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision
if (perfNow && timestamp > 1e12) timestamp = now()
if (fixTs) timestamp = now()
for (i = count; i--;) {
children[i](timestamp)
}
children.length && frame(render)
}
function live(f) {
if (children.push(f) === 1) frame(render)
}
function die(f) {
var rest, index = has(children, f)
if (index >= 0) {
rest = children.slice(index + 1)
children.length = index
children = children.concat(rest)
}
}
function parseTransform(style, base) {
var values = {}, m
if (m = style.match(rotate)) values.rotate = by(m[1], base ? base.rotate : null)
if (m = style.match(scale)) values.scale = by(m[1], base ? base.scale : null)
if (m = style.match(skew)) {values.skewx = by(m[1], base ? base.skewx : null); values.skewy = by(m[3], base ? base.skewy : null)}
if (m = style.match(translate)) {values.translatex = by(m[1], base ? base.translatex : null); values.translatey = by(m[3], base ? base.translatey : null)}
return values
}
function formatTransform(v) {
var s = ''
if ('rotate' in v) s += 'rotate(' + v.rotate + 'deg) '
if ('scale' in v) s += 'scale(' + v.scale + ') '
if ('translatex' in v) s += 'translate(' + v.translatex + 'px,' + v.translatey + 'px) '
if ('skewx' in v) s += 'skew(' + v.skewx + 'deg,' + v.skewy + 'deg)'
return s
}
function rgb(r, g, b) {
return '#' + (1 << 24 | r << 16 | g << 8 | b).toString(16).slice(1)
}
// convert rgb and short hex to long hex
function toHex(c) {
var m = c.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/)
return (m ? rgb(m[1], m[2], m[3]) : c)
.replace(/#(\w)(\w)(\w)$/, '#$1$1$2$2$3$3') // short skirt to long jacket
}
// change font-size => fontSize etc.
function camelize(s) {
return s.replace(/-(.)/g, function (m, m1) {
return m1.toUpperCase()
})
}
// aren't we having it?
function fun(f) {
return typeof f == 'function'
}
function nativeTween(t) {
// default to a pleasant-to-the-eye easeOut (like native animations)
return Math.sin(t * Math.PI / 2)
}
/**
* Core tween method that requests each frame
* @param duration: time in milliseconds. defaults to 1000
* @param fn: tween frame callback function receiving 'position'
* @param done {optional}: complete callback function
* @param ease {optional}: easing method. defaults to easeOut
* @param from {optional}: integer to start from
* @param to {optional}: integer to end at
* @returns method to stop the animation
*/
function tween(duration, fn, done, ease, from, to) {
ease = fun(ease) ? ease : morpheus.easings[ease] || nativeTween
var time = duration || thousand
, self = this
, diff = to - from
, start = now()
, stop = 0
, end = 0
function run(t) {
var delta = t - start
if (delta > time || stop) {
to = isFinite(to) ? to : 1
stop ? end && fn(to) : fn(to)
die(run)
return done && done.apply(self)
}
// if you don't specify a 'to' you can use tween as a generic delta tweener
// cool, eh?
isFinite(to) ?
fn((diff * ease(delta / time)) + from) :
fn(ease(delta / time))
}
live(run)
return {
stop: function (jump) {
stop = 1
end = jump // jump to end of animation?
if (!jump) done = null // remove callback if not jumping to end
}
}
}
/**
* generic bezier method for animating x|y coordinates
* minimum of 2 points required (start and end).
* first point start, last point end
* additional control points are optional (but why else would you use this anyway ;)
* @param points: array containing control points
[[0, 0], [100, 200], [200, 100]]
* @param pos: current be(tween) position represented as float 0 - 1
* @return [x, y]
*/
function bezier(points, pos) {
var n = points.length, r = [], i, j
for (i = 0; i < n; ++i) {
r[i] = [points[i][0], points[i][1]]
}
for (j = 1; j < n; ++j) {
for (i = 0; i < n - j; ++i) {
r[i][0] = (1 - pos) * r[i][0] + pos * r[parseInt(i + 1, 10)][0]
r[i][1] = (1 - pos) * r[i][1] + pos * r[parseInt(i + 1, 10)][1]
}
}
return [r[0][0], r[0][1]]
}
// this gets you the next hex in line according to a 'position'
function nextColor(pos, start, finish) {
var r = [], i, e, from, to
for (i = 0; i < 6; i++) {
from = Math.min(15, parseInt(start.charAt(i), 16))
to = Math.min(15, parseInt(finish.charAt(i), 16))
e = Math.floor((to - from) * pos + from)
e = e > 15 ? 15 : e < 0 ? 0 : e
r[i] = e.toString(16)
}
return '#' + r.join('')
}
// this retreives the frame value within a sequence
function getTweenVal(pos, units, begin, end, k, i, v) {
if (k == 'transform') {
v = {}
for (var t in begin[i][k]) {
v[t] = (t in end[i][k]) ? Math.round(((end[i][k][t] - begin[i][k][t]) * pos + begin[i][k][t]) * thousand) / thousand : begin[i][k][t]
}
return v
} else if (typeof begin[i][k] == 'string') {
return nextColor(pos, begin[i][k], end[i][k])
} else {
// round so we don't get crazy long floats
v = Math.round(((end[i][k] - begin[i][k]) * pos + begin[i][k]) * thousand) / thousand
// some css properties don't require a unit (like zIndex, lineHeight, opacity)
if (!(k in unitless)) v += units[i][k] || 'px'
return v
}
}
// support for relative movement via '+=n' or '-=n'
function by(val, start, m, r, i) {
return (m = relVal.exec(val)) ?
(i = parseFloat(m[2])) && (start + (m[1] == '+' ? 1 : -1) * i) :
parseFloat(val)
}
/**
* morpheus:
* @param element(s): HTMLElement(s)
* @param options: mixed bag between CSS Style properties & animation options
* - {n} CSS properties|values
* - value can be strings, integers,
* - or callback function that receives element to be animated. method must return value to be tweened
* - relative animations start with += or -= followed by integer
* - duration: time in ms - defaults to 1000(ms)
* - easing: a transition method - defaults to an 'easeOut' algorithm
* - complete: a callback method for when all elements have finished
* - bezier: array of arrays containing x|y coordinates that define the bezier points. defaults to none
* - this may also be a function that receives element to be animated. it must return a value
*/
function morpheus(elements, options) {
var els = elements ? (els = isFinite(elements.length) ? elements : [elements]) : [], i
, complete = options.complete
, duration = options.duration
, ease = options.easing
, points = options.bezier
, begin = []
, end = []
, units = []
, bez = []
, originalLeft
, originalTop
if (points) {
// remember the original values for top|left
originalLeft = options.left;
originalTop = options.top;
delete options.right;
delete options.bottom;
delete options.left;
delete options.top;
}
for (i = els.length; i--;) {
// record beginning and end states to calculate positions
begin[i] = {}
end[i] = {}
units[i] = {}
// are we 'moving'?
if (points) {
var left = getStyle(els[i], 'left')
, top = getStyle(els[i], 'top')
, xy = [by(fun(originalLeft) ? originalLeft(els[i]) : originalLeft || 0, parseFloat(left)),
by(fun(originalTop) ? originalTop(els[i]) : originalTop || 0, parseFloat(top))]
bez[i] = fun(points) ? points(els[i], xy) : points
bez[i].push(xy)
bez[i].unshift([
parseInt(left, 10),
parseInt(top, 10)
])
}
for (var k in options) {
switch (k) {
case 'complete':
case 'duration':
case 'easing':
case 'bezier':
continue
}
var v = getStyle(els[i], k), unit
, tmp = fun(options[k]) ? options[k](els[i]) : options[k]
if (typeof tmp == 'string' &&
rgbOhex.test(tmp) &&
!rgbOhex.test(v)) {
delete options[k]; // remove key :(
continue; // cannot animate colors like 'orange' or 'transparent'
// only #xxx, #xxxxxx, rgb(n,n,n)
}
begin[i][k] = k == 'transform' ? parseTransform(v) :
typeof tmp == 'string' && rgbOhex.test(tmp) ?
toHex(v).slice(1) :
parseFloat(v)
end[i][k] = k == 'transform' ? parseTransform(tmp, begin[i][k]) :
typeof tmp == 'string' && tmp.charAt(0) == '#' ?
toHex(tmp).slice(1) :
by(tmp, parseFloat(v));
// record original unit
(typeof tmp == 'string') && (unit = tmp.match(numUnit)) && (units[i][k] = unit[1])
}
}
// ONE TWEEN TO RULE THEM ALL
return tween.apply(els, [duration, function (pos, v, xy) {
// normally not a fan of optimizing for() loops, but we want something
// fast for animating
for (i = els.length; i--;) {
if (points) {
xy = bezier(bez[i], pos)
els[i].style.left = xy[0] + 'px'
els[i].style.top = xy[1] + 'px'
}
for (var k in options) {
v = getTweenVal(pos, units, begin, end, k, i)
k == 'transform' ?
els[i].style[transform] = formatTransform(v) :
k == 'opacity' && !opacity ?
(els[i].style.filter = 'alpha(opacity=' + (v * 100) + ')') :
(els[i].style[camelize(k)] = v)
}
}
}, complete, ease])
}
// expose useful methods
morpheus.tween = tween
morpheus.getStyle = getStyle
morpheus.bezier = bezier
morpheus.transform = transform
morpheus.parseTransform = parseTransform
morpheus.formatTransform = formatTransform
morpheus.easings = {}
return morpheus
})();
/* **********************************************
Begin TL.Point.js
********************************************** */
/* TL.Point
Inspired by Leaflet
TL.Point represents a point with x and y coordinates.
================================================== */
TL.Point = function (/*Number*/ x, /*Number*/ y, /*Boolean*/ round) {
this.x = (round ? Math.round(x) : x);
this.y = (round ? Math.round(y) : y);
};
TL.Point.prototype = {
add: function (point) {
return this.clone()._add(point);
},
_add: function (point) {
this.x += point.x;
this.y += point.y;
return this;
},
subtract: function (point) {
return this.clone()._subtract(point);
},
// destructive subtract (faster)
_subtract: function (point) {
this.x -= point.x;
this.y -= point.y;
return this;
},
divideBy: function (num, round) {
return new TL.Point(this.x / num, this.y / num, round);
},
multiplyBy: function (num) {
return new TL.Point(this.x * num, this.y * num);
},
distanceTo: function (point) {
var x = point.x - this.x,
y = point.y - this.y;
return Math.sqrt(x * x + y * y);
},
round: function () {
return this.clone()._round();
},
// destructive round
_round: function () {
this.x = Math.round(this.x);
this.y = Math.round(this.y);
return this;
},
clone: function () {
return new TL.Point(this.x, this.y);
},
toString: function () {
return 'Point(' +
TL.Util.formatNum(this.x) + ', ' +
TL.Util.formatNum(this.y) + ')';
}
};
/* **********************************************
Begin TL.DomMixins.js
********************************************** */
/* TL.DomMixins
DOM methods used regularly
Assumes there is a _el.container and animator
================================================== */
TL.DomMixins = {
/* Adding, Hiding, Showing etc
================================================== */
show: function(animate) {
if (animate) {
/*
this.animator = TL.Animate(this._el.container, {
left: -(this._el.container.offsetWidth * n) + "px",
duration: this.options.duration,
easing: this.options.ease
});
*/
} else {
this._el.container.style.display = "block";
}
},
hide: function(animate) {
this._el.container.style.display = "none";
},
addTo: function(container) {
container.appendChild(this._el.container);
this.onAdd();
},
removeFrom: function(container) {
container.removeChild(this._el.container);
this.onRemove();
},
/* Animate to Position
================================================== */
animatePosition: function(pos, el) {
var ani = {
duration: this.options.duration,
easing: this.options.ease
};
for (var name in pos) {
if (pos.hasOwnProperty(name)) {
ani[name] = pos[name] + "px";
}
}
if (this.animator) {
this.animator.stop();
}
this.animator = TL.Animate(el, ani);
},
/* Events
================================================== */
onLoaded: function() {
this.fire("loaded", this.data);
},
onAdd: function() {
this.fire("added", this.data);
},
onRemove: function() {
this.fire("removed", this.data);
},
/* Set the Position
================================================== */
setPosition: function(pos, el) {
for (var name in pos) {
if (pos.hasOwnProperty(name)) {
if (el) {
el.style[name] = pos[name] + "px";
} else {
this._el.container.style[name] = pos[name] + "px";
};
}
}
},
getPosition: function() {
return TL.Dom.getPosition(this._el.container);
}
};
/* **********************************************
Begin TL.Dom.js
********************************************** */
/* TL.Dom
Utilities for working with the DOM
================================================== */
TL.Dom = {
get: function(id) {
return (typeof id === 'string' ? document.getElementById(id) : id);
},
getByClass: function(id) {
if (id) {
return document.getElementsByClassName(id);
}
},
create: function(tagName, className, container) {
var el = document.createElement(tagName);
el.className = className;
if (container) {
container.appendChild(el);
}
return el;
},
createText: function(content, container) {
var el = document.createTextNode(content);
if (container) {
container.appendChild(el);
}
return el;
},
getTranslateString: function (point) {
return TL.Dom.TRANSLATE_OPEN +
point.x + 'px,' + point.y + 'px' +
TL.Dom.TRANSLATE_CLOSE;
},
setPosition: function (el, point) {
el._tl_pos = point;
if (TL.Browser.webkit3d) {
el.style[TL.Dom.TRANSFORM] = TL.Dom.getTranslateString(point);
if (TL.Browser.android) {
el.style['-webkit-perspective'] = '1000';
el.style['-webkit-backface-visibility'] = 'hidden';
}
} else {
el.style.left = point.x + 'px';
el.style.top = point.y + 'px';
}
},
getPosition: function(el){
var pos = {
x: 0,
y: 0
}
while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) {
pos.x += el.offsetLeft// - el.scrollLeft;
pos.y += el.offsetTop// - el.scrollTop;
el = el.offsetParent;
}
return pos;
},
testProp: function(props) {
var style = document.documentElement.style;
for (var i = 0; i < props.length; i++) {
if (props[i] in style) {
return props[i];
}
}
return false;
}
};
TL.Util.mergeData(TL.Dom, {
TRANSITION: TL.Dom.testProp(['transition', 'webkitTransition', 'OTransition', 'MozTransition', 'msTransition']),
TRANSFORM: TL.Dom.testProp(['transformProperty', 'WebkitTransform', 'OTransform', 'MozTransform', 'msTransform']),
TRANSLATE_OPEN: 'translate' + (TL.Browser.webkit3d ? '3d(' : '('),
TRANSLATE_CLOSE: TL.Browser.webkit3d ? ',0)' : ')'
});
/* **********************************************
Begin TL.DomUtil.js
********************************************** */
/* TL.DomUtil
Inspired by Leaflet
TL.DomUtil contains various utility functions for working with DOM
================================================== */
TL.DomUtil = {
get: function (id) {
return (typeof id === 'string' ? document.getElementById(id) : id);
},
getStyle: function (el, style) {
var value = el.style[style];
if (!value && el.currentStyle) {
value = el.currentStyle[style];
}
if (!value || value === 'auto') {
var css = document.defaultView.getComputedStyle(el, null);
value = css ? css[style] : null;
}
return (value === 'auto' ? null : value);
},
getViewportOffset: function (element) {
var top = 0,
left = 0,
el = element,
docBody = document.body;
do {
top += el.offsetTop || 0;
left += el.offsetLeft || 0;
if (el.offsetParent === docBody &&
TL.DomUtil.getStyle(el, 'position') === 'absolute') {
break;
}
el = el.offsetParent;
} while (el);
el = element;
do {
if (el === docBody) {
break;
}
top -= el.scrollTop || 0;
left -= el.scrollLeft || 0;
el = el.parentNode;
} while (el);
return new TL.Point(left, top);
},
create: function (tagName, className, container) {
var el = document.createElement(tagName);
el.className = className;
if (container) {
container.appendChild(el);
}
return el;
},
disableTextSelection: function () {
if (document.selection && document.selection.empty) {
document.selection.empty();
}
if (!this._onselectstart) {
this._onselectstart = document.onselectstart;
document.onselectstart = TL.Util.falseFn;
}
},
enableTextSelection: function () {
document.onselectstart = this._onselectstart;
this._onselectstart = null;
},
hasClass: function (el, name) {
return (el.className.length > 0) &&
new RegExp("(^|\\s)" + name + "(\\s|$)").test(el.className);
},
addClass: function (el, name) {
if (!TL.DomUtil.hasClass(el, name)) {
el.className += (el.className ? ' ' : '') + name;
}
},
removeClass: function (el, name) {
el.className = el.className.replace(/(\S+)\s*/g, function (w, match) {
if (match === name) {
return '';
}
return w;
}).replace(/^\s+/, '');
},
setOpacity: function (el, value) {
if (TL.Browser.ie) {
el.style.filter = 'alpha(opacity=' + Math.round(value * 100) + ')';
} else {
el.style.opacity = value;
}
},
testProp: function (props) {
var style = document.documentElement.style;
for (var i = 0; i < props.length; i++) {
if (props[i] in style) {
return props[i];
}
}
return false;
},
getTranslateString: function (point) {
return TL.DomUtil.TRANSLATE_OPEN +
point.x + 'px,' + point.y + 'px' +
TL.DomUtil.TRANSLATE_CLOSE;
},
getScaleString: function (scale, origin) {
var preTranslateStr = TL.DomUtil.getTranslateString(origin),
scaleStr = ' scale(' + scale + ') ',
postTranslateStr = TL.DomUtil.getTranslateString(origin.multiplyBy(-1));
return preTranslateStr + scaleStr + postTranslateStr;
},
setPosition: function (el, point) {
el._tl_pos = point;
if (TL.Browser.webkit3d) {
el.style[TL.DomUtil.TRANSFORM] = TL.DomUtil.getTranslateString(point);
if (TL.Browser.android) {
el.style['-webkit-perspective'] = '1000';
el.style['-webkit-backface-visibility'] = 'hidden';
}
} else {
el.style.left = point.x + 'px';
el.style.top = point.y + 'px';
}
},
getPosition: function (el) {
return el._tl_pos;
}
};
/* **********************************************
Begin TL.DomEvent.js
********************************************** */
/* TL.DomEvent
Inspired by Leaflet
DomEvent contains functions for working with DOM events.
================================================== */
// TODO stamp
TL.DomEvent = {
/* inpired by John Resig, Dean Edwards and YUI addEvent implementations */
addListener: function (/*HTMLElement*/ obj, /*String*/ type, /*Function*/ fn, /*Object*/ context) {
var id = TL.Util.stamp(fn),
key = '_tl_' + type + id;
if (obj[key]) {
return;
}
var handler = function (e) {
return fn.call(context || obj, e || TL.DomEvent._getEvent());
};
if (TL.Browser.touch && (type === 'dblclick') && this.addDoubleTapListener) {
this.addDoubleTapListener(obj, handler, id);
} else if ('addEventListener' in obj) {
if (type === 'mousewheel') {
obj.addEventListener('DOMMouseScroll', handler, false);
obj.addEventListener(type, handler, false);
} else if ((type === 'mouseenter') || (type === 'mouseleave')) {
var originalHandler = handler,
newType = (type === 'mouseenter' ? 'mouseover' : 'mouseout');
handler = function (e) {
if (!TL.DomEvent._checkMouse(obj, e)) {
return;
}
return originalHandler(e);
};
obj.addEventListener(newType, handler, false);
} else {
obj.addEventListener(type, handler, false);
}
} else if ('attachEvent' in obj) {
obj.attachEvent("on" + type, handler);
}
obj[key] = handler;
},
removeListener: function (/*HTMLElement*/ obj, /*String*/ type, /*Function*/ fn) {
var id = TL.Util.stamp(fn),
key = '_tl_' + type + id,
handler = obj[key];
if (!handler) {
return;
}
if (TL.Browser.touch && (type === 'dblclick') && this.removeDoubleTapListener) {
this.removeDoubleTapListener(obj, id);
} else if ('removeEventListener' in obj) {
if (type === 'mousewheel') {
obj.removeEventListener('DOMMouseScroll', handler, false);
obj.removeEventListener(type, handler, false);
} else if ((type === 'mouseenter') || (type === 'mouseleave')) {
obj.removeEventListener((type === 'mouseenter' ? 'mouseover' : 'mouseout'), handler, false);
} else {
obj.removeEventListener(type, handler, false);
}
} else if ('detachEvent' in obj) {
obj.detachEvent("on" + type, handler);
}
obj[key] = null;
},
_checkMouse: function (el, e) {
var related = e.relatedTarget;
if (!related) {
return true;
}
try {
while (related && (related !== el)) {
related = related.parentNode;
}
} catch (err) {
return false;
}
return (related !== el);
},
/*jshint noarg:false */ // evil magic for IE
_getEvent: function () {
var e = window.event;
if (!e) {
var caller = arguments.callee.caller;
while (caller) {
e = caller['arguments'][0];
if (e && window.Event === e.constructor) {
break;
}
caller = caller.caller;
}
}
return e;
},
/*jshint noarg:false */
stopPropagation: function (/*Event*/ e) {
if (e.stopPropagation) {
e.stopPropagation();
} else {
e.cancelBubble = true;
}
},
// TODO TL.Draggable.START
disableClickPropagation: function (/*HTMLElement*/ el) {
TL.DomEvent.addListener(el, TL.Draggable.START, TL.DomEvent.stopPropagation);
TL.DomEvent.addListener(el, 'click', TL.DomEvent.stopPropagation);
TL.DomEvent.addListener(el, 'dblclick', TL.DomEvent.stopPropagation);
},
preventDefault: function (/*Event*/ e) {
if (e.preventDefault) {
e.preventDefault();
} else {
e.returnValue = false;
}
},
stop: function (e) {
TL.DomEvent.preventDefault(e);
TL.DomEvent.stopPropagation(e);
},
getWheelDelta: function (e) {
var delta = 0;
if (e.wheelDelta) {
delta = e.wheelDelta / 120;
}
if (e.detail) {
delta = -e.detail / 3;
}
return delta;
}
};
/* **********************************************
Begin TL.StyleSheet.js
********************************************** */
/* TL.StyleSheet
Style Sheet Object
================================================== */
TL.StyleSheet = TL.Class.extend({
includes: [TL.Events],
_el: {},
/* Constructor
================================================== */
initialize: function() {
// Borrowed from: http://davidwalsh.name/add-rules-stylesheets
this.style = document.createElement("style");
// WebKit hack :(
this.style.appendChild(document.createTextNode(""));
// Add the <style> element to the page
document.head.appendChild(this.style);
this.sheet = this.style.sheet;
},
addRule: function(selector, rules, index) {
var _index = 0;
if (index) {
_index = index;
}
if("insertRule" in this.sheet) {
this.sheet.insertRule(selector + "{" + rules + "}", _index);
}
else if("addRule" in this.sheet) {
this.sheet.addRule(selector, rules, _index);
}
},
/* Events
================================================== */
onLoaded: function(error) {
this._state.loaded = true;
this.fire("loaded", this.data);
}
});
/* **********************************************
Begin TL.Date.js
********************************************** */
/* TL.Date
Date object
MONTHS are 1-BASED, not 0-BASED (different from Javascript date objects)
================================================== */
//
// Class for human dates
//
TL.Date = TL.Class.extend({
// @data = ms, JS Date object, or JS dictionary with date properties
initialize: function (data, format, format_short) {
if (typeof(data) == 'number') {
this.data = {
format: "yyyy mmmm",
date_obj: new Date(data)
};
} else if(Date == data.constructor) {
this.data = {
format: "yyyy mmmm",
date_obj: data
};
} else {
this.data = JSON.parse(JSON.stringify(data)); // clone don't use by reference.
this._createDateObj();
}
this._setFormat(format, format_short);
},
setDateFormat: function(format) {
this.data.format = format;
},
getDisplayDate: function(language, format) {
if (this.data.display_date) {
return this.data.display_date;
}
if (!language) {
language = TL.Language.fallback;
}
if (language.constructor != TL.Language) {
trace("First argument to getDisplayDate must be TL.Language");
language = TL.Language.fallback;
}
var format_key = format || this.data.format;
return language.formatDate(this.data.date_obj, format_key);
},
getMillisecond: function() {
return this.getTime();
},
getTime: function() {
return this.data.date_obj.getTime();
},
isBefore: function(other_date) {
if (!this.data.date_obj.constructor == other_date.data.date_obj.constructor) {
throw new TL.Error("date_compare_err") // but should be able to compare 'cosmological scale' dates once we get to that...
}
if ('isBefore' in this.data.date_obj) {
return this.data.date_obj['isBefore'](other_date.data.date_obj);
}
return this.data.date_obj < other_date.data.date_obj
},
isAfter: function(other_date) {
if (!this.data.date_obj.constructor == other_date.data.date_obj.constructor) {
throw new TL.Error("date_compare_err") // but should be able to compare 'cosmological scale' dates once we get to that...
}
if ('isAfter' in this.data.date_obj) {
return this.data.date_obj['isAfter'](other_date.data.date_obj);
}
return this.data.date_obj > other_date.data.date_obj
},
// Return a new TL.Date which has been 'floored' at the given scale.
// @scale = string value from TL.Date.SCALES
floor: function(scale) {
var d = new Date(this.data.date_obj.getTime());
for (var i = 0; i < TL.Date.SCALES.length; i++) {
// for JS dates, we iteratively apply flooring functions
TL.Date.SCALES[i][2](d);
if (TL.Date.SCALES[i][0] == scale) return new TL.Date(d);
};
throw new TL.Error("invalid_scale_err", scale);
},
/* Private Methods
================================================== */
_getDateData: function() {
var _date = {
year: 0,
month: 1, // stupid JS dates
day: 1,
hour: 0,
minute: 0,
second: 0,
millisecond: 0
};
// Merge data
TL.Util.mergeData(_date, this.data);
// Make strings into numbers
var DATE_PARTS = TL.Date.DATE_PARTS;
for (var ix in DATE_PARTS) {
var x = TL.Util.trim(_date[DATE_PARTS[ix]]);
if (!x.match(/^-?\d*$/)) {
throw new TL.Error("invalid_date_err", DATE_PARTS[ix] + " = '" + _date[DATE_PARTS[ix]] + "'");
}
var parsed = parseInt(_date[DATE_PARTS[ix]]);
if (isNaN(parsed)) {
parsed = (ix == 4 || ix == 5) ? 1 : 0; // month and day have diff baselines
}
_date[DATE_PARTS[ix]] = parsed;
}
if (_date.month > 0 && _date.month <= 12) { // adjust for JS's weirdness
_date.month = _date.month - 1;
}
return _date;
},
_createDateObj: function() {
var _date = this._getDateData();
this.data.date_obj = new Date(_date.year, _date.month, _date.day, _date.hour, _date.minute, _date.second, _date.millisecond);
if (this.data.date_obj.getFullYear() != _date.year) {
// Javascript has stupid defaults for two-digit years
this.data.date_obj.setFullYear(_date.year);
}
},
/* Find Best Format
* this may not work with 'cosmologic' dates, or with TL.Date if we
* support constructing them based on JS Date and time
================================================== */
findBestFormat: function(variant) {
var eval_array = TL.Date.DATE_PARTS,
format = "";
for (var i = 0; i < eval_array.length; i++) {
if ( this.data[eval_array[i]]) {
if (variant) {
if (!(variant in TL.Date.BEST_DATEFORMATS)) {
variant = 'short'; // legacy
}
} else {
variant = 'base'
}
return TL.Date.BEST_DATEFORMATS[variant][eval_array[i]];
}
};
return "";
},
_setFormat: function(format, format_short) {
if (format) {
this.data.format = format;
} else if (!this.data.format) {
this.data.format = this.findBestFormat();
}
if (format_short) {
this.data.format_short = format_short;
} else if (!this.data.format_short) {
this.data.format_short = this.findBestFormat(true);
}
}
});
// offer something that can figure out the right date class to return
TL.Date.makeDate = function(data) {
var date = new TL.Date(data);
if (!isNaN(date.getTime())) {
return date;
}
return new TL.BigDate(data);
}
TL.BigYear = TL.Class.extend({
initialize: function (year) {
this.year = parseInt(year);
if (isNaN(this.year)) {
throw new TL.Error('invalid_year_err', year);
}
},
isBefore: function(that) {
return this.year < that.year;
},
isAfter: function(that) {
return this.year > that.year;
},
getTime: function() {
return this.year;
}
});
(function(cls){
// human scales
cls.SCALES = [ // ( name, units_per_tick, flooring function )
['millisecond',1, function(d) { }],
['second',1000, function(d) { d.setMilliseconds(0);}],
['minute',1000 * 60, function(d) { d.setSeconds(0);}],
['hour',1000 * 60 * 60, function(d) { d.setMinutes(0);}],
['day',1000 * 60 * 60 * 24, function(d) { d.setHours(0);}],
['month',1000 * 60 * 60 * 24 * 30, function(d) { d.setDate(1);}],
['year',1000 * 60 * 60 * 24 * 365, function(d) { d.setMonth(0);}],
['decade',1000 * 60 * 60 * 24 * 365 * 10, function(d) {
var real_year = d.getFullYear();
d.setFullYear( real_year - (real_year % 10))
}],
['century',1000 * 60 * 60 * 24 * 365 * 100, function(d) {
var real_year = d.getFullYear();
d.setFullYear( real_year - (real_year % 100))
}],
['millennium',1000 * 60 * 60 * 24 * 365 * 1000, function(d) {
var real_year = d.getFullYear();
d.setFullYear( real_year - (real_year % 1000))
}]
];
// Date parts from highest to lowest precision
cls.DATE_PARTS = ["millisecond", "second", "minute", "hour", "day", "month", "year"];
var ISO8601_SHORT_PATTERN = /^([\+-]?\d+?)(-\d{2}?)?(-\d{2}?)?$/;
// regex below from
// http://www.pelagodesign.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
var ISO8601_PATTERN = /^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;
/* For now, rather than extract parts from regexp, lets trust the browser.
* Famous last words...
* What about UTC vs local time?
* see also http://stackoverflow.com/questions/10005374/ecmascript-5-date-parse-results-for-iso-8601-test-cases
*/
cls.parseISODate = function(str) {
var d = new Date(str);
if (isNaN(d)) {
throw new TL.Error("invalid_date_err", str);
}
return {
year: d.getFullYear(),
month: d.getMonth() + 1,
day: d.getDate(),
hour: d.getHours(),
minute: d.getMinutes(),
second: d.getSeconds(),
millisecond: d.getMilliseconds()
}
}
cls.parseDate = function(str) {
if (str.match(ISO8601_SHORT_PATTERN)) {
// parse short specifically to avoid timezone offset confusion
// most browsers assume short is UTC, not local time.
var parts = str.match(ISO8601_SHORT_PATTERN).slice(1);
var d = { year: parts[0].replace('+','')} // year can be negative
if (parts[1]) { d['month'] = parts[1].replace('-',''); }
if (parts[2]) { d['day'] = parts[2].replace('-',''); }
return d;
}
if (str.match(ISO8601_PATTERN)) {
return cls.parseISODate(str);
}
if (str.match(/^\-?\d+$/)) {
return { year: str }
}
var parsed = {}
if (str.match(/\d+\/\d+\/\d+/)) { // mm/yy/dddd
var date = str.match(/\d+\/\d+\/\d+/)[0];
str = TL.Util.trim(str.replace(date,''));
var date_parts = date.split('/');
parsed.month = date_parts[0];
parsed.day = date_parts[1];
parsed.year = date_parts[2];
}
if (str.match(/\d+\/\d+/)) { // mm/yy
var date = str.match(/\d+\/\d+/)[0];
str = TL.Util.trim(str.replace(date,''));
var date_parts = date.split('/');
parsed.month = date_parts[0];
parsed.year = date_parts[1];
}
// todo: handle hours, minutes, seconds, millis other date formats, etc...
if (str.match(':')) {
var time_parts = str.split(':');
parsed.hour = time_parts[0];
parsed.minute = time_parts[1];
if (time_parts[2]) {
second_parts = time_parts[2].split('.');
parsed.second = second_parts[0];
parsed.millisecond = second_parts[1];
}
}
return parsed;
}
cls.BEST_DATEFORMATS = {
base: {
millisecond: 'time_short',
second: 'time',
minute: 'time_no_seconds_small_date',
hour: 'time_no_seconds_small_date',
day: 'full',
month: 'month',
year: 'year',
decade: 'year',
century: 'year',
millennium: 'year',
age: 'fallback',
epoch: 'fallback',
era: 'fallback',
eon: 'fallback',
eon2: 'fallback'
},
short: {
millisecond: 'time_short',
second: 'time_short',
minute: 'time_no_seconds_short',
hour: 'time_no_minutes_short',
day: 'full_short',
month: 'month_short',
year: 'year',
decade: 'year',
century: 'year',
millennium: 'year',
age: 'fallback',
epoch: 'fallback',
era: 'fallback',
eon: 'fallback',
eon2: 'fallback'
}
}
})(TL.Date)
//
// Class for cosmological dates
//
TL.BigDate = TL.Date.extend({
// @data = TL.BigYear object or JS dictionary with date properties
initialize: function(data, format, format_short) {
if (TL.BigYear == data.constructor) {
this.data = {
date_obj: data
}
} else {
this.data = JSON.parse(JSON.stringify(data));
this._createDateObj();
}
this._setFormat(format, format_short);
},
// Create date_obj
_createDateObj: function() {
var _date = this._getDateData();
this.data.date_obj = new TL.BigYear(_date.year);
},
// Return a new TL.BigDate which has been 'floored' at the given scale.
// @scale = string value from TL.BigDate.SCALES
floor: function(scale) {
for (var i = 0; i < TL.BigDate.SCALES.length; i++) {
if (TL.BigDate.SCALES[i][0] == scale) {
var floored = TL.BigDate.SCALES[i][2](this.data.date_obj);
return new TL.BigDate(floored);
}
};
throw new TL.Error("invalid_scale_err", scale);
}
});
(function(cls){
// cosmo units are years, not millis
var AGE = 1000000;
var EPOCH = AGE * 10;
var ERA = EPOCH * 10;
var EON = ERA * 10;
var Floorer = function(unit) {
return function(a_big_year) {
var year = a_big_year.getTime();
return new TL.BigYear(Math.floor(year/unit) * unit);
}
}
// cosmological scales
cls.SCALES = [ // ( name, units_per_tick, flooring function )
['year',1, new Floorer(1)],
['decade',10, new Floorer(10)],
['century',100, new Floorer(100)],
['millennium',1000, new Floorer(1000)],
['age',AGE, new Floorer(AGE)], // 1M years
['epoch',EPOCH, new Floorer(EPOCH)], // 10M years
['era',ERA, new Floorer(ERA)], // 100M years
['eon',EON, new Floorer(EON)] // 1B years
];
})(TL.BigDate)
/* **********************************************
Begin TL.DateUtil.js
********************************************** */
/* TL.DateUtil
Utilities for parsing time
================================================== */
TL.DateUtil = {
get: function (id) {
return (typeof id === 'string' ? document.getElementById(id) : id);
},
sortByDate: function(array,prop_name) { // only for use with slide data objects
var prop_name = prop_name || 'start_date';
array.sort(function(a,b){
if (a[prop_name].isBefore(b[prop_name])) return -1;
if (a[prop_name].isAfter(b[prop_name])) return 1;
return 0;
});
},
parseTime: function(time_str) {
var parsed = {
hour: null, minute: null, second: null, millisecond: null // conform to keys in TL.Date
}
var period = null;
var match = time_str.match(/(\s*[AaPp]\.?[Mm]\.?\s*)$/);
if (match) {
period = TL.Util.trim(match[0]);
time_str = TL.Util.trim(time_str.substring(0,time_str.lastIndexOf(period)));
}
var parts = [];
var no_separators = time_str.match(/^\s*(\d{1,2})(\d{2})\s*$/);
if (no_separators) {
parts = no_separators.slice(1);
} else {
parts = time_str.split(':');
if (parts.length == 1) {
parts = time_str.split('.');
}
}
if (parts.length > 4) {
throw new TL.Error("invalid_separator_error");
}
parsed.hour = parseInt(parts[0]);
if (period && period.toLowerCase()[0] == 'p' && parsed.hour != 12) {
parsed.hour += 12;
} else if (period && period.toLowerCase()[0] == 'a' && parsed.hour == 12) {
parsed.hour = 0;
}
if (isNaN(parsed.hour) || parsed.hour < 0 || parsed.hour > 23) {
throw new TL.Error("invalid_hour_err", parsed.hour);
}
if (parts.length > 1) {
parsed.minute = parseInt(parts[1]);
if (isNaN(parsed.minute)) {
throw new TL.Error("invalid_minute_err", parsed.minute);
}
}
if (parts.length > 2) {
var sec_parts = parts[2].split(/[\.,]/);
parts = sec_parts.concat(parts.slice(3)) // deal with various methods of specifying fractional seconds
if (parts.length > 2) {
throw new TL.Error("invalid_second_fractional_err");
}
parsed.second = parseInt(parts[0]);
if (isNaN(parsed.second)) {
throw new TL.Error("invalid_second_err");
}
if (parts.length == 2) {
var frac_secs = parseInt(parts[1]);
if (isNaN(frac_secs)) {
throw new TL.Error("invalid_fractional_err");
}
parsed.millisecond = 100 * frac_secs;
}
}
return parsed;
},
SCALE_DATE_CLASSES: {
human: TL.Date,
cosmological: TL.BigDate
}
};
/* **********************************************
Begin TL.Draggable.js
********************************************** */
/* TL.Draggable
TL.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
TODO Enable constraints
================================================== */
TL.Draggable = TL.Class.extend({
includes: TL.Events,
_el: {},
mousedrag: {
down: "mousedown",
up: "mouseup",
leave: "mouseleave",
move: "mousemove"
},
touchdrag: {
down: "touchstart",
up: "touchend",
leave: "mouseleave",
move: "touchmove"
},
initialize: function (drag_elem, options, move_elem) {
// DOM ELements
this._el = {
drag: drag_elem,
move: drag_elem
};
if (move_elem) {
this._el.move = move_elem;
}
//Options
this.options = {
enable: {
x: true,
y: true
},
constraint: {
top: false,
bottom: false,
left: false,
right: false
},
momentum_multiplier: 2000,
duration: 1000,
ease: TL.Ease.easeInOutQuint
};
// Animation Object
this.animator = null;
// Drag Event Type
this.dragevent = this.mousedrag;
if (TL.Browser.touch) {
this.dragevent = this.touchdrag;
}
// Draggable Data
this.data = {
sliding: false,
direction: "none",
pagex: {
start: 0,
end: 0
},
pagey: {
start: 0,
end: 0
},
pos: {
start: {
x: 0,
y:0
},
end: {
x: 0,
y:0
}
},
new_pos: {
x: 0,
y: 0
},
new_pos_parent: {
x: 0,
y: 0
},
time: {
start: 0,
end: 0
},
touch: false
};
// Merge Data and Options
TL.Util.mergeData(this.options, options);
},
enable: function(e) {
this.data.pos.start = 0;
this._el.move.style.left = this.data.pos.start.x + "px";
this._el.move.style.top = this.data.pos.start.y + "px";
this._el.move.style.position = "absolute";
},
disable: function() {
TL.DomEvent.removeListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
TL.DomEvent.removeListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
},
stopMomentum: function() {
if (this.animator) {
this.animator.stop();
}
},
updateConstraint: function(c) {
this.options.constraint = c;
},
/* Private Methods
================================================== */
_onDragStart: function(e) {
if (TL.Browser.touch) {
if (e.originalEvent) {
this.data.pagex.start = e.originalEvent.touches[0].screenX;
this.data.pagey.start = e.originalEvent.touches[0].screenY;
} else {
this.data.pagex.start = e.targetTouches[0].screenX;
this.data.pagey.start = e.targetTouches[0].screenY;
}
} else {
this.data.pagex.start = e.pageX;
this.data.pagey.start = e.pageY;
}
// Center element to finger or mouse
if (this.options.enable.x) {
this._el.move.style.left = this.data.pagex.start - (this._el.move.offsetWidth / 2) + "px";
}
if (this.options.enable.y) {
this._el.move.style.top = this.data.pagey.start - (this._el.move.offsetHeight / 2) + "px";
}
this.data.pos.start = TL.Dom.getPosition(this._el.drag);
this.data.time.start = new Date().getTime();
this.fire("dragstart", this.data);
TL.DomEvent.addListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
TL.DomEvent.addListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
},
_onDragEnd: function(e) {
this.data.sliding = false;
TL.DomEvent.removeListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
TL.DomEvent.removeListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
this.fire("dragend", this.data);
// momentum
this._momentum();
},
_onDragMove: function(e) {
e.preventDefault();
this.data.sliding = true;
if (TL.Browser.touch) {
if (e.originalEvent) {
this.data.pagex.end = e.originalEvent.touches[0].screenX;
this.data.pagey.end = e.originalEvent.touches[0].screenY;
} else {
this.data.pagex.end = e.targetTouches[0].screenX;
this.data.pagey.end = e.targetTouches[0].screenY;
}
} else {
this.data.pagex.end = e.pageX;
this.data.pagey.end = e.pageY;
}
this.data.pos.end = TL.Dom.getPosition(this._el.drag);
this.data.new_pos.x = -(this.data.pagex.start - this.data.pagex.end - this.data.pos.start.x);
this.data.new_pos.y = -(this.data.pagey.start - this.data.pagey.end - this.data.pos.start.y );
if (this.options.enable.x) {
this._el.move.style.left = this.data.new_pos.x + "px";
}
if (this.options.enable.y) {
this._el.move.style.top = this.data.new_pos.y + "px";
}
this.fire("dragmove", this.data);
},
_momentum: function() {
var pos_adjust = {
x: 0,
y: 0,
time: 0
},
pos_change = {
x: 0,
y: 0,
time: 0
},
swipe = false,
swipe_direction = "";
if (TL.Browser.touch) {
// Treat mobile multiplier differently
//this.options.momentum_multiplier = this.options.momentum_multiplier * 2;
}
pos_adjust.time = (new Date().getTime() - this.data.time.start) * 10;
pos_change.time = (new Date().getTime() - this.data.time.start) * 10;
pos_change.x = this.options.momentum_multiplier * (Math.abs(this.data.pagex.end) - Math.abs(this.data.pagex.start));
pos_change.y = this.options.momentum_multiplier * (Math.abs(this.data.pagey.end) - Math.abs(this.data.pagey.start));
pos_adjust.x = Math.round(pos_change.x / pos_change.time);
pos_adjust.y = Math.round(pos_change.y / pos_change.time);
this.data.new_pos.x = Math.min(this.data.pos.end.x + pos_adjust.x);
this.data.new_pos.y = Math.min(this.data.pos.end.y + pos_adjust.y);
if (!this.options.enable.x) {
this.data.new_pos.x = this.data.pos.start.x;
} else if (this.data.new_pos.x < 0) {
this.data.new_pos.x = 0;
}
if (!this.options.enable.y) {
this.data.new_pos.y = this.data.pos.start.y;
} else if (this.data.new_pos.y < 0) {
this.data.new_pos.y = 0;
}
// Detect Swipe
if (pos_change.time < 3000) {
swipe = true;
}
// Detect Direction
if (Math.abs(pos_change.x) > 10000) {
this.data.direction = "left";
if (pos_change.x > 0) {
this.data.direction = "right";
}
}
// Detect Swipe
if (Math.abs(pos_change.y) > 10000) {
this.data.direction = "up";
if (pos_change.y > 0) {
this.data.direction = "down";
}
}
this._animateMomentum();
if (swipe) {
this.fire("swipe_" + this.data.direction, this.data);
}
},
_animateMomentum: function() {
var pos = {
x: this.data.new_pos.x,
y: this.data.new_pos.y
},
animate = {
duration: this.options.duration,
easing: TL.Ease.easeOutStrong
};
if (this.options.enable.y) {
if (this.options.constraint.top || this.options.constraint.bottom) {
if (pos.y > this.options.constraint.bottom) {
pos.y = this.options.constraint.bottom;
} else if (pos.y < this.options.constraint.top) {
pos.y = this.options.constraint.top;
}
}
animate.top = Math.floor(pos.y) + "px";
}
if (this.options.enable.x) {
if (this.options.constraint.left || this.options.constraint.right) {
if (pos.x > this.options.constraint.left) {
pos.x = this.options.constraint.left;
} else if (pos.x < this.options.constraint.right) {
pos.x = this.options.constraint.right;
}
}
animate.left = Math.floor(pos.x) + "px";
}
this.animator = TL.Animate(this._el.move, animate);
this.fire("momentum", this.data);
}
});
/* **********************************************
Begin TL.Swipable.js
********************************************** */
/* TL.Swipable
TL.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
TODO Enable constraints
================================================== */
TL.Swipable = TL.Class.extend({
includes: TL.Events,
_el: {},
mousedrag: {
down: "mousedown",
up: "mouseup",
leave: "mouseleave",
move: "mousemove"
},
touchdrag: {
down: "touchstart",
up: "touchend",
leave: "mouseleave",
move: "touchmove"
},
initialize: function (drag_elem, move_elem, options) {
// DOM ELements
this._el = {
drag: drag_elem,
move: drag_elem
};
if (move_elem) {
this._el.move = move_elem;
}
//Options
this.options = {
snap: false,
enable: {
x: true,
y: true
},
constraint: {
top: false,
bottom: false,
left: 0,
right: false
},
momentum_multiplier: 2000,
duration: 1000,
ease: TL.Ease.easeInOutQuint
};
// Animation Object
this.animator = null;
// Drag Event Type
this.dragevent = this.mousedrag;
if (TL.Browser.touch) {
this.dragevent = this.touchdrag;
}
// Draggable Data
this.data = {
sliding: false,
direction: "none",
pagex: {
start: 0,
end: 0
},
pagey: {
start: 0,
end: 0
},
pos: {
start: {
x: 0,
y:0
},
end: {
x: 0,
y:0
}
},
new_pos: {
x: 0,
y: 0
},
new_pos_parent: {
x: 0,
y: 0
},
time: {
start: 0,
end: 0
},
touch: false
};
// Merge Data and Options
TL.Util.mergeData(this.options, options);
},
enable: function(e) {
TL.DomEvent.addListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
TL.DomEvent.addListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
this.data.pos.start = 0; //TL.Dom.getPosition(this._el.move);
this._el.move.style.left = this.data.pos.start.x + "px";
this._el.move.style.top = this.data.pos.start.y + "px";
this._el.move.style.position = "absolute";
//this._el.move.style.zIndex = "11";
//this._el.move.style.cursor = "move";
},
disable: function() {
TL.DomEvent.removeListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
TL.DomEvent.removeListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
},
stopMomentum: function() {
if (this.animator) {
this.animator.stop();
}
},
updateConstraint: function(c) {
this.options.constraint = c;
// Temporary until issues are fixed
},
/* Private Methods
================================================== */
_onDragStart: function(e) {
if (this.animator) {
this.animator.stop();
}
if (TL.Browser.touch) {
if (e.originalEvent) {
this.data.pagex.start = e.originalEvent.touches[0].screenX;
this.data.pagey.start = e.originalEvent.touches[0].screenY;
} else {
this.data.pagex.start = e.targetTouches[0].screenX;
this.data.pagey.start = e.targetTouches[0].screenY;
}
} else {
this.data.pagex.start = e.pageX;
this.data.pagey.start = e.pageY;
}
// Center element to finger or mouse
if (this.options.enable.x) {
//this._el.move.style.left = this.data.pagex.start - (this._el.move.offsetWidth / 2) + "px";
}
if (this.options.enable.y) {
//this._el.move.style.top = this.data.pagey.start - (this._el.move.offsetHeight / 2) + "px";
}
this.data.pos.start = {x:this._el.move.offsetLeft, y:this._el.move.offsetTop};
this.data.time.start = new Date().getTime();
this.fire("dragstart", this.data);
TL.DomEvent.addListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
TL.DomEvent.addListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
},
_onDragEnd: function(e) {
this.data.sliding = false;
TL.DomEvent.removeListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
TL.DomEvent.removeListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
this.fire("dragend", this.data);
// momentum
this._momentum();
},
_onDragMove: function(e) {
var change = {
x:0,
y:0
}
//e.preventDefault();
this.data.sliding = true;
if (TL.Browser.touch) {
if (e.originalEvent) {
this.data.pagex.end = e.originalEvent.touches[0].screenX;
this.data.pagey.end = e.originalEvent.touches[0].screenY;
} else {
this.data.pagex.end = e.targetTouches[0].screenX;
this.data.pagey.end = e.targetTouches[0].screenY;
}
} else {
this.data.pagex.end = e.pageX;
this.data.pagey.end = e.pageY;
}
change.x = this.data.pagex.start - this.data.pagex.end;
change.y = this.data.pagey.start - this.data.pagey.end;
this.data.pos.end = {x:this._el.drag.offsetLeft, y:this._el.drag.offsetTop};
this.data.new_pos.x = -(change.x - this.data.pos.start.x);
this.data.new_pos.y = -(change.y - this.data.pos.start.y );
if (this.options.enable.x && ( Math.abs(change.x) > Math.abs(change.y) ) ) {
e.preventDefault();
this._el.move.style.left = this.data.new_pos.x + "px";
}
if (this.options.enable.y && ( Math.abs(change.y) > Math.abs(change.y) ) ) {
e.preventDefault();
this._el.move.style.top = this.data.new_pos.y + "px";
}
this.fire("dragmove", this.data);
},
_momentum: function() {
var pos_adjust = {
x: 0,
y: 0,
time: 0
},
pos_change = {
x: 0,
y: 0,
time: 0
},
swipe_detect = {
x: false,
y: false
},
swipe = false,
swipe_direction = "";
this.data.direction = null;
pos_adjust.time = (new Date().getTime() - this.data.time.start) * 10;
pos_change.time = (new Date().getTime() - this.data.time.start) * 10;
pos_change.x = this.options.momentum_multiplier * (Math.abs(this.data.pagex.end) - Math.abs(this.data.pagex.start));
pos_change.y = this.options.momentum_multiplier * (Math.abs(this.data.pagey.end) - Math.abs(this.data.pagey.start));
pos_adjust.x = Math.round(pos_change.x / pos_change.time);
pos_adjust.y = Math.round(pos_change.y / pos_change.time);
this.data.new_pos.x = Math.min(this.data.new_pos.x + pos_adjust.x);
this.data.new_pos.y = Math.min(this.data.new_pos.y + pos_adjust.y);
if (!this.options.enable.x) {
this.data.new_pos.x = this.data.pos.start.x;
} else if (this.options.constraint.left && this.data.new_pos.x > this.options.constraint.left) {
this.data.new_pos.x = this.options.constraint.left;
}
if (!this.options.enable.y) {
this.data.new_pos.y = this.data.pos.start.y;
} else if (this.data.new_pos.y < 0) {
this.data.new_pos.y = 0;
}
// Detect Swipe
if (pos_change.time < 2000) {
swipe = true;
}
if (this.options.enable.x && this.options.enable.y) {
if (Math.abs(pos_change.x) > Math.abs(pos_change.y)) {
swipe_detect.x = true;
} else {
swipe_detect.y = true;
}
} else if (this.options.enable.x) {
if (Math.abs(pos_change.x) > Math.abs(pos_change.y)) {
swipe_detect.x = true;
}
} else {
if (Math.abs(pos_change.y) > Math.abs(pos_change.x)) {
swipe_detect.y = true;
}
}
// Detect Direction and long swipe
if (swipe_detect.x) {
// Long Swipe
if (Math.abs(pos_change.x) > (this._el.drag.offsetWidth/2)) {
swipe = true;
}
if (Math.abs(pos_change.x) > 10000) {
this.data.direction = "left";
if (pos_change.x > 0) {
this.data.direction = "right";
}
}
}
if (swipe_detect.y) {
// Long Swipe
if (Math.abs(pos_change.y) > (this._el.drag.offsetHeight/2)) {
swipe = true;
}
if (Math.abs(pos_change.y) > 10000) {
this.data.direction = "up";
if (pos_change.y > 0) {
this.data.direction = "down";
}
}
}
if (pos_change.time < 1000 ) {
} else {
this._animateMomentum();
}
if (swipe && this.data.direction) {
this.fire("swipe_" + this.data.direction, this.data);
} else if (this.data.direction) {
this.fire("swipe_nodirection", this.data);
} else if (this.options.snap) {
this.animator.stop();
this.animator = TL.Animate(this._el.move, {
top: this.data.pos.start.y,
left: this.data.pos.start.x,
duration: this.options.duration,
easing: TL.Ease.easeOutStrong
});
}
},
_animateMomentum: function() {
var pos = {
x: this.data.new_pos.x,
y: this.data.new_pos.y
},
animate = {
duration: this.options.duration,
easing: TL.Ease.easeOutStrong
};
if (this.options.enable.y) {
if (this.options.constraint.top || this.options.constraint.bottom) {
if (pos.y > this.options.constraint.bottom) {
pos.y = this.options.constraint.bottom;
} else if (pos.y < this.options.constraint.top) {
pos.y = this.options.constraint.top;
}
}
animate.top = Math.floor(pos.y) + "px";
}
if (this.options.enable.x) {
if (this.options.constraint.left && pos.x >= this.options.constraint.left) {
pos.x = this.options.constraint.left;
}
if (this.options.constraint.right && pos.x < this.options.constraint.right) {
pos.x = this.options.constraint.right;
}
animate.left = Math.floor(pos.x) + "px";
}
this.animator = TL.Animate(this._el.move, animate);
this.fire("momentum", this.data);
}
});
/* **********************************************
Begin TL.MenuBar.js
********************************************** */
/* TL.MenuBar
Draggable component to control size
================================================== */
TL.MenuBar = TL.Class.extend({
includes: [TL.Events, TL.DomMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(elem, parent_elem, options) {
// DOM ELEMENTS
this._el = {
parent: {},
container: {},
button_backtostart: {},
button_zoomin: {},
button_zoomout: {},
arrow: {},
line: {},
coverbar: {},
grip: {}
};
this.collapsed = false;
if (typeof elem === 'object') {
this._el.container = elem;
} else {
this._el.container = TL.Dom.get(elem);
}
if (parent_elem) {
this._el.parent = parent_elem;
}
//Options
this.options = {
width: 600,
height: 600,
duration: 1000,
ease: TL.Ease.easeInOutQuint,
menubar_default_y: 0
};
// Animation
this.animator = {};
// Merge Data and Options
TL.Util.mergeData(this.options, options);
this._initLayout();
this._initEvents();
},
/* Public
================================================== */
show: function(d) {
var duration = this.options.duration;
if (d) {
duration = d;
}
/*
this.animator = TL.Animate(this._el.container, {
top: this.options.menubar_default_y + "px",
duration: duration,
easing: TL.Ease.easeOutStrong
});
*/
},
hide: function(top) {
/*
this.animator = TL.Animate(this._el.container, {
top: top,
duration: this.options.duration,
easing: TL.Ease.easeOutStrong
});
*/
},
toogleZoomIn: function(show) {
if (show) {
TL.DomUtil.removeClass(this._el.button_zoomin,'tl-menubar-button-inactive');
} else {
TL.DomUtil.addClass(this._el.button_zoomin,'tl-menubar-button-inactive');
}
},
toogleZoomOut: function(show) {
if (show) {
TL.DomUtil.removeClass(this._el.button_zoomout,'tl-menubar-button-inactive');
} else {
TL.DomUtil.addClass(this._el.button_zoomout,'tl-menubar-button-inactive');
}
},
setSticky: function(y) {
this.options.menubar_default_y = y;
},
/* Color
================================================== */
setColor: function(inverted) {
if (inverted) {
this._el.container.className = 'tl-menubar tl-menubar-inverted';
} else {
this._el.container.className = 'tl-menubar';
}
},
/* Update Display
================================================== */
updateDisplay: function(w, h, a, l) {
this._updateDisplay(w, h, a, l);
},
/* Events
================================================== */
_onButtonZoomIn: function(e) {
this.fire("zoom_in", e);
},
_onButtonZoomOut: function(e) {
this.fire("zoom_out", e);
},
_onButtonBackToStart: function(e) {
this.fire("back_to_start", e);
},
/* Private Methods
================================================== */
_initLayout: function () {
// Create Layout
this._el.button_zoomin = TL.Dom.create('span', 'tl-menubar-button', this._el.container);
this._el.button_zoomout = TL.Dom.create('span', 'tl-menubar-button', this._el.container);
this._el.button_backtostart = TL.Dom.create('span', 'tl-menubar-button', this._el.container);
if (TL.Browser.mobile) {
this._el.container.setAttribute("ontouchstart"," ");
}
this._el.button_backtostart.innerHTML = "<span class='tl-icon-goback'></span>";
this._el.button_zoomin.innerHTML = "<span class='tl-icon-zoom-in'></span>";
this._el.button_zoomout.innerHTML = "<span class='tl-icon-zoom-out'></span>";
},
_initEvents: function () {
TL.DomEvent.addListener(this._el.button_backtostart, 'click', this._onButtonBackToStart, this);
TL.DomEvent.addListener(this._el.button_zoomin, 'click', this._onButtonZoomIn, this);
TL.DomEvent.addListener(this._el.button_zoomout, 'click', this._onButtonZoomOut, this);
},
// Update Display
_updateDisplay: function(width, height, animate) {
if (width) {
this.options.width = width;
}
if (height) {
this.options.height = height;
}
}
});
/* **********************************************
Begin TL.Message.js
********************************************** */
/* TL.Message
================================================== */
TL.Message = TL.Class.extend({
includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(data, options, add_to_container) {
// DOM ELEMENTS
this._el = {
parent: {},
container: {},
message_container: {},
loading_icon: {},
message: {}
};
//Options
this.options = {
width: 600,
height: 600,
message_class: "tl-message",
message_icon_class: "tl-loading-icon"
};
this._add_to_container = add_to_container || {}; // save ref
// Merge Data and Options
TL.Util.mergeData(this.data, data);
TL.Util.mergeData(this.options, options);
this._el.container = TL.Dom.create("div", this.options.message_class);
if (add_to_container) {
add_to_container.appendChild(this._el.container);
this._el.parent = add_to_container;
}
// Animation
this.animator = {};
this._initLayout();
this._initEvents();
},
/* Public
================================================== */
updateMessage: function(t) {
this._updateMessage(t);
},
/* Update Display
================================================== */
updateDisplay: function(w, h) {
this._updateDisplay(w, h);
},
_updateMessage: function(t) {
if (!t) {
this._el.message.innerHTML = this._('loading');
} else {
this._el.message.innerHTML = t;
}
// Re-add to DOM?
if(!this._el.parent.atrributes && this._add_to_container.attributes) {
this._add_to_container.appendChild(this._el.container);
this._el.parent = this._add_to_container;
}
},
/* Events
================================================== */
_onMouseClick: function() {
this.fire("clicked", this.options);
},
_onRemove: function() {
this._el.parent = {};
},
/* Private Methods
================================================== */
_initLayout: function () {
// Create Layout
this._el.message_container = TL.Dom.create("div", "tl-message-container", this._el.container);
this._el.loading_icon = TL.Dom.create("div", this.options.message_icon_class, this._el.message_container);
this._el.message = TL.Dom.create("div", "tl-message-content", this._el.message_container);
this._updateMessage();
},
_initEvents: function () {
TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
TL.DomEvent.addListener(this, 'removed', this._onRemove, this);
},
// Update Display
_updateDisplay: function(width, height, animate) {
}
});
/* **********************************************
Begin TL.MediaType.js
********************************************** */
/* TL.MediaType
Determines the type of media the url string is.
returns an object with .type and .id
You can add new media types by adding a regex
to match and the media class name to use to
render the media
The image_only parameter indicates that the
call only wants an image-based media type
that can be resolved to an image URL.
TODO
Allow array so a slideshow can be a mediatype
================================================== */
TL.MediaType = function(m, image_only) {
var media = {},
media_types = [
{
type: "youtube",
name: "YouTube",
match_str: "^(https?:)?\/*(www.)?youtube|youtu\.be",
cls: TL.Media.YouTube
},
{
type: "vimeo",
name: "Vimeo",
match_str: "^(https?:)?\/*(player.)?vimeo\.com",
cls: TL.Media.Vimeo
},
{
type: "dailymotion",
name: "DailyMotion",
match_str: "^(https?:)?\/*(www.)?dailymotion\.com",
cls: TL.Media.DailyMotion
},
{
type: "vine",
name: "Vine",
match_str: "^(https?:)?\/*(www.)?vine\.co",
cls: TL.Media.Vine
},
{
type: "soundcloud",
name: "SoundCloud",
match_str: "^(https?:)?\/*(player.)?soundcloud\.com",
cls: TL.Media.SoundCloud
},
{
type: "twitter",
name: "Twitter",
match_str: "^(https?:)?\/*(www.)?twitter\.com",
cls: TL.Media.Twitter
},
{
type: "twitterembed",
name: "TwitterEmbed",
match_str: "<blockquote class=\"twitter-tweet\"",
cls: TL.Media.TwitterEmbed
},
{
type: "googlemaps",
name: "Google Map",
match_str: /google.+?\/maps\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/search\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/place\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/dir\/([\w\W]+)\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)/,
cls: TL.Media.GoogleMap
},
{
type: "googleplus",
name: "Google+",
match_str: "^(https?:)?\/*plus.google",
cls: TL.Media.GooglePlus
},
{
type: "flickr",
name: "Flickr",
match_str: "^(https?:)?\/*(www.)?flickr.com\/photos",
cls: TL.Media.Flickr
},
{
type: "flickr",
name: "Flickr",
match_str: "^(https?:\/\/)?flic.kr\/.*",
cls: TL.Media.Flickr
},
{
type: "instagram",
name: "Instagram",
match_str: /^(https?:)?\/*(www.)?(instagr.am|^(https?:)?\/*(www.)?instagram.com)\/p\//,
cls: TL.Media.Instagram
},
{
type: "profile",
name: "Profile",
match_str: /^(https?:)?\/*(www.)?instagr.am\/[a-zA-Z0-9]{2,}|^(https?:)?\/*(www.)?instagram.com\/[a-zA-Z0-9]{2,}/,
cls: TL.Media.Profile
},
{
type: "documentcloud",
name: "Document Cloud",
match_str: /documentcloud.org\//,
cls: TL.Media.DocumentCloud
},
{
type: "image",
name: "Image",
match_str: /(jpg|jpeg|png|gif|svg)(\?.*)?$/i,
cls: TL.Media.Image
},
{
type: "imgur",
name: "Imgur",
match_str: /^.*imgur.com\/.+$/i,
cls: TL.Media.Imgur
},
{
type: "googledocs",
name: "Google Doc",
match_str: "^(https?:)?\/*[^.]*.google.com\/[^\/]*\/d\/[^\/]*\/[^\/]*\?usp=sharing|^(https?:)?\/*drive.google.com\/open\?id=[^\&]*\&authuser=0|^(https?:)?\/*drive.google.com\/open\?id=[^\&]*|^(https?:)?\/*[^.]*.googledrive.com\/host\/[^\/]*\/",
cls: TL.Media.GoogleDoc
},
{
type: "pdf",
name: "PDF",
match_str: /^.*\.pdf(\?.*)?(\#.*)?/,
cls: TL.Media.PDF
},
{
type: "wikipedia",
name: "Wikipedia",
match_str: "^(https?:)?\/*(www.)?wikipedia\.org|^(https?:)?\/*([a-z][a-z].)?wikipedia\.org",
cls: TL.Media.Wikipedia
},
{
type: "spotify",
name: "spotify",
match_str: "spotify",
cls: TL.Media.Spotify
},
{
type: "iframe",
name: "iFrame",
match_str: "iframe",
cls: TL.Media.IFrame
},
{
type: "storify",
name: "Storify",
match_str: "storify",
cls: TL.Media.Storify
},
{
type: "blockquote",
name: "Quote",
match_str: "blockquote",
cls: TL.Media.Blockquote
},
// {
// type: "website",
// name: "Website",
// match_str: "https?://",
// cls: TL.Media.Website
// },
{
type: "imageblank",
name: "Imageblank",
match_str: "",
cls: TL.Media.Image
}
];
if(image_only) {
if (m instanceof Array) {
return false;
}
for (var i = 0; i < media_types.length; i++) {
switch(media_types[i].type) {
case "flickr":
case "image":
case "imgur":
case "instagram":
if (m.url.match(media_types[i].match_str)) {
media = media_types[i];
return media;
}
break;
default:
break;
}
}
} else {
for (var i = 0; i < media_types.length; i++) {
if (m instanceof Array) {
return media = {
type: "slider",
cls: TL.Media.Slider
};
} else if (m.url.match(media_types[i].match_str)) {
media = media_types[i];
return media;
}
};
}
return false;
}
/* **********************************************
Begin TL.Media.js
********************************************** */
/* TL.Media
Main media template for media assets.
Takes a data object and populates a dom object
================================================== */
// TODO add link
TL.Media = TL.Class.extend({
includes: [TL.Events, TL.I18NMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(data, options, add_to_container) {
// DOM ELEMENTS
this._el = {
container: {},
content_container: {},
content: {},
content_item: {},
content_link: {},
caption: null,
credit: null,
parent: {},
link: null
};
// Player (If Needed)
this.player = null;
// Timer (If Needed)
this.timer = null;
this.load_timer = null;
// Message
this.message = null;
// Media ID
this.media_id = null;
// State
this._state = {
loaded: false,
show_meta: false,
media_loaded: false
};
// Data
this.data = {
unique_id: null,
url: null,
credit: null,
caption: null,
credit_alternate: null,
caption_alternate: null,
link: null,
link_target: null
};
//Options
this.options = {
api_key_flickr: "f2cc870b4d233dd0a5bfe73fd0d64ef0",
api_key_googlemaps: "AIzaSyB9dW8e_iRrATFa8g24qB6BDBGdkrLDZYI",
api_key_embedly: "", // ae2da610d1454b66abdf2e6a4c44026d
credit_height: 0,
caption_height: 0,
background: 0 // is background media (for slide)
};
this.animator = {};
// Merge Data and Options
TL.Util.mergeData(this.options, options);
TL.Util.mergeData(this.data, data);
// Don't create DOM elements if this is background media
if(!this.options.background) {
this._el.container = TL.Dom.create("div", "tl-media");
if (this.data.unique_id) {
this._el.container.id = this.data.unique_id;
}
this._initLayout();
if (add_to_container) {
add_to_container.appendChild(this._el.container);
this._el.parent = add_to_container;
}
}
},
loadMedia: function() {
var self = this;
if (!this._state.loaded) {
try {
this.load_timer = setTimeout(function() {
self.loadingMessage();
self._loadMedia();
// self._state.loaded = true; handled in onLoaded()
self._updateDisplay();
}, 1200);
} catch (e) {
trace("Error loading media for ", this._media);
trace(e);
}
}
},
_updateMessage: function(msg) {
if(this.message) {
this.message.updateMessage(msg);
}
},
loadingMessage: function() {
this._updateMessage(this._('loading') + " " + this.options.media_name);
},
errorMessage: function(msg) {
if (msg) {
msg = this._('error') + ": " + msg;
} else {
msg = this._('error');
}
this._updateMessage(msg);
},
updateMediaDisplay: function(layout) {
if (this._state.loaded && !this.options.background) {
if (TL.Browser.mobile) {
this._el.content_item.style.maxHeight = (this.options.height/2) + "px";
} else {
this._el.content_item.style.maxHeight = this.options.height - this.options.credit_height - this.options.caption_height - 30 + "px";
}
//this._el.content_item.style.maxWidth = this.options.width + "px";
this._el.container.style.maxWidth = this.options.width + "px";
// Fix for max-width issues in Firefox
if (TL.Browser.firefox) {
if (this._el.content_item.offsetWidth > this._el.content_item.offsetHeight) {
//this._el.content_item.style.width = "100%";
}
}
this._updateMediaDisplay(layout);
if (this._state.media_loaded) {
if (this._el.credit) {
this._el.credit.style.width = this._el.content_item.offsetWidth + "px";
}
if (this._el.caption) {
this._el.caption.style.width = this._el.content_item.offsetWidth + "px";
}
}
}
},
/* Media Specific
================================================== */
_loadMedia: function() {
// All overrides must call this.onLoaded() to set state
this.onLoaded();
},
_updateMediaDisplay: function(l) {
//this._el.content_item.style.maxHeight = (this.options.height - this.options.credit_height - this.options.caption_height - 16) + "px";
if(TL.Browser.firefox) {
this._el.content_item.style.maxWidth = this.options.width + "px";
this._el.content_item.style.width = "auto";
}
},
_getMeta: function() {
},
_getImageURL: function(w, h) {
// Image-based media types should return <img>-compatible src url
return "";
},
/* Public
================================================== */
show: function() {
},
hide: function() {
},
addTo: function(container) {
container.appendChild(this._el.container);
this.onAdd();
},
removeFrom: function(container) {
container.removeChild(this._el.container);
this.onRemove();
},
getImageURL: function(w, h) {
return this._getImageURL(w, h);
},
// Update Display
updateDisplay: function(w, h, l) {
this._updateDisplay(w, h, l);
},
stopMedia: function() {
this._stopMedia();
},
loadErrorDisplay: function(message) {
try {
this._el.content.removeChild(this._el.content_item);
} catch(e) {
// if this._el.content_item isn't a child of this._el then just keep truckin
}
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-loaderror", this._el.content);
this._el.content_item.innerHTML = "<div class='tl-icon-" + this.options.media_type + "'></div><p>" + message + "</p>";
// After Loaded
this.onLoaded(true);
},
/* Events
================================================== */
onLoaded: function(error) {
this._state.loaded = true;
this.fire("loaded", this.data);
if (this.message) {
this.message.hide();
}
if (!(error || this.options.background)) {
this.showMeta();
}
this.updateDisplay();
},
onMediaLoaded: function(e) {
this._state.media_loaded = true;
this.fire("media_loaded", this.data);
if (this._el.credit) {
this._el.credit.style.width = this._el.content_item.offsetWidth + "px";
}
if (this._el.caption) {
this._el.caption.style.width = this._el.content_item.offsetWidth + "px";
}
},
showMeta: function(credit, caption) {
this._state.show_meta = true;
// Credit
if (this.data.credit && this.data.credit != "") {
this._el.credit = TL.Dom.create("div", "tl-credit", this._el.content_container);
this._el.credit.innerHTML = this.options.autolink == true ? TL.Util.linkify(this.data.credit) : this.data.credit;
this.options.credit_height = this._el.credit.offsetHeight;
}
// Caption
if (this.data.caption && this.data.caption != "") {
this._el.caption = TL.Dom.create("div", "tl-caption", this._el.content_container);
this._el.caption.innerHTML = this.options.autolink == true ? TL.Util.linkify(this.data.caption) : this.data.caption;
this.options.caption_height = this._el.caption.offsetHeight;
}
if (!this.data.caption || !this.data.credit) {
this.getMeta();
}
},
getMeta: function() {
this._getMeta();
},
updateMeta: function() {
if (!this.data.credit && this.data.credit_alternate) {
this._el.credit = TL.Dom.create("div", "tl-credit", this._el.content_container);
this._el.credit.innerHTML = this.data.credit_alternate;
this.options.credit_height = this._el.credit.offsetHeight;
}
if (!this.data.caption && this.data.caption_alternate) {
this._el.caption = TL.Dom.create("div", "tl-caption", this._el.content_container);
this._el.caption.innerHTML = this.data.caption_alternate;
this.options.caption_height = this._el.caption.offsetHeight;
}
this.updateDisplay();
},
onAdd: function() {
this.fire("added", this.data);
},
onRemove: function() {
this.fire("removed", this.data);
},
/* Private Methods
================================================== */
_initLayout: function () {
// Message
this.message = new TL.Message({}, this.options);
this.message.addTo(this._el.container);
// Create Layout
this._el.content_container = TL.Dom.create("div", "tl-media-content-container", this._el.container);
// Link
if (this.data.link && this.data.link != "") {
this._el.link = TL.Dom.create("a", "tl-media-link", this._el.content_container);
this._el.link.href = this.data.link;
if (this.data.link_target && this.data.link_target != "") {
this._el.link.target = this.data.link_target;
} else {
this._el.link.target = "_blank";
}
this._el.content = TL.Dom.create("div", "tl-media-content", this._el.link);
} else {
this._el.content = TL.Dom.create("div", "tl-media-content", this._el.content_container);
}
},
// Update Display
_updateDisplay: function(w, h, l) {
if (w) {
this.options.width = w;
}
//this._el.container.style.width = this.options.width + "px";
if (h) {
this.options.height = h;
}
if (l) {
this.options.layout = l;
}
if (this._el.credit) {
this.options.credit_height = this._el.credit.offsetHeight;
}
if (this._el.caption) {
this.options.caption_height = this._el.caption.offsetHeight + 5;
}
this.updateMediaDisplay(this.options.layout);
},
_stopMedia: function() {
}
});
/* **********************************************
Begin TL.Media.Blockquote.js
********************************************** */
/* TL.Media.Blockquote
================================================== */
TL.Media.Blockquote = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-blockquote", this._el.content);
this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
// Get Media ID
this.media_id = this.data.url;
// API Call
this._el.content_item.innerHTML = this.media_id;
// After Loaded
this.onLoaded();
},
updateMediaDisplay: function() {
},
_updateMediaDisplay: function() {
}
});
/* **********************************************
Begin TL.Media.DailyMotion.js
********************************************** */
/* TL.Media.DailyMotion
================================================== */
TL.Media.DailyMotion = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-dailymotion", this._el.content);
// Get Media ID
if (this.data.url.match("video")) {
this.media_id = this.data.url.split("video\/")[1].split(/[?&]/)[0];
} else {
this.media_id = this.data.url.split("embed\/")[1].split(/[?&]/)[0];
}
// API URL
api_url = "https://www.dailymotion.com/embed/video/" + this.media_id;
// API Call
this._el.content_item.innerHTML = "<iframe autostart='false' frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe>"
// After Loaded
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth}) + "px";
}
});
/* **********************************************
Begin TL.Media.DocumentCloud.js
********************************************** */
/* TL.Media.DocumentCloud
================================================== */
TL.Media.DocumentCloud = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var self = this;
// Create Dom elements
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-documentcloud tl-media-shadow", this._el.content);
this._el.content_item.id = TL.Util.unique_ID(7)
// Check url
if(this.data.url.match(/\.html$/)) {
this.data.url = this._transformURL(this.data.url);
} else if(!(this.data.url.match(/.(json|js)$/))) {
trace("DOCUMENT CLOUD IN URL BUT INVALID SUFFIX");
}
// Load viewer API
TL.Load.js([
'https://assets.documentcloud.org/viewer/loader.js',
'https://assets.documentcloud.org/viewer/viewer.js'],
function() {
self.createMedia();
}
);
},
// Viewer API needs js, not html
_transformURL: function(url) {
return url.replace(/(.*)\.html$/, '$1.js')
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = this.options.height + "px";
//this._el.content_item.style.width = this.options.width + "px";
},
createMedia: function() {
// DocumentCloud API call
DV.load(this.data.url, {
container: '#'+this._el.content_item.id,
showSidebar: false
});
this.onLoaded();
},
/* Events
================================================== */
});
/* **********************************************
Begin TL.Media.Flickr.js
********************************************** */
/* TL.Media.Flickr
================================================== */
TL.Media.Flickr = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
try {
// Get Media ID
this.establishMediaID();
// API URL
api_url = "https://api.flickr.com/services/rest/?method=flickr.photos.getSizes&api_key=" + this.options.api_key_flickr + "&photo_id=" + this.media_id + "&format=json&jsoncallback=?";
// API Call
TL.getJSON(api_url, function(d) {
if (d.stat == "ok") {
self.sizes = d.sizes.size; // store sizes info
if(!self.options.background) {
self.createMedia();
}
self.onLoaded();
} else {
self.loadErrorDisplay(self._("flickr_notfound_err"));
}
});
} catch(e) {
self.loadErrorDisplay(self._(e.message_key));
}
},
establishMediaID: function() {
if (this.data.url.match(/flic.kr\/.+/i)) {
var encoded = this.data.url.split('/').slice(-1)[0];
this.media_id = TL.Util.base58.decode(encoded);
} else {
var marker = 'flickr.com/photos/';
var idx = this.data.url.indexOf(marker);
if (idx == -1) { throw new TL.Error("flickr_invalidurl_err"); }
var pos = idx + marker.length;
this.media_id = this.data.url.substr(pos).split("/")[1];
}
},
createMedia: function() {
var self = this;
// Link
this._el.content_link = TL.Dom.create("a", "", this._el.content);
this._el.content_link.href = this.data.url;
this._el.content_link.target = "_blank";
// Photo
this._el.content_item = TL.Dom.create("img", "tl-media-item tl-media-image tl-media-flickr tl-media-shadow", this._el.content_link);
// Media Loaded Event
this._el.content_item.addEventListener('load', function(e) {
self.onMediaLoaded();
});
// Set Image Source
this._el.content_item.src = this.getImageURL(this.options.width, this.options.height);
},
getImageURL: function(w, h) {
var best_size = this.size_label(h),
source = this.sizes[this.sizes.length - 2].source;
for(var i = 0; i < this.sizes.length; i++) {
if (this.sizes[i].label == best_size) {
source = this.sizes[i].source;
}
}
return source;
},
_getMeta: function() {
var self = this,
api_url;
// API URL
api_url = "https://api.flickr.com/services/rest/?method=flickr.photos.getInfo&api_key=" + this.options.api_key_flickr + "&photo_id=" + this.media_id + "&format=json&jsoncallback=?";
// API Call
TL.getJSON(api_url, function(d) {
self.data.credit_alternate = "<a href='" + self.data.url + "' target='_blank'>" + d.photo.owner.realname + "</a>";
self.data.caption_alternate = d.photo.title._content + " " + d.photo.description._content;
self.updateMeta();
});
},
size_label: function(s) {
var _size = "";
if (s <= 75) {
if (s <= 0) {
_size = "Large";
} else {
_size = "Thumbnail";
}
} else if (s <= 180) {
_size = "Small";
} else if (s <= 240) {
_size = "Small 320";
} else if (s <= 375) {
_size = "Medium";
} else if (s <= 480) {
_size = "Medium 640";
} else if (s <= 600) {
_size = "Large";
} else {
_size = "Large";
}
return _size;
}
});
/* **********************************************
Begin TL.Media.GoogleDoc.js
********************************************** */
/* TL.Media.GoogleDoc
================================================== */
TL.Media.GoogleDoc = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
// Get Media ID
if (this.data.url.match("open\?id\=")) {
this.media_id = this.data.url.split("open\?id\=")[1];
if (this.data.url.match("\&authuser\=0")) {
url = this.media_id.match("\&authuser\=0")[0];
};
} else if (this.data.url.match(/file\/d\/([^/]*)\/?/)) {
var doc_id = this.data.url.match(/file\/d\/([^/]*)\/?/)[1];
url = 'https://drive.google.com/file/d/' + doc_id + '/preview'
} else {
url = this.data.url;
}
// this URL makes something suitable for an img src but what if it's not an image?
// api_url = "http://www.googledrive.com/host/" + this.media_id + "/";
this._el.content_item.innerHTML = "<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + url + "'></iframe>";
// After Loaded
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = this.options.height + "px";
}
});
/* **********************************************
Begin TL.Media.GooglePlus.js
********************************************** */
/* TL.Media.GooglePlus
================================================== */
TL.Media.GooglePlus = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-googleplus", this._el.content);
// Get Media ID
this.media_id = this.data.url;
// API URL
api_url = this.media_id;
// API Call
this._el.content_item.innerHTML = "<iframe frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe>"
// After Loaded
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = this.options.height + "px";
}
});
/* **********************************************
Begin TL.Media.IFrame.js
********************************************** */
/* TL.Media.IFrame
================================================== */
TL.Media.IFrame = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
// Get Media ID
this.media_id = this.data.url;
// API URL
api_url = this.media_id;
// API Call
this._el.content_item.innerHTML = api_url;
// After Loaded
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = this.options.height + "px";
}
});
/* **********************************************
Begin TL.Media.Image.js
********************************************** */
/* TL.Media.Image
Produces image assets.
Takes a data object and populates a dom object
================================================== */
TL.Media.Image = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
// Loading Message
this.loadingMessage();
// Create media?
if(!this.options.background) {
this.createMedia();
}
// After loaded
this.onLoaded();
},
createMedia: function() {
var self = this,
image_class = "tl-media-item tl-media-image tl-media-shadow";
if (this.data.url.match(/.png(\?.*)?$/) || this.data.url.match(/.svg(\?.*)?$/)) {
image_class = "tl-media-item tl-media-image"
}
// Link
if (this.data.link) {
this._el.content_link = TL.Dom.create("a", "", this._el.content);
this._el.content_link.href = this.data.link;
this._el.content_link.target = "_blank";
this._el.content_item = TL.Dom.create("img", image_class, this._el.content_link);
} else {
this._el.content_item = TL.Dom.create("img", image_class, this._el.content);
}
// Media Loaded Event
this._el.content_item.addEventListener('load', function(e) {
self.onMediaLoaded();
});
this._el.content_item.src = this.getImageURL();
},
getImageURL: function(w, h) {
return TL.Util.transformImageURL(this.data.url);
},
_updateMediaDisplay: function(layout) {
if(TL.Browser.firefox) {
//this._el.content_item.style.maxWidth = (this.options.width/2) - 40 + "px";
this._el.content_item.style.width = "auto";
}
}
});
/* **********************************************
Begin TL.Media.Imgur.js
********************************************** */
/* TL.Media.Flickr
================================================== */
TL.Media.Imgur = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
try {
this.media_id = this.data.url.split('/').slice(-1)[0];
if(!this.options.background) {
this.createMedia();
}
// After Loaded
this.onLoaded();
} catch(e) {
this.loadErrorDisplay(this._("imgur_invalidurl_err"));
}
},
createMedia: function() {
var self = this;
// Link
this._el.content_link = TL.Dom.create("a", "", this._el.content);
this._el.content_link.href = this.data.url;
this._el.content_link.target = "_blank";
// Photo
this._el.content_item = TL.Dom.create("img", "tl-media-item tl-media-image tl-media-imgur tl-media-shadow",
this._el.content_link);
// Media Loaded Event
this._el.content_item.addEventListener('load', function(e) {
self.onMediaLoaded();
});
this._el.content_item.src = this.getImageURL();
},
getImageURL: function(w, h) {
return 'https://i.imgur.com/' + this.media_id + '.jpg';
}
});
/* **********************************************
Begin TL.Media.Instagram.js
********************************************** */
/* TL.Media.Instagram
================================================== */
TL.Media.Instagram = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
// Get Media ID
this.media_id = this.data.url.split("\/p\/")[1].split("/")[0];
if(!this.options.background) {
this.createMedia();
}
// After Loaded
this.onLoaded();
},
createMedia: function() {
var self = this;
// Link
this._el.content_link = TL.Dom.create("a", "", this._el.content);
this._el.content_link.href = this.data.url;
this._el.content_link.target = "_blank";
// Photo
this._el.content_item = TL.Dom.create("img", "tl-media-item tl-media-image tl-media-instagram tl-media-shadow", this._el.content_link);
// Media Loaded Event
this._el.content_item.addEventListener('load', function(e) {
self.onMediaLoaded();
});
this._el.content_item.src = this.getImageURL(this._el.content.offsetWidth);
},
getImageURL: function(w, h) {
return "https://instagram.com/p/" + this.media_id + "/media/?size=" + this.sizes(w);
},
_getMeta: function() {
var self = this,
api_url;
// API URL
api_url = "https://api.instagram.com/oembed?url=https://instagr.am/p/" + this.media_id + "&callback=?";
// API Call
TL.getJSON(api_url, function(d) {
self.data.credit_alternate = "<a href='" + d.author_url + "' target='_blank'>" + d.author_name + "</a>";
self.data.caption_alternate = d.title;
self.updateMeta();
});
},
sizes: function(s) {
var _size = "";
if (s <= 150) {
_size = "t";
} else if (s <= 306) {
_size = "m";
} else {
_size = "l";
}
return _size;
}
});
/* **********************************************
Begin TL.Media.GoogleMap.js
********************************************** */
/* TL.Media.Map
================================================== */
TL.Media.GoogleMap = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-map tl-media-shadow", this._el.content);
// Get Media ID
this.media_id = this.data.url;
// API Call
this.mapframe = TL.Dom.create("iframe", "", this._el.content_item);
window.stash = this;
this.mapframe.width = "100%";
this.mapframe.height = "100%";
this.mapframe.frameBorder = "0";
this.mapframe.src = this.makeGoogleMapsEmbedURL(this.media_id, this.options.api_key_googlemaps);
// After Loaded
this.onLoaded();
},
_updateMediaDisplay: function() {
if (this._state.loaded) {
var dimensions = TL.Util.ratio.square({w:this._el.content_item.offsetWidth});
this._el.content_item.style.height = dimensions.h + "px";
}
},
makeGoogleMapsEmbedURL: function(url,api_key) {
// Test with https://docs.google.com/spreadsheets/d/1zCpvtRdftlR5fBPppmy_-SkGIo7RMwoPUiGFZDAXbTc/edit
var Streetview = false;
function determineMapMode(url){
function parseDisplayMode(display_mode, param_string) {
// Set the zoom param
if (display_mode.slice(-1) == "z") {
param_string["zoom"] = display_mode;
// Set the maptype to something other than "roadmap"
} else if (display_mode.slice(-1) == "m") {
// TODO: make this somehow interpret the correct zoom level
// until then fake it by using Google's default zoom level
param_string["zoom"] = 14;
param_string["maptype"] = "satellite";
// Set all the fun streetview params
} else if (display_mode.slice(-1) == "t") {
Streetview = true;
// streetview uses "location" instead of "center"
// "place" mode doesn't have the center param, so we may need to grab that now
if (mapmode == "place") {
var center = url.match(regexes["place"])[3] + "," + url.match(regexes["place"])[4];
} else {
var center = param_string["center"];
delete param_string["center"];
}
// Clear out all the other params -- this is so hacky
param_string = {};
param_string["location"] = center;
streetview_params = display_mode.split(",");
for (param in param_defs["streetview"]) {
var i = parseInt(param) + 1;
if (param_defs["streetview"][param] == "pitch" && streetview_params[i] == "90t"){
// Although 90deg is the horizontal default in the URL, 0 is horizontal default for embed URL. WHY??
// https://developers.google.com/maps/documentation/javascript/streetview
param_string[param_defs["streetview"][param]] = 0;
} else {
param_string[param_defs["streetview"][param]] = streetview_params[i].slice(0,-1);
}
}
}
return param_string;
}
function determineMapModeURL(mapmode, match) {
var param_string = {};
var url_root = match[1], display_mode = match[match.length - 1];
for (param in param_defs[mapmode]) {
// skip first 2 matches, because they reflect the URL and not params
var i = parseInt(param)+2;
if (param_defs[mapmode][param] == "center") {
param_string[param_defs[mapmode][param]] = match[i] + "," + match[++i];
} else {
param_string[param_defs[mapmode][param]] = match[i];
}
}
param_string = parseDisplayMode(display_mode, param_string);
param_string["key"] = api_key;
if (Streetview == true) {
mapmode = "streetview";
} else {
}
return (url_root + "/embed/v1/" + mapmode + TL.Util.getParamString(param_string));
}
mapmode = "view";
if (url.match(regexes["place"])) {
mapmode = "place";
} else if (url.match(regexes["directions"])) {
mapmode = "directions";
} else if (url.match(regexes["search"])) {
mapmode = "search";
}
return determineMapModeURL(mapmode, url.match(regexes[mapmode]));
}
// These must be in the order they appear in the original URL
// "key" param not included since it's not in the URL structure
// Streetview "location" param not included since it's captured as "center"
// Place "center" param ...um...
var param_defs = {
"view": ["center"],
"place": ["q", "center"],
"directions": ["origin", "destination", "center"],
"search": ["q", "center"],
"streetview": ["fov", "heading", "pitch"]
};
// Set up regex parts to make updating these easier if Google changes them
var root_url_regex = /(https:\/\/.+google.+?\/maps)/;
var coords_regex = /@([-\d.]+),([-\d.]+)/;
var address_regex = /([\w\W]+)/;
// Data doesn't seem to get used for anything
var data_regex = /data=[\S]*/;
// Capture the parameters that determine what map tiles to use
// In roadmap view, mode URLs include zoom paramater (e.g. "14z")
// In satellite (or "earth") view, URLs include a distance parameter (e.g. "84511m")
// In streetview, URLs include paramaters like "3a,75y,49.76h,90t" -- see http://stackoverflow.com/a/22988073
var display_mode_regex = /,((?:[-\d.]+[zmayht],?)*)/;
var regexes = {
view: new RegExp(root_url_regex.source + "/" + coords_regex.source + display_mode_regex.source),
place: new RegExp(root_url_regex.source + "/place/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source),
directions: new RegExp(root_url_regex.source + "/dir/" + address_regex.source + "/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source),
search: new RegExp(root_url_regex.source + "/search/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source)
};
return determineMapMode(url);
}
});
/* **********************************************
Begin TL.Media.PDF.js
********************************************** */
/* TL.Media.PDF
* Chrome and Firefox on both OSes and Safari all support PDFs as iframe src.
* This prompts for a download on IE10/11. We should investigate using
* https://mozilla.github.io/pdf.js/ to support showing PDFs on IE.
================================================== */
TL.Media.PDF = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var url = TL.Util.transformImageURL(this.data.url),
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
var markup = "";
// not assigning media_id attribute. Seems like a holdover which is no longer used.
if (TL.Browser.ie || TL.Browser.edge || url.match(/dl.dropboxusercontent.com/)) {
markup = "<iframe class='doc' frameborder='0' width='100%' height='100%' src='//docs.google.com/viewer?url=" + url + "&embedded=true'></iframe>";
} else {
markup = "<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + url + "'></iframe>"
}
this._el.content_item.innerHTML = markup
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = this.options.height + "px";
}
});
/* **********************************************
Begin TL.Media.Profile.js
********************************************** */
/* TL.Media.Profile
================================================== */
TL.Media.Profile = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
this._el.content_item = TL.Dom.create("img", "tl-media-item tl-media-image tl-media-profile tl-media-shadow", this._el.content);
this._el.content_item.src = this.data.url;
this.onLoaded();
},
_updateMediaDisplay: function(layout) {
if(TL.Browser.firefox) {
this._el.content_item.style.maxWidth = (this.options.width/2) - 40 + "px";
}
}
});
/* **********************************************
Begin TL.Media.Slider.js
********************************************** */
/* TL.Media.SLider
Produces a Slider
Takes a data object and populates a dom object
TODO
Placeholder
================================================== */
TL.Media.Slider = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
this._el.content_item = TL.Dom.create("img", "tl-media-item tl-media-image", this._el.content);
this._el.content_item.src = this.data.url;
this.onLoaded();
}
});
/* **********************************************
Begin TL.Media.SoundCloud.js
********************************************** */
/* TL.Media.SoundCloud
================================================== */
TL.Media.SoundCloud = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-soundcloud tl-media-shadow", this._el.content);
// Get Media ID
this.media_id = this.data.url;
// API URL
api_url = "https://soundcloud.com/oembed?url=" + this.media_id + "&format=js&callback=?"
// API Call
TL.getJSON(api_url, function(d) {
self.createMedia(d);
});
},
createMedia: function(d) {
this._el.content_item.innerHTML = d.html;
// After Loaded
this.onLoaded();
}
});
/* **********************************************
Begin TL.Media.Spotify.js
********************************************** */
/* TL.Media.Spotify
================================================== */
TL.Media.Spotify = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-spotify", this._el.content);
// Get Media ID
if (this.data.url.match(/^spotify:track/) || this.data.url.match(/^spotify:user:.+:playlist:/)) {
this.media_id = this.data.url;
}
if (this.data.url.match(/spotify.com\/track\/(.+)/)) {
this.media_id = "spotify:track:" + this.data.url.match(/spotify.com\/track\/(.+)/)[1];
} else if (this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)) {
var user = this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)[1];
var playlist = this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)[2];
this.media_id = "spotify:user:" + user + ":playlist:" + playlist;
}
if (this.media_id) {
// API URL
api_url = "https://embed.spotify.com/?uri=" + this.media_id + "&theme=white&view=coverart";
this.player = TL.Dom.create("iframe", "tl-media-shadow", this._el.content_item);
this.player.width = "100%";
this.player.height = "100%";
this.player.frameBorder = "0";
this.player.src = api_url;
// After Loaded
this.onLoaded();
} else {
this.loadErrorDisplay(this._('spotify_invalid_url'));
}
},
// Update Media Display
_updateMediaDisplay: function(l) {
var _height = this.options.height,
_player_height = 0,
_player_width = 0;
if (TL.Browser.mobile) {
_height = (this.options.height/2);
} else {
_height = this.options.height - this.options.credit_height - this.options.caption_height - 30;
}
this._el.content_item.style.maxHeight = "none";
trace(_height);
trace(this.options.width)
if (_height > this.options.width) {
trace("height is greater")
_player_height = this.options.width + 80 + "px";
_player_width = this.options.width + "px";
} else {
trace("width is greater")
trace(this.options.width)
_player_height = _height + "px";
_player_width = _height - 80 + "px";
}
this.player.style.width = _player_width;
this.player.style.height = _player_height;
if (this._el.credit) {
this._el.credit.style.width = _player_width;
}
if (this._el.caption) {
this._el.caption.style.width = _player_width;
}
},
_stopMedia: function() {
// Need spotify stop code
}
});
/* **********************************************
Begin TL.Media.Storify.js
********************************************** */
/* TL.Media.Storify
================================================== */
TL.Media.Storify = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var content;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-storify", this._el.content);
// Get Media ID
this.media_id = this.data.url;
// Content
content = "<iframe frameborder='0' width='100%' height='100%' src='" + this.media_id + "/embed'></iframe>";
content += "<script src='" + this.media_id + ".js'></script>";
// API Call
this._el.content_item.innerHTML = content;
// After Loaded
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = this.options.height + "px";
}
});
/* **********************************************
Begin TL.Media.Text.js
********************************************** */
TL.Media.Text = TL.Class.extend({
includes: [TL.Events],
// DOM ELEMENTS
_el: {
container: {},
content_container: {},
content: {},
headline: {},
date: {}
},
// Data
data: {
unique_id: "",
headline: "headline",
text: "text"
},
// Options
options: {
title: false
},
/* Constructor
================================================== */
initialize: function(data, options, add_to_container) {
TL.Util.setData(this, data);
// Merge Options
TL.Util.mergeData(this.options, options);
this._el.container = TL.Dom.create("div", "tl-text");
this._el.container.id = this.data.unique_id;
this._initLayout();
if (add_to_container) {
add_to_container.appendChild(this._el.container);
};
},
/* Adding, Hiding, Showing etc
================================================== */
show: function() {
},
hide: function() {
},
addTo: function(container) {
container.appendChild(this._el.container);
//this.onAdd();
},
removeFrom: function(container) {
container.removeChild(this._el.container);
},
headlineHeight: function() {
return this._el.headline.offsetHeight + 40;
},
addDateText: function(str) {
this._el.date.innerHTML = str;
},
/* Events
================================================== */
onLoaded: function() {
this.fire("loaded", this.data);
},
onAdd: function() {
this.fire("added", this.data);
},
onRemove: function() {
this.fire("removed", this.data);
},
/* Private Methods
================================================== */
_initLayout: function () {
// Create Layout
this._el.content_container = TL.Dom.create("div", "tl-text-content-container", this._el.container);
// Date
this._el.date = TL.Dom.create("h3", "tl-headline-date", this._el.content_container);
// Headline
if (this.data.headline != "") {
var headline_class = "tl-headline";
if (this.options.title) {
headline_class = "tl-headline tl-headline-title";
}
this._el.headline = TL.Dom.create("h2", headline_class, this._el.content_container);
this._el.headline.innerHTML = this.data.headline;
}
// Text
if (this.data.text != "") {
var text_content = "";
text_content += TL.Util.htmlify(this.options.autolink == true ? TL.Util.linkify(this.data.text) : this.data.text);
trace(this.data.text);
this._el.content = TL.Dom.create("div", "tl-text-content", this._el.content_container);
this._el.content.innerHTML = text_content;
trace(text_content);
trace(this._el.content)
}
// Fire event that the slide is loaded
this.onLoaded();
}
});
/* **********************************************
Begin TL.Media.Twitter.js
********************************************** */
/* TL.Media.Twitter
Produces Twitter Display
================================================== */
TL.Media.Twitter = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-twitter", this._el.content);
this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
// Get Media ID
if (this.data.url.match("status\/")) {
this.media_id = this.data.url.split("status\/")[1];
} else if (this.data.url.match("statuses\/")) {
this.media_id = this.data.url.split("statuses\/")[1];
} else {
this.media_id = "";
}
// API URL
api_url = "https://api.twitter.com/1/statuses/oembed.json?id=" + this.media_id + "&omit_script=true&include_entities=true&callback=?";
// API Call
TL.ajax({
type: 'GET',
url: api_url,
dataType: 'json', //json data type
success: function(d){
self.createMedia(d);
},
error:function(xhr, type){
var error_text = "";
error_text += self._("twitter_load_err") + "<br/>" + self.media_id + "<br/>" + type;
self.loadErrorDisplay(error_text);
}
});
},
createMedia: function(d) {
var tweet = "",
tweet_text = "",
tweetuser = "",
tweet_status_temp = "",
tweet_status_url = "",
tweet_status_date = "";
// TWEET CONTENT
tweet_text = d.html.split("<\/p>\—")[0] + "</p></blockquote>";
tweetuser = d.author_url.split("twitter.com\/")[1];
tweet_status_temp = d.html.split("<\/p>\—")[1].split("<a href=\"")[1];
tweet_status_url = tweet_status_temp.split("\"\>")[0];
tweet_status_date = tweet_status_temp.split("\"\>")[1].split("<\/a>")[0];
// Open links in new window
tweet_text = tweet_text.replace(/<a href/ig, '<a class="tl-makelink" target="_blank" href');
// TWEET CONTENT
tweet += tweet_text;
// TWEET AUTHOR
tweet += "<div class='vcard'>";
tweet += "<a href='" + tweet_status_url + "' class='twitter-date' target='_blank'>" + tweet_status_date + "</a>";
tweet += "<div class='author'>";
tweet += "<a class='screen-name url' href='" + d.author_url + "' target='_blank'>";
tweet += "<span class='avatar'></span>";
tweet += "<span class='fn'>" + d.author_name + " <span class='tl-icon-twitter'></span></span>";
tweet += "<span class='nickname'>@" + tweetuser + "<span class='thumbnail-inline'></span></span>";
tweet += "</a>";
tweet += "</div>";
tweet += "</div>";
// Add to DOM
this._el.content_item.innerHTML = tweet;
// After Loaded
this.onLoaded();
},
updateMediaDisplay: function() {
},
_updateMediaDisplay: function() {
}
});
/* **********************************************
Begin TL.Media.TwitterEmbed.js
********************************************** */
/* TL.Media.TwitterEmbed
Produces Twitter Display
================================================== */
TL.Media.TwitterEmbed = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-twitter", this._el.content);
this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
// Get Media ID
var found = this.data.url.match(/(status|statuses)\/(\d+)/);
if (found && found.length > 2) {
this.media_id = found[2];
} else {
self.loadErrorDisplay(self._("twitterembed_invalidurl_err"));
return;
}
// API URL
api_url = "https://api.twitter.com/1/statuses/oembed.json?id=" + this.media_id + "&omit_script=true&include_entities=true&callback=?";
// API Call
TL.ajax({
type: 'GET',
url: api_url,
dataType: 'json', //json data type
success: function(d){
self.createMedia(d);
},
error:function(xhr, type){
var error_text = "";
error_text += self._("twitter_load_err") + "<br/>" + self.media_id + "<br/>" + type;
self.loadErrorDisplay(error_text);
}
});
},
createMedia: function(d) {
trace("create_media")
var tweet = "",
tweet_text = "",
tweetuser = "",
tweet_status_temp = "",
tweet_status_url = "",
tweet_status_date = "";
// TWEET CONTENT
tweet_text = d.html.split("<\/p>\—")[0] + "</p></blockquote>";
tweetuser = d.author_url.split("twitter.com\/")[1];
tweet_status_temp = d.html.split("<\/p>\—")[1].split("<a href=\"")[1];
tweet_status_url = tweet_status_temp.split("\"\>")[0];
tweet_status_date = tweet_status_temp.split("\"\>")[1].split("<\/a>")[0];
// Open links in new window
tweet_text = tweet_text.replace(/<a href/ig, '<a target="_blank" href');
// TWEET CONTENT
tweet += tweet_text;
// TWEET AUTHOR
tweet += "<div class='vcard'>";
tweet += "<a href='" + tweet_status_url + "' class='twitter-date' target='_blank'>" + tweet_status_date + "</a>";
tweet += "<div class='author'>";
tweet += "<a class='screen-name url' href='" + d.author_url + "' target='_blank'>";
tweet += "<span class='avatar'></span>";
tweet += "<span class='fn'>" + d.author_name + " <span class='tl-icon-twitter'></span></span>";
tweet += "<span class='nickname'>@" + tweetuser + "<span class='thumbnail-inline'></span></span>";
tweet += "</a>";
tweet += "</div>";
tweet += "</div>";
// Add to DOM
this._el.content_item.innerHTML = tweet;
// After Loaded
this.onLoaded();
},
updateMediaDisplay: function() {
},
_updateMediaDisplay: function() {
}
});
/* **********************************************
Begin TL.Media.Vimeo.js
********************************************** */
/* TL.Media.Vimeo
================================================== */
TL.Media.Vimeo = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-vimeo tl-media-shadow", this._el.content);
// Get Media ID
this.media_id = this.data.url.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0];
// API URL
api_url = "https://player.vimeo.com/video/" + this.media_id + "?api=1&title=0&byline=0&portrait=0&color=ffffff";
this.player = TL.Dom.create("iframe", "", this._el.content_item);
// Media Loaded Event
this.player.addEventListener('load', function(e) {
self.onMediaLoaded();
});
this.player.width = "100%";
this.player.height = "100%";
this.player.frameBorder = "0";
this.player.src = api_url;
// After Loaded
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth}) + "px";
},
_stopMedia: function() {
try {
this.player.contentWindow.postMessage(JSON.stringify({method: "pause"}), "https://player.vimeo.com");
}
catch(err) {
trace(err);
}
}
});
/* **********************************************
Begin TL.Media.Vine.js
********************************************** */
/* TL.Media.Vine
================================================== */
TL.Media.Vine = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-vine tl-media-shadow", this._el.content);
// Get Media ID
this.media_id = this.data.url.split("vine.co/v/")[1];
// API URL
api_url = "https://vine.co/v/" + this.media_id + "/embed/simple";
// API Call
this._el.content_item.innerHTML = "<iframe frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe><script async src='https://platform.vine.co/static/scripts/embed.js' charset='utf-8'></script>"
// After Loaded
this.onLoaded();
},
// Update Media Display
_updateMediaDisplay: function() {
var size = TL.Util.ratio.square({w:this._el.content_item.offsetWidth , h:this.options.height});
this._el.content_item.style.height = size.h + "px";
}
});
/* **********************************************
Begin TL.Media.Website.js
********************************************** */
/* TL.Media.Website
Uses Embedly
http://embed.ly/docs/api/extract/endpoints/1/extract
================================================== */
TL.Media.Website = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var self = this;
// Get Media ID
this.media_id = this.data.url.replace(/.*?:\/\//g, "");
if (this.options.api_key_embedly) {
// API URL
api_url = "https://api.embed.ly/1/extract?key=" + this.options.api_key_embedly + "&url=" + this.media_id + "&callback=?";
// API Call
TL.getJSON(api_url, function(d) {
self.createMedia(d);
});
} else {
this.createCardContent();
}
},
createCardContent: function() {
(function(w, d){
var id='embedly-platform', n = 'script';
if (!d.getElementById(id)){
w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);};
var e = d.createElement(n); e.id = id; e.async=1;
e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js';
var s = d.getElementsByTagName(n)[0];
s.parentNode.insertBefore(e, s);
}
})(window, document);
var content = "<a href=\"" + this.data.url + "\" class=\"embedly-card\">" + this.data.url + "</a>";
this._setContent(content);
},
createMedia: function(d) { // this costs API credits...
var content = "";
content += "<h4><a href='" + this.data.url + "' target='_blank'>" + d.title + "</a></h4>";
if (d.images) {
if (d.images[0]) {
trace(d.images[0].url);
content += "<img src='" + d.images[0].url + "' />";
}
}
if (d.favicon_url) {
content += "<img class='tl-media-website-icon' src='" + d.favicon_url + "' />";
}
content += "<span class='tl-media-website-description'>" + d.provider_name + "</span><br/>";
content += "<p>" + d.description + "</p>";
this._setContent(content);
},
_setContent: function(content) {
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-website", this._el.content);
this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
this._el.content_item.innerHTML = content;
// After Loaded
this.onLoaded();
},
updateMediaDisplay: function() {
},
_updateMediaDisplay: function() {
}
});
/* **********************************************
Begin TL.Media.Wikipedia.js
********************************************** */
/* TL.Media.Wikipedia
================================================== */
TL.Media.Wikipedia = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var api_url,
api_language,
self = this;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-wikipedia", this._el.content);
this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
// Get Media ID
this.media_id = this.data.url.split("wiki\/")[1].split("#")[0].replace("_", " ");
this.media_id = this.media_id.replace(" ", "%20");
api_language = this.data.url.split("//")[1].split(".wikipedia")[0];
// API URL
api_url = "https://" + api_language + ".wikipedia.org/w/api.php?action=query&prop=extracts|pageimages&redirects=&titles=" + this.media_id + "&exintro=1&format=json&callback=?";
// API Call
TL.ajax({
type: 'GET',
url: api_url,
dataType: 'json', //json data type
success: function(d){
self.createMedia(d);
},
error:function(xhr, type){
var error_text = "";
error_text += self._("wikipedia_load_err") + "<br/>" + self.media_id + "<br/>" + type;
self.loadErrorDisplay(error_text);
}
});
},
createMedia: function(d) {
var wiki = "";
if (d.query) {
var content = "",
wiki = {
entry: {},
title: "",
text: "",
extract: "",
paragraphs: 1,
page_image: "",
text_array: []
};
wiki.entry = TL.Util.getObjectAttributeByIndex(d.query.pages, 0);
wiki.extract = wiki.entry.extract;
wiki.title = wiki.entry.title;
wiki.page_image = wiki.entry.thumbnail;
if (wiki.extract.match("<p>")) {
wiki.text_array = wiki.extract.split("<p>");
} else {
wiki.text_array.push(wiki.extract);
}
for(var i = 0; i < wiki.text_array.length; i++) {
if (i+1 <= wiki.paragraphs && i+1 < wiki.text_array.length) {
wiki.text += "<p>" + wiki.text_array[i+1];
}
}
content += "<span class='tl-icon-wikipedia'></span>";
content += "<div class='tl-wikipedia-title'><h4><a href='" + this.data.url + "' target='_blank'>" + wiki.title + "</a></h4>";
content += "<span class='tl-wikipedia-source'>" + this._('wikipedia') + "</span></div>";
if (wiki.page_image) {
//content += "<img class='tl-wikipedia-pageimage' src='" + wiki.page_image.source +"'>";
}
content += wiki.text;
if (wiki.extract.match("REDIRECT")) {
} else {
// Add to DOM
this._el.content_item.innerHTML = content;
// After Loaded
this.onLoaded();
}
}
},
updateMediaDisplay: function() {
},
_updateMediaDisplay: function() {
}
});
/* **********************************************
Begin TL.Media.YouTube.js
********************************************** */
/* TL.Media.YouTube
================================================== */
TL.Media.YouTube = TL.Media.extend({
includes: [TL.Events],
/* Load the media
================================================== */
_loadMedia: function() {
var self = this,
url_vars;
this.youtube_loaded = false;
// Create Dom element
this._el.content_item = TL.Dom.create("div", "tl-media-item tl-media-youtube tl-media-shadow", this._el.content);
this._el.content_item.id = TL.Util.unique_ID(7)
// URL Vars
url_vars = TL.Util.getUrlVars(this.data.url);
// Get Media ID
this.media_id = {};
if (this.data.url.match('v=')) {
this.media_id.id = url_vars["v"];
} else if (this.data.url.match('\/embed\/')) {
this.media_id.id = this.data.url.split("embed\/")[1].split(/[?&]/)[0];
} else if (this.data.url.match(/v\/|v=|youtu\.be\//)){
this.media_id.id = this.data.url.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0];
} else {
trace("YOUTUBE IN URL BUT NOT A VALID VIDEO");
}
this.media_id.start = TL.Util.parseYouTubeTime(url_vars["t"]);
this.media_id.hd = Boolean(typeof(url_vars["hd"]) != 'undefined');
// API Call
TL.Load.js('https://www.youtube.com/iframe_api', function() {
self.createMedia();
});
},
// Update Media Display
_updateMediaDisplay: function() {
//this.el.content_item = document.getElementById(this._el.content_item.id);
this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this.options.width}) + "px";
this._el.content_item.style.width = this.options.width + "px";
},
_stopMedia: function() {
if (this.youtube_loaded) {
try {
if(this.player.getPlayerState() == YT.PlayerState.PLAYING) {
this.player.pauseVideo();
}
}
catch(err) {
trace(err);
}
}
},
createMedia: function() {
var self = this;
clearTimeout(this.timer);
if(typeof YT != 'undefined' && typeof YT.Player != 'undefined') {
// Create Player
this.player = new YT.Player(this._el.content_item.id, {
playerVars: {
enablejsapi: 1,
color: 'white',
autohide: 1,
showinfo: 0,
theme: 'light',
start: this.media_id.start,
fs: 0,
rel: 0
},
videoId: this.media_id.id,
events: {
onReady: function() {
self.onPlayerReady();
// After Loaded
self.onLoaded();
},
'onStateChange': self.onStateChange
}
});
} else {
this.timer = setTimeout(function() {
self.createMedia();
}, 1000);
}
},
/* Events
================================================== */
onPlayerReady: function(e) {
this.youtube_loaded = true;
this._el.content_item = document.getElementById(this._el.content_item.id);
this.onMediaLoaded();
},
onStateChange: function(e) {
if(e.data == YT.PlayerState.ENDED) {
e.target.seekTo(0);
e.target.pauseVideo();
}
}
});
/* **********************************************
Begin TL.Slide.js
********************************************** */
/* TL.Slide
Creates a slide. Takes a data object and
populates the slide with content.
================================================== */
TL.Slide = TL.Class.extend({
includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(data, options, title_slide) {
// DOM Elements
this._el = {
container: {},
scroll_container: {},
background: {},
content_container: {},
content: {}
};
// Components
this._media = null;
this._mediaclass = {};
this._text = {};
this._background_media = null;
// State
this._state = {
loaded: false
};
this.has = {
headline: false,
text: false,
media: false,
title: false,
background: {
image: false,
color: false,
color_value :""
}
}
this.has.title = title_slide;
// Data
this.data = {
unique_id: null,
background: null,
start_date: null,
end_date: null,
location: null,
text: null,
media: null,
autolink: true
};
// Options
this.options = {
// animation
duration: 1000,
slide_padding_lr: 40,
ease: TL.Ease.easeInSpline,
width: 600,
height: 600,
skinny_size: 650,
media_name: ""
};
// Actively Displaying
this.active = false;
// Animation Object
this.animator = {};
// Merge Data and Options
TL.Util.mergeData(this.options, options);
TL.Util.mergeData(this.data, data);
this._initLayout();
this._initEvents();
},
/* Adding, Hiding, Showing etc
================================================== */
show: function() {
this.animator = TL.Animate(this._el.slider_container, {
left: -(this._el.container.offsetWidth * n) + "px",
duration: this.options.duration,
easing: this.options.ease
});
},
hide: function() {
},
setActive: function(is_active) {
this.active = is_active;
if (this.active) {
if (this.data.background) {
this.fire("background_change", this.has.background);
}
this.loadMedia();
} else {
this.stopMedia();
}
},
addTo: function(container) {
container.appendChild(this._el.container);
//this.onAdd();
},
removeFrom: function(container) {
container.removeChild(this._el.container);
},
updateDisplay: function(w, h, l) {
this._updateDisplay(w, h, l);
},
loadMedia: function() {
var self = this;
if (this._media && !this._state.loaded) {
this._media.loadMedia();
this._state.loaded = true;
}
if(this._background_media && !this._background_media._state.loaded) {
this._background_media.on("loaded", function() {
self._updateBackgroundDisplay();
});
this._background_media.loadMedia();
}
},
stopMedia: function() {
if (this._media && this._state.loaded) {
this._media.stopMedia();
}
},
getBackground: function() {
return this.has.background;
},
scrollToTop: function() {
this._el.container.scrollTop = 0;
},
getFormattedDate: function() {
if (TL.Util.trim(this.data.display_date).length > 0) {
return this.data.display_date;
}
var date_text = "";
if(!this.has.title) {
if (this.data.end_date) {
date_text = " — " + this.data.end_date.getDisplayDate(this.getLanguage());
}
if (this.data.start_date) {
date_text = this.data.start_date.getDisplayDate(this.getLanguage()) + date_text;
}
}
return date_text;
},
/* Events
================================================== */
/* Private Methods
================================================== */
_initLayout: function () {
// Create Layout
this._el.container = TL.Dom.create("div", "tl-slide");
if (this.has.title) {
this._el.container.className = "tl-slide tl-slide-titleslide";
}
if (this.data.unique_id) {
this._el.container.id = this.data.unique_id;
}
this._el.scroll_container = TL.Dom.create("div", "tl-slide-scrollable-container", this._el.container);
this._el.content_container = TL.Dom.create("div", "tl-slide-content-container", this._el.scroll_container);
this._el.content = TL.Dom.create("div", "tl-slide-content", this._el.content_container);
this._el.background = TL.Dom.create("div", "tl-slide-background", this._el.container);
// Style Slide Background
if (this.data.background) {
if (this.data.background.url) {
var media_type = TL.MediaType(this.data.background, true);
if(media_type) {
this._background_media = new media_type.cls(this.data.background, {background: 1});
this.has.background.image = true;
this._el.container.className += ' tl-full-image-background';
this.has.background.color_value = "#000";
this._el.background.style.display = "block";
}
}
if (this.data.background.color) {
this.has.background.color = true;
this._el.container.className += ' tl-full-color-background';
this.has.background.color_value = this.data.background.color;
//this._el.container.style.backgroundColor = this.data.background.color;
//this._el.background.style.backgroundColor = this.data.background.color;
//this._el.background.style.display = "block";
}
if (this.data.background.text_background) {
this._el.container.className += ' tl-text-background';
}
}
// Determine Assets for layout and loading
if (this.data.media && this.data.media.url && this.data.media.url != "") {
this.has.media = true;
}
if (this.data.text && this.data.text.text) {
this.has.text = true;
}
if (this.data.text && this.data.text.headline) {
this.has.headline = true;
}
// Create Media
if (this.has.media) {
// Determine the media type
this.data.media.mediatype = TL.MediaType(this.data.media);
this.options.media_name = this.data.media.mediatype.name;
this.options.media_type = this.data.media.mediatype.type;
this.options.autolink = this.data.autolink;
// Create a media object using the matched class name
this._media = new this.data.media.mediatype.cls(this.data.media, this.options);
}
// Create Text
if (this.has.text || this.has.headline) {
this._text = new TL.Media.Text(this.data.text, {title:this.has.title,language: this.options.language, autolink: this.data.autolink });
this._text.addDateText(this.getFormattedDate());
}
// Add to DOM
if (!this.has.text && !this.has.headline && this.has.media) {
TL.DomUtil.addClass(this._el.container, 'tl-slide-media-only');
this._media.addTo(this._el.content);
} else if (this.has.headline && this.has.media && !this.has.text) {
TL.DomUtil.addClass(this._el.container, 'tl-slide-media-only');
this._text.addTo(this._el.content);
this._media.addTo(this._el.content);
} else if (this.has.text && this.has.media) {
this._media.addTo(this._el.content);
this._text.addTo(this._el.content);
} else if (this.has.text || this.has.headline) {
TL.DomUtil.addClass(this._el.container, 'tl-slide-text-only');
this._text.addTo(this._el.content);
}
// Fire event that the slide is loaded
this.onLoaded();
},
_initEvents: function() {
},
// Update Display
_updateDisplay: function(width, height, layout) {
var content_width,
content_padding_left = this.options.slide_padding_lr,
content_padding_right = this.options.slide_padding_lr;
if (width) {
this.options.width = width;
} else {
this.options.width = this._el.container.offsetWidth;
}
content_width = this.options.width - (this.options.slide_padding_lr * 2);
if(TL.Browser.mobile && (this.options.width <= this.options.skinny_size)) {
content_padding_left = 0;
content_padding_right = 0;
content_width = this.options.width;
} else if (layout == "landscape") {
} else if (this.options.width <= this.options.skinny_size) {
content_padding_left = 50;
content_padding_right = 50;
content_width = this.options.width - content_padding_left - content_padding_right;
} else {
}
this._el.content.style.paddingLeft = content_padding_left + "px";
this._el.content.style.paddingRight = content_padding_right + "px";
this._el.content.style.width = content_width + "px";
if (height) {
this.options.height = height;
//this._el.scroll_container.style.height = this.options.height + "px";
} else {
this.options.height = this._el.container.offsetHeight;
}
if (this._media) {
if (!this.has.text && this.has.headline) {
this._media.updateDisplay(content_width, (this.options.height - this._text.headlineHeight()), layout);
} else if (!this.has.text && !this.has.headline) {
this._media.updateDisplay(content_width, this.options.height, layout);
} else if (this.options.width <= this.options.skinny_size) {
this._media.updateDisplay(content_width, this.options.height, layout);
} else {
this._media.updateDisplay(content_width/2, this.options.height, layout);
}
}
this._updateBackgroundDisplay();
},
_updateBackgroundDisplay: function() {
if(this._background_media && this._background_media._state.loaded) {
this._el.background.style.backgroundImage = "url('" + this._background_media.getImageURL(this.options.width, this.options.height) + "')";
}
}
});
/* **********************************************
Begin TL.SlideNav.js
********************************************** */
/* TL.SlideNav
encapsulate DOM display/events for the
'next' and 'previous' buttons on a slide.
================================================== */
// TODO null out data
TL.SlideNav = TL.Class.extend({
includes: [TL.Events, TL.DomMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(data, options, add_to_container) {
// DOM ELEMENTS
this._el = {
container: {},
content_container: {},
icon: {},
title: {},
description: {}
};
// Media Type
this.mediatype = {};
// Data
this.data = {
title: "Navigation",
description: "Description",
date: "Date"
};
//Options
this.options = {
direction: "previous"
};
this.animator = null;
// Merge Data and Options
TL.Util.mergeData(this.options, options);
TL.Util.mergeData(this.data, data);
this._el.container = TL.Dom.create("div", "tl-slidenav-" + this.options.direction);
if (TL.Browser.mobile) {
this._el.container.setAttribute("ontouchstart"," ");
}
this._initLayout();
this._initEvents();
if (add_to_container) {
add_to_container.appendChild(this._el.container);
};
},
/* Update Content
================================================== */
update: function(slide) {
var d = {
title: "",
description: "",
date: slide.getFormattedDate()
};
if (slide.data.text) {
if (slide.data.text.headline) {
d.title = slide.data.text.headline;
}
}
this._update(d);
},
/* Color
================================================== */
setColor: function(inverted) {
if (inverted) {
this._el.content_container.className = 'tl-slidenav-content-container tl-slidenav-inverted';
} else {
this._el.content_container.className = 'tl-slidenav-content-container';
}
},
/* Events
================================================== */
_onMouseClick: function() {
this.fire("clicked", this.options);
},
/* Private Methods
================================================== */
_update: function(d) {
// update data
this.data = TL.Util.mergeData(this.data, d);
// Title
this._el.title.innerHTML = TL.Util.unlinkify(this.data.title);
// Date
this._el.description.innerHTML = TL.Util.unlinkify(this.data.date);
},
_initLayout: function () {
// Create Layout
this._el.content_container = TL.Dom.create("div", "tl-slidenav-content-container", this._el.container);
this._el.icon = TL.Dom.create("div", "tl-slidenav-icon", this._el.content_container);
this._el.title = TL.Dom.create("div", "tl-slidenav-title", this._el.content_container);
this._el.description = TL.Dom.create("div", "tl-slidenav-description", this._el.content_container);
this._el.icon.innerHTML = " "
this._update();
},
_initEvents: function () {
TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
}
});
/* **********************************************
Begin TL.StorySlider.js
********************************************** */
/* StorySlider
is the central class of the API - it is used to create a StorySlider
Events:
nav_next
nav_previous
slideDisplayUpdate
loaded
slideAdded
slideLoaded
slideRemoved
================================================== */
TL.StorySlider = TL.Class.extend({
includes: [TL.Events, TL.I18NMixins],
/* Private Methods
================================================== */
initialize: function (elem, data, options, init) {
// DOM ELEMENTS
this._el = {
container: {},
background: {},
slider_container_mask: {},
slider_container: {},
slider_item_container: {}
};
this._nav = {};
this._nav.previous = {};
this._nav.next = {};
// Slide Spacing
this.slide_spacing = 0;
// Slides Array
this._slides = [];
// Swipe Object
this._swipable;
// Preload Timer
this.preloadTimer;
// Message
this._message;
// Current Slide
this.current_id = '';
// Data Object
this.data = {};
this.options = {
id: "",
layout: "portrait",
width: 600,
height: 600,
default_bg_color: {r:255, g:255, b:255},
slide_padding_lr: 40, // padding on slide of slide
start_at_slide: 1,
slide_default_fade: "0%", // landscape fade
// animation
duration: 1000,
ease: TL.Ease.easeInOutQuint,
// interaction
dragging: true,
trackResize: true
};
// Main element ID
if (typeof elem === 'object') {
this._el.container = elem;
this.options.id = TL.Util.unique_ID(6, "tl");
} else {
this.options.id = elem;
this._el.container = TL.Dom.get(elem);
}
if (!this._el.container.id) {
this._el.container.id = this.options.id;
}
// Animation Object
this.animator = null;
// Merge Data and Options
TL.Util.mergeData(this.options, options);
TL.Util.mergeData(this.data, data);
if (init) {
this.init();
}
},
init: function() {
this._initLayout();
this._initEvents();
this._initData();
this._updateDisplay();
// Go to initial slide
this.goTo(this.options.start_at_slide);
this._onLoaded();
},
/* Slides
================================================== */
_addSlide:function(slide) {
slide.addTo(this._el.slider_item_container);
slide.on('added', this._onSlideAdded, this);
slide.on('background_change', this._onBackgroundChange, this);
},
_createSlide: function(d, title_slide, n) {
var slide = new TL.Slide(d, this.options, title_slide);
this._addSlide(slide);
if(n < 0) {
this._slides.push(slide);
} else {
this._slides.splice(n, 0, slide);
}
},
_createSlides: function(array) {
for (var i = 0; i < array.length; i++) {
if (array[i].unique_id == "") {
array[i].unique_id = TL.Util.unique_ID(6, "tl-slide");
}
this._createSlide(array[i], false, -1);
}
},
_removeSlide: function(slide) {
slide.removeFrom(this._el.slider_item_container);
slide.off('added', this._onSlideRemoved, this);
slide.off('background_change', this._onBackgroundChange);
},
_destroySlide: function(n) {
this._removeSlide(this._slides[n]);
this._slides.splice(n, 1);
},
_findSlideIndex: function(n) {
var _n = n;
if (typeof n == 'string' || n instanceof String) {
_n = TL.Util.findArrayNumberByUniqueID(n, this._slides, "unique_id");
}
return _n;
},
/* Public
================================================== */
updateDisplay: function(w, h, a, l) {
this._updateDisplay(w, h, a, l);
},
// Create a slide
createSlide: function(d, n) {
this._createSlide(d, false, n);
},
// Create Many Slides from an array
createSlides: function(array) {
this._createSlides(array);
},
// Destroy slide by index
destroySlide: function(n) {
this._destroySlide(n);
},
// Destroy slide by id
destroySlideId: function(id) {
this.destroySlide(this._findSlideIndex(id));
},
/* Navigation
================================================== */
goTo: function(n, fast, displayupdate) {
n = parseInt(n);
if (isNaN(n)) n = 0;
var self = this;
this.changeBackground({color_value:"", image:false});
// Clear Preloader Timer
if (this.preloadTimer) {
clearTimeout(this.preloadTimer);
}
// Set Slide Active State
for (var i = 0; i < this._slides.length; i++) {
this._slides[i].setActive(false);
}
if (n < this._slides.length && n >= 0) {
this.current_id = this._slides[n].data.unique_id;
// Stop animation
if (this.animator) {
this.animator.stop();
}
if (this._swipable) {
this._swipable.stopMomentum();
}
if (fast) {
this._el.slider_container.style.left = -(this.slide_spacing * n) + "px";
this._onSlideChange(displayupdate);
} else {
this.animator = TL.Animate(this._el.slider_container, {
left: -(this.slide_spacing * n) + "px",
duration: this.options.duration,
easing: this.options.ease,
complete: this._onSlideChange(displayupdate)
});
}
// Set Slide Active State
this._slides[n].setActive(true);
// Update Navigation and Info
if (this._slides[n + 1]) {
this.showNav(this._nav.next, true);
this._nav.next.update(this._slides[n + 1]);
} else {
this.showNav(this._nav.next, false);
}
if (this._slides[n - 1]) {
this.showNav(this._nav.previous, true);
this._nav.previous.update(this._slides[n - 1]);
} else {
this.showNav(this._nav.previous, false);
}
// Preload Slides
this.preloadTimer = setTimeout(function() {
self.preloadSlides(n);
}, this.options.duration);
}
},
goToId: function(id, fast, displayupdate) {
this.goTo(this._findSlideIndex(id), fast, displayupdate);
},
preloadSlides: function(n) {
if (this._slides[n + 1]) {
this._slides[n + 1].loadMedia();
this._slides[n + 1].scrollToTop();
}
if (this._slides[n + 2]) {
this._slides[n + 2].loadMedia();
this._slides[n + 2].scrollToTop();
}
if (this._slides[n - 1]) {
this._slides[n - 1].loadMedia();
this._slides[n - 1].scrollToTop();
}
if (this._slides[n - 2]) {
this._slides[n - 2].loadMedia();
this._slides[n - 2].scrollToTop();
}
},
next: function() {
var n = this._findSlideIndex(this.current_id);
if ((n + 1) < (this._slides.length)) {
this.goTo(n + 1);
} else {
this.goTo(n);
}
},
previous: function() {
var n = this._findSlideIndex(this.current_id);
if (n - 1 >= 0) {
this.goTo(n - 1);
} else {
this.goTo(n);
}
},
showNav: function(nav_obj, show) {
if (this.options.width <= 500 && TL.Browser.mobile) {
} else {
if (show) {
nav_obj.show();
} else {
nav_obj.hide();
}
}
},
changeBackground: function(bg) {
var bg_color = {r:256, g:256, b:256},
bg_color_rgb;
if (bg.color_value && bg.color_value != "") {
bg_color = TL.Util.hexToRgb(bg.color_value);
if (!bg_color) {
trace("Invalid color value " + bg.color_value);
bg_color = this.options.default_bg_color;
}
} else {
bg_color = this.options.default_bg_color;
bg.color_value = "rgb(" + bg_color.r + " , " + bg_color.g + ", " + bg_color.b + ")";
}
bg_color_rgb = bg_color.r + "," + bg_color.g + "," + bg_color.b;
this._el.background.style.backgroundImage = "none";
if (bg.color_value) {
this._el.background.style.backgroundColor = bg.color_value;
} else {
this._el.background.style.backgroundColor = "transparent";
}
if (bg_color.r < 255 || bg_color.g < 255 || bg_color.b < 255 || bg.image) {
this._nav.next.setColor(true);
this._nav.previous.setColor(true);
} else {
this._nav.next.setColor(false);
this._nav.previous.setColor(false);
}
},
/* Private Methods
================================================== */
// Update Display
_updateDisplay: function(width, height, animate, layout) {
var nav_pos, _layout;
if(typeof layout === 'undefined'){
_layout = this.options.layout;
} else {
_layout = layout;
}
this.options.layout = _layout;
this.slide_spacing = this.options.width*2;
if (width) {
this.options.width = width;
} else {
this.options.width = this._el.container.offsetWidth;
}
if (height) {
this.options.height = height;
} else {
this.options.height = this._el.container.offsetHeight;
}
//this._el.container.style.height = this.options.height;
// position navigation
nav_pos = (this.options.height/2);
this._nav.next.setPosition({top:nav_pos});
this._nav.previous.setPosition({top:nav_pos});
// Position slides
for (var i = 0; i < this._slides.length; i++) {
this._slides[i].updateDisplay(this.options.width, this.options.height, _layout);
this._slides[i].setPosition({left:(this.slide_spacing * i), top:0});
};
// Go to the current slide
this.goToId(this.current_id, true, true);
},
// Reposition and redraw slides
_updateDrawSlides: function() {
var _layout = this.options.layout;
for (var i = 0; i < this._slides.length; i++) {
this._slides[i].updateDisplay(this.options.width, this.options.height, _layout);
this._slides[i].setPosition({left:(this.slide_spacing * i), top:0});
};
this.goToId(this.current_id, true, false);
},
/* Init
================================================== */
_initLayout: function () {
TL.DomUtil.addClass(this._el.container, 'tl-storyslider');
// Create Layout
this._el.slider_container_mask = TL.Dom.create('div', 'tl-slider-container-mask', this._el.container);
this._el.background = TL.Dom.create('div', 'tl-slider-background tl-animate', this._el.container);
this._el.slider_container = TL.Dom.create('div', 'tl-slider-container tlanimate', this._el.slider_container_mask);
this._el.slider_item_container = TL.Dom.create('div', 'tl-slider-item-container', this._el.slider_container);
// Update Size
this.options.width = this._el.container.offsetWidth;
this.options.height = this._el.container.offsetHeight;
// Create Navigation
this._nav.previous = new TL.SlideNav({title: "Previous", description: "description"}, {direction:"previous"});
this._nav.next = new TL.SlideNav({title: "Next",description: "description"}, {direction:"next"});
// add the navigation to the dom
this._nav.next.addTo(this._el.container);
this._nav.previous.addTo(this._el.container);
this._el.slider_container.style.left="0px";
if (TL.Browser.touch) {
//this._el.slider_touch_mask = TL.Dom.create('div', 'tl-slider-touch-mask', this._el.slider_container_mask);
this._swipable = new TL.Swipable(this._el.slider_container_mask, this._el.slider_container, {
enable: {x:true, y:false},
snap: true
});
this._swipable.enable();
// Message
this._message = new TL.Message({}, {
message_class: "tl-message-full",
message_icon_class: "tl-icon-swipe-left"
});
this._message.updateMessage(this._("swipe_to_navigate"));
this._message.addTo(this._el.container);
}
},
_initEvents: function () {
this._nav.next.on('clicked', this._onNavigation, this);
this._nav.previous.on('clicked', this._onNavigation, this);
if (this._message) {
this._message.on('clicked', this._onMessageClick, this);
}
if (this._swipable) {
this._swipable.on('swipe_left', this._onNavigation, this);
this._swipable.on('swipe_right', this._onNavigation, this);
this._swipable.on('swipe_nodirection', this._onSwipeNoDirection, this);
}
},
_initData: function() {
if(this.data.title) {
this._createSlide(this.data.title, true, -1);
}
this._createSlides(this.data.events);
},
/* Events
================================================== */
_onBackgroundChange: function(e) {
var n = this._findSlideIndex(this.current_id);
var slide_background = this._slides[n].getBackground();
this.changeBackground(e);
this.fire("colorchange", slide_background);
},
_onMessageClick: function(e) {
this._message.hide();
},
_onSwipeNoDirection: function(e) {
this.goToId(this.current_id);
},
_onNavigation: function(e) {
if (e.direction == "next" || e.direction == "left") {
this.next();
} else if (e.direction == "previous" || e.direction == "right") {
this.previous();
}
this.fire("nav_" + e.direction, this.data);
},
_onSlideAdded: function(e) {
trace("slideadded")
this.fire("slideAdded", this.data);
},
_onSlideRemoved: function(e) {
this.fire("slideRemoved", this.data);
},
_onSlideChange: function(displayupdate) {
if (!displayupdate) {
this.fire("change", {unique_id: this.current_id});
}
},
_onMouseClick: function(e) {
},
_fireMouseEvent: function (e) {
if (!this._loaded) {
return;
}
var type = e.type;
type = (type === 'mouseenter' ? 'mouseover' : (type === 'mouseleave' ? 'mouseout' : type));
if (!this.hasEventListeners(type)) {
return;
}
if (type === 'contextmenu') {
TL.DomEvent.preventDefault(e);
}
this.fire(type, {
latlng: "something", //this.mouseEventToLatLng(e),
layerPoint: "something else" //this.mouseEventToLayerPoint(e)
});
},
_onLoaded: function() {
this.fire("loaded", this.data);
}
});
/* **********************************************
Begin TL.TimeNav.js
********************************************** */
/* TL.TimeNav
================================================== */
TL.TimeNav = TL.Class.extend({
includes: [TL.Events, TL.DomMixins],
_el: {},
/* Constructor
================================================== */
initialize: function (elem, timeline_config, options, init) {
// DOM ELEMENTS
this._el = {
parent: {},
container: {},
slider: {},
slider_background: {},
line: {},
marker_container_mask: {},
marker_container: {},
marker_item_container: {},
timeaxis: {},
timeaxis_background: {},
attribution: {}
};
this.collapsed = false;
if (typeof elem === 'object') {
this._el.container = elem;
} else {
this._el.container = TL.Dom.get(elem);
}
this.config = timeline_config;
//Options
this.options = {
width: 600,
height: 600,
duration: 1000,
ease: TL.Ease.easeInOutQuint,
has_groups: false,
optimal_tick_width: 50,
scale_factor: 2, // How many screen widths wide should the timeline be
marker_padding: 5,
timenav_height_min: 150, // Minimum timenav height
marker_height_min: 30, // Minimum Marker Height
marker_width_min: 100, // Minimum Marker Width
zoom_sequence: [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] // Array of Fibonacci numbers for TimeNav zoom levels http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibtable.html
};
// Animation
this.animator = null;
// Ready state
this.ready = false;
// Markers Array
this._markers = [];
// Eras Array
this._eras = [];
this.has_eras = false;
// Groups Array
this._groups = [];
// Row Height
this._calculated_row_height = 100;
// Current Marker
this.current_id = "";
// TimeScale
this.timescale = {};
// TimeAxis
this.timeaxis = {};
this.axishelper = {};
// Max Rows
this.max_rows = 6;
// Animate CSS
this.animate_css = false;
// Swipe Object
this._swipable;
// Merge Data and Options
TL.Util.mergeData(this.options, options);
if (init) {
this.init();
}
},
init: function() {
this._initLayout();
this._initEvents();
this._initData();
this._updateDisplay();
this._onLoaded();
},
/* Public
================================================== */
positionMarkers: function() {
this._positionMarkers();
},
/* Update Display
================================================== */
updateDisplay: function(w, h, a, l) {
this._updateDisplay(w, h, a, l);
},
/* TimeScale
================================================== */
_getTimeScale: function() {
/* maybe the establishing config values (marker_height_min and max_rows) should be
separated from making a TimeScale object, which happens in another spot in this file with duplicate mapping of properties of this TimeNav into the TimeScale options object? */
// Set Max Rows
var marker_height_min = 0;
try {
marker_height_min = parseInt(this.options.marker_height_min);
} catch(e) {
trace("Invalid value for marker_height_min option.");
marker_height_min = 30;
}
if (marker_height_min == 0) {
trace("marker_height_min option must not be zero.")
marker_height_min = 30;
}
this.max_rows = Math.round((this.options.height - this._el.timeaxis_background.offsetHeight - (this.options.marker_padding)) / marker_height_min);
if (this.max_rows < 1) {
this.max_rows = 1;
}
return new TL.TimeScale(this.config, {
display_width: this._el.container.offsetWidth,
screen_multiplier: this.options.scale_factor,
max_rows: this.max_rows
});
},
_updateTimeScale: function(new_scale) {
this.options.scale_factor = new_scale;
this._updateDrawTimeline();
},
zoomIn: function() { // move the the next "higher" scale factor
var new_scale = TL.Util.findNextGreater(this.options.zoom_sequence, this.options.scale_factor);
this.setZoomFactor(new_scale);
},
zoomOut: function() { // move the the next "lower" scale factor
var new_scale = TL.Util.findNextLesser(this.options.zoom_sequence, this.options.scale_factor);
this.setZoomFactor(new_scale);
},
setZoom: function(level) {
var zoom_factor = this.options.zoom_sequence[level];
if (typeof(zoom_factor) == 'number') {
this.setZoomFactor(zoom_factor);
} else {
console.warn("Invalid zoom level. Please use an index number between 0 and " + (this.options.zoom_sequence.length - 1));
}
},
setZoomFactor: function(factor) {
if (factor <= this.options.zoom_sequence[0]) {
this.fire("zoomtoggle", {zoom:"out", show:false});
} else {
this.fire("zoomtoggle", {zoom:"out", show:true});
}
if (factor >= this.options.zoom_sequence[this.options.zoom_sequence.length-1]) {
this.fire("zoomtoggle", {zoom:"in", show:false});
} else {
this.fire("zoomtoggle", {zoom:"in", show:true});
}
if (factor == 0) {
console.warn("Zoom factor must be greater than zero. Using 0.1");
factor = 0.1;
}
this.options.scale_factor = factor;
//this._updateDrawTimeline(true);
this.goToId(this.current_id, !this._updateDrawTimeline(true), true);
},
/* Groups
================================================== */
_createGroups: function() {
var group_labels = this.timescale.getGroupLabels();
if (group_labels) {
this.options.has_groups = true;
for (var i = 0; i < group_labels.length; i++) {
this._createGroup(group_labels[i]);
}
}
},
_createGroup: function(group_label) {
var group = new TL.TimeGroup(group_label);
this._addGroup(group);
this._groups.push(group);
},
_addGroup:function(group) {
group.addTo(this._el.container);
},
_positionGroups: function() {
if (this.options.has_groups) {
var available_height = (this.options.height - this._el.timeaxis_background.offsetHeight ),
group_height = Math.floor((available_height /this.timescale.getNumberOfRows()) - this.options.marker_padding),
group_labels = this.timescale.getGroupLabels();
for (var i = 0, group_rows = 0; i < this._groups.length; i++) {
var group_y = Math.floor(group_rows * (group_height + this.options.marker_padding));
var group_hide = false;
if (group_y > (available_height- this.options.marker_padding)) {
group_hide = true;
}
this._groups[i].setRowPosition(group_y, this._calculated_row_height + this.options.marker_padding/2);
this._groups[i].setAlternateRowColor(TL.Util.isEven(i), group_hide);
group_rows += this._groups[i].data.rows; // account for groups spanning multiple rows
}
}
},
/* Markers
================================================== */
_addMarker:function(marker) {
marker.addTo(this._el.marker_item_container);
marker.on('markerclick', this._onMarkerClick, this);
marker.on('added', this._onMarkerAdded, this);
},
_createMarker: function(data, n) {
var marker = new TL.TimeMarker(data, this.options);
this._addMarker(marker);
if(n < 0) {
this._markers.push(marker);
} else {
this._markers.splice(n, 0, marker);
}
},
_createMarkers: function(array) {
for (var i = 0; i < array.length; i++) {
this._createMarker(array[i], -1);
}
},
_removeMarker: function(marker) {
marker.removeFrom(this._el.marker_item_container);
//marker.off('added', this._onMarkerRemoved, this);
},
_destroyMarker: function(n) {
this._removeMarker(this._markers[n]);
this._markers.splice(n, 1);
},
_positionMarkers: function(fast) {
// POSITION X
for (var i = 0; i < this._markers.length; i++) {
var pos = this.timescale.getPositionInfo(i);
if (fast) {
this._markers[i].setClass("tl-timemarker tl-timemarker-fast");
} else {
this._markers[i].setClass("tl-timemarker");
}
this._markers[i].setPosition({left:pos.start});
this._markers[i].setWidth(pos.width);
};
},
_calculateMarkerHeight: function(h) {
return ((h /this.timescale.getNumberOfRows()) - this.options.marker_padding);
},
_calculateRowHeight: function(h) {
return (h /this.timescale.getNumberOfRows());
},
_calculateAvailableHeight: function() {
return (this.options.height - this._el.timeaxis_background.offsetHeight - (this.options.marker_padding));
},
_calculateMinimumTimeNavHeight: function() {
return (this.timescale.getNumberOfRows() * this.options.marker_height_min) + this._el.timeaxis_background.offsetHeight + (this.options.marker_padding);
},
getMinimumHeight: function() {
return this._calculateMinimumTimeNavHeight();
},
_assignRowsToMarkers: function() {
var available_height = this._calculateAvailableHeight(),
marker_height = this._calculateMarkerHeight(available_height);
this._positionGroups();
this._calculated_row_height = this._calculateRowHeight(available_height);
for (var i = 0; i < this._markers.length; i++) {
// Set Height
this._markers[i].setHeight(marker_height);
//Position by Row
var row = this.timescale.getPositionInfo(i).row;
var marker_y = Math.floor(row * (marker_height + this.options.marker_padding)) + this.options.marker_padding;
var remainder_height = available_height - marker_y + this.options.marker_padding;
this._markers[i].setRowPosition(marker_y, remainder_height);
};
},
_resetMarkersActive: function() {
for (var i = 0; i < this._markers.length; i++) {
this._markers[i].setActive(false);
};
},
_findMarkerIndex: function(n) {
var _n = -1;
if (typeof n == 'string' || n instanceof String) {
_n = TL.Util.findArrayNumberByUniqueID(n, this._markers, "unique_id", _n);
}
return _n;
},
/* ERAS
================================================== */
_createEras: function(array) {
for (var i = 0; i < array.length; i++) {
this._createEra(array[i], -1);
}
},
_createEra: function(data, n) {
var era = new TL.TimeEra(data, this.options);
this._addEra(era);
if(n < 0) {
this._eras.push(era);
} else {
this._eras.splice(n, 0, era);
}
},
_addEra:function(era) {
era.addTo(this._el.marker_item_container);
era.on('added', this._onEraAdded, this);
},
_removeEra: function(era) {
era.removeFrom(this._el.marker_item_container);
//marker.off('added', this._onMarkerRemoved, this);
},
_destroyEra: function(n) {
this._removeEra(this._eras[n]);
this._eras.splice(n, 1);
},
_positionEras: function(fast) {
var era_color = 0;
// POSITION X
for (var i = 0; i < this._eras.length; i++) {
var pos = {
start:0,
end:0,
width:0
};
pos.start = this.timescale.getPosition(this._eras[i].data.start_date.getTime());
pos.end = this.timescale.getPosition(this._eras[i].data.end_date.getTime());
pos.width = pos.end - pos.start;
if (fast) {
this._eras[i].setClass("tl-timeera tl-timeera-fast");
} else {
this._eras[i].setClass("tl-timeera");
}
this._eras[i].setPosition({left:pos.start});
this._eras[i].setWidth(pos.width);
era_color++;
if (era_color > 5) {
era_color = 0;
}
this._eras[i].setColor(era_color);
};
},
/* Public
================================================== */
// Create a marker
createMarker: function(d, n) {
this._createMarker(d, n);
},
// Create many markers from an array
createMarkers: function(array) {
this._createMarkers(array);
},
// Destroy marker by index
destroyMarker: function(n) {
this._destroyMarker(n);
},
// Destroy marker by id
destroyMarkerId: function(id) {
this.destroyMarker(this._findMarkerIndex(id));
},
/* Navigation
================================================== */
goTo: function(n, fast, css_animation) {
var self = this,
_ease = this.options.ease,
_duration = this.options.duration,
_n = (n < 0) ? 0 : n;
// Set Marker active state
this._resetMarkersActive();
if(n >= 0 && n < this._markers.length) {
this._markers[n].setActive(true);
}
// Stop animation
if (this.animator) {
this.animator.stop();
}
if (fast) {
this._el.slider.className = "tl-timenav-slider";
this._el.slider.style.left = -this._markers[_n].getLeft() + (this.options.width/2) + "px";
} else {
if (css_animation) {
this._el.slider.className = "tl-timenav-slider tl-timenav-slider-animate";
this.animate_css = true;
this._el.slider.style.left = -this._markers[_n].getLeft() + (this.options.width/2) + "px";
} else {
this._el.slider.className = "tl-timenav-slider";
this.animator = TL.Animate(this._el.slider, {
left: -this._markers[_n].getLeft() + (this.options.width/2) + "px",
duration: _duration,
easing: _ease
});
}
}
if(n >= 0 && n < this._markers.length) {
this.current_id = this._markers[n].data.unique_id;
} else {
this.current_id = '';
}
},
goToId: function(id, fast, css_animation) {
this.goTo(this._findMarkerIndex(id), fast, css_animation);
},
/* Events
================================================== */
_onLoaded: function() {
this.ready = true;
this.fire("loaded", this.config);
},
_onMarkerAdded: function(e) {
this.fire("dateAdded", this.config);
},
_onEraAdded: function(e) {
this.fire("eraAdded", this.config);
},
_onMarkerRemoved: function(e) {
this.fire("dateRemoved", this.config);
},
_onMarkerClick: function(e) {
// Go to the clicked marker
this.goToId(e.unique_id);
this.fire("change", {unique_id: e.unique_id});
},
_onMouseScroll: function(e) {
var delta = 0,
scroll_to = 0,
constraint = {
right: -(this.timescale.getPixelWidth() - (this.options.width/2)),
left: this.options.width/2
};
if (!e) {
e = window.event;
}
if (e.originalEvent) {
e = e.originalEvent;
}
// Webkit and browsers able to differntiate between up/down and left/right scrolling
if (typeof e.wheelDeltaX != 'undefined' ) {
delta = e.wheelDeltaY/6;
if (Math.abs(e.wheelDeltaX) > Math.abs(e.wheelDeltaY)) {
delta = e.wheelDeltaX/6;
} else {
//delta = e.wheelDeltaY/6;
delta = 0;
}
}
if (delta) {
if (e.preventDefault) {
e.preventDefault();
}
e.returnValue = false;
}
// Stop from scrolling too far
scroll_to = parseInt(this._el.slider.style.left.replace("px", "")) + delta;
if (scroll_to > constraint.left) {
scroll_to = constraint.left;
} else if (scroll_to < constraint.right) {
scroll_to = constraint.right;
}
if (this.animate_css) {
this._el.slider.className = "tl-timenav-slider";
this.animate_css = false;
}
this._el.slider.style.left = scroll_to + "px";
},
_onDragMove: function(e) {
if (this.animate_css) {
this._el.slider.className = "tl-timenav-slider";
this.animate_css = false;
}
},
/* Private Methods
================================================== */
// Update Display
_updateDisplay: function(width, height, animate) {
if (width) {
this.options.width = width;
}
if (height && height != this.options.height) {
this.options.height = height;
this.timescale = this._getTimeScale();
}
// Size Markers
this._assignRowsToMarkers();
// Size swipable area
this._el.slider_background.style.width = this.timescale.getPixelWidth() + this.options.width + "px";
this._el.slider_background.style.left = -(this.options.width/2) + "px";
this._el.slider.style.width = this.timescale.getPixelWidth() + this.options.width + "px";
// Update Swipable constraint
this._swipable.updateConstraint({top: false,bottom: false,left: (this.options.width/2),right: -(this.timescale.getPixelWidth() - (this.options.width/2))});
// Go to the current slide
this.goToId(this.current_id, true);
},
_drawTimeline: function(fast) {
this.timescale = this._getTimeScale();
this.timeaxis.drawTicks(this.timescale, this.options.optimal_tick_width);
this._positionMarkers(fast);
this._assignRowsToMarkers();
this._createGroups();
this._positionGroups();
if (this.has_eras) {
this._positionEras(fast);
}
},
_updateDrawTimeline: function(check_update) {
var do_update = false;
// Check to see if redraw is needed
if (check_update) {
/* keep this aligned with _getTimeScale or reduce code duplication */
var temp_timescale = new TL.TimeScale(this.config, {
display_width: this._el.container.offsetWidth,
screen_multiplier: this.options.scale_factor,
max_rows: this.max_rows
});
if (this.timescale.getMajorScale() == temp_timescale.getMajorScale()
&& this.timescale.getMinorScale() == temp_timescale.getMinorScale()) {
do_update = true;
}
} else {
do_update = true;
}
// Perform update or redraw
if (do_update) {
this.timescale = this._getTimeScale();
this.timeaxis.positionTicks(this.timescale, this.options.optimal_tick_width);
this._positionMarkers();
this._assignRowsToMarkers();
this._positionGroups();
if (this.has_eras) {
this._positionEras();
}
this._updateDisplay();
} else {
this._drawTimeline(true);
}
return do_update;
},
/* Init
================================================== */
_initLayout: function () {
// Create Layout
this._el.attribution = TL.Dom.create('div', 'tl-attribution', this._el.container);
this._el.line = TL.Dom.create('div', 'tl-timenav-line', this._el.container);
this._el.slider = TL.Dom.create('div', 'tl-timenav-slider', this._el.container);
this._el.slider_background = TL.Dom.create('div', 'tl-timenav-slider-background', this._el.slider);
this._el.marker_container_mask = TL.Dom.create('div', 'tl-timenav-container-mask', this._el.slider);
this._el.marker_container = TL.Dom.create('div', 'tl-timenav-container', this._el.marker_container_mask);
this._el.marker_item_container = TL.Dom.create('div', 'tl-timenav-item-container', this._el.marker_container);
this._el.timeaxis = TL.Dom.create('div', 'tl-timeaxis', this._el.slider);
this._el.timeaxis_background = TL.Dom.create('div', 'tl-timeaxis-background', this._el.container);
// Knight Lab Logo
this._el.attribution.innerHTML = "<a href='http://timeline.knightlab.com' target='_blank'><span class='tl-knightlab-logo'></span>Timeline JS</a>"
// Time Axis
this.timeaxis = new TL.TimeAxis(this._el.timeaxis, this.options);
// Swipable
this._swipable = new TL.Swipable(this._el.slider_background, this._el.slider, {
enable: {x:true, y:false},
constraint: {top: false,bottom: false,left: (this.options.width/2),right: false},
snap: false
});
this._swipable.enable();
},
_initEvents: function () {
// Drag Events
this._swipable.on('dragmove', this._onDragMove, this);
// Scroll Events
TL.DomEvent.addListener(this._el.container, 'mousewheel', this._onMouseScroll, this);
TL.DomEvent.addListener(this._el.container, 'DOMMouseScroll', this._onMouseScroll, this);
},
_initData: function() {
// Create Markers and then add them
this._createMarkers(this.config.events);
if (this.config.eras) {
this.has_eras = true;
this._createEras(this.config.eras);
}
this._drawTimeline();
}
});
/* **********************************************
Begin TL.TimeMarker.js
********************************************** */
/* TL.TimeMarker
================================================== */
TL.TimeMarker = TL.Class.extend({
includes: [TL.Events, TL.DomMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(data, options) {
// DOM Elements
this._el = {
container: {},
content_container: {},
media_container: {},
timespan: {},
line_left: {},
line_right: {},
content: {},
text: {},
media: {},
};
// Components
this._text = {};
// State
this._state = {
loaded: false
};
// Data
this.data = {
unique_id: "",
background: null,
date: {
year: 0,
month: 0,
day: 0,
hour: 0,
minute: 0,
second: 0,
millisecond: 0,
thumbnail: "",
format: ""
},
text: {
headline: "",
text: ""
},
media: null
};
// Options
this.options = {
duration: 1000,
ease: TL.Ease.easeInSpline,
width: 600,
height: 600,
marker_width_min: 100 // Minimum Marker Width
};
// Actively Displaying
this.active = false;
// Animation Object
this.animator = {};
// End date
this.has_end_date = false;
// Merge Data and Options
TL.Util.mergeData(this.options, options);
TL.Util.mergeData(this.data, data);
this._initLayout();
this._initEvents();
},
/* Adding, Hiding, Showing etc
================================================== */
show: function() {
},
hide: function() {
},
setActive: function(is_active) {
this.active = is_active;
if (this.active && this.has_end_date) {
this._el.container.className = 'tl-timemarker tl-timemarker-with-end tl-timemarker-active';
} else if (this.active){
this._el.container.className = 'tl-timemarker tl-timemarker-active';
} else if (this.has_end_date){
this._el.container.className = 'tl-timemarker tl-timemarker-with-end';
} else {
this._el.container.className = 'tl-timemarker';
}
},
addTo: function(container) {
container.appendChild(this._el.container);
},
removeFrom: function(container) {
container.removeChild(this._el.container);
},
updateDisplay: function(w, h) {
this._updateDisplay(w, h);
},
loadMedia: function() {
if (this._media && !this._state.loaded) {
this._media.loadMedia();
this._state.loaded = true;
}
},
stopMedia: function() {
if (this._media && this._state.loaded) {
this._media.stopMedia();
}
},
getLeft: function() {
return this._el.container.style.left.slice(0, -2);
},
getTime: function() { // TODO does this need to know about the end date?
return this.data.start_date.getTime();
},
getEndTime: function() {
if (this.data.end_date) {
return this.data.end_date.getTime();
} else {
return false;
}
},
setHeight: function(h) {
var text_line_height = 12,
text_lines = 1;
this._el.content_container.style.height = h + "px";
this._el.timespan_content.style.height = h + "px";
// Handle Line height for better display of text
if (h <= 30) {
this._el.content.className = "tl-timemarker-content tl-timemarker-content-small";
} else {
this._el.content.className = "tl-timemarker-content";
}
if (h <= 56) {
TL.DomUtil.addClass(this._el.content_container, "tl-timemarker-content-container-small");
} else {
TL.DomUtil.removeClass(this._el.content_container, "tl-timemarker-content-container-small");
}
// Handle number of lines visible vertically
if (TL.Browser.webkit) {
text_lines = Math.floor(h / (text_line_height + 2));
if (text_lines < 1) {
text_lines = 1;
}
this._text.className = "tl-headline";
this._text.style.webkitLineClamp = text_lines;
} else {
text_lines = h / text_line_height;
if (text_lines > 1) {
this._text.className = "tl-headline tl-headline-fadeout";
} else {
this._text.className = "tl-headline";
}
this._text.style.height = (text_lines * text_line_height) + "px";
}
},
setWidth: function(w) {
if (this.data.end_date) {
this._el.container.style.width = w + "px";
if (w > this.options.marker_width_min) {
this._el.content_container.style.width = w + "px";
this._el.content_container.className = "tl-timemarker-content-container tl-timemarker-content-container-long";
} else {
this._el.content_container.style.width = this.options.marker_width_min + "px";
this._el.content_container.className = "tl-timemarker-content-container";
}
}
},
setClass: function(n) {
this._el.container.className = n;
},
setRowPosition: function(n, remainder) {
this.setPosition({top:n});
this._el.timespan.style.height = remainder + "px";
if (remainder < 56) {
//TL.DomUtil.removeClass(this._el.content_container, "tl-timemarker-content-container-small");
}
},
/* Events
================================================== */
_onMarkerClick: function(e) {
this.fire("markerclick", {unique_id:this.data.unique_id});
},
/* Private Methods
================================================== */
_initLayout: function () {
//trace(this.data)
// Create Layout
this._el.container = TL.Dom.create("div", "tl-timemarker");
if (this.data.unique_id) {
this._el.container.id = this.data.unique_id + "-marker";
}
if (this.data.end_date) {
this.has_end_date = true;
this._el.container.className = 'tl-timemarker tl-timemarker-with-end';
}
this._el.timespan = TL.Dom.create("div", "tl-timemarker-timespan", this._el.container);
this._el.timespan_content = TL.Dom.create("div", "tl-timemarker-timespan-content", this._el.timespan);
this._el.content_container = TL.Dom.create("div", "tl-timemarker-content-container", this._el.container);
this._el.content = TL.Dom.create("div", "tl-timemarker-content", this._el.content_container);
this._el.line_left = TL.Dom.create("div", "tl-timemarker-line-left", this._el.timespan);
this._el.line_right = TL.Dom.create("div", "tl-timemarker-line-right", this._el.timespan);
// Thumbnail or Icon
if (this.data.media) {
this._el.media_container = TL.Dom.create("div", "tl-timemarker-media-container", this._el.content);
// ugh. needs an overhaul
var mtd = {url: this.data.media.thumbnail};
var thumbnail_media_type = (this.data.media.thumbnail) ? TL.MediaType(mtd, true) : null;
if (thumbnail_media_type) {
var thumbnail_media = new thumbnail_media_type.cls(mtd);
thumbnail_media.on("loaded", function() {
this._el.media = TL.Dom.create("img", "tl-timemarker-media", this._el.media_container);
this._el.media.src = thumbnail_media.getImageURL();
}.bind(this));
thumbnail_media.loadMedia();
} else {
var media_type = TL.MediaType(this.data.media).type;
this._el.media = TL.Dom.create("span", "tl-icon-" + media_type, this._el.media_container);
}
}
// Text
this._el.text = TL.Dom.create("div", "tl-timemarker-text", this._el.content);
this._text = TL.Dom.create("h2", "tl-headline", this._el.text);
if (this.data.text.headline && this.data.text.headline != "") {
this._text.innerHTML = TL.Util.unlinkify(this.data.text.headline);
} else if (this.data.text.text && this.data.text.text != "") {
this._text.innerHTML = TL.Util.unlinkify(this.data.text.text);
} else if (this.data.media.caption && this.data.media.caption != "") {
this._text.innerHTML = TL.Util.unlinkify(this.data.media.caption);
}
// Fire event that the slide is loaded
this.onLoaded();
},
_initEvents: function() {
TL.DomEvent.addListener(this._el.container, 'click', this._onMarkerClick, this);
},
// Update Display
_updateDisplay: function(width, height, layout) {
if (width) {
this.options.width = width;
}
if (height) {
this.options.height = height;
}
}
});
/* **********************************************
Begin TL.TimeEra.js
********************************************** */
/* TL.TimeMarker
================================================== */
TL.TimeEra = TL.Class.extend({
includes: [TL.Events, TL.DomMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(data, options) {
// DOM Elements
this._el = {
container: {},
background: {},
content_container: {},
content: {},
text: {}
};
// Components
this._text = {};
// State
this._state = {
loaded: false
};
// Data
this.data = {
unique_id: "",
date: {
year: 0,
month: 0,
day: 0,
hour: 0,
minute: 0,
second: 0,
millisecond: 0,
thumbnail: "",
format: ""
},
text: {
headline: "",
text: ""
}
};
// Options
this.options = {
duration: 1000,
ease: TL.Ease.easeInSpline,
width: 600,
height: 600,
marker_width_min: 100 // Minimum Marker Width
};
// Actively Displaying
this.active = false;
// Animation Object
this.animator = {};
// End date
this.has_end_date = false;
// Merge Data and Options
TL.Util.mergeData(this.options, options);
TL.Util.mergeData(this.data, data);
this._initLayout();
this._initEvents();
},
/* Adding, Hiding, Showing etc
================================================== */
show: function() {
},
hide: function() {
},
setActive: function(is_active) {
},
addTo: function(container) {
container.appendChild(this._el.container);
},
removeFrom: function(container) {
container.removeChild(this._el.container);
},
updateDisplay: function(w, h) {
this._updateDisplay(w, h);
},
getLeft: function() {
return this._el.container.style.left.slice(0, -2);
},
getTime: function() { // TODO does this need to know about the end date?
return this.data.start_date.getTime();
},
getEndTime: function() {
if (this.data.end_date) {
return this.data.end_date.getTime();
} else {
return false;
}
},
setHeight: function(h) {
var text_line_height = 12,
text_lines = 1;
this._el.content_container.style.height = h + "px";
this._el.content.className = "tl-timeera-content";
// Handle number of lines visible vertically
if (TL.Browser.webkit) {
text_lines = Math.floor(h / (text_line_height + 2));
if (text_lines < 1) {
text_lines = 1;
}
this._text.className = "tl-headline";
this._text.style.webkitLineClamp = text_lines;
} else {
text_lines = h / text_line_height;
if (text_lines > 1) {
this._text.className = "tl-headline tl-headline-fadeout";
} else {
this._text.className = "tl-headline";
}
this._text.style.height = (text_lines * text_line_height) + "px";
}
},
setWidth: function(w) {
if (this.data.end_date) {
this._el.container.style.width = w + "px";
if (w > this.options.marker_width_min) {
this._el.content_container.style.width = w + "px";
this._el.content_container.className = "tl-timeera-content-container tl-timeera-content-container-long";
} else {
this._el.content_container.style.width = this.options.marker_width_min + "px";
this._el.content_container.className = "tl-timeera-content-container";
}
}
},
setClass: function(n) {
this._el.container.className = n;
},
setRowPosition: function(n, remainder) {
this.setPosition({top:n});
if (remainder < 56) {
//TL.DomUtil.removeClass(this._el.content_container, "tl-timeera-content-container-small");
}
},
setColor: function(color_num) {
this._el.container.className = 'tl-timeera tl-timeera-color' + color_num;
},
/* Events
================================================== */
/* Private Methods
================================================== */
_initLayout: function () {
//trace(this.data)
// Create Layout
this._el.container = TL.Dom.create("div", "tl-timeera");
if (this.data.unique_id) {
this._el.container.id = this.data.unique_id + "-era";
}
if (this.data.end_date) {
this.has_end_date = true;
this._el.container.className = 'tl-timeera tl-timeera-with-end';
}
this._el.content_container = TL.Dom.create("div", "tl-timeera-content-container", this._el.container);
this._el.background = TL.Dom.create("div", "tl-timeera-background", this._el.content_container);
this._el.content = TL.Dom.create("div", "tl-timeera-content", this._el.content_container);
// Text
this._el.text = TL.Dom.create("div", "tl-timeera-text", this._el.content);
this._text = TL.Dom.create("h2", "tl-headline", this._el.text);
if (this.data.text.headline && this.data.text.headline != "") {
this._text.innerHTML = TL.Util.unlinkify(this.data.text.headline);
}
// Fire event that the slide is loaded
this.onLoaded();
},
_initEvents: function() {
},
// Update Display
_updateDisplay: function(width, height, layout) {
if (width) {
this.options.width = width;
}
if (height) {
this.options.height = height;
}
}
});
/* **********************************************
Begin TL.TimeGroup.js
********************************************** */
/* TL.TimeGroup
================================================== */
TL.TimeGroup = TL.Class.extend({
includes: [TL.Events, TL.DomMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(data) {
// DOM ELEMENTS
this._el = {
parent: {},
container: {},
message: {}
};
//Options
this.options = {
width: 600,
height: 600
};
// Data
this.data = {
label: "",
rows: 1
};
this._el.container = TL.Dom.create("div", "tl-timegroup");
// Merge Data
TL.Util.mergeData(this.data, data);
// Animation
this.animator = {};
this._initLayout();
this._initEvents();
},
/* Public
================================================== */
/* Update Display
================================================== */
updateDisplay: function(w, h) {
},
setRowPosition: function(n, h) {
// trace(n);
// trace(this._el.container)
this.options.height = h * this.data.rows;
this.setPosition({top:n});
this._el.container.style.height = this.options.height + "px";
},
setAlternateRowColor: function(alternate, hide) {
var class_name = "tl-timegroup";
if (alternate) {
class_name += " tl-timegroup-alternate";
}
if (hide) {
class_name += " tl-timegroup-hidden";
}
this._el.container.className = class_name;
},
/* Events
================================================== */
_onMouseClick: function() {
this.fire("clicked", this.options);
},
/* Private Methods
================================================== */
_initLayout: function () {
// Create Layout
this._el.message = TL.Dom.create("div", "tl-timegroup-message", this._el.container);
this._el.message.innerHTML = this.data.label;
},
_initEvents: function () {
TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
},
// Update Display
_updateDisplay: function(width, height, animate) {
}
});
/* **********************************************
Begin TL.TimeScale.js
********************************************** */
/* TL.TimeScale
Strategies for laying out the timenav
make a new one if the slides change
TODOS: deal with clustering
================================================== */
TL.TimeScale = TL.Class.extend({
initialize: function (timeline_config, options) {
var slides = timeline_config.events;
this._scale = timeline_config.scale;
options = TL.Util.mergeData({ // establish defaults
display_width: 500,
screen_multiplier: 3,
max_rows: null
}, options);
this._display_width = options.display_width;
this._screen_multiplier = options.screen_multiplier;
this._pixel_width = this._screen_multiplier * this._display_width;
this._group_labels = undefined;
this._positions = [];
this._pixels_per_milli = 0;
this._earliest = timeline_config.getEarliestDate().getTime();
this._latest = timeline_config.getLatestDate().getTime();
this._span_in_millis = this._latest - this._earliest;
if (this._span_in_millis <= 0) {
this._span_in_millis = this._computeDefaultSpan(timeline_config);
}
this._average = (this._span_in_millis)/slides.length;
this._pixels_per_milli = this.getPixelWidth() / this._span_in_millis;
this._axis_helper = TL.AxisHelper.getBestHelper(this);
this._scaled_padding = (1/this.getPixelsPerTick()) * (this._display_width/2)
this._computePositionInfo(slides, options.max_rows);
},
_computeDefaultSpan: function(timeline_config) {
// this gets called when all events are at the same instant,
// or maybe when the span_in_millis is > 0 but still below a desired threshold
// TODO: does this need smarts about eras?
if (timeline_config.scale == 'human') {
var formats = {}
for (var i = 0; i < timeline_config.events.length; i++) {
var fmt = timeline_config.events[i].start_date.findBestFormat();
formats[fmt] = (formats[fmt]) ? formats[fmt] + 1 : 1;
};
for (var i = TL.Date.SCALES.length - 1; i >= 0; i--) {
if (formats.hasOwnProperty(TL.Date.SCALES[i][0])) {
var scale = TL.Date.SCALES[TL.Date.SCALES.length - 1]; // default
if (TL.Date.SCALES[i+1]) {
scale = TL.Date.SCALES[i+1]; // one larger than the largest in our data
}
return scale[1]
}
};
return 365 * 24 * 60 * 60 * 1000; // default to a year?
}
return 200000; // what is the right handling for cosmo dates?
},
getGroupLabels: function() { /*
return an array of objects, one per group, in the order (top to bottom) that the groups are expected to appear. Each object will have two properties:
* label (the string as specified in one or more 'group' properties of events in the configuration)
* rows (the number of rows occupied by events associated with the label. )
*/
return (this._group_labels || []);
},
getScale: function() {
return this._scale;
},
getNumberOfRows: function() {
return this._number_of_rows
},
getPixelWidth: function() {
return this._pixel_width;
},
getPosition: function(time_in_millis) {
// be careful using millis, as they won't scale to cosmological time.
// however, we're moving to make the arg to this whatever value
// comes from TL.Date.getTime() which could be made smart about that --
// so it may just be about the naming.
return ( time_in_millis - this._earliest ) * this._pixels_per_milli
},
getPositionInfo: function(idx) {
return this._positions[idx];
},
getPixelsPerTick: function() {
return this._axis_helper.getPixelsPerTick(this._pixels_per_milli);
},
getTicks: function() {
return {
major: this._axis_helper.getMajorTicks(this),
minor: this._axis_helper.getMinorTicks(this) }
},
getDateFromTime: function(t) {
if(this._scale == 'human') {
return new TL.Date(t);
} else if(this._scale == 'cosmological') {
return new TL.BigDate(new TL.BigYear(t));
}
throw new TL.Error("time_scale_scale_err", this._scale);
},
getMajorScale: function() {
return this._axis_helper.major.name;
},
getMinorScale: function() {
return this._axis_helper.minor.name;
},
_assessGroups: function(slides) {
var groups = [];
var empty_group = false;
for (var i = 0; i < slides.length; i++) {
if(slides[i].group) {
if(groups.indexOf(slides[i].group) < 0) {
groups.push(slides[i].group);
} else {
empty_group = true;
}
}
};
if (groups.length && empty_group) {
groups.push('');
}
return groups;
},
/* Compute the marker row positions, minimizing the number of
overlaps.
@positions = list of objects from this._positions
@rows_left = number of rows available (assume > 0)
*/
_computeRowInfo: function(positions, rows_left) {
var lasts_in_row = [];
var n_overlaps = 0;
for (var i = 0; i < positions.length; i++) {
var pos_info = positions[i];
var overlaps = [];
// See if we can add item to an existing row without
// overlapping the previous item in that row
delete pos_info.row;
for (var j = 0; j < lasts_in_row.length; j++) {
overlaps.push(lasts_in_row[j].end - pos_info.start);
if(overlaps[j] <= 0) {
pos_info.row = j;
lasts_in_row[j] = pos_info;
break;
}
}
// If we couldn't add to an existing row without overlap...
if (typeof(pos_info.row) == 'undefined') {
if (rows_left === null) {
// Make a new row
pos_info.row = lasts_in_row.length;
lasts_in_row.push(pos_info);
} else if (rows_left > 0) {
// Make a new row
pos_info.row = lasts_in_row.length;
lasts_in_row.push(pos_info);
rows_left--;
} else {
// Add to existing row with minimum overlap.
var min_overlap = Math.min.apply(null, overlaps);
var idx = overlaps.indexOf(min_overlap);
pos_info.row = idx;
if (pos_info.end > lasts_in_row[idx].end) {
lasts_in_row[idx] = pos_info;
}
n_overlaps++;
}
}
}
return {n_rows: lasts_in_row.length, n_overlaps: n_overlaps};
},
/* Compute marker positions. If using groups, this._number_of_rows
will never be less than the number of groups.
@max_rows = total number of available rows
@default_marker_width should be in pixels
*/
_computePositionInfo: function(slides, max_rows, default_marker_width) {
default_marker_width = default_marker_width || 100;
var groups = [];
var empty_group = false;
// Set start/end/width; enumerate groups
for (var i = 0; i < slides.length; i++) {
var pos_info = {
start: this.getPosition(slides[i].start_date.getTime())
};
this._positions.push(pos_info);
if (typeof(slides[i].end_date) != 'undefined') {
var end_pos = this.getPosition(slides[i].end_date.getTime());
pos_info.width = end_pos - pos_info.start;
if (pos_info.width > default_marker_width) {
pos_info.end = pos_info.start + pos_info.width;
} else {
pos_info.end = pos_info.start + default_marker_width;
}
} else {
pos_info.width = default_marker_width;
pos_info.end = pos_info.start + default_marker_width;
}
if(slides[i].group) {
if(groups.indexOf(slides[i].group) < 0) {
groups.push(slides[i].group);
}
} else {
empty_group = true;
}
}
if(!(groups.length)) {
var result = this._computeRowInfo(this._positions, max_rows);
this._number_of_rows = result.n_rows;
} else {
if(empty_group) {
groups.push("");
}
// Init group info
var group_info = [];
for(var i = 0; i < groups.length; i++) {
group_info[i] = {
label: groups[i],
idx: i,
positions: [],
n_rows: 1, // default
n_overlaps: 0
};
}
for(var i = 0; i < this._positions.length; i++) {
var pos_info = this._positions[i];
pos_info.group = groups.indexOf(slides[i].group || "");
pos_info.row = 0;
var gi = group_info[pos_info.group];
for(var j = gi.positions.length - 1; j >= 0; j--) {
if(gi.positions[j].end > pos_info.start) {
gi.n_overlaps++;
}
}
gi.positions.push(pos_info);
}
var n_rows = groups.length; // start with 1 row per group
while(true) {
// Count free rows available
var rows_left = Math.max(0, max_rows - n_rows);
if(!rows_left) {
break; // no free rows, nothing to do
}
// Sort by # overlaps, idx
group_info.sort(function(a, b) {
if(a.n_overlaps > b.n_overlaps) {
return -1;
} else if(a.n_overlaps < b.n_overlaps) {
return 1;
}
return a.idx - b.idx;
});
if(!group_info[0].n_overlaps) {
break; // no overlaps, nothing to do
}
// Distribute free rows among groups with overlaps
var n_rows = 0;
for(var i = 0; i < group_info.length; i++) {
var gi = group_info[i];
if(gi.n_overlaps && rows_left) {
var res = this._computeRowInfo(gi.positions, gi.n_rows + 1);
gi.n_rows = res.n_rows; // update group info
gi.n_overlaps = res.n_overlaps;
rows_left--; // update rows left
}
n_rows += gi.n_rows; // update rows used
}
}
// Set number of rows
this._number_of_rows = n_rows;
// Set group labels; offset row positions
this._group_labels = [];
group_info.sort(function(a, b) {return a.idx - b.idx; });
for(var i = 0, row_offset = 0; i < group_info.length; i++) {
this._group_labels.push({
label: group_info[i].label,
rows: group_info[i].n_rows
});
for(var j = 0; j < group_info[i].positions.length; j++) {
var pos_info = group_info[i].positions[j];
pos_info.row += row_offset;
}
row_offset += group_info[i].n_rows;
}
}
}
});
/* **********************************************
Begin TL.TimeAxis.js
********************************************** */
/* TL.TimeAxis
Display element for showing timescale ticks
================================================== */
TL.TimeAxis = TL.Class.extend({
includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
_el: {},
/* Constructor
================================================== */
initialize: function(elem, options) {
// DOM Elements
this._el = {
container: {},
content_container: {},
major: {},
minor: {},
};
// Components
this._text = {};
// State
this._state = {
loaded: false
};
// Data
this.data = {};
// Options
this.options = {
duration: 1000,
ease: TL.Ease.easeInSpline,
width: 600,
height: 600
};
// Actively Displaying
this.active = false;
// Animation Object
this.animator = {};
// Axis Helper
this.axis_helper = {};
// Minor tick dom element array
this.minor_ticks = [];
// Minor tick dom element array
this.major_ticks = [];
// Date Format Lookup, map TL.Date.SCALES names to...
this.dateformat_lookup = {
millisecond: 'time_milliseconds', // ...TL.Language.<code>.dateformats
second: 'time_short',
minute: 'time_no_seconds_short',
hour: 'time_no_minutes_short',
day: 'full_short',
month: 'month_short',
year: 'year',
decade: 'year',
century: 'year',
millennium: 'year',
age: 'compact', // ...TL.Language.<code>.bigdateformats
epoch: 'compact',
era: 'compact',
eon: 'compact',
eon2: 'compact'
}
// Main element
if (typeof elem === 'object') {
this._el.container = elem;
} else {
this._el.container = TL.Dom.get(elem);
}
// Merge Data and Options
TL.Util.mergeData(this.options, options);
this._initLayout();
this._initEvents();
},
/* Adding, Hiding, Showing etc
================================================== */
show: function() {
},
hide: function() {
},
addTo: function(container) {
container.appendChild(this._el.container);
},
removeFrom: function(container) {
container.removeChild(this._el.container);
},
updateDisplay: function(w, h) {
this._updateDisplay(w, h);
},
getLeft: function() {
return this._el.container.style.left.slice(0, -2);
},
drawTicks: function(timescale, optimal_tick_width) {
var ticks = timescale.getTicks();
var controls = {
minor: {
el: this._el.minor,
dateformat: this.dateformat_lookup[ticks['minor'].name],
ts_ticks: ticks['minor'].ticks,
tick_elements: this.minor_ticks
},
major: {
el: this._el.major,
dateformat: this.dateformat_lookup[ticks['major'].name],
ts_ticks: ticks['major'].ticks,
tick_elements: this.major_ticks
}
}
// FADE OUT
this._el.major.className = "tl-timeaxis-major";
this._el.minor.className = "tl-timeaxis-minor";
this._el.major.style.opacity = 0;
this._el.minor.style.opacity = 0;
// CREATE MAJOR TICKS
this.major_ticks = this._createTickElements(
ticks['major'].ticks,
this._el.major,
this.dateformat_lookup[ticks['major'].name]
);
// CREATE MINOR TICKS
this.minor_ticks = this._createTickElements(
ticks['minor'].ticks,
this._el.minor,
this.dateformat_lookup[ticks['minor'].name],
ticks['major'].ticks
);
this.positionTicks(timescale, optimal_tick_width, true);
// FADE IN
this._el.major.className = "tl-timeaxis-major tl-animate-opacity tl-timeaxis-animate-opacity";
this._el.minor.className = "tl-timeaxis-minor tl-animate-opacity tl-timeaxis-animate-opacity";
this._el.major.style.opacity = 1;
this._el.minor.style.opacity = 1;
},
_createTickElements: function(ts_ticks,tick_element,dateformat,ticks_to_skip) {
tick_element.innerHTML = "";
var skip_times = {}
if (ticks_to_skip){
for (var i = 0; i < ticks_to_skip.length; i++) {
skip_times[ticks_to_skip[i].getTime()] = true;
}
}
var tick_elements = []
for (var i = 0; i < ts_ticks.length; i++) {
var ts_tick = ts_ticks[i];
if (!(ts_tick.getTime() in skip_times)) {
var tick = TL.Dom.create("div", "tl-timeaxis-tick", tick_element),
tick_text = TL.Dom.create("span", "tl-timeaxis-tick-text tl-animate-opacity", tick);
tick_text.innerHTML = ts_tick.getDisplayDate(this.getLanguage(), dateformat);
tick_elements.push({
tick:tick,
tick_text:tick_text,
display_date:ts_tick.getDisplayDate(this.getLanguage(), dateformat),
date:ts_tick
});
}
}
return tick_elements;
},
positionTicks: function(timescale, optimal_tick_width, no_animate) {
// Handle Animation
if (no_animate) {
this._el.major.className = "tl-timeaxis-major";
this._el.minor.className = "tl-timeaxis-minor";
} else {
this._el.major.className = "tl-timeaxis-major tl-timeaxis-animate";
this._el.minor.className = "tl-timeaxis-minor tl-timeaxis-animate";
}
this._positionTickArray(this.major_ticks, timescale, optimal_tick_width);
this._positionTickArray(this.minor_ticks, timescale, optimal_tick_width);
},
_positionTickArray: function(tick_array, timescale, optimal_tick_width) {
// Poition Ticks & Handle density of ticks
if (tick_array[1] && tick_array[0]) {
var distance = ( timescale.getPosition(tick_array[1].date.getMillisecond()) - timescale.getPosition(tick_array[0].date.getMillisecond()) ),
fraction_of_array = 1;
if (distance < optimal_tick_width) {
fraction_of_array = Math.round(optimal_tick_width/timescale.getPixelsPerTick());
}
var show = 1;
for (var i = 0; i < tick_array.length; i++) {
var tick = tick_array[i];
// Poition Ticks
tick.tick.style.left = timescale.getPosition(tick.date.getMillisecond()) + "px";
tick.tick_text.innerHTML = tick.display_date;
// Handle density of ticks
if (fraction_of_array > 1) {
if (show >= fraction_of_array) {
show = 1;
tick.tick_text.style.opacity = 1;
tick.tick.className = "tl-timeaxis-tick";
} else {
show++;
tick.tick_text.style.opacity = 0;
tick.tick.className = "tl-timeaxis-tick tl-timeaxis-tick-hidden";
}
} else {
tick.tick_text.style.opacity = 1;
tick.tick.className = "tl-timeaxis-tick";
}
};
}
},
/* Events
================================================== */
/* Private Methods
================================================== */
_initLayout: function () {
this._el.content_container = TL.Dom.create("div", "tl-timeaxis-content-container", this._el.container);
this._el.major = TL.Dom.create("div", "tl-timeaxis-major", this._el.content_container);
this._el.minor = TL.Dom.create("div", "tl-timeaxis-minor", this._el.content_container);
// Fire event that the slide is loaded
this.onLoaded();
},
_initEvents: function() {
},
// Update Display
_updateDisplay: function(width, height, layout) {
if (width) {
this.options.width = width;
}
if (height) {
this.options.height = height;
}
}
});
/* **********************************************
Begin TL.AxisHelper.js
********************************************** */
/* TL.AxisHelper
Strategies for laying out the timenav
markers and time axis
Intended as a private class -- probably only known to TimeScale
================================================== */
TL.AxisHelper = TL.Class.extend({
initialize: function (options) {
if (options) {
this.scale = options.scale;
this.minor = options.minor;
this.major = options.major;
} else {
throw new TL.Error("axis_helper_no_options_err")
}
},
getPixelsPerTick: function(pixels_per_milli) {
return pixels_per_milli * this.minor.factor;
},
getMajorTicks: function(timescale) {
return this._getTicks(timescale, this.major)
},
getMinorTicks: function(timescale) {
return this._getTicks(timescale, this.minor)
},
_getTicks: function(timescale, option) {
var factor_scale = timescale._scaled_padding * option.factor;
var first_tick_time = timescale._earliest - factor_scale;
var last_tick_time = timescale._latest + factor_scale;
var ticks = []
for (var i = first_tick_time; i < last_tick_time; i += option.factor) {
ticks.push(timescale.getDateFromTime(i).floor(option.name));
}
return {
name: option.name,
ticks: ticks
}
}
});
(function(cls){ // add some class-level behavior
var HELPERS = {};
var setHelpers = function(scale_type, scales) {
HELPERS[scale_type] = [];
for (var idx = 0; idx < scales.length - 1; idx++) {
var minor = scales[idx];
var major = scales[idx+1];
HELPERS[scale_type].push(new cls({
scale: minor[3],
minor: { name: minor[0], factor: minor[1]},
major: { name: major[0], factor: major[1]}
}));
}
};
setHelpers('human', TL.Date.SCALES);
setHelpers('cosmological', TL.BigDate.SCALES);
cls.HELPERS = HELPERS;
cls.getBestHelper = function(ts,optimal_tick_width) {
if (typeof(optimal_tick_width) != 'number' ) {
optimal_tick_width = 100;
}
var ts_scale = ts.getScale();
var helpers = HELPERS[ts_scale];
if (!helpers) {
throw new TL.Error("axis_helper_scale_err", ts_scale);
}
var prev = null;
for (var idx = 0; idx < helpers.length; idx++) {
var curr = helpers[idx];
var pixels_per_tick = curr.getPixelsPerTick(ts._pixels_per_milli);
if (pixels_per_tick > optimal_tick_width) {
if (prev == null) return curr;
var curr_dist = Math.abs(optimal_tick_width - pixels_per_tick);
var prev_dist = Math.abs(optimal_tick_width - pixels_per_tick);
if (curr_dist < prev_dist) {
return curr;
} else {
return prev;
}
}
prev = curr;
}
return helpers[helpers.length - 1]; // last resort
}
})(TL.AxisHelper);
/* **********************************************
Begin TL.Timeline.js
********************************************** */
/* TimelineJS
Designed and built by Zach Wise at KnightLab
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
================================================== */
/*
TODO
*/
/* Required Files
CodeKit Import
https://incident57.com/codekit/
================================================== */
// CORE
// @codekit-prepend "core/TL.js";
// @codekit-prepend "core/TL.Error.js";
// @codekit-prepend "core/TL.Util.js";
// @codekit-prepend "data/TL.Data.js";
// @codekit-prepend "core/TL.Class.js";
// @codekit-prepend "core/TL.Events.js";
// @codekit-prepend "core/TL.Browser.js";
// @codekit-prepend "core/TL.Load.js";
// @codekit-prepend "core/TL.TimelineConfig.js";
// @codekit-prepend "core/TL.ConfigFactory.js";
// LANGUAGE
// @codekit-prepend "language/TL.Language.js";
// @codekit-prepend "language/TL.I18NMixins.js";
// ANIMATION
// @codekit-prepend "animation/TL.Ease.js";
// @codekit-prepend "animation/TL.Animate.js";
// DOM
// @codekit-prepend "dom/TL.Point.js";
// @codekit-prepend "dom/TL.DomMixins.js";
// @codekit-prepend "dom/TL.Dom.js";
// @codekit-prepend "dom/TL.DomUtil.js";
// @codekit-prepend "dom/TL.DomEvent.js";
// @codekit-prepend "dom/TL.StyleSheet.js";
// Date
// @codekit-prepend "date/TL.Date.js";
// @codekit-prepend "date/TL.DateUtil.js";
// UI
// @codekit-prepend "ui/TL.Draggable.js";
// @codekit-prepend "ui/TL.Swipable.js";
// @codekit-prepend "ui/TL.MenuBar.js";
// @codekit-prepend "ui/TL.Message.js";
// MEDIA
// @codekit-prepend "media/TL.MediaType.js";
// @codekit-prepend "media/TL.Media.js";
// MEDIA TYPES
// @codekit-prepend "media/types/TL.Media.Blockquote.js";
// @codekit-prepend "media/types/TL.Media.DailyMotion.js";
// @codekit-prepend "media/types/TL.Media.DocumentCloud.js";
// @codekit-prepend "media/types/TL.Media.Flickr.js";
// @codekit-prepend "media/types/TL.Media.GoogleDoc.js";
// @codekit-prepend "media/types/TL.Media.GooglePlus.js";
// @codekit-prepend "media/types/TL.Media.IFrame.js";
// @codekit-prepend "media/types/TL.Media.Image.js";
// @codekit-prepend "media/types/TL.Media.Imgur.js";
// @codekit-prepend "media/types/TL.Media.Instagram.js";
// @codekit-prepend "media/types/TL.Media.GoogleMap.js";
// @codekit-prepend "media/types/TL.Media.PDF.js";
// @codekit-prepend "media/types/TL.Media.Profile.js";
// @codekit-prepend "media/types/TL.Media.Slider.js";
// @codekit-prepend "media/types/TL.Media.SoundCloud.js";
// @codekit-prepend "media/types/TL.Media.Spotify.js";
// @codekit-prepend "media/types/TL.Media.Storify.js";
// @codekit-prepend "media/types/TL.Media.Text.js";
// @codekit-prepend "media/types/TL.Media.Twitter.js";
// @codekit-prepend "media/types/TL.Media.TwitterEmbed.js";
// @codekit-prepend "media/types/TL.Media.Vimeo.js";
// @codekit-prepend "media/types/TL.Media.Vine.js";
// @codekit-prepend "media/types/TL.Media.Website.js";
// @codekit-prepend "media/types/TL.Media.Wikipedia.js";
// @codekit-prepend "media/types/TL.Media.YouTube.js";
// STORYSLIDER
// @codekit-prepend "slider/TL.Slide.js";
// @codekit-prepend "slider/TL.SlideNav.js";
// @codekit-prepend "slider/TL.StorySlider.js";
// TIMENAV
// @codekit-prepend "timenav/TL.TimeNav.js";
// @codekit-prepend "timenav/TL.TimeMarker.js";
// @codekit-prepend "timenav/TL.TimeEra.js";
// @codekit-prepend "timenav/TL.TimeGroup.js";
// @codekit-prepend "timenav/TL.TimeScale.js";
// @codekit-prepend "timenav/TL.TimeAxis.js";
// @codekit-prepend "timenav/TL.AxisHelper.js";
TL.Timeline = TL.Class.extend({
includes: [TL.Events, TL.I18NMixins],
/* Private Methods
================================================== */
initialize: function (elem, data, options) {
var self = this;
if (!options) { options = {}};
// Version
this.version = "3.2.6";
// Ready
this.ready = false;
// DOM ELEMENTS
this._el = {
container: {},
storyslider: {},
timenav: {},
menubar: {}
};
// Determine Container Element
if (typeof elem === 'object') {
this._el.container = elem;
} else {
this._el.container = TL.Dom.get(elem);
}
// Slider
this._storyslider = {};
// Style Sheet
this._style_sheet = new TL.StyleSheet();
// TimeNav
this._timenav = {};
// Menu Bar
this._menubar = {};
// Loaded State
this._loaded = {storyslider:false, timenav:false};
// Data Object
this.config = null;
this.options = {
script_path: "",
height: this._el.container.offsetHeight,
width: this._el.container.offsetWidth,
debug: false,
is_embed: false,
is_full_embed: false,
hash_bookmark: false,
default_bg_color: {r:255, g:255, b:255},
scale_factor: 2, // How many screen widths wide should the timeline be
layout: "landscape", // portrait or landscape
timenav_position: "bottom", // timeline on top or bottom
optimal_tick_width: 60, // optimal distance (in pixels) between ticks on axis
base_class: "tl-timeline", // removing tl-timeline will break all default stylesheets...
timenav_height: null,
timenav_height_percentage: 25, // Overrides timenav height as a percentage of the screen
timenav_mobile_height_percentage: 40, // timenav height as a percentage on mobile devices
timenav_height_min: 175, // Minimum timenav height
marker_height_min: 30, // Minimum Marker Height
marker_width_min: 100, // Minimum Marker Width
marker_padding: 5, // Top Bottom Marker Padding
start_at_slide: 0,
start_at_end: false,
menubar_height: 0,
skinny_size: 650,
medium_size: 800,
relative_date: false, // Use momentjs to show a relative date from the slide.text.date.created_time field
use_bc: false, // Use declared suffix on dates earlier than 0
// animation
duration: 1000,
ease: TL.Ease.easeInOutQuint,
// interaction
dragging: true,
trackResize: true,
map_type: "stamen:toner-lite",
slide_padding_lr: 100, // padding on slide of slide
slide_default_fade: "0%", // landscape fade
zoom_sequence: [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89], // Array of Fibonacci numbers for TimeNav zoom levels
language: "en",
ga_property_id: null,
track_events: ['back_to_start','nav_next','nav_previous','zoom_in','zoom_out' ]
};
// Animation Objects
this.animator_timenav = null;
this.animator_storyslider = null;
this.animator_menubar = null;
// Add message to DOM
this.message = new TL.Message({}, {message_class: "tl-message-full"}, this._el.container);
// Merge Options
if (typeof(options.default_bg_color) == "string") {
var parsed = TL.Util.hexToRgb(options.default_bg_color); // will clear it out if its invalid
if (parsed) {
options.default_bg_color = parsed;
} else {
delete options.default_bg_color
trace("Invalid default background color. Ignoring.");
}
}
TL.Util.mergeData(this.options, options);
window.addEventListener("resize", function(e){
self.updateDisplay();
});
// Set Debug Mode
TL.debug = this.options.debug;
// Apply base class to container
TL.DomUtil.addClass(this._el.container, 'tl-timeline');
if (this.options.is_embed) {
TL.DomUtil.addClass(this._el.container, 'tl-timeline-embed');
}
if (this.options.is_full_embed) {
TL.DomUtil.addClass(this._el.container, 'tl-timeline-full-embed');
}
// Use Relative Date Calculations
// NOT YET IMPLEMENTED
if(this.options.relative_date) {
if (typeof(moment) !== 'undefined') {
self._loadLanguage(data);
} else {
TL.Load.js(this.options.script_path + "/library/moment.js", function() {
self._loadLanguage(data);
trace("LOAD MOMENTJS")
});
}
} else {
self._loadLanguage(data);
}
},
_translateError: function(e) {
if(e.hasOwnProperty('stack')) {
trace(e.stack);
}
if(e.message_key) {
return this._(e.message_key) + (e.detail ? ' [' + e.detail +']' : '')
}
return e;
},
/* Load Language
================================================== */
_loadLanguage: function(data) {
try {
this.options.language = new TL.Language(this.options);
this._initData(data);
} catch(e) {
this.showMessage(this._translateError(e));
}
},
/* Navigation
================================================== */
// Goto slide with id
goToId: function(id) {
if (this.current_id != id) {
this.current_id = id;
this._timenav.goToId(this.current_id);
this._storyslider.goToId(this.current_id, false, true);
this.fire("change", {unique_id: this.current_id}, this);
}
},
// Goto slide n
goTo: function(n) {
if(this.config.title) {
if(n == 0) {
this.goToId(this.config.title.unique_id);
} else {
this.goToId(this.config.events[n - 1].unique_id);
}
} else {
this.goToId(this.config.events[n].unique_id);
}
},
// Goto first slide
goToStart: function() {
this.goTo(0);
},
// Goto last slide
goToEnd: function() {
var _n = this.config.events.length - 1;
this.goTo(this.config.title ? _n + 1 : _n);
},
// Goto previous slide
goToPrev: function() {
this.goTo(this._getSlideIndex(this.current_id) - 1);
},
// Goto next slide
goToNext: function() {
this.goTo(this._getSlideIndex(this.current_id) + 1);
},
/* Event maniupluation
================================================== */
// Add an event
add: function(data) {
var unique_id = this.config.addEvent(data);
var n = this._getEventIndex(unique_id);
var d = this.config.events[n];
this._storyslider.createSlide(d, this.config.title ? n+1 : n);
this._storyslider._updateDrawSlides();
this._timenav.createMarker(d, n);
this._timenav._updateDrawTimeline(false);
this.fire("added", {unique_id: unique_id});
},
// Remove an event
remove: function(n) {
if(n >= 0 && n < this.config.events.length) {
// If removing the current, nav to new one first
if(this.config.events[n].unique_id == this.current_id) {
if(n < this.config.events.length - 1) {
this.goTo(n + 1);
} else {
this.goTo(n - 1);
}
}
var event = this.config.events.splice(n, 1);
delete this.config.event_dict[event[0].unique_id];
this._storyslider.destroySlide(this.config.title ? n+1 : n);
this._storyslider._updateDrawSlides();
this._timenav.destroyMarker(n);
this._timenav._updateDrawTimeline(false);
this.fire("removed", {unique_id: event[0].unique_id});
}
},
removeId: function(id) {
this.remove(this._getEventIndex(id));
},
/* Get slide data
================================================== */
getData: function(n) {
if(this.config.title) {
if(n == 0) {
return this.config.title;
} else if(n > 0 && n <= this.config.events.length) {
return this.config.events[n - 1];
}
} else if(n >= 0 && n < this.config.events.length) {
return this.config.events[n];
}
return null;
},
getDataById: function(id) {
return this.getData(this._getSlideIndex(id));
},
/* Get slide object
================================================== */
getSlide: function(n) {
if(n >= 0 && n < this._storyslider._slides.length) {
return this._storyslider._slides[n];
}
return null;
},
getSlideById: function(id) {
return this.getSlide(this._getSlideIndex(id));
},
getCurrentSlide: function() {
return this.getSlideById(this.current_id);
},
/* Display
================================================== */
updateDisplay: function() {
if (this.ready) {
this._updateDisplay();
}
},
/*
Compute the height of the navigation section of the Timeline, taking into account
the possibility of an explicit height or height percentage, but also honoring the
`timenav_height_min` option value. If `timenav_height` is specified it takes precedence over `timenav_height_percentage` but in either case, if the resultant pixel height is less than `options.timenav_height_min` then the value of `options.timenav_height_min` will be returned. (A minor adjustment is made to the returned value to account for marker padding.)
Arguments:
@timenav_height (optional): an integer value for the desired height in pixels
@timenav_height_percentage (optional): an integer between 1 and 100
*/
_calculateTimeNavHeight: function(timenav_height, timenav_height_percentage) {
var height = 0;
if (timenav_height) {
height = timenav_height;
} else {
if (this.options.timenav_height_percentage || timenav_height_percentage) {
if (timenav_height_percentage) {
height = Math.round((this.options.height/100)*timenav_height_percentage);
} else {
height = Math.round((this.options.height/100)*this.options.timenav_height_percentage);
}
}
}
// Set new minimum based on how many rows needed
if (this._timenav.ready) {
if (this.options.timenav_height_min < this._timenav.getMinimumHeight()) {
this.options.timenav_height_min = this._timenav.getMinimumHeight();
}
}
// If height is less than minimum set it to minimum
if (height < this.options.timenav_height_min) {
height = this.options.timenav_height_min;
}
height = height - (this.options.marker_padding * 2);
return height;
},
/* Private Methods
================================================== */
// Update View
_updateDisplay: function(timenav_height, animate, d) {
var duration = this.options.duration,
display_class = this.options.base_class,
menu_position = 0,
self = this;
if (d) {
duration = d;
}
// Update width and height
this.options.width = this._el.container.offsetWidth;
this.options.height = this._el.container.offsetHeight;
// Check if skinny
if (this.options.width <= this.options.skinny_size) {
display_class += " tl-skinny";
this.options.layout = "portrait";
} else if (this.options.width <= this.options.medium_size) {
display_class += " tl-medium";
this.options.layout = "landscape";
} else {
this.options.layout = "landscape";
}
// Detect Mobile and Update Orientation on Touch devices
if (TL.Browser.touch) {
this.options.layout = TL.Browser.orientation();
}
if (TL.Browser.mobile) {
display_class += " tl-mobile";
// Set TimeNav Height
this.options.timenav_height = this._calculateTimeNavHeight(timenav_height, this.options.timenav_mobile_height_percentage);
} else {
// Set TimeNav Height
this.options.timenav_height = this._calculateTimeNavHeight(timenav_height);
}
// LAYOUT
if (this.options.layout == "portrait") {
// Portrait
display_class += " tl-layout-portrait";
} else {
// Landscape
display_class += " tl-layout-landscape";
}
// Set StorySlider Height
this.options.storyslider_height = (this.options.height - this.options.timenav_height);
// Positon Menu
if (this.options.timenav_position == "top") {
menu_position = ( Math.ceil(this.options.timenav_height)/2 ) - (this._el.menubar.offsetHeight/2) - (39/2) ;
} else {
menu_position = Math.round(this.options.storyslider_height + 1 + ( Math.ceil(this.options.timenav_height)/2 ) - (this._el.menubar.offsetHeight/2) - (35/2));
}
if (animate) {
// Animate TimeNav
/*
if (this.animator_timenav) {
this.animator_timenav.stop();
}
this.animator_timenav = TL.Animate(this._el.timenav, {
height: (this.options.timenav_height) + "px",
duration: duration/4,
easing: TL.Ease.easeOutStrong,
complete: function () {
//self._map.updateDisplay(self.options.width, self.options.timenav_height, animate, d, self.options.menubar_height);
}
});
*/
this._el.timenav.style.height = Math.ceil(this.options.timenav_height) + "px";
// Animate StorySlider
if (this.animator_storyslider) {
this.animator_storyslider.stop();
}
this.animator_storyslider = TL.Animate(this._el.storyslider, {
height: this.options.storyslider_height + "px",
duration: duration/2,
easing: TL.Ease.easeOutStrong
});
// Animate Menubar
if (this.animator_menubar) {
this.animator_menubar.stop();
}
this.animator_menubar = TL.Animate(this._el.menubar, {
top: menu_position + "px",
duration: duration/2,
easing: TL.Ease.easeOutStrong
});
} else {
// TimeNav
this._el.timenav.style.height = Math.ceil(this.options.timenav_height) + "px";
// StorySlider
this._el.storyslider.style.height = this.options.storyslider_height + "px";
// Menubar
this._el.menubar.style.top = menu_position + "px";
}
if (this.message) {
this.message.updateDisplay(this.options.width, this.options.height);
}
// Update Component Displays
this._timenav.updateDisplay(this.options.width, this.options.timenav_height, animate);
this._storyslider.updateDisplay(this.options.width, this.options.storyslider_height, animate, this.options.layout);
// Apply class
this._el.container.className = display_class;
},
// Update hashbookmark in the url bar
_updateHashBookmark: function(id) {
var hash = "#" + "event-" + id.toString();
if (window.location.protocol != 'file:') {
window.history.replaceState(null, "Browsing TimelineJS", hash);
}
this.fire("hash_updated", {unique_id:this.current_id, hashbookmark:"#" + "event-" + id.toString()}, this);
},
/* Init
================================================== */
// Initialize the data
_initData: function(data) {
var self = this;
if (typeof data == 'string') {
var self = this;
TL.ConfigFactory.makeConfig(data, function(config) {
self.setConfig(config);
});
} else if (TL.TimelineConfig == data.constructor) {
this.setConfig(data);
} else {
this.setConfig(new TL.TimelineConfig(data));
}
},
setConfig: function(config) {
this.config = config;
this.config.validate();
this._validateOptions();
if (this.config.isValid()) {
try {
this._onDataLoaded();
} catch(e) {
this.showMessage("<strong>"+ this._('error') +":</strong> " + this._translateError(e));
}
} else {
var translated_errs = [];
for(var i = 0, errs = this.config.getErrors(); i < errs.length; i++) {
translated_errs.push(this._translateError(errs[i]));
}
this.showMessage("<strong>"+ this._('error') +":</strong> " + translated_errs.join('<br>'));
// should we set 'self.ready'? if not, it won't resize,
// but most resizing would only work
// if more setup happens
}
},
_validateOptions: function() {
// assumes that this.options and this.config have been set.
var INTEGER_PROPERTIES = ['timenav_height', 'timenav_height_min', 'marker_height_min', 'marker_width_min', 'marker_padding', 'start_at_slide', 'slide_padding_lr' ];
for (var i = 0; i < INTEGER_PROPERTIES.length; i++) {
var opt = INTEGER_PROPERTIES[i];
var value = this.options[opt];
valid = true;
if (typeof(value) == 'number') {
valid = (value == parseInt(value))
} else if (typeof(value) == "string") {
valid = (value.match(/^\s*(\-?\d+)?\s*$/));
}
if (!valid) {
this.config.logError({ message_key: 'invalid_integer_option', detail: opt });
}
}
},
// Initialize the layout
_initLayout: function () {
var self = this;
this.message.removeFrom(this._el.container);
this._el.container.innerHTML = "";
// Create Layout
if (this.options.timenav_position == "top") {
this._el.timenav = TL.Dom.create('div', 'tl-timenav', this._el.container);
this._el.storyslider = TL.Dom.create('div', 'tl-storyslider', this._el.container);
} else {
this._el.storyslider = TL.Dom.create('div', 'tl-storyslider', this._el.container);
this._el.timenav = TL.Dom.create('div', 'tl-timenav', this._el.container);
}
this._el.menubar = TL.Dom.create('div', 'tl-menubar', this._el.container);
// Initial Default Layout
this.options.width = this._el.container.offsetWidth;
this.options.height = this._el.container.offsetHeight;
this._el.storyslider.style.top = "1px";
// Set TimeNav Height
this.options.timenav_height = this._calculateTimeNavHeight(this.options.timenav_height);
// Create TimeNav
this._timenav = new TL.TimeNav(this._el.timenav, this.config, this.options);
this._timenav.on('loaded', this._onTimeNavLoaded, this);
this._timenav.on('update_timenav_min', this._updateTimeNavHeightMin, this);
this._timenav.options.height = this.options.timenav_height;
this._timenav.init();
// intial_zoom cannot be applied before the timenav has been created
if (this.options.initial_zoom) {
// at this point, this.options refers to the merged set of options
this.setZoom(this.options.initial_zoom);
}
// Create StorySlider
this._storyslider = new TL.StorySlider(this._el.storyslider, this.config, this.options);
this._storyslider.on('loaded', this._onStorySliderLoaded, this);
this._storyslider.init();
// Create Menu Bar
this._menubar = new TL.MenuBar(this._el.menubar, this._el.container, this.options);
// LAYOUT
if (this.options.layout == "portrait") {
this.options.storyslider_height = (this.options.height - this.options.timenav_height - 1);
} else {
this.options.storyslider_height = (this.options.height - 1);
}
// Update Display
this._updateDisplay(this._timenav.options.height, true, 2000);
},
/* Depends upon _initLayout because these events are on things the layout initializes */
_initEvents: function () {
// TimeNav Events
this._timenav.on('change', this._onTimeNavChange, this);
this._timenav.on('zoomtoggle', this._onZoomToggle, this);
// StorySlider Events
this._storyslider.on('change', this._onSlideChange, this);
this._storyslider.on('colorchange', this._onColorChange, this);
this._storyslider.on('nav_next', this._onStorySliderNext, this);
this._storyslider.on('nav_previous', this._onStorySliderPrevious, this);
// Menubar Events
this._menubar.on('zoom_in', this._onZoomIn, this);
this._menubar.on('zoom_out', this._onZoomOut, this);
this._menubar.on('back_to_start', this._onBackToStart, this);
},
/* Analytics
================================================== */
_initGoogleAnalytics: function() {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', this.options.ga_property_id, 'auto');
},
_initAnalytics: function() {
if (this.options.ga_property_id === null) { return; }
this._initGoogleAnalytics();
ga('send', 'pageview');
var events = this.options.track_events;
for (i=0; i < events.length; i++) {
var event_ = events[i];
this.addEventListener(event_, function(e) {
ga('send', 'event', e.type, 'clicked');
});
}
},
_onZoomToggle: function(e) {
if (e.zoom == "in") {
this._menubar.toogleZoomIn(e.show);
} else if (e.zoom == "out") {
this._menubar.toogleZoomOut(e.show);
}
},
/* Get index of event by id
================================================== */
_getEventIndex: function(id) {
for(var i = 0; i < this.config.events.length; i++) {
if(id == this.config.events[i].unique_id) {
return i;
}
}
return -1;
},
/* Get index of slide by id
================================================== */
_getSlideIndex: function(id) {
if(this.config.title && this.config.title.unique_id == id) {
return 0;
}
for(var i = 0; i < this.config.events.length; i++) {
if(id == this.config.events[i].unique_id) {
return this.config.title ? i+1 : i;
}
}
return -1;
},
/* Events
================================================== */
_onDataLoaded: function(e) {
this.fire("dataloaded");
this._initLayout();
this._initEvents();
this._initAnalytics();
if (this.message) {
this.message.hide();
}
this.ready = true;
},
showMessage: function(msg) {
if (this.message) {
this.message.updateMessage(msg);
} else {
trace("No message display available.")
trace(msg);
}
},
_onColorChange: function(e) {
this.fire("color_change", {unique_id:this.current_id}, this);
if (e.color || e.image) {
} else {
}
},
_onSlideChange: function(e) {
if (this.current_id != e.unique_id) {
this.current_id = e.unique_id;
this._timenav.goToId(this.current_id);
this._onChange(e);
}
},
_onTimeNavChange: function(e) {
if (this.current_id != e.unique_id) {
this.current_id = e.unique_id;
this._storyslider.goToId(this.current_id);
this._onChange(e);
}
},
_onChange: function(e) {
this.fire("change", {unique_id:this.current_id}, this);
if (this.options.hash_bookmark && this.current_id) {
this._updateHashBookmark(this.current_id);
}
},
_onBackToStart: function(e) {
this._storyslider.goTo(0);
this.fire("back_to_start", {unique_id:this.current_id}, this);
},
/**
* Zoom in and zoom out should be part of the public API.
*/
zoomIn: function() {
this._timenav.zoomIn();
},
zoomOut: function() {
this._timenav.zoomOut();
},
setZoom: function(level) {
this._timenav.setZoom(level);
},
_onZoomIn: function(e) {
this._timenav.zoomIn();
this.fire("zoom_in", {zoom_level:this._timenav.options.scale_factor}, this);
},
_onZoomOut: function(e) {
this._timenav.zoomOut();
this.fire("zoom_out", {zoom_level:this._timenav.options.scale_factor}, this);
},
_onTimeNavLoaded: function() {
this._loaded.timenav = true;
this._onLoaded();
},
_onStorySliderLoaded: function() {
this._loaded.storyslider = true;
this._onLoaded();
},
_onStorySliderNext: function(e) {
this.fire("nav_next", e);
},
_onStorySliderPrevious: function(e) {
this.fire("nav_previous", e);
},
_onLoaded: function() {
if (this._loaded.storyslider && this._loaded.timenav) {
this.fire("loaded", this.config);
// Go to proper slide
if (this.options.hash_bookmark && window.location.hash != "") {
this.goToId(window.location.hash.replace("#event-", ""));
} else {
if( TL.Util.isTrue(this.options.start_at_end) || this.options.start_at_slide > this.config.events.length ) {
this.goToEnd();
} else {
this.goTo(this.options.start_at_slide);
}
if (this.options.hash_bookmark ) {
this._updateHashBookmark(this.current_id);
}
}
}
}
});
TL.Timeline.source_path = (function() {
var script_tags = document.getElementsByTagName('script');
var src = script_tags[script_tags.length-1].src;
return src.substr(0,src.lastIndexOf('/'));
})();
| {
"content_hash": "0b9fe2917b04521ceb82269ec6d3bc5a",
"timestamp": "",
"source": "github",
"line_count": 13386,
"max_line_length": 363,
"avg_line_length": 28.888017331540414,
"alnum_prop": 0.5645431153751664,
"repo_name": "dxa4481/dxa4481.github.io",
"id": "41d6212db80123c83489808dba321d07e7696815",
"size": "387161",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "statics/timeline.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "2059"
},
{
"name": "HTML",
"bytes": "6837"
},
{
"name": "JavaScript",
"bytes": "397806"
},
{
"name": "Python",
"bytes": "807922"
}
],
"symlink_target": ""
} |
<?php
namespace backend\models;
use Yii;
use yii\behaviors\TimestampBehavior;
use yii\db\Expression;
use yii\behaviors\BlameableBehavior;
/**
* This is the model class for table "tb_satker_pic".
*
* @property integer $id
* @property integer $ref_satker_id
* @property string $code
* @property string $name
* @property integer $value
* @property integer $status
* @property string $created
* @property integer $createdBy
* @property string $modified
* @property integer $modifiedBy
* @property string $deleted
* @property integer $deletedBy
*
* @property Satker $refSatker
*/
class SatkerPic extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'tb_satker_pic';
}
/**
* @inheritdoc
*/
public function behaviors()
{
return [
'timestamp' => [
'class' => TimestampBehavior::className(),
'attributes' => [
\yii\db\ActiveRecord::EVENT_BEFORE_INSERT => ['created','modified'],
\yii\db\ActiveRecord::EVENT_BEFORE_UPDATE => 'modified',
],
'value' => new Expression('NOW()'),
],
'blameable' => [
'class' => BlameableBehavior::className(),
'attributes' => [
\yii\db\ActiveRecord::EVENT_BEFORE_INSERT => ['createdBy','modifiedBy'],
\yii\db\ActiveRecord::EVENT_BEFORE_UPDATE => 'modifiedBy',
],
],
];
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['ref_satker_id', 'code'], 'required'],
[['ref_satker_id', 'value', 'status', 'createdBy', 'modifiedBy', 'deletedBy'], 'integer'],
[['created', 'modified', 'deleted'], 'safe'],
[['code'], 'string', 'max' => 25],
[['name'], 'string', 'max' => 255],
[['code'], 'unique']
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'ref_satker_id' => 'Ref Satker ID',
'code' => 'Code',
'name' => 'Name',
'value' => 'Value',
'status' => 'Status',
'created' => 'Created',
'createdBy' => 'Created By',
'modified' => 'Modified',
'modifiedBy' => 'Modified By',
'deleted' => 'Deleted',
'deletedBy' => 'Deleted By',
];
}
/**
* @return \yii\db\ActiveQuery
*/
public function getSatker()
{
return $this->hasOne(Satker::className(), ['id' => 'ref_satker_id']);
}
}
| {
"content_hash": "60feb3ac9fd1af3453d2bebda188e3d6",
"timestamp": "",
"source": "github",
"line_count": 107,
"max_line_length": 102,
"avg_line_length": 25.934579439252335,
"alnum_prop": 0.4875675675675676,
"repo_name": "hscstudio/syawwal",
"id": "0534c32a32f00cf9a8123d2ab796d98502e28bd9",
"size": "2775",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "backend/models/SatkerPic.php",
"mode": "33188",
"license": "bsd-3-clause",
"language": [
{
"name": "CSS",
"bytes": "2728"
},
{
"name": "PHP",
"bytes": "3874212"
},
{
"name": "Shell",
"bytes": "5176"
}
],
"symlink_target": ""
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Class template null_index</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../interprocess/indexes_reference.html#header.boost.interprocess.indexes.null_index_hpp" title="Header <boost/interprocess/indexes/null_index.hpp>">
<link rel="prev" href="map_index.html" title="Class template map_index">
<link rel="next" href="unordered_map_index.html" title="Class template unordered_map_index">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
<td align="center"><a href="../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="map_index.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.indexes.null_index_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="unordered_map_index.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.interprocess.null_index"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class template null_index</span></h2>
<p>boost::interprocess::null_index</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../interprocess/indexes_reference.html#header.boost.interprocess.indexes.null_index_hpp" title="Header <boost/interprocess/indexes/null_index.hpp>">boost/interprocess/indexes/null_index.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> MapConfig<span class="special">></span>
<span class="keyword">class</span> <a class="link" href="null_index.html" title="Class template null_index">null_index</a> <span class="special">{</span>
<span class="keyword">public</span><span class="special">:</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="keyword">int</span> <span class="special">*</span> <a name="boost.interprocess.null_index.iterator"></a><span class="identifier">iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="keyword">const</span> <span class="keyword">int</span> <span class="special">*</span> <a name="boost.interprocess.null_index.const_iterator"></a><span class="identifier">const_iterator</span><span class="special">;</span>
<span class="comment">// <a class="link" href="null_index.html#boost.interprocess.null_indexconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="null_index.html#idp22462240-bb"><span class="identifier">null_index</span></a><span class="special">(</span><a class="link" href="segment_manager_base.html" title="Class template segment_manager_base">segment_manager_base</a> <span class="special">*</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="null_index.html#idp22455856-bb">public member functions</a></span>
<span class="identifier">const_iterator</span> <a class="link" href="null_index.html#idp22456416-bb"><span class="identifier">begin</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="null_index.html#idp22457968-bb"><span class="identifier">begin</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="null_index.html#idp22459248-bb"><span class="identifier">end</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="null_index.html#idp22460800-bb"><span class="identifier">end</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp225380624"></a><h2>Description</h2>
<p>Null index type used to save compilation time when named indexes are not needed. </p>
<div class="refsect2">
<a name="idp225381392"></a><h3>
<a name="boost.interprocess.null_indexconstruct-copy-destruct"></a><code class="computeroutput">null_index</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem">
<pre class="literallayout"><a name="idp22462240-bb"></a><span class="identifier">null_index</span><span class="special">(</span><a class="link" href="segment_manager_base.html" title="Class template segment_manager_base">segment_manager_base</a> <span class="special">*</span><span class="special">)</span><span class="special">;</span></pre>Empty constructor. </li></ol></div>
</div>
<div class="refsect2">
<a name="idp225388832"></a><h3>
<a name="idp22455856-bb"></a><code class="computeroutput">null_index</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp22456416-bb"></a><span class="identifier">begin</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p>begin() is equal to end() </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp22457968-bb"></a><span class="identifier">begin</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p>begin() is equal to end() </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp22459248-bb"></a><span class="identifier">end</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p>begin() is equal to end() </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp22460800-bb"></a><span class="identifier">end</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p>begin() is equal to end() </p>
</li>
</ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2005-2015 Ion Gaztanaga<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="map_index.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.indexes.null_index_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="unordered_map_index.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| {
"content_hash": "d71ebdc311b6fb663ae6d6b635ab0e49",
"timestamp": "",
"source": "github",
"line_count": 99,
"max_line_length": 488,
"avg_line_length": 87.81818181818181,
"alnum_prop": 0.6850701633310329,
"repo_name": "hsu1994/Terminator",
"id": "470efb4e41487c62ae9f5eb4afb9cfbebac71fa2",
"size": "8694",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "Server/RelyON/boost_1_61_0/doc/html/boost/interprocess/null_index.html",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Assembly",
"bytes": "223360"
},
{
"name": "Batchfile",
"bytes": "43670"
},
{
"name": "C",
"bytes": "3717232"
},
{
"name": "C#",
"bytes": "12172138"
},
{
"name": "C++",
"bytes": "188465965"
},
{
"name": "CMake",
"bytes": "119765"
},
{
"name": "CSS",
"bytes": "430770"
},
{
"name": "Cuda",
"bytes": "52444"
},
{
"name": "DIGITAL Command Language",
"bytes": "6246"
},
{
"name": "FORTRAN",
"bytes": "1856"
},
{
"name": "GLSL",
"bytes": "143058"
},
{
"name": "Groff",
"bytes": "5189"
},
{
"name": "HTML",
"bytes": "234253948"
},
{
"name": "IDL",
"bytes": "14"
},
{
"name": "JavaScript",
"bytes": "694216"
},
{
"name": "Lex",
"bytes": "1231"
},
{
"name": "M4",
"bytes": "29689"
},
{
"name": "Makefile",
"bytes": "1459789"
},
{
"name": "Max",
"bytes": "36857"
},
{
"name": "Objective-C",
"bytes": "15456"
},
{
"name": "Objective-C++",
"bytes": "630"
},
{
"name": "PHP",
"bytes": "59030"
},
{
"name": "Perl",
"bytes": "38649"
},
{
"name": "Perl6",
"bytes": "2053"
},
{
"name": "Protocol Buffer",
"bytes": "409987"
},
{
"name": "Python",
"bytes": "1764372"
},
{
"name": "QML",
"bytes": "593"
},
{
"name": "QMake",
"bytes": "16692"
},
{
"name": "Rebol",
"bytes": "354"
},
{
"name": "Ruby",
"bytes": "5532"
},
{
"name": "Shell",
"bytes": "362208"
},
{
"name": "Smalltalk",
"bytes": "2796"
},
{
"name": "Tcl",
"bytes": "1172"
},
{
"name": "TeX",
"bytes": "32117"
},
{
"name": "XSLT",
"bytes": "265714"
},
{
"name": "Yacc",
"bytes": "19623"
}
],
"symlink_target": ""
} |
/*
* Copyright (c) 2011-2015 Spotify AB
*
* 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.
*/
package com.spotify.google.cloud.pubsub.client;
import com.google.common.base.CharMatcher;
import com.google.common.io.BaseEncoding;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.time.Instant;
import java.util.Base64;
import java.util.Map;
import java.util.Optional;
import io.norberg.automatter.AutoMatter;
import static java.nio.charset.StandardCharsets.UTF_8;
@AutoMatter
public interface Message {
CharMatcher BASE64_MATCHER = CharMatcher.anyOf("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=");
String data();
Map<String, String> attributes();
Optional<String> messageId();
Optional<Instant> publishTime();
static MessageBuilder builder() {
return new MessageBuilder();
}
static Message of(final String data) {
return builder().data(data).build();
}
static Message ofEncoded(final CharSequence data) {
return of(encode(data));
}
static String encode(final CharSequence data) {
return encode(CharBuffer.wrap(data));
}
static String encode(final CharSequence data, final int start, final int end) {
return encode(CharBuffer.wrap(data, start, end));
}
static String encode(final CharBuffer data) {
return encode(UTF_8.encode(data));
}
static String encode(final char[] data) {
return encode(UTF_8.encode(CharBuffer.wrap(data)));
}
static String encode(final ByteBuffer data) {
if (data.hasArray()) {
return encode(data.array(), data.arrayOffset(), data.arrayOffset() + data.remaining());
}
final byte[] bytes = new byte[data.remaining()];
final int mark = data.position();
data.get(bytes);
data.position(mark);
return encode(bytes);
}
static String encode(final byte[] data, final int offset, final int length) {
if (offset == 0 && data.length == length) {
return encode(data);
}
return BaseEncoding.base64().encode(data, offset, length);
}
static String encode(final byte[] data) {
return Base64.getEncoder().encodeToString(data);
}
default byte[] decodedData() {
return Base64.getDecoder().decode(data());
}
default CharSequence decodedDataUTF8() {
return UTF_8.decode(ByteBuffer.wrap(decodedData()));
}
static boolean isEncoded(Message message) {
return BASE64_MATCHER.matchesAllOf(message.data());
}
}
| {
"content_hash": "2f26f76cf2b87320ea0244637fb2ab4b",
"timestamp": "",
"source": "github",
"line_count": 109,
"max_line_length": 118,
"avg_line_length": 26.93577981651376,
"alnum_prop": 0.7125340599455041,
"repo_name": "spotify/async-google-pubsub-client",
"id": "4c325abb7d8ccbe7afdb1871b9bf59155b045261",
"size": "3601",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/main/java/com/spotify/google/cloud/pubsub/client/Message.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Java",
"bytes": "295711"
}
],
"symlink_target": ""
} |
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent">
<TableLayout android:id="@+id/tabla_cuerpo" android:layout_height="wrap_content" android:layout_width="match_parent" android:background="#796C6C">
<TableRow android:id="@+id/tableRow1" android:layout_width="match_parent" android:layout_height="wrap_content">
<TextView android:textColor="#000" android:textStyle="bold" android:gravity="center_horizontal" android:background="#796C6C" android:layout_margin="1dip" android:id="@+id/textView1" android:layout_weight="0.3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceMedium" android:text="Productos"></TextView>
</TableRow>
</TableLayout>
<ImageButton
android:id="@+id/buttonBorrar"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_menu_borrar"/>
</LinearLayout>
</RelativeLayout>
</ScrollView> | {
"content_hash": "bbca2d2033fa1b2c1b17d1e844f79e88",
"timestamp": "",
"source": "github",
"line_count": 26,
"max_line_length": 383,
"avg_line_length": 55.03846153846154,
"alnum_prop": 0.7547169811320755,
"repo_name": "jmgomezvarela/AndroidQRIceBox",
"id": "5d7fd9fa515742c8509c5eb2086ee729e45e7197",
"size": "1431",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "res/layout/listado.xml",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Java",
"bytes": "32045"
}
],
"symlink_target": ""
} |
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<!-- hack iOS CSS :active style -->
<body ontouchstart="">
{% include nav.html %}
{{ content }}
{% include footer.html %}
<!-- Image to hack wechat -->
<!-- <img src="/img/apple-touch-icon.png" width="0" height="0" /> -->
<!-- Migrate from head to bottom, no longer block render and still work -->
</body>
</html>
| {
"content_hash": "741025d819c9cce8b22455fcb947814a",
"timestamp": "",
"source": "github",
"line_count": 22,
"max_line_length": 75,
"avg_line_length": 17.818181818181817,
"alnum_prop": 0.5841836734693877,
"repo_name": "hb1love/hb1love.github.io",
"id": "a346bb20c019676abab6fff5c9d4a795d19fb342",
"size": "392",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "_layouts/default.html",
"mode": "33261",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "51679"
},
{
"name": "HTML",
"bytes": "51708"
},
{
"name": "JavaScript",
"bytes": "18174"
}
],
"symlink_target": ""
} |
<?php
session_start();
if (!isset($_SESSION['loggedin'])||($_SESSION['loggedin']==false))
header("location:./");
//if ((!isset($_POST['cluster'])) || (!isset($_POST[''])))
// header("location:./");
//if ((!isset($_POST['listCluster'])) || (!isset($_POST['nameCluster'])))
// header("location:./");
$host="localhost"; // Host name
$username="pi"; // Mysql username
$password="raspberry"; // Mysql password
$db_name="ilaw"; // Database name
// Connect to server and select databse.
$con=mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
//$jsonCluster = $_POST['cluster'];
//$name = $_POST['name'];
$jsonCluster = $_POST['listCluster'];
//echo $jsonCluster;
$name = $_POST['nameCluster'];
$cluster = json_decode($jsonCluster, true);
$sql="SELECT MAX(clusterid) AS clusterid, name FROM cluster";
$result=mysql_query($sql, $con);
$row = mysql_fetch_array($result);
$clusterid = $row['clusterid'];
if (is_null($clusterid))
$clusterid = 1;
else
$clusterid++;
mysql_free_result($result);
$sql="INSERT INTO cluster VALUES ($clusterid,'$name')";
if (!mysql_query($sql, $con)){
echo mysql_error($con);
}
//else
//echo "|| cluster created ";
foreach($cluster[$name] as $p){
$bulbid = $p["bulbid"];
$sql="INSERT INTO cluster_bulb VALUES ($bulbid,$clusterid)";
if (!mysql_query($sql, $con))
echo mysql_error($con);
//else
//echo "|| new cluster used ";
}
//Add the Default Schedule for the Lights
$sql="INSERT INTO alarm_schedule (clusterid,activate_time,brightness,day_of_week)
VALUES ($clusterid,'06:00:00',0,0)";
if (!mysql_query($sql, $con)){
echo mysql_error($con);
}
$sql="INSERT INTO alarm_schedule (clusterid,activate_time,brightness,day_of_week)
VALUES ($clusterid,'18:00:00',100,0)";
if (!mysql_query($sql, $con)){
echo mysql_error($con);
}
mysql_close($con);
//$location = "location:./cluster.php?clusterid=".$clusterid;
//View the Automated Schedules assigned to it
$location = "location:./viewschedulealarm.php?clusterid=".$clusterid;
//echo $location;
header($location);
?> | {
"content_hash": "53097823475b4cb88f2800880cd9526b",
"timestamp": "",
"source": "github",
"line_count": 76,
"max_line_length": 82,
"avg_line_length": 28.513157894736842,
"alnum_prop": 0.6349792339640056,
"repo_name": "gfvillorente/ProjectiLaw",
"id": "c69c16a9bb7c9a63478988488107149f007d00d2",
"size": "2167",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "processaddclusteralarm.php",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "17232"
},
{
"name": "Java",
"bytes": "36888"
},
{
"name": "JavaScript",
"bytes": "183470"
},
{
"name": "PHP",
"bytes": "860099"
},
{
"name": "Rust",
"bytes": "262"
}
],
"symlink_target": ""
} |
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<set>
<objectAnimator android:propertyName="translationZ"
android:duration="@android:integer/config_shortAnimTime"
android:valueTo="4dp"
android:valueType="floatType"/>
</set>
</item>
<item>
<set>
<objectAnimator android:propertyName="translationZ"
android:duration="@android:integer/config_shortAnimTime"
android:valueTo="2dp"
android:valueType="floatType"/>
</set>
</item>
</selector> | {
"content_hash": "01eef92ce70b71351f34ff355854f2f5",
"timestamp": "",
"source": "github",
"line_count": 18,
"max_line_length": 72,
"avg_line_length": 36.666666666666664,
"alnum_prop": 0.5803030303030303,
"repo_name": "smanikandan14/LollipopExperiments",
"id": "0395dc9b50d6aa604415829604217b3f08f5e5ce",
"size": "660",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "app/src/main/res/drawable-v21/button.xml",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Java",
"bytes": "17492"
}
],
"symlink_target": ""
} |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Database Type
| -------------------------------------------------------------------------
| If set to TRUE, Ion Auth will use MongoDB as its database backend.
|
| If you use MongoDB there are two external dependencies that have to be
| integrated with your project:
| CodeIgniter MongoDB Active Record Library - http://github.com/alexbilbie/codeigniter-mongodb-library/tree/v2
| CodeIgniter MongoDB Session Library - http://github.com/sepehr/ci-mongodb-session
*/
$config['use_mongodb'] = FALSE;
/*
| -------------------------------------------------------------------------
| MongoDB Collection.
| -------------------------------------------------------------------------
| Setup the mongodb docs using the following command:
| $ mongorestore sql/mongo
|
*/
$config['collections']['users'] = 'users';
$config['collections']['groups'] = 'groups';
$config['collections']['login_attempts'] = 'login_attempts';
/*
| -------------------------------------------------------------------------
| Tables.
| -------------------------------------------------------------------------
| Database table names.
*/
$config['tables']['users'] = 'users';
$config['tables']['groups'] = 'groups';
$config['tables']['users_groups'] = 'users_groups';
$config['tables']['login_attempts'] = 'login_attempts';
/*
| Users table column and Group table column you want to join WITH.
|
| Joins from users.id
| Joins from groups.id
*/
$config['join']['users'] = 'user_id';
$config['join']['groups'] = 'group_id';
/*
| -------------------------------------------------------------------------
| Hash Method (sha1 or bcrypt)
| -------------------------------------------------------------------------
| Bcrypt is available in PHP 5.3+
|
| IMPORTANT: Based on the recommendation by many professionals, it is highly recommended to use
| bcrypt instead of sha1.
|
| NOTE: If you use bcrypt you will need to increase your password column character limit to (80)
|
| Below there is "default_rounds" setting. This defines how strong the encryption will be,
| but remember the more rounds you set the longer it will take to hash (CPU usage) So adjust
| this based on your server hardware.
|
| If you are using Bcrypt the Admin password field also needs to be changed in order login as admin:
| $2a$07$SeBknntpZror9uyftVopmu61qg0ms8Qv1yV6FG.kQOSM.9QhmTo36
|
| Becareful how high you set max_rounds, I would do your own testing on how long it takes
| to encrypt with x rounds.
*/
$config['hash_method'] = 'bcrypt'; // IMPORTANT: Make sure this is set to either sha1 or bcrypt
$config['default_rounds'] = 8; // This does not apply if random_rounds is set to true
$config['random_rounds'] = FALSE;
$config['min_rounds'] = 5;
$config['max_rounds'] = 9;
/*
| -------------------------------------------------------------------------
| Authentication options.
| -------------------------------------------------------------------------
| maximum_login_attempts: This maximum is not enforced by the library, but is
| used by $this->ion_auth->is_max_login_attempts_exceeded().
| The controller should check this function and act
| appropriately. If this variable set to 0, there is no maximum.
*/
$config['site_title'] = ""; // Site Title, example.com
$config['admin_email'] = ""; // Admin Email, [email protected]
$config['default_group'] = 'members'; // Default group, use name
$config['admin_group'] = 'admin'; // Default administrators group, use name
$config['identity'] = 'username'; // A database column which is used to login with
$config['min_password_length'] = 8; // Minimum Required Length of Password
$config['max_password_length'] = 20; // Maximum Allowed Length of Password
$config['email_activation'] = FALSE; // Email Activation for registration
$config['manual_activation'] = FALSE; // Manual Activation for registration
$config['remember_users'] = TRUE; // Allow users to be remembered and enable auto-login
$config['user_expire'] = 0; // How long to remember the user (seconds). Set to zero for no expiration
$config['user_extend_on_login'] = TRUE; // Extend the users cookies everytime they auto-login
$config['track_login_attempts'] = FALSE; // Track the number of failed login attempts for each user or ip.
$config['maximum_login_attempts'] = 10; // The maximum number of failed login attempts.
$config['lockout_time'] = 600; // The number of seconds to lockout an account due to exceeded attempts
$config['forgot_password_expiration'] = 0; // The number of seconds after which a forgot password request will expire. If set to 0, forgot password requests will not expire.
/*
| -------------------------------------------------------------------------
| Email options.
| -------------------------------------------------------------------------
| email_config:
| 'file' = Use the default CI config or use from a config file
| array = Manually set your email config settings
*/
$config['use_ci_email'] = TRUE; // Send Email using the builtin CI email class, if false it will return the code and the identity
$config['email_config'] = array(
'mailtype' => 'html',
);
/*
| -------------------------------------------------------------------------
| Email templates.
| -------------------------------------------------------------------------
| Folder where email templates are stored.
| Default: auth/
*/
$config['email_templates'] = 'auth/email/';
/*
| -------------------------------------------------------------------------
| Activate Account Email Template
| -------------------------------------------------------------------------
| Default: activate.tpl.php
*/
$config['email_activate'] = 'activate.tpl.php';
/*
| -------------------------------------------------------------------------
| Forgot Password Email Template
| -------------------------------------------------------------------------
| Default: forgot_password.tpl.php
*/
$config['email_forgot_password'] = 'forgot_password.tpl.php';
/*
| -------------------------------------------------------------------------
| Forgot Password Complete Email Template
| -------------------------------------------------------------------------
| Default: new_password.tpl.php
*/
$config['email_forgot_password_complete'] = 'new_password.tpl.php';
/*
| -------------------------------------------------------------------------
| Salt options
| -------------------------------------------------------------------------
| salt_length Default: 10
|
| store_salt: Should the salt be stored in the database?
| This will change your password encryption algorithm,
| default password, 'password', changes to
| fbaa5e216d163a02ae630ab1a43372635dd374c0 with default salt.
*/
$config['salt_length'] = 10;
$config['store_salt'] = FALSE;
/*
| -------------------------------------------------------------------------
| Message Delimiters.
| -------------------------------------------------------------------------
*/
$config['message_start_delimiter'] = '<p>'; // Message start delimiter
$config['message_end_delimiter'] = '</p>'; // Message end delimiter
$config['error_start_delimiter'] = '<p>'; // Error mesage start delimiter
$config['error_end_delimiter'] = '</p>'; // Error mesage end delimiter
/* End of file ion_auth.php */
/* Location: ./application/config/ion_auth.php */
| {
"content_hash": "14cc9a03d2a68de957a0517dd47cfbf0",
"timestamp": "",
"source": "github",
"line_count": 173,
"max_line_length": 177,
"avg_line_length": 44.31791907514451,
"alnum_prop": 0.5188470066518847,
"repo_name": "mandress64/cordova",
"id": "96f7806664e176e162c32ce493bd9df58c08b24a",
"size": "7667",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "application/config/ion_auth.php",
"mode": "33261",
"license": "mit",
"language": [
{
"name": "ApacheConf",
"bytes": "279"
},
{
"name": "CSS",
"bytes": "46937"
},
{
"name": "HTML",
"bytes": "4218"
},
{
"name": "JavaScript",
"bytes": "337102"
},
{
"name": "PHP",
"bytes": "1535463"
}
],
"symlink_target": ""
} |
import { Matrix } from '../../../math';
/*
* Calculates the mapped matrix
* @param filterArea {Rectangle} The filter area
* @param sprite {Sprite} the target sprite
* @param outputMatrix {Matrix} @alvin
*/
// TODO playing around here.. this is temporary - (will end up in the shader)
// thia returns a matrix that will normalise map filter cords in the filter to screen space
export function calculateScreenSpaceMatrix(outputMatrix, filterArea, textureSize)
{
// let worldTransform = sprite.worldTransform.copy(Matrix.TEMP_MATRIX),
// let texture = {width:1136, height:700};//sprite._texture.baseTexture;
// TODO unwrap?
const mappedMatrix = outputMatrix.identity();
mappedMatrix.translate(filterArea.x / textureSize.width, filterArea.y / textureSize.height);
mappedMatrix.scale(textureSize.width, textureSize.height);
return mappedMatrix;
}
export function calculateNormalizedScreenSpaceMatrix(outputMatrix, filterArea, textureSize)
{
const mappedMatrix = outputMatrix.identity();
mappedMatrix.translate(filterArea.x / textureSize.width, filterArea.y / textureSize.height);
const translateScaleX = (textureSize.width / filterArea.width);
const translateScaleY = (textureSize.height / filterArea.height);
mappedMatrix.scale(translateScaleX, translateScaleY);
return mappedMatrix;
}
// this will map the filter coord so that a texture can be used based on the transform of a sprite
export function calculateSpriteMatrix(outputMatrix, filterArea, textureSize, sprite)
{
const worldTransform = sprite.worldTransform.copy(Matrix.TEMP_MATRIX);
const texture = sprite._texture.baseTexture;
// TODO unwrap?
const mappedMatrix = outputMatrix.identity();
// scale..
const ratio = textureSize.height / textureSize.width;
mappedMatrix.translate(filterArea.x / textureSize.width, filterArea.y / textureSize.height);
mappedMatrix.scale(1, ratio);
const translateScaleX = (textureSize.width / texture.width);
const translateScaleY = (textureSize.height / texture.height);
worldTransform.tx /= texture.width * translateScaleX;
// this...? free beer for anyone who can explain why this makes sense!
worldTransform.ty /= texture.width * translateScaleX;
// worldTransform.ty /= texture.height * translateScaleY;
worldTransform.invert();
mappedMatrix.prepend(worldTransform);
// apply inverse scale..
mappedMatrix.scale(1, 1 / ratio);
mappedMatrix.scale(translateScaleX, translateScaleY);
mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);
return mappedMatrix;
}
| {
"content_hash": "7a3c70d32cac8e8e60378a7f0dd2b30e",
"timestamp": "",
"source": "github",
"line_count": 76,
"max_line_length": 98,
"avg_line_length": 34.44736842105263,
"alnum_prop": 0.7383498854087089,
"repo_name": "leonardo-silva/pixi.js",
"id": "d27d8156caa3449b136867aef52db7380ebe2fc4",
"size": "2618",
"binary": false,
"copies": "3",
"ref": "refs/heads/dev",
"path": "src/core/renderers/webgl/filters/filterTransforms.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "GLSL",
"bytes": "10475"
},
{
"name": "JavaScript",
"bytes": "1575056"
}
],
"symlink_target": ""
} |
package com.customweb.sass.testcases.css;
import java.io.IOException;
import java.net.URISyntaxException;
import org.junit.Test;
import org.w3c.css.sac.CSSException;
import com.customweb.sass.AbstractTestBase;
public class Properties extends AbstractTestBase {
String css = "/basic/properties.css";
@Test
public void testParser() throws CSSException, URISyntaxException,
IOException {
testParser(css);
}
}
| {
"content_hash": "941cddad63335f15b38ce19eb7385b4d",
"timestamp": "",
"source": "github",
"line_count": 22,
"max_line_length": 69,
"avg_line_length": 20.454545454545453,
"alnum_prop": 0.7333333333333333,
"repo_name": "customweb/sass-compiler",
"id": "f2e63cd854d1376208663674b2000a9728ad5e63",
"size": "1048",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/test/java/com/customweb/sass/testcases/css/Properties.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "1772085"
},
{
"name": "Java",
"bytes": "629593"
}
],
"symlink_target": ""
} |
import demistomock as demisto
from CommonServerPython import *
import nltk
import re
from html.parser import HTMLParser
from html import unescape
html_parser = HTMLParser()
CLEAN_HTML = (demisto.args().get('cleanHtml', 'yes') == 'yes')
REMOVE_LINE_BREAKS = (demisto.args().get('removeLineBreaks', 'yes') == 'yes')
TOKENIZE_TYPE = demisto.args().get('type', 'word')
TEXT_ENCODE = demisto.args().get('zencoding', 'utf-8')
HASH_SEED = demisto.args().get('hashWordWithSeed')
REMOVE_HTML_PATTERNS = [
re.compile(r"(?is)<(script|style).*?>.*?(</\1>)"),
re.compile(r"(?s)<!--(.*?)-->[\n]?"),
re.compile(r"(?s)<.*?>"),
re.compile(r" "),
re.compile(r" +")
]
def clean_html(text):
if not CLEAN_HTML:
return text
cleaned = text
for pattern in REMOVE_HTML_PATTERNS:
cleaned = pattern.sub(" ", cleaned)
return unescape(cleaned).strip()
def tokenize_text(text):
if not text:
return ''
text = text.lower()
if TOKENIZE_TYPE == 'word':
word_tokens = nltk.word_tokenize(text)
elif TOKENIZE_TYPE == 'punkt':
word_tokens = nltk.wordpunct_tokenize(text)
else:
raise Exception("Unsupported tokenize type: %s" % TOKENIZE_TYPE)
if HASH_SEED:
word_tokens = map(str, map(lambda x: hash_djb2(x, int(HASH_SEED)), word_tokens))
return (' '.join(word_tokens)).strip()
def remove_line_breaks(text):
if not REMOVE_LINE_BREAKS:
return text
return text.replace("\r", "").replace("\n", "")
def main():
text = demisto.args()['value']
if type(text) is not list:
text = [text]
result = list(map(remove_line_breaks, map(tokenize_text, map(clean_html, text))))
if len(result) == 1:
result = result[0]
demisto.results({
'Contents': result,
'ContentsFormat': formats['json'] if type(result) is list else formats['text'],
'EntryContext': {
'WordTokenizeOutput': result
}
})
# python2 uses __builtin__ python3 uses builtins
if __name__ == "__builtin__" or __name__ == "builtins":
main()
| {
"content_hash": "757a08124a988a9891ce2dd05b7cf306",
"timestamp": "",
"source": "github",
"line_count": 77,
"max_line_length": 88,
"avg_line_length": 27.12987012987013,
"alnum_prop": 0.6069889899473432,
"repo_name": "VirusTotal/content",
"id": "28d6ee737a55190e9582fcaa25ba594225964b49",
"size": "2089",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "Packs/CommonScripts/Scripts/WordTokenizeTest/WordTokenizeTest.py",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Dockerfile",
"bytes": "2146"
},
{
"name": "HTML",
"bytes": "205901"
},
{
"name": "JavaScript",
"bytes": "1584075"
},
{
"name": "PowerShell",
"bytes": "442288"
},
{
"name": "Python",
"bytes": "47594464"
},
{
"name": "Rich Text Format",
"bytes": "480911"
},
{
"name": "Shell",
"bytes": "108066"
},
{
"name": "YARA",
"bytes": "1185"
}
],
"symlink_target": ""
} |
package server
import (
"errors"
"fmt"
"os"
"os/user"
"path/filepath"
"reflect"
"strconv"
"strings"
"time"
"github.com/influxdata/kapacitor/services/alerta"
"github.com/influxdata/kapacitor/services/config"
"github.com/influxdata/kapacitor/services/deadman"
"github.com/influxdata/kapacitor/services/hipchat"
"github.com/influxdata/kapacitor/services/httpd"
"github.com/influxdata/kapacitor/services/influxdb"
"github.com/influxdata/kapacitor/services/k8s"
"github.com/influxdata/kapacitor/services/logging"
"github.com/influxdata/kapacitor/services/opsgenie"
"github.com/influxdata/kapacitor/services/pagerduty"
"github.com/influxdata/kapacitor/services/replay"
"github.com/influxdata/kapacitor/services/reporting"
"github.com/influxdata/kapacitor/services/sensu"
"github.com/influxdata/kapacitor/services/slack"
"github.com/influxdata/kapacitor/services/smtp"
"github.com/influxdata/kapacitor/services/stats"
"github.com/influxdata/kapacitor/services/storage"
"github.com/influxdata/kapacitor/services/talk"
"github.com/influxdata/kapacitor/services/task_store"
"github.com/influxdata/kapacitor/services/telegram"
"github.com/influxdata/kapacitor/services/udf"
"github.com/influxdata/kapacitor/services/udp"
"github.com/influxdata/kapacitor/services/victorops"
"github.com/influxdata/influxdb/services/collectd"
"github.com/influxdata/influxdb/services/graphite"
"github.com/influxdata/influxdb/services/opentsdb"
)
// Config represents the configuration format for the kapacitord binary.
type Config struct {
HTTP httpd.Config `toml:"http"`
Replay replay.Config `toml:"replay"`
Storage storage.Config `toml:"storage"`
Task task_store.Config `toml:"task"`
InfluxDB []influxdb.Config `toml:"influxdb" override:"influxdb,element-key=name"`
Logging logging.Config `toml:"logging"`
ConfigOverride config.Config `toml:"config-override"`
// Input services
Graphites []graphite.Config `toml:"graphite"`
Collectd collectd.Config `toml:"collectd"`
OpenTSDB opentsdb.Config `toml:"opentsdb"`
UDPs []udp.Config `toml:"udp"`
// Alert handlers
Alerta alerta.Config `toml:"alerta" override:"alerta"`
HipChat hipchat.Config `toml:"hipchat" override:"hipchat"`
OpsGenie opsgenie.Config `toml:"opsgenie" override:"opsgenie"`
PagerDuty pagerduty.Config `toml:"pagerduty" override:"pagerduty"`
SMTP smtp.Config `toml:"smtp" override:"smtp"`
Sensu sensu.Config `toml:"sensu" override:"sensu"`
Slack slack.Config `toml:"slack" override:"slack"`
Talk talk.Config `toml:"talk" override:"talk"`
Telegram telegram.Config `toml:"telegram" override:"telegram"`
VictorOps victorops.Config `toml:"victorops" override:"victorops"`
// Third-party integrations
Kubernetes k8s.Config `toml:"kubernetes" override:"kubernetes"`
Reporting reporting.Config `toml:"reporting"`
Stats stats.Config `toml:"stats"`
UDF udf.Config `toml:"udf"`
Deadman deadman.Config `toml:"deadman"`
Hostname string `toml:"hostname"`
DataDir string `toml:"data_dir"`
SkipConfigOverrides bool `toml:"skip-config-overrides"`
DefaultRetentionPolicy string `toml:"default-retention-policy"`
}
// NewConfig returns an instance of Config with reasonable defaults.
func NewConfig() *Config {
c := &Config{
Hostname: "localhost",
}
c.HTTP = httpd.NewConfig()
c.Storage = storage.NewConfig()
c.Replay = replay.NewConfig()
c.Task = task_store.NewConfig()
c.InfluxDB = []influxdb.Config{influxdb.NewConfig()}
c.Logging = logging.NewConfig()
c.Kubernetes = k8s.NewConfig()
c.ConfigOverride = config.NewConfig()
c.Collectd = collectd.NewConfig()
c.OpenTSDB = opentsdb.NewConfig()
c.Alerta = alerta.NewConfig()
c.HipChat = hipchat.NewConfig()
c.OpsGenie = opsgenie.NewConfig()
c.PagerDuty = pagerduty.NewConfig()
c.SMTP = smtp.NewConfig()
c.Sensu = sensu.NewConfig()
c.Slack = slack.NewConfig()
c.Talk = talk.NewConfig()
c.Telegram = telegram.NewConfig()
c.VictorOps = victorops.NewConfig()
c.Reporting = reporting.NewConfig()
c.Stats = stats.NewConfig()
c.UDF = udf.NewConfig()
c.Deadman = deadman.NewConfig()
return c
}
// NewDemoConfig returns the config that runs when no config is specified.
func NewDemoConfig() (*Config, error) {
c := NewConfig()
var homeDir string
// By default, store meta and data files in current users home directory
u, err := user.Current()
if err == nil {
homeDir = u.HomeDir
} else if os.Getenv("HOME") != "" {
homeDir = os.Getenv("HOME")
} else {
return nil, fmt.Errorf("failed to determine current user for storage")
}
c.Replay.Dir = filepath.Join(homeDir, ".kapacitor", c.Replay.Dir)
c.Task.Dir = filepath.Join(homeDir, ".kapacitor", c.Task.Dir)
c.Storage.BoltDBPath = filepath.Join(homeDir, ".kapacitor", c.Storage.BoltDBPath)
c.DataDir = filepath.Join(homeDir, ".kapacitor", c.DataDir)
return c, nil
}
// Validate returns an error if the config is invalid.
func (c *Config) Validate() error {
if c.Hostname == "" {
return fmt.Errorf("must configure valid hostname")
}
if c.DataDir == "" {
return fmt.Errorf("must configure valid data dir")
}
if err := c.Replay.Validate(); err != nil {
return err
}
if err := c.Storage.Validate(); err != nil {
return err
}
if err := c.HTTP.Validate(); err != nil {
return err
}
if err := c.Task.Validate(); err != nil {
return err
}
// Validate the set of InfluxDB configs.
// All names should be unique.
names := make(map[string]bool, len(c.InfluxDB))
// Should be exactly one default if at least one configs is enabled.
defaultInfluxDB := -1
numEnabled := 0
for i := range c.InfluxDB {
c.InfluxDB[i].ApplyConditionalDefaults()
config := c.InfluxDB[i]
if names[config.Name] {
return fmt.Errorf("duplicate name %q for influxdb configs", config.Name)
}
names[config.Name] = true
if err := config.Validate(); err != nil {
return err
}
if config.Enabled && config.Default {
if defaultInfluxDB != -1 {
return fmt.Errorf("More than one InfluxDB default was specified: %s %s", config.Name, c.InfluxDB[defaultInfluxDB].Name)
}
defaultInfluxDB = i
}
if config.Enabled {
numEnabled++
}
}
if numEnabled > 1 && defaultInfluxDB == -1 {
return errors.New("at least one of the enabled InfluxDB clusters must be marked as default.")
}
// Validate inputs
for _, g := range c.Graphites {
if err := g.Validate(); err != nil {
return fmt.Errorf("invalid graphite config: %v", err)
}
}
// Validate alert handlers
if err := c.Alerta.Validate(); err != nil {
return err
}
if err := c.HipChat.Validate(); err != nil {
return err
}
if err := c.OpsGenie.Validate(); err != nil {
return err
}
if err := c.PagerDuty.Validate(); err != nil {
return err
}
if err := c.SMTP.Validate(); err != nil {
return err
}
if err := c.Sensu.Validate(); err != nil {
return err
}
if err := c.Slack.Validate(); err != nil {
return err
}
if err := c.Talk.Validate(); err != nil {
return err
}
if err := c.Telegram.Validate(); err != nil {
return err
}
if err := c.VictorOps.Validate(); err != nil {
return err
}
if err := c.UDF.Validate(); err != nil {
return err
}
return nil
}
func (c *Config) ApplyEnvOverrides() error {
return c.applyEnvOverrides("KAPACITOR", "", reflect.ValueOf(c))
}
func (c *Config) applyEnvOverrides(prefix string, fieldDesc string, spec reflect.Value) error {
// If we have a pointer, dereference it
s := spec
if spec.Kind() == reflect.Ptr {
s = spec.Elem()
}
var value string
if s.Kind() != reflect.Struct {
value = os.Getenv(prefix)
// Skip any fields we don't have a value to set
if value == "" {
return nil
}
if fieldDesc != "" {
fieldDesc = " to " + fieldDesc
}
}
switch s.Kind() {
case reflect.String:
s.SetString(value)
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
var intValue int64
// Handle toml.Duration
if s.Type().Name() == "Duration" {
dur, err := time.ParseDuration(value)
if err != nil {
return fmt.Errorf("failed to apply %v%v using type %v and value '%v'", prefix, fieldDesc, s.Type().String(), value)
}
intValue = dur.Nanoseconds()
} else {
var err error
intValue, err = strconv.ParseInt(value, 0, s.Type().Bits())
if err != nil {
return fmt.Errorf("failed to apply %v%v using type %v and value '%v'", prefix, fieldDesc, s.Type().String(), value)
}
}
s.SetInt(intValue)
case reflect.Bool:
boolValue, err := strconv.ParseBool(value)
if err != nil {
return fmt.Errorf("failed to apply %v%v using type %v and value '%v'", prefix, fieldDesc, s.Type().String(), value)
}
s.SetBool(boolValue)
case reflect.Float32, reflect.Float64:
floatValue, err := strconv.ParseFloat(value, s.Type().Bits())
if err != nil {
return fmt.Errorf("failed to apply %v%v using type %v and value '%v'", prefix, fieldDesc, s.Type().String(), value)
}
s.SetFloat(floatValue)
case reflect.Struct:
c.applyEnvOverridesToStruct(prefix, s)
}
return nil
}
func (c *Config) applyEnvOverridesToStruct(prefix string, s reflect.Value) error {
typeOfSpec := s.Type()
for i := 0; i < s.NumField(); i++ {
f := s.Field(i)
// Get the toml tag to determine what env var name to use
configName := typeOfSpec.Field(i).Tag.Get("toml")
// Replace hyphens with underscores to avoid issues with shells
configName = strings.Replace(configName, "-", "_", -1)
fieldName := typeOfSpec.Field(i).Name
// Skip any fields that we cannot set
if f.CanSet() || f.Kind() == reflect.Slice {
// Use the upper-case prefix and toml name for the env var
key := strings.ToUpper(configName)
if prefix != "" {
key = strings.ToUpper(fmt.Sprintf("%s_%s", prefix, configName))
}
// If the type is s slice, apply to each using the index as a suffix
// e.g. GRAPHITE_0
if f.Kind() == reflect.Slice || f.Kind() == reflect.Array {
for i := 0; i < f.Len(); i++ {
if err := c.applyEnvOverrides(fmt.Sprintf("%s_%d", key, i), fieldName, f.Index(i)); err != nil {
return err
}
}
} else if err := c.applyEnvOverrides(key, fieldName, f); err != nil {
return err
}
}
}
return nil
}
| {
"content_hash": "8653b7e43deb24693ec91f0983e07a7a",
"timestamp": "",
"source": "github",
"line_count": 341,
"max_line_length": 123,
"avg_line_length": 30.193548387096776,
"alnum_prop": 0.679972804972805,
"repo_name": "titilambert/kapacitor",
"id": "770aa7fb83ee6231c894312653b7334e32a63dce",
"size": "10296",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "server/config.go",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Go",
"bytes": "2064011"
},
{
"name": "Protocol Buffer",
"bytes": "6822"
},
{
"name": "Python",
"bytes": "60915"
},
{
"name": "Shell",
"bytes": "18396"
}
],
"symlink_target": ""
} |
package org.kuali.rice.krad.data.provider.annotation;
import com.google.common.annotations.Beta;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Represents a property which should be inherited from another data object class.
*
* <p>Allows for the label to be overridden, but nothing else.</p>
*
* @author Kuali Rice Team ([email protected])
*/
@Target({ ElementType.FIELD, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface InheritProperty {
/**
* Gets the name of the property to be inherited.
*
* @return the name of the property to be inherited.
*/
String name();
/**
* Gets the label to override.
*
* @return the label to override.
*/
Label label() default @Label("");
/**
* BETA: Gets the hints which can be passed through when auto-generating the input fields for an attribute.
*
* @return the hints which can be passed through when auto-generating the input fields for an attribute.
*/
@Beta
UifDisplayHints displayHints() default @UifDisplayHints(@UifDisplayHint(UifDisplayHintType.NONE));
}
| {
"content_hash": "1f99b8204e9a755de81b2646aa172c44",
"timestamp": "",
"source": "github",
"line_count": 45,
"max_line_length": 111,
"avg_line_length": 28.711111111111112,
"alnum_prop": 0.7151702786377709,
"repo_name": "mztaylor/rice-git",
"id": "6c36977509b730cdec068d6d98249452b5b2661c",
"size": "1913",
"binary": false,
"copies": "7",
"ref": "refs/heads/master",
"path": "rice-framework/krad-data/src/main/java/org/kuali/rice/krad/data/provider/annotation/InheritProperty.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "CSS",
"bytes": "795267"
},
{
"name": "Groovy",
"bytes": "2170621"
},
{
"name": "Java",
"bytes": "34571234"
},
{
"name": "JavaScript",
"bytes": "2652150"
},
{
"name": "PHP",
"bytes": "15766"
},
{
"name": "Shell",
"bytes": "10444"
},
{
"name": "XSLT",
"bytes": "107686"
}
],
"symlink_target": ""
} |
==========
Cl.Uniform
==========
1.2.3
-----
- added ``checked`` class option
1.2.2
-----
- fixed issue with uniform triggering extra change events on radio/checkboxes
1.2.1
-----
- fixed issue with uniform unchecking all the radios with same name in the document, now relies on browser behaviour
- explicitly hide knob on initially unchecked radio/checkbox (was previously assumed from css)
1.2.0
-----
- added ``ready`` class option
- removed comments
- fixed typos
1.1.0
-----
- changed preset templates for checkboxes and radios
- fixed destroy method
- several behaviour changes
1.0.4
-----
- remove auto height calculation
- change file tpl to be a label instead of span
- fixed propagation issues
- fixed issues on aria definitions
1.0.3
-----
- fixed an issue with updated
- fixed issues with IE 8/9
- fixed an issue with firefox
- code quality improvements
- move change api call to the end
1.0.2
-----
- added compatibility to jshint
- added classes from fields are now copied to the most outer uniform wrapper
- removed ``_fire`` event calls
- fixes issues when attaching uniform on the same element again
1.0.1
-----
- added method ``update``
- added method ``destroy``
- added event and callbacks handling
- added WAI-ARIA labels
- changed code setup to be aligned with other classjs-plugins
- changed ``build`` to ``_setup``
- changed from ``bind`` to ``on``
- fixed an issue where knobs are positioned wrong after keyboard focus
1.0.0
-----
- initial release
| {
"content_hash": "3befee5b0da6d315c7ceb5652c69ef23",
"timestamp": "",
"source": "github",
"line_count": 65,
"max_line_length": 116,
"avg_line_length": 22.83076923076923,
"alnum_prop": 0.7149595687331537,
"repo_name": "FinalAngel/classjs-plugins",
"id": "0067688579ec1ae4552c6710a8cc71165a1b7419",
"size": "1484",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "src/cl.uniform/CHANGELOG.rst",
"mode": "33261",
"license": "bsd-3-clause",
"language": [
{
"name": "CSS",
"bytes": "4356"
},
{
"name": "HTML",
"bytes": "7486"
},
{
"name": "JavaScript",
"bytes": "199561"
}
],
"symlink_target": ""
} |
class image_draw_area : public Fl_Gl_Window
{
public:
image_draw_area( int x, int y, int w, int h, const char *l );
image_draw_area( int x, int y, int w, int h );
virtual ~image_draw_area(){ }
private:
bool interpolate_;
public:
void draw();
bool interpolate( bool b )
{
return( interpolate_ = b );
}
};
void read_image_test( const char *filename );
void write_image_test( const char *filename );
void read_dicom_test( const char *filename );
void write_dicom_test( const char *filename );
void euclidean_distance_transform_test( );
void euclidean_distance_skeleton_test( );
void figure_decomposition_test( );
void thresholding_test( );
void labeling4_test( );
void labeling8_test( );
void boundary4_test( );
void boundary8_test( );
void thinning_test( );
void median_test( );
void mode_test( );
void erosion_test( );
void dilation_test( );
void opening_test( );
void closing_test( );
void interpolate_test( int mode, bool reso_up );
void interlace_test( bool is_odd_line );
void expand_test( );
void shrink_test( );
void erosion_triangle_test( );
void dilation_triangle_test( );
void opening_triangle_test( );
void closing_triangle_test( );
#endif // __INCLUDE_IMAGE_TEST__
| {
"content_hash": "6c6425ddf3d56913611ef438197ccebb",
"timestamp": "",
"source": "github",
"line_count": 60,
"max_line_length": 62,
"avg_line_length": 20.033333333333335,
"alnum_prop": 0.6930116472545758,
"repo_name": "yuugata/MIST",
"id": "ef971b24c065a14bcdf1b9bf836448f2caf45b34",
"size": "2887",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "test/image_test.h",
"mode": "33188",
"license": "bsd-3-clause",
"language": [
{
"name": "C#",
"bytes": "15420"
},
{
"name": "C++",
"bytes": "3844811"
},
{
"name": "CMake",
"bytes": "10616"
},
{
"name": "CSS",
"bytes": "8055"
},
{
"name": "HTML",
"bytes": "571"
},
{
"name": "Makefile",
"bytes": "5090"
},
{
"name": "Shell",
"bytes": "724"
},
{
"name": "TeX",
"bytes": "27601"
}
],
"symlink_target": ""
} |
const specifications = {
strict: false,
fields: {
license: {
mandatory: true,
type: 'string'
}
}
};
try {
const result = await kuzzle.collection.updateSpecifications('nyc-open-data', 'yellow-taxi', specifications);
console.log(result);
/*
{ strict: false,
fields: {
license: {
mandatory: true,
type: 'string' } } }
*/
console.log('Success');
} catch (error) {
console.error(error.message);
}
| {
"content_hash": "31d62e2f202fe683ea6d57747128d0bd",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 110,
"avg_line_length": 18.8,
"alnum_prop": 0.574468085106383,
"repo_name": "kuzzleio/sdk-javascript",
"id": "af495e99a99132a3d4dbe9c18054d535c6a3cae2",
"size": "470",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "doc/7/controllers/collection/update-specifications/snippets/update-specifications.js",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "HTML",
"bytes": "1048"
},
{
"name": "JavaScript",
"bytes": "468625"
},
{
"name": "Shell",
"bytes": "2025"
},
{
"name": "TypeScript",
"bytes": "252195"
}
],
"symlink_target": ""
} |
namespace swift {
namespace Mangle {
enum class SpecializationKind : uint8_t {
Generic,
NotReAbstractedGeneric,
FunctionSignature,
};
/// Inject SpecializationPass into the Mangle namespace.
using SpecializationPass = Demangle::SpecializationPass;
/// The base class for specialization mangles.
class SpecializationMangler : public Mangle::ASTMangler {
protected:
/// The specialization pass.
SpecializationPass Pass;
IsSerialized_t Serialized;
/// The original function which is specialized.
SILFunction *Function;
llvm::SmallVector<char, 32> ArgOpStorage;
llvm::raw_svector_ostream ArgOpBuffer;
protected:
SpecializationMangler(SpecializationPass P, IsSerialized_t Serialized,
SILFunction *F)
: Pass(P), Serialized(Serialized), Function(F),
ArgOpBuffer(ArgOpStorage) {}
SILFunction *getFunction() const { return Function; }
void beginMangling();
/// Finish the mangling of the symbol and return the mangled name.
std::string finalize();
void appendSpecializationOperator(StringRef Op) {
appendOperator(Op, StringRef(ArgOpStorage.data(), ArgOpStorage.size()));
}
};
// The mangler for specialized generic functions.
class GenericSpecializationMangler : public SpecializationMangler {
SubstitutionMap SubMap;
bool isReAbstracted;
bool isInlined;
public:
GenericSpecializationMangler(SILFunction *F, SubstitutionMap SubMap,
IsSerialized_t Serialized, bool isReAbstracted,
bool isInlined = false)
: SpecializationMangler(SpecializationPass::GenericSpecializer,
Serialized, F),
SubMap(SubMap), isReAbstracted(isReAbstracted), isInlined(isInlined) {}
std::string mangle(GenericSignature Sig = GenericSignature());
};
class PartialSpecializationMangler : public SpecializationMangler {
CanSILFunctionType SpecializedFnTy;
bool isReAbstracted;
public:
PartialSpecializationMangler(SILFunction *F,
CanSILFunctionType SpecializedFnTy,
IsSerialized_t Serialized, bool isReAbstracted)
: SpecializationMangler(SpecializationPass::GenericSpecializer,
Serialized, F),
SpecializedFnTy(SpecializedFnTy), isReAbstracted(isReAbstracted) {}
std::string mangle();
};
// The mangler for functions where arguments are specialized.
class FunctionSignatureSpecializationMangler : public SpecializationMangler {
using ReturnValueModifierIntBase = uint16_t;
enum class ReturnValueModifier : ReturnValueModifierIntBase {
// Option Space 4 bits (i.e. 16 options).
Unmodified=0,
First_Option=0, Last_Option=31,
// Option Set Space. 12 bits (i.e. 12 option).
Dead=32,
OwnedToUnowned=64,
First_OptionSetEntry=32, LastOptionSetEntry=32768,
};
// We use this private typealias to make it easy to expand ArgumentModifier's
// size if we need to.
using ArgumentModifierIntBase = uint16_t;
enum class ArgumentModifier : ArgumentModifierIntBase {
// Option Space 4 bits (i.e. 16 options).
Unmodified=0,
ConstantProp=1,
ClosureProp=2,
BoxToValue=3,
BoxToStack=4,
First_Option=0, Last_Option=31,
// Option Set Space. 12 bits (i.e. 12 option).
Dead=32,
OwnedToGuaranteed=64,
SROA=128,
GuaranteedToOwned=256,
ExistentialToGeneric=512,
First_OptionSetEntry=32, LastOptionSetEntry=32768,
};
using ArgInfo = std::pair<ArgumentModifierIntBase,
NullablePtr<SILInstruction>>;
// Information for each SIL argument in the original function before
// specialization. This includes SIL indirect result argument required for
// the original function type at the current stage of compilation.
llvm::SmallVector<ArgInfo, 8> OrigArgs;
ReturnValueModifierIntBase ReturnValue;
public:
FunctionSignatureSpecializationMangler(SpecializationPass Pass,
IsSerialized_t Serialized,
SILFunction *F);
void setArgumentConstantProp(unsigned OrigArgIdx, LiteralInst *LI);
void setArgumentClosureProp(unsigned OrigArgIdx, PartialApplyInst *PAI);
void setArgumentClosureProp(unsigned OrigArgIdx,
ThinToThickFunctionInst *TTTFI);
void setArgumentDead(unsigned OrigArgIdx);
void setArgumentOwnedToGuaranteed(unsigned OrigArgIdx);
void setArgumentGuaranteedToOwned(unsigned OrigArgIdx);
void setArgumentExistentialToGeneric(unsigned OrigArgIdx);
void setArgumentSROA(unsigned OrigArgIdx);
void setArgumentBoxToValue(unsigned OrigArgIdx);
void setArgumentBoxToStack(unsigned OrigArgIdx);
void setReturnValueOwnedToUnowned();
std::string mangle();
private:
void mangleConstantProp(LiteralInst *LI);
void mangleClosureProp(SILInstruction *Inst);
void mangleArgument(ArgumentModifierIntBase ArgMod,
NullablePtr<SILInstruction> Inst);
void mangleReturnValue(ReturnValueModifierIntBase RetMod);
};
} // end namespace Mangle
} // end namespace swift
#endif
| {
"content_hash": "1e3084e8c0c1725346a9c5ee4cafc8e4",
"timestamp": "",
"source": "github",
"line_count": 154,
"max_line_length": 79,
"avg_line_length": 33.3051948051948,
"alnum_prop": 0.7161240007798791,
"repo_name": "karwa/swift",
"id": "a280c3f1d14de134a23cb8110abf476885f93740",
"size": "5945",
"binary": false,
"copies": "7",
"ref": "refs/heads/master",
"path": "include/swift/SILOptimizer/Utils/SpecializationMangler.h",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Batchfile",
"bytes": "13203"
},
{
"name": "C",
"bytes": "232100"
},
{
"name": "C++",
"bytes": "34472738"
},
{
"name": "CMake",
"bytes": "541545"
},
{
"name": "D",
"bytes": "1107"
},
{
"name": "DTrace",
"bytes": "2438"
},
{
"name": "Emacs Lisp",
"bytes": "57302"
},
{
"name": "LLVM",
"bytes": "70517"
},
{
"name": "MATLAB",
"bytes": "2576"
},
{
"name": "Makefile",
"bytes": "1841"
},
{
"name": "Objective-C",
"bytes": "429778"
},
{
"name": "Objective-C++",
"bytes": "249901"
},
{
"name": "Perl",
"bytes": "2211"
},
{
"name": "Python",
"bytes": "1612445"
},
{
"name": "Roff",
"bytes": "3495"
},
{
"name": "Ruby",
"bytes": "2091"
},
{
"name": "Shell",
"bytes": "189755"
},
{
"name": "Swift",
"bytes": "31135316"
},
{
"name": "Vim Script",
"bytes": "16883"
},
{
"name": "sed",
"bytes": "1050"
}
],
"symlink_target": ""
} |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="eu_ES" version="2.0">
<defaultcodec>UTF-8</defaultcodec>
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About Nestorcoin</source>
<translation>Nestorcoin-i buruz</translation>
</message>
<message>
<location line="+39"/>
<source><b>Nestorcoin</b> version</source>
<translation><b>Nestorcoin</b> bertsioa</translation>
</message>
<message>
<location line="+57"/>
<source>
This is experimental software.
Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php.
This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young ([email protected]) and UPnP software written by Thomas Bernard.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../aboutdialog.cpp" line="+14"/>
<source>Copyright</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>The Nestorcoin developers</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>AddressBookPage</name>
<message>
<location filename="../forms/addressbookpage.ui" line="+14"/>
<source>Address Book</source>
<translation>Helbide-liburua</translation>
</message>
<message>
<location line="+19"/>
<source>Double-click to edit address or label</source>
<translation>Klik bikoitza helbidea edo etiketa editatzeko</translation>
</message>
<message>
<location line="+27"/>
<source>Create a new address</source>
<translation>Sortu helbide berria</translation>
</message>
<message>
<location line="+14"/>
<source>Copy the currently selected address to the system clipboard</source>
<translation>Kopiatu hautatutako helbidea sistemaren arbelera</translation>
</message>
<message>
<location line="-11"/>
<source>&New Address</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../addressbookpage.cpp" line="+63"/>
<source>These are your Nestorcoin addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../forms/addressbookpage.ui" line="+14"/>
<source>&Copy Address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+11"/>
<source>Show &QR Code</source>
<translation>Erakutsi &QR kodea</translation>
</message>
<message>
<location line="+11"/>
<source>Sign a message to prove you own a Nestorcoin address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Sign &Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+25"/>
<source>Delete the currently selected address from the list</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+27"/>
<source>Export the data in the current tab to a file</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Export</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-44"/>
<source>Verify a message to ensure it was signed with a specified Nestorcoin address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Verify Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+14"/>
<source>&Delete</source>
<translation>&Ezabatu</translation>
</message>
<message>
<location filename="../addressbookpage.cpp" line="-5"/>
<source>These are your Nestorcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<source>Copy &Label</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>&Edit</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Send &Coins</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+260"/>
<source>Export Address Book Data</source>
<translation>Esportatu Helbide-liburuaren datuak</translation>
</message>
<message>
<location line="+1"/>
<source>Comma separated file (*.csv)</source>
<translation>Komaz bereizitako artxiboa (*.csv)</translation>
</message>
<message>
<location line="+13"/>
<source>Error exporting</source>
<translation>Errorea esportatzean</translation>
</message>
<message>
<location line="+0"/>
<source>Could not write to file %1.</source>
<translation>Ezin idatzi %1 artxiboan.</translation>
</message>
</context>
<context>
<name>AddressTableModel</name>
<message>
<location filename="../addresstablemodel.cpp" line="+144"/>
<source>Label</source>
<translation>Etiketa</translation>
</message>
<message>
<location line="+0"/>
<source>Address</source>
<translation>Helbidea</translation>
</message>
<message>
<location line="+36"/>
<source>(no label)</source>
<translation>(etiketarik ez)</translation>
</message>
</context>
<context>
<name>AskPassphraseDialog</name>
<message>
<location filename="../forms/askpassphrasedialog.ui" line="+26"/>
<source>Passphrase Dialog</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+21"/>
<source>Enter passphrase</source>
<translation>Sartu pasahitza</translation>
</message>
<message>
<location line="+14"/>
<source>New passphrase</source>
<translation>Pasahitz berria</translation>
</message>
<message>
<location line="+14"/>
<source>Repeat new passphrase</source>
<translation>Errepikatu pasahitz berria</translation>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="+33"/>
<source>Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>.</source>
<translation>Sartu zorrorako pasahitz berria.<br/> Mesedez erabili <b>gutxienez ausazko 10 karaktere</b>, edo <b>gutxienez zortzi hitz</b> pasahitza osatzeko.</translation>
</message>
<message>
<location line="+1"/>
<source>Encrypt wallet</source>
<translation>Enkriptatu zorroa</translation>
</message>
<message>
<location line="+3"/>
<source>This operation needs your wallet passphrase to unlock the wallet.</source>
<translation>Eragiketa honek zorroaren pasahitza behar du zorroa desblokeatzeko.</translation>
</message>
<message>
<location line="+5"/>
<source>Unlock wallet</source>
<translation>Desblokeatu zorroa</translation>
</message>
<message>
<location line="+3"/>
<source>This operation needs your wallet passphrase to decrypt the wallet.</source>
<translation>Eragiketa honek zure zorroaren pasahitza behar du, zorroa desenkriptatzeko.</translation>
</message>
<message>
<location line="+5"/>
<source>Decrypt wallet</source>
<translation>Desenkriptatu zorroa</translation>
</message>
<message>
<location line="+3"/>
<source>Change passphrase</source>
<translation>Aldatu pasahitza</translation>
</message>
<message>
<location line="+1"/>
<source>Enter the old and new passphrase to the wallet.</source>
<translation>Sartu zorroaren pasahitz zaharra eta berria.</translation>
</message>
<message>
<location line="+46"/>
<source>Confirm wallet encryption</source>
<translation>Berretsi zorroaren enkriptazioa</translation>
</message>
<message>
<location line="+1"/>
<source>Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR NESTORCOINS</b>!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>Are you sure you wish to encrypt your wallet?</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+15"/>
<source>IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+100"/>
<location line="+24"/>
<source>Warning: The Caps Lock key is on!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-130"/>
<location line="+58"/>
<source>Wallet encrypted</source>
<translation>Zorroa enkriptatuta</translation>
</message>
<message>
<location line="-56"/>
<source>Nestorcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your nestorcoins from being stolen by malware infecting your computer.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<location line="+7"/>
<location line="+42"/>
<location line="+6"/>
<source>Wallet encryption failed</source>
<translation>Zorroaren enkriptazioak huts egin du</translation>
</message>
<message>
<location line="-54"/>
<source>Wallet encryption failed due to an internal error. Your wallet was not encrypted.</source>
<translation>Zorroaren enkriptazioak huts egin du barne-errore baten ondorioz. Zure zorroa ez da enkriptatu.</translation>
</message>
<message>
<location line="+7"/>
<location line="+48"/>
<source>The supplied passphrases do not match.</source>
<translation>Eman dituzun pasahitzak ez datoz bat.</translation>
</message>
<message>
<location line="-37"/>
<source>Wallet unlock failed</source>
<translation>Zorroaren desblokeoak huts egin du</translation>
</message>
<message>
<location line="+1"/>
<location line="+11"/>
<location line="+19"/>
<source>The passphrase entered for the wallet decryption was incorrect.</source>
<translation>Zorroa desenkriptatzeko sartutako pasahitza okerra da.</translation>
</message>
<message>
<location line="-20"/>
<source>Wallet decryption failed</source>
<translation>Zorroaren desenkriptazioak huts egin du</translation>
</message>
<message>
<location line="+14"/>
<source>Wallet passphrase was successfully changed.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>BitcoinGUI</name>
<message>
<location filename="../bitcoingui.cpp" line="+233"/>
<source>Sign &message...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+280"/>
<source>Synchronizing with network...</source>
<translation>Sarearekin sinkronizatzen...</translation>
</message>
<message>
<location line="-349"/>
<source>&Overview</source>
<translation>&Gainbegiratu</translation>
</message>
<message>
<location line="+1"/>
<source>Show general overview of wallet</source>
<translation>Ikusi zorroaren begirada orokorra</translation>
</message>
<message>
<location line="+20"/>
<source>&Transactions</source>
<translation>&Transakzioak</translation>
</message>
<message>
<location line="+1"/>
<source>Browse transaction history</source>
<translation>Ikusi transakzioen historia</translation>
</message>
<message>
<location line="+7"/>
<source>Edit the list of stored addresses and labels</source>
<translation>Editatu gordetako helbide eta etiketen zerrenda</translation>
</message>
<message>
<location line="-14"/>
<source>Show the list of addresses for receiving payments</source>
<translation>Erakutsi ordainketak jasotzeko helbideen zerrenda</translation>
</message>
<message>
<location line="+31"/>
<source>E&xit</source>
<translation>Irten</translation>
</message>
<message>
<location line="+1"/>
<source>Quit application</source>
<translation>Irten aplikaziotik</translation>
</message>
<message>
<location line="+4"/>
<source>Show information about Nestorcoin</source>
<translation>Erakutsi Nestorcoin-i buruzko informazioa</translation>
</message>
<message>
<location line="+2"/>
<source>About &Qt</source>
<translation>&Qt-ari buruz</translation>
</message>
<message>
<location line="+1"/>
<source>Show information about Qt</source>
<translation>Erakutsi Nestorcoin-i buruzko informazioa</translation>
</message>
<message>
<location line="+2"/>
<source>&Options...</source>
<translation>&Aukerak...</translation>
</message>
<message>
<location line="+6"/>
<source>&Encrypt Wallet...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Backup Wallet...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>&Change Passphrase...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+285"/>
<source>Importing blocks from disk...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Reindexing blocks on disk...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-347"/>
<source>Send coins to a Nestorcoin address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+49"/>
<source>Modify configuration options for Nestorcoin</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+9"/>
<source>Backup wallet to another location</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Change the passphrase used for wallet encryption</source>
<translation>Aldatu zorroa enkriptatzeko erabilitako pasahitza</translation>
</message>
<message>
<location line="+6"/>
<source>&Debug window</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Open debugging and diagnostic console</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-4"/>
<source>&Verify message...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-165"/>
<location line="+530"/>
<source>Nestorcoin</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-530"/>
<source>Wallet</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+101"/>
<source>&Send</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>&Receive</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+14"/>
<source>&Addresses</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+22"/>
<source>&About Nestorcoin</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+9"/>
<source>&Show / Hide</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Show or hide the main Window</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Encrypt the private keys that belong to your wallet</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Sign messages with your Nestorcoin addresses to prove you own them</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Verify messages to ensure they were signed with specified Nestorcoin addresses</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+28"/>
<source>&File</source>
<translation>&Artxiboa</translation>
</message>
<message>
<location line="+7"/>
<source>&Settings</source>
<translation>&Ezarpenak</translation>
</message>
<message>
<location line="+6"/>
<source>&Help</source>
<translation>&Laguntza</translation>
</message>
<message>
<location line="+9"/>
<source>Tabs toolbar</source>
<translation>Fitxen tresna-barra</translation>
</message>
<message>
<location line="+17"/>
<location line="+10"/>
<source>[testnet]</source>
<translation>[testnet]</translation>
</message>
<message>
<location line="+47"/>
<source>Nestorcoin client</source>
<translation type="unfinished"/>
</message>
<message numerus="yes">
<location line="+141"/>
<source>%n active connection(s) to Nestorcoin network</source>
<translation><numerusform>Konexio aktibo %n Nestorcoin-en sarera</numerusform><numerusform>%n konexio aktibo Nestorcoin-en sarera</numerusform></translation>
</message>
<message>
<location line="+22"/>
<source>No block source available...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+12"/>
<source>Processed %1 of %2 (estimated) blocks of transaction history.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>Processed %1 blocks of transaction history.</source>
<translation type="unfinished"/>
</message>
<message numerus="yes">
<location line="+20"/>
<source>%n hour(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message numerus="yes">
<location line="+4"/>
<source>%n day(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message numerus="yes">
<location line="+4"/>
<source>%n week(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message>
<location line="+4"/>
<source>%1 behind</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+14"/>
<source>Last received block was generated %1 ago.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Transactions after this will not yet be visible.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+22"/>
<source>Error</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Warning</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Information</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+70"/>
<source>This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee?</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-140"/>
<source>Up to date</source>
<translation>Egunean</translation>
</message>
<message>
<location line="+31"/>
<source>Catching up...</source>
<translation>Eguneratzen...</translation>
</message>
<message>
<location line="+113"/>
<source>Confirm transaction fee</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+8"/>
<source>Sent transaction</source>
<translation>Bidalitako transakzioa</translation>
</message>
<message>
<location line="+0"/>
<source>Incoming transaction</source>
<translation>Sarrerako transakzioa</translation>
</message>
<message>
<location line="+1"/>
<source>Date: %1
Amount: %2
Type: %3
Address: %4
</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+33"/>
<location line="+23"/>
<source>URI handling</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-23"/>
<location line="+23"/>
<source>URI can not be parsed! This can be caused by an invalid Nestorcoin address or malformed URI parameters.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+17"/>
<source>Wallet is <b>encrypted</b> and currently <b>unlocked</b></source>
<translation>Zorroa <b>enkriptatuta</b> eta <b>desblokeatuta</b> dago une honetan</translation>
</message>
<message>
<location line="+8"/>
<source>Wallet is <b>encrypted</b> and currently <b>locked</b></source>
<translation>Zorroa <b>enkriptatuta</b> eta <b>blokeatuta</b> dago une honetan</translation>
</message>
<message>
<location filename="../bitcoin.cpp" line="+111"/>
<source>A fatal error occurred. Nestorcoin can no longer continue safely and will quit.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>ClientModel</name>
<message>
<location filename="../clientmodel.cpp" line="+104"/>
<source>Network Alert</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>EditAddressDialog</name>
<message>
<location filename="../forms/editaddressdialog.ui" line="+14"/>
<source>Edit Address</source>
<translation>Editatu helbidea</translation>
</message>
<message>
<location line="+11"/>
<source>&Label</source>
<translation>&Etiketa</translation>
</message>
<message>
<location line="+10"/>
<source>The label associated with this address book entry</source>
<translation>Helbide-liburuko sarrera honekin lotutako etiketa</translation>
</message>
<message>
<location line="+7"/>
<source>&Address</source>
<translation>&Helbidea</translation>
</message>
<message>
<location line="+10"/>
<source>The address associated with this address book entry. This can only be modified for sending addresses.</source>
<translation>Helbide-liburuko sarrera honekin lotutako helbidea. Bidaltzeko helbideeta soilik alda daiteke.</translation>
</message>
<message>
<location filename="../editaddressdialog.cpp" line="+21"/>
<source>New receiving address</source>
<translation>Jasotzeko helbide berria</translation>
</message>
<message>
<location line="+4"/>
<source>New sending address</source>
<translation>Bidaltzeko helbide berria</translation>
</message>
<message>
<location line="+3"/>
<source>Edit receiving address</source>
<translation>Editatu jasotzeko helbidea</translation>
</message>
<message>
<location line="+4"/>
<source>Edit sending address</source>
<translation>Editatu bidaltzeko helbidea</translation>
</message>
<message>
<location line="+76"/>
<source>The entered address "%1" is already in the address book.</source>
<translation>Sartu berri den helbidea, "%1", helbide-liburuan dago jadanik.</translation>
</message>
<message>
<location line="-5"/>
<source>The entered address "%1" is not a valid Nestorcoin address.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+10"/>
<source>Could not unlock wallet.</source>
<translation>Ezin desblokeatu zorroa.</translation>
</message>
<message>
<location line="+5"/>
<source>New key generation failed.</source>
<translation>Gako berriaren sorrerak huts egin du.</translation>
</message>
</context>
<context>
<name>GUIUtil::HelpMessageBox</name>
<message>
<location filename="../guiutil.cpp" line="+424"/>
<location line="+12"/>
<source>Nestorcoin-Qt</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-12"/>
<source>version</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Usage:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>command-line options</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>UI options</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Set language, for example "de_DE" (default: system locale)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Start minimized</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Show splash screen on startup (default: 1)</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
<location filename="../forms/optionsdialog.ui" line="+14"/>
<source>Options</source>
<translation>Aukerak</translation>
</message>
<message>
<location line="+16"/>
<source>&Main</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+15"/>
<source>Pay transaction &fee</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+31"/>
<source>Automatically start Nestorcoin after logging in to the system.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Start Nestorcoin on system login</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+35"/>
<source>Reset all client options to default.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Reset Options</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<source>&Network</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>Automatically open the Nestorcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Map port using &UPnP</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Connect to the Nestorcoin network through a SOCKS proxy (e.g. when connecting through Tor).</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Connect through SOCKS proxy:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+9"/>
<source>Proxy &IP:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+19"/>
<source>IP address of the proxy (e.g. 127.0.0.1)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>&Port:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+19"/>
<source>Port of the proxy (e.g. 9050)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>SOCKS &Version:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<source>SOCKS version of the proxy (e.g. 5)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+36"/>
<source>&Window</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>Show only a tray icon after minimizing the window.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Minimize to the tray instead of the taskbar</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>M&inimize on close</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+21"/>
<source>&Display</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+8"/>
<source>User Interface &language:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<source>The user interface language can be set here. This setting will take effect after restarting Nestorcoin.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+11"/>
<source>&Unit to show amounts in:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<source>Choose the default subdivision unit to show in the interface and when sending coins.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+9"/>
<source>Whether to show Nestorcoin addresses in the transaction list or not.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Display addresses in transaction list</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+71"/>
<source>&OK</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>&Cancel</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+10"/>
<source>&Apply</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../optionsdialog.cpp" line="+53"/>
<source>default</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+130"/>
<source>Confirm options reset</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Some settings may require a client restart to take effect.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>Do you want to proceed?</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+42"/>
<location line="+9"/>
<source>Warning</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-9"/>
<location line="+9"/>
<source>This setting will take effect after restarting Nestorcoin.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+29"/>
<source>The supplied proxy address is invalid.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>OverviewPage</name>
<message>
<location filename="../forms/overviewpage.ui" line="+14"/>
<source>Form</source>
<translation>Inprimakia</translation>
</message>
<message>
<location line="+50"/>
<location line="+166"/>
<source>The displayed information may be out of date. Your wallet automatically synchronizes with the Nestorcoin network after a connection is established, but this process has not completed yet.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-124"/>
<source>Balance:</source>
<translation>Saldoa:</translation>
</message>
<message>
<location line="+29"/>
<source>Unconfirmed:</source>
<translation>Konfirmatu gabe:</translation>
</message>
<message>
<location line="-78"/>
<source>Wallet</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+107"/>
<source>Immature:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<source>Mined balance that has not yet matured</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+46"/>
<source><b>Recent transactions</b></source>
<translation><b>Azken transakzioak</b></translation>
</message>
<message>
<location line="-101"/>
<source>Your current balance</source>
<translation>Zure uneko saldoa</translation>
</message>
<message>
<location line="+29"/>
<source>Total of transactions that have yet to be confirmed, and do not yet count toward the current balance</source>
<translation>Oraindik konfirmatu gabe daudenez, uneko saldoab kontatu gabe dagoen transakzio kopurua</translation>
</message>
<message>
<location filename="../overviewpage.cpp" line="+116"/>
<location line="+1"/>
<source>out of sync</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>PaymentServer</name>
<message>
<location filename="../paymentserver.cpp" line="+107"/>
<source>Cannot start nestorcoin: click-to-pay handler</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>QRCodeDialog</name>
<message>
<location filename="../forms/qrcodedialog.ui" line="+14"/>
<source>QR Code Dialog</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+59"/>
<source>Request Payment</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+56"/>
<source>Amount:</source>
<translation>Kopurua</translation>
</message>
<message>
<location line="-44"/>
<source>Label:</source>
<translation>&Etiketa:</translation>
</message>
<message>
<location line="+19"/>
<source>Message:</source>
<translation>Mezua</translation>
</message>
<message>
<location line="+71"/>
<source>&Save As...</source>
<translation>Gorde honela...</translation>
</message>
<message>
<location filename="../qrcodedialog.cpp" line="+62"/>
<source>Error encoding URI into QR Code.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+40"/>
<source>The entered amount is invalid, please check.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+23"/>
<source>Resulting URI too long, try to reduce the text for label / message.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+25"/>
<source>Save QR Code</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>PNG Images (*.png)</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>RPCConsole</name>
<message>
<location filename="../forms/rpcconsole.ui" line="+46"/>
<source>Client name</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+10"/>
<location line="+23"/>
<location line="+26"/>
<location line="+23"/>
<location line="+23"/>
<location line="+36"/>
<location line="+53"/>
<location line="+23"/>
<location line="+23"/>
<location filename="../rpcconsole.cpp" line="+339"/>
<source>N/A</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-217"/>
<source>Client version</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-45"/>
<source>&Information</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+68"/>
<source>Using OpenSSL version</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+49"/>
<source>Startup time</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+29"/>
<source>Network</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Number of connections</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+23"/>
<source>On testnet</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+23"/>
<source>Block chain</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Current number of blocks</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+23"/>
<source>Estimated total blocks</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+23"/>
<source>Last block time</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+52"/>
<source>&Open</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+16"/>
<source>Command-line options</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Show the Nestorcoin-Qt help message to get a list with possible Nestorcoin command-line options.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>&Show</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+24"/>
<source>&Console</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-260"/>
<source>Build date</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-104"/>
<source>Nestorcoin - Debug window</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+25"/>
<source>Nestorcoin Core</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+279"/>
<source>Debug log file</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Open the Nestorcoin debug log file from the current data directory. This can take a few seconds for large log files.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+102"/>
<source>Clear console</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../rpcconsole.cpp" line="-30"/>
<source>Welcome to the Nestorcoin RPC console.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Type <b>help</b> for an overview of available commands.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>SendCoinsDialog</name>
<message>
<location filename="../forms/sendcoinsdialog.ui" line="+14"/>
<location filename="../sendcoinsdialog.cpp" line="+124"/>
<location line="+5"/>
<location line="+5"/>
<location line="+5"/>
<location line="+6"/>
<location line="+5"/>
<location line="+5"/>
<source>Send Coins</source>
<translation>Bidali txanponak</translation>
</message>
<message>
<location line="+50"/>
<source>Send to multiple recipients at once</source>
<translation>Bidali hainbat jasotzaileri batera</translation>
</message>
<message>
<location line="+3"/>
<source>Add &Recipient</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+20"/>
<source>Remove all transaction fields</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Clear &All</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+22"/>
<source>Balance:</source>
<translation>Saldoa:</translation>
</message>
<message>
<location line="+10"/>
<source>123.456 BTC</source>
<translation>123.456 BTC</translation>
</message>
<message>
<location line="+31"/>
<source>Confirm the send action</source>
<translation>Berretsi bidaltzeko ekintza</translation>
</message>
<message>
<location line="+3"/>
<source>S&end</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../sendcoinsdialog.cpp" line="-59"/>
<source><b>%1</b> to %2 (%3)</source>
<translation><b>%1</b> honi: %2 (%3)</translation>
</message>
<message>
<location line="+5"/>
<source>Confirm send coins</source>
<translation>Berretsi txanponak bidaltzea</translation>
</message>
<message>
<location line="+1"/>
<source>Are you sure you want to send %1?</source>
<translation>Ziur zaude %1 bidali nahi duzula?</translation>
</message>
<message>
<location line="+0"/>
<source> and </source>
<translation>eta</translation>
</message>
<message>
<location line="+23"/>
<source>The recipient address is not valid, please recheck.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>The amount to pay must be larger than 0.</source>
<translation>Ordaintzeko kopurua 0 baino handiagoa izan behar du.</translation>
</message>
<message>
<location line="+5"/>
<source>The amount exceeds your balance.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>The total exceeds your balance when the %1 transaction fee is included.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>Duplicate address found, can only send to each address once per send operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Error: Transaction creation failed!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>SendCoinsEntry</name>
<message>
<location filename="../forms/sendcoinsentry.ui" line="+14"/>
<source>Form</source>
<translation>Inprimakia</translation>
</message>
<message>
<location line="+15"/>
<source>A&mount:</source>
<translation>K&opurua:</translation>
</message>
<message>
<location line="+13"/>
<source>Pay &To:</source>
<translation>Ordaindu &honi:</translation>
</message>
<message>
<location line="+34"/>
<source>The address to send the payment to (e.g. Ler4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+60"/>
<location filename="../sendcoinsentry.cpp" line="+26"/>
<source>Enter a label for this address to add it to your address book</source>
<translation>Sartu etiketa bat helbide honetarako, eta gehitu zure helbide-liburuan</translation>
</message>
<message>
<location line="-78"/>
<source>&Label:</source>
<translation>&Etiketa:</translation>
</message>
<message>
<location line="+28"/>
<source>Choose address from address book</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+10"/>
<source>Alt+A</source>
<translation>Alt+A</translation>
</message>
<message>
<location line="+7"/>
<source>Paste address from clipboard</source>
<translation>Itsatsi helbidea arbeletik</translation>
</message>
<message>
<location line="+10"/>
<source>Alt+P</source>
<translation>Alt+P</translation>
</message>
<message>
<location line="+7"/>
<source>Remove this recipient</source>
<translation>Ezabatu jasotzaile hau</translation>
</message>
<message>
<location filename="../sendcoinsentry.cpp" line="+1"/>
<source>Enter a Nestorcoin address (e.g. Ler4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2)</source>
<translation>Sartu Bitocin helbide bat (adb.: Ler4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2) </translation>
</message>
</context>
<context>
<name>SignVerifyMessageDialog</name>
<message>
<location filename="../forms/signverifymessagedialog.ui" line="+14"/>
<source>Signatures - Sign / Verify a Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+13"/>
<source>&Sign Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+18"/>
<source>The address to sign the message with (e.g. Ler4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+10"/>
<location line="+213"/>
<source>Choose an address from the address book</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-203"/>
<location line="+213"/>
<source>Alt+A</source>
<translation>Alt+A</translation>
</message>
<message>
<location line="-203"/>
<source>Paste address from clipboard</source>
<translation>Itsatsi helbidea arbeletik</translation>
</message>
<message>
<location line="+10"/>
<source>Alt+P</source>
<translation>Alt+P</translation>
</message>
<message>
<location line="+12"/>
<source>Enter the message you want to sign here</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Signature</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+27"/>
<source>Copy the current signature to the system clipboard</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+21"/>
<source>Sign the message to prove you own this Nestorcoin address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Sign &Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+14"/>
<source>Reset all sign message fields</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<location line="+146"/>
<source>Clear &All</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-87"/>
<source>&Verify Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+21"/>
<source>The address the message was signed with (e.g. Ler4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+40"/>
<source>Verify the message to ensure it was signed with the specified Nestorcoin address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Verify &Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+14"/>
<source>Reset all verify message fields</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../signverifymessagedialog.cpp" line="+27"/>
<location line="+3"/>
<source>Enter a Nestorcoin address (e.g. Ler4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2)</source>
<translation>Sartu Bitocin helbide bat (adb.: Ler4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2) </translation>
</message>
<message>
<location line="-2"/>
<source>Click "Sign Message" to generate signature</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Enter Nestorcoin signature</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+82"/>
<location line="+81"/>
<source>The entered address is invalid.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-81"/>
<location line="+8"/>
<location line="+73"/>
<location line="+8"/>
<source>Please check the address and try again.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-81"/>
<location line="+81"/>
<source>The entered address does not refer to a key.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-73"/>
<source>Wallet unlock was cancelled.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+8"/>
<source>Private key for the entered address is not available.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+12"/>
<source>Message signing failed.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Message signed.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+59"/>
<source>The signature could not be decoded.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<location line="+13"/>
<source>Please check the signature and try again.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>The signature did not match the message digest.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Message verification failed.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Message verified.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>SplashScreen</name>
<message>
<location filename="../splashscreen.cpp" line="+22"/>
<source>The Nestorcoin developers</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>[testnet]</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>TransactionDesc</name>
<message>
<location filename="../transactiondesc.cpp" line="+20"/>
<source>Open until %1</source>
<translation>Zabalik %1 arte</translation>
</message>
<message>
<location line="+6"/>
<source>%1/offline</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>%1/unconfirmed</source>
<translation>%1/konfirmatu gabe</translation>
</message>
<message>
<location line="+2"/>
<source>%1 confirmations</source>
<translation>%1 konfirmazioak</translation>
</message>
<message>
<location line="+18"/>
<source>Status</source>
<translation type="unfinished"/>
</message>
<message numerus="yes">
<location line="+7"/>
<source>, broadcast through %n node(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message>
<location line="+4"/>
<source>Date</source>
<translation>Data</translation>
</message>
<message>
<location line="+7"/>
<source>Source</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>Generated</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<location line="+17"/>
<source>From</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<location line="+22"/>
<location line="+58"/>
<source>To</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-77"/>
<location line="+2"/>
<source>own address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-2"/>
<source>label</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+37"/>
<location line="+12"/>
<location line="+45"/>
<location line="+17"/>
<location line="+30"/>
<source>Credit</source>
<translation type="unfinished"/>
</message>
<message numerus="yes">
<location line="-102"/>
<source>matures in %n more block(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message>
<location line="+2"/>
<source>not accepted</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+44"/>
<location line="+8"/>
<location line="+15"/>
<location line="+30"/>
<source>Debit</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-39"/>
<source>Transaction fee</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+16"/>
<source>Net amount</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>Message</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Comment</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Transaction ID</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Generated coins must mature 20 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Debug information</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+8"/>
<source>Transaction</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Inputs</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+23"/>
<source>Amount</source>
<translation>Kopurua</translation>
</message>
<message>
<location line="+1"/>
<source>true</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>false</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-209"/>
<source>, has not been successfully broadcast yet</source>
<translation>, ez da arrakastaz emititu oraindik</translation>
</message>
<message numerus="yes">
<location line="-35"/>
<source>Open for %n more block(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message>
<location line="+70"/>
<source>unknown</source>
<translation>ezezaguna</translation>
</message>
</context>
<context>
<name>TransactionDescDialog</name>
<message>
<location filename="../forms/transactiondescdialog.ui" line="+14"/>
<source>Transaction details</source>
<translation>Transakzioaren xehetasunak</translation>
</message>
<message>
<location line="+6"/>
<source>This pane shows a detailed description of the transaction</source>
<translation>Panel honek transakzioaren deskribapen xehea erakusten du</translation>
</message>
</context>
<context>
<name>TransactionTableModel</name>
<message>
<location filename="../transactiontablemodel.cpp" line="+225"/>
<source>Date</source>
<translation>Data</translation>
</message>
<message>
<location line="+0"/>
<source>Type</source>
<translation>Mota</translation>
</message>
<message>
<location line="+0"/>
<source>Address</source>
<translation>Helbidea</translation>
</message>
<message>
<location line="+0"/>
<source>Amount</source>
<translation>Kopurua</translation>
</message>
<message numerus="yes">
<location line="+57"/>
<source>Open for %n more block(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message>
<location line="+3"/>
<source>Open until %1</source>
<translation>Zabalik %1 arte</translation>
</message>
<message>
<location line="+3"/>
<source>Offline (%1 confirmations)</source>
<translation>Offline (%1 konfirmazio)</translation>
</message>
<message>
<location line="+3"/>
<source>Unconfirmed (%1 of %2 confirmations)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Confirmed (%1 confirmations)</source>
<translation>Konfirmatuta (%1 konfirmazio)</translation>
</message>
<message numerus="yes">
<location line="+8"/>
<source>Mined balance will be available when it matures in %n more block(s)</source>
<translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation>
</message>
<message>
<location line="+5"/>
<source>This block was not received by any other nodes and will probably not be accepted!</source>
<translation>Bloke hau ez du beste inongo nodorik jaso, eta seguruenik ez da onartuko!</translation>
</message>
<message>
<location line="+3"/>
<source>Generated but not accepted</source>
<translation>Sortua, baina ez onartua</translation>
</message>
<message>
<location line="+43"/>
<source>Received with</source>
<translation>Jasoa honekin: </translation>
</message>
<message>
<location line="+2"/>
<source>Received from</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Sent to</source>
<translation>Honi bidalia: </translation>
</message>
<message>
<location line="+2"/>
<source>Payment to yourself</source>
<translation>Ordainketa zeure buruari</translation>
</message>
<message>
<location line="+2"/>
<source>Mined</source>
<translation>Bildua</translation>
</message>
<message>
<location line="+38"/>
<source>(n/a)</source>
<translation>(n/a)</translation>
</message>
<message>
<location line="+199"/>
<source>Transaction status. Hover over this field to show number of confirmations.</source>
<translation>Transakzioaren egoera. Pasatu sagua gainetik konfirmazio kopurua ikusteko.</translation>
</message>
<message>
<location line="+2"/>
<source>Date and time that the transaction was received.</source>
<translation>Transakzioa jasotako data eta ordua.</translation>
</message>
<message>
<location line="+2"/>
<source>Type of transaction.</source>
<translation>Transakzio mota.</translation>
</message>
<message>
<location line="+2"/>
<source>Destination address of transaction.</source>
<translation>Transakzioaren xede-helbidea.</translation>
</message>
<message>
<location line="+2"/>
<source>Amount removed from or added to balance.</source>
<translation>Saldoan kendu edo gehitutako kopurua.</translation>
</message>
</context>
<context>
<name>TransactionView</name>
<message>
<location filename="../transactionview.cpp" line="+52"/>
<location line="+16"/>
<source>All</source>
<translation>Denak</translation>
</message>
<message>
<location line="-15"/>
<source>Today</source>
<translation>Gaur</translation>
</message>
<message>
<location line="+1"/>
<source>This week</source>
<translation>Aste honetan</translation>
</message>
<message>
<location line="+1"/>
<source>This month</source>
<translation>Hil honetan</translation>
</message>
<message>
<location line="+1"/>
<source>Last month</source>
<translation>Azken hilean</translation>
</message>
<message>
<location line="+1"/>
<source>This year</source>
<translation>Aurten</translation>
</message>
<message>
<location line="+1"/>
<source>Range...</source>
<translation>Muga...</translation>
</message>
<message>
<location line="+11"/>
<source>Received with</source>
<translation>Jasota honekin: </translation>
</message>
<message>
<location line="+2"/>
<source>Sent to</source>
<translation>Hona bidalia: </translation>
</message>
<message>
<location line="+2"/>
<source>To yourself</source>
<translation>Zeure buruari</translation>
</message>
<message>
<location line="+1"/>
<source>Mined</source>
<translation>Bildua</translation>
</message>
<message>
<location line="+1"/>
<source>Other</source>
<translation>Beste</translation>
</message>
<message>
<location line="+7"/>
<source>Enter address or label to search</source>
<translation>Sartu bilatzeko helbide edo etiketa</translation>
</message>
<message>
<location line="+7"/>
<source>Min amount</source>
<translation>Kopuru minimoa</translation>
</message>
<message>
<location line="+34"/>
<source>Copy address</source>
<translation>Kopiatu helbidea</translation>
</message>
<message>
<location line="+1"/>
<source>Copy label</source>
<translation>Kopiatu etiketa</translation>
</message>
<message>
<location line="+1"/>
<source>Copy amount</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Copy transaction ID</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Edit label</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Show transaction details</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+139"/>
<source>Export Transaction Data</source>
<translation>Transakzioaren xehetasunak</translation>
</message>
<message>
<location line="+1"/>
<source>Comma separated file (*.csv)</source>
<translation>Komaz bereizitako artxiboa (*.csv)</translation>
</message>
<message>
<location line="+8"/>
<source>Confirmed</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Date</source>
<translation>Data</translation>
</message>
<message>
<location line="+1"/>
<source>Type</source>
<translation>Mota</translation>
</message>
<message>
<location line="+1"/>
<source>Label</source>
<translation>Etiketa</translation>
</message>
<message>
<location line="+1"/>
<source>Address</source>
<translation>Helbidea</translation>
</message>
<message>
<location line="+1"/>
<source>Amount</source>
<translation>Kopurua</translation>
</message>
<message>
<location line="+1"/>
<source>ID</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>Error exporting</source>
<translation>Errorea esportatzean</translation>
</message>
<message>
<location line="+0"/>
<source>Could not write to file %1.</source>
<translation>Ezin idatzi %1 artxiboan.</translation>
</message>
<message>
<location line="+100"/>
<source>Range:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+8"/>
<source>to</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>WalletModel</name>
<message>
<location filename="../walletmodel.cpp" line="+193"/>
<source>Send Coins</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>WalletView</name>
<message>
<location filename="../walletview.cpp" line="+42"/>
<source>&Export</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Export the data in the current tab to a file</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+193"/>
<source>Backup Wallet</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>Wallet Data (*.dat)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Backup Failed</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>There was an error trying to save the wallet data to the new location.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>Backup Successful</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+0"/>
<source>The wallet data was successfully saved to the new location.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>bitcoin-core</name>
<message>
<location filename="../bitcoinstrings.cpp" line="+94"/>
<source>Nestorcoin version</source>
<translation>Botcoin bertsioa</translation>
</message>
<message>
<location line="+102"/>
<source>Usage:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-29"/>
<source>Send command to -server or nestorcoind</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-23"/>
<source>List commands</source>
<translation>Komandoen lista</translation>
</message>
<message>
<location line="-12"/>
<source>Get help for a command</source>
<translation>Laguntza komando batean</translation>
</message>
<message>
<location line="+24"/>
<source>Options:</source>
<translation>Aukerak</translation>
</message>
<message>
<location line="+24"/>
<source>Specify configuration file (default: nestorcoin.conf)</source>
<translation>Ezarpen fitxategia aukeratu (berezkoa: nestorcoin.conf)</translation>
</message>
<message>
<location line="+3"/>
<source>Specify pid file (default: nestorcoind.pid)</source>
<translation>pid fitxategia aukeratu (berezkoa: nestorcoind.pid)</translation>
</message>
<message>
<location line="-1"/>
<source>Specify data directory</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-9"/>
<source>Set database cache size in megabytes (default: 25)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-28"/>
<source>Listen for connections on <port> (default: 9247 or testnet: 19247)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Maintain at most <n> connections to peers (default: 125)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-48"/>
<source>Connect to a node to retrieve peer addresses, and disconnect</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+82"/>
<source>Specify your own public address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Threshold for disconnecting misbehaving peers (default: 100)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-134"/>
<source>Number of seconds to keep misbehaving peers from reconnecting (default: 86400)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-29"/>
<source>An error occurred while setting up the RPC port %u for listening on IPv4: %s</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+27"/>
<source>Listen for JSON-RPC connections on <port> (default: 9248 or testnet: 19248)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+37"/>
<source>Accept command line and JSON-RPC commands</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+76"/>
<source>Run in the background as a daemon and accept commands</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+37"/>
<source>Use the test network</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-112"/>
<source>Accept connections from outside (default: 1 if no -proxy or -connect)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-80"/>
<source>%s, you must set a rpcpassword in the configuration file:
%s
It is recommended you use the following random password:
rpcuser=nestorcoinrpc
rpcpassword=%s
(you do not need to remember this password)
The username and password MUST NOT be the same.
If the file does not exist, create it with owner-readable-only file permissions.
It is also recommended to set alertnotify so you are notified of problems;
for example: alertnotify=echo %%s | mail -s "Nestorcoin Alert" [email protected]
</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+17"/>
<source>An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Cannot obtain a lock on data directory %s. Nestorcoin is probably already running.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Execute command when a relevant alert is received (%s in cmd is replaced by message)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+11"/>
<source>Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+6"/>
<source>This is a pre-release test build - use at your own risk - do not use for mining or merchant applications</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Warning: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Warning: Please check that your computer's date and time are correct! If your clock is wrong Nestorcoin will not work properly.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+14"/>
<source>Attempt to recover private keys from a corrupt wallet.dat</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Block creation options:</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Connect only to the specified node(s)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Corrupted block database detected</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Discover own IP address (default: 1 when listening and no -externalip)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Do you want to rebuild the block database now?</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Error initializing block database</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Error initializing wallet database environment %s!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Error loading block database</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>Error opening block database</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Error: Disk space is low!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Error: Wallet locked, unable to create transaction!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Error: system error: </source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to listen on any port. Use -listen=0 if you want this.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to read block info</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to read block</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to sync block index</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to write block index</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to write block info</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to write block</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to write file info</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to write to coin database</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to write transaction index</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Failed to write undo data</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Find peers using DNS lookup (default: 1 unless -connect)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Generate coins (default: 0)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>How many blocks to check at startup (default: 288, 0 = all)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>How thorough the block verification is (0-4, default: 3)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+19"/>
<source>Not enough file descriptors available.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+8"/>
<source>Rebuild block chain index from current blk000??.dat files</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+16"/>
<source>Set the number of threads to service RPC calls (default: 4)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+26"/>
<source>Verifying blocks...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Verifying wallet...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-69"/>
<source>Imports blocks from external blk000??.dat file</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-76"/>
<source>Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+77"/>
<source>Information</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Invalid -tor address: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Invalid amount for -minrelaytxfee=<amount>: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Invalid amount for -mintxfee=<amount>: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+8"/>
<source>Maintain a full transaction index (default: 0)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Only accept block chain matching built-in checkpoints (default: 1)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Only connect to nodes in network <net> (IPv4, IPv6 or Tor)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Output extra debugging information. Implies all other -debug* options</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Output extra network debugging information</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Prepend debug output with timestamp</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>SSL options: (see the Nestorcoin Wiki for SSL setup instructions)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Select the version of socks proxy to use (4-5, default: 5)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Send trace/debug info to console instead of debug.log file</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Send trace/debug info to debugger</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+5"/>
<source>Set maximum block size in bytes (default: 250000)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Set minimum block size in bytes (default: 0)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Shrink debug.log file on client startup (default: 1 when no -debug)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Signing transaction failed</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Specify connection timeout in milliseconds (default: 5000)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>System error: </source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>Transaction amount too small</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Transaction amounts must be positive</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Transaction too large</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+7"/>
<source>Use UPnP to map the listening port (default: 0)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Use UPnP to map the listening port (default: 1 when listening)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Use proxy to reach tor hidden services (default: same as -proxy)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+2"/>
<source>Username for JSON-RPC connections</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+4"/>
<source>Warning</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Warning: This version is obsolete, upgrade required!</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>You need to rebuild the databases using -reindex to change -txindex</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>wallet.dat corrupt, salvage failed</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-50"/>
<source>Password for JSON-RPC connections</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-67"/>
<source>Allow JSON-RPC connections from specified IP address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+76"/>
<source>Send commands to node running on <ip> (default: 127.0.0.1)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-20"/>
<source>Execute command when the best block changes (%s in cmd is replaced by block hash)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+147"/>
<source>Upgrade wallet to latest format</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-21"/>
<source>Set key pool size to <n> (default: 100)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-12"/>
<source>Rescan the block chain for missing wallet transactions</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+35"/>
<source>Use OpenSSL (https) for JSON-RPC connections</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-26"/>
<source>Server certificate file (default: server.cert)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Server private key (default: server.pem)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-151"/>
<source>Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+165"/>
<source>This help message</source>
<translation>Laguntza mezu hau</translation>
</message>
<message>
<location line="+6"/>
<source>Unable to bind to %s on this computer (bind returned error %d, %s)</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-91"/>
<source>Connect through socks proxy</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-10"/>
<source>Allow DNS lookups for -addnode, -seednode and -connect</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+55"/>
<source>Loading addresses...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-35"/>
<source>Error loading wallet.dat: Wallet corrupted</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Error loading wallet.dat: Wallet requires newer version of Nestorcoin</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+93"/>
<source>Wallet needed to be rewritten: restart Nestorcoin to complete</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-95"/>
<source>Error loading wallet.dat</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+28"/>
<source>Invalid -proxy address: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+56"/>
<source>Unknown network specified in -onlynet: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-1"/>
<source>Unknown -socks proxy version requested: %i</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-96"/>
<source>Cannot resolve -bind address: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Cannot resolve -externalip address: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+44"/>
<source>Invalid amount for -paytxfee=<amount>: '%s'</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+1"/>
<source>Invalid amount</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-6"/>
<source>Insufficient funds</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+10"/>
<source>Loading block index...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-57"/>
<source>Add a node to connect to and attempt to keep the connection open</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-25"/>
<source>Unable to bind to %s on this computer. Nestorcoin is probably already running.</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+64"/>
<source>Fee per KB to add to transactions you send</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+19"/>
<source>Loading wallet...</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-52"/>
<source>Cannot downgrade wallet</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+3"/>
<source>Cannot write default address</source>
<translation type="unfinished"/>
</message>
<message>
<location line="+64"/>
<source>Rescanning...</source>
<translation>Birbilatzen...</translation>
</message>
<message>
<location line="-57"/>
<source>Done loading</source>
<translation>Zamaketa amaitua</translation>
</message>
<message>
<location line="+82"/>
<source>To use the %s option</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-74"/>
<source>Error</source>
<translation type="unfinished"/>
</message>
<message>
<location line="-31"/>
<source>You must set rpcpassword=<password> in the configuration file:
%s
If the file does not exist, create it with owner-readable-only file permissions.</source>
<translation type="unfinished"/>
</message>
</context>
</TS> | {
"content_hash": "b2efd6c83d01f761a307bd28b803fa1a",
"timestamp": "",
"source": "github",
"line_count": 2917,
"max_line_length": 394,
"avg_line_length": 34.32053479602331,
"alnum_prop": 0.5975148082666587,
"repo_name": "Nestorcoin/nestorcoin",
"id": "d2546528cceaecbb83a56355da30de8fe7138167",
"size": "100113",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/qt/locale/bitcoin_eu_ES.ts",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "C",
"bytes": "32413"
},
{
"name": "C++",
"bytes": "2606637"
},
{
"name": "CSS",
"bytes": "1127"
},
{
"name": "Groff",
"bytes": "18284"
},
{
"name": "HTML",
"bytes": "50621"
},
{
"name": "Makefile",
"bytes": "13915"
},
{
"name": "NSIS",
"bytes": "5996"
},
{
"name": "Objective-C",
"bytes": "1052"
},
{
"name": "Objective-C++",
"bytes": "5864"
},
{
"name": "Python",
"bytes": "69724"
},
{
"name": "QMake",
"bytes": "14761"
},
{
"name": "Shell",
"bytes": "16854"
}
],
"symlink_target": ""
} |
using NBitcoin;
using Stratis.Bitcoin.Consensus;
using Stratis.Bitcoin.Consensus.Rules;
namespace Stratis.Bitcoin.Features.Consensus.Rules.CommonRules
{
/// <summary>
/// Check that the block signature for a POS block is in the canonical format.
/// </summary>
/// <remarks>This rule can only be an integrity validation rule. If it is
/// used as a partial or full validation rule, the block itself will get banned
/// instead of the peer, which can result in a chain split as the C++ node
/// only bans the peer.</remarks>
public class PosBlockSignatureRepresentationRule : IntegrityValidationConsensusRule
{
/// <inheritdoc />
/// <exception cref="ConsensusErrors.BadBlockSignature">The block signature is not in the canonical format.</exception>
public override void Run(RuleContext context)
{
if (!PosBlockValidator.IsCanonicalBlockSignature((PosBlock)context.ValidationContext.BlockToValidate, true))
{
ConsensusErrors.BadBlockSignature.Throw();
}
}
}
} | {
"content_hash": "e71623573c64145b72fd95cfb1b9edc4",
"timestamp": "",
"source": "github",
"line_count": 26,
"max_line_length": 127,
"avg_line_length": 42,
"alnum_prop": 0.6868131868131868,
"repo_name": "fassadlr/StratisBitcoinFullNode",
"id": "a21a15a8fc87219af822c9ebaea5dc2002d760d3",
"size": "1094",
"binary": false,
"copies": "7",
"ref": "refs/heads/master",
"path": "src/Stratis.Bitcoin.Features.Consensus/Rules/CommonRules/PosBlockSignatureRepresentationRule.cs",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Batchfile",
"bytes": "216"
},
{
"name": "C#",
"bytes": "12913861"
},
{
"name": "Dockerfile",
"bytes": "1636"
},
{
"name": "PowerShell",
"bytes": "32780"
},
{
"name": "Shell",
"bytes": "3446"
}
],
"symlink_target": ""
} |
package fema.edu.json.annotation;
import fema.edu.json.converter.JsonConverter;
/**
* Created by joao on 04/06/17.
*/
public @interface ElementConverter {
Class<? extends JsonConverter> converter();
}
| {
"content_hash": "954727f4d8579a82ae69fd15c09538fa",
"timestamp": "",
"source": "github",
"line_count": 10,
"max_line_length": 47,
"avg_line_length": 20.9,
"alnum_prop": 0.7320574162679426,
"repo_name": "jpsacheti/json-serializador",
"id": "5f7bd36aa71ad0bc608df6086773a4fbf27dae8d",
"size": "209",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/fema/edu/json/annotation/ElementConverter.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Java",
"bytes": "10194"
}
],
"symlink_target": ""
} |
import React from 'react';
import { Link } from 'react-router-dom';
import {
familyLink,
seriesLink,
operationLink,
} from 'components/operations/routes';
import D from 'i18n';
export default ({ target }) => {
if (!target) return null;
const { target: targetURI } = target;
let link;
try {
link = familyLink(targetURI);
} catch (e) {}
try {
link = seriesLink(targetURI);
} catch (e) {}
try {
link = operationLink(targetURI);
} catch (e) {}
if (!link) return null;
return (
<div className="row">
<Link
className="btn btn-primary btn-lg col-md-1 col-md-offset-1"
to={link}
>
{D.btnBack}
</Link>
</div>
);
};
| {
"content_hash": "fc5d16f142bc459194581b071678c774",
"timestamp": "",
"source": "github",
"line_count": 36,
"max_line_length": 63,
"avg_line_length": 18.194444444444443,
"alnum_prop": 0.6229007633587786,
"repo_name": "FranckCo/Operation-Explorer",
"id": "6a3fd0f3f3cd0451a5bad6f2de3df89c8704dc41",
"size": "655",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/components/sims/back-btn.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "4259"
},
{
"name": "HTML",
"bytes": "1782"
},
{
"name": "JavaScript",
"bytes": "94402"
}
],
"symlink_target": ""
} |
using blink::WebString;
using blink::WebURL;
using blink::WebURLError;
using blink::WebURLLoader;
using blink::WebURLRequest;
using blink::WebURLResponse;
namespace {
class CefWebURLLoaderClient : public blink::WebURLLoaderClient {
public:
CefWebURLLoaderClient(CefRenderURLRequest::Context* context,
int request_flags);
~CefWebURLLoaderClient() override;
// blink::WebURLLoaderClient methods.
void willSendRequest(
WebURLLoader* loader,
WebURLRequest& newRequest,
const WebURLResponse& redirectResponse) override;
void didSendData(
WebURLLoader* loader,
unsigned long long bytesSent,
unsigned long long totalBytesToBeSent) override;
void didReceiveResponse(
WebURLLoader* loader,
const WebURLResponse& response) override;
void didDownloadData(WebURLLoader* loader,
int dataLength,
int encodedDataLength) override;
void didReceiveData(WebURLLoader* loader,
const char* data,
int dataLength,
int encodedDataLength) override;
void didReceiveCachedMetadata(WebURLLoader* loader,
const char* data,
int dataLength) override;
void didFinishLoading(WebURLLoader* loader,
double finishTime,
int64_t totalEncodedDataLength) override;
void didFail(WebURLLoader* loader,
const WebURLError& error) override;
protected:
// The context_ pointer will outlive this object.
CefRenderURLRequest::Context* context_;
int request_flags_;
};
} // namespace
// CefRenderURLRequest::Context -----------------------------------------------
class CefRenderURLRequest::Context
: public base::RefCountedThreadSafe<CefRenderURLRequest::Context> {
public:
Context(CefRefPtr<CefRenderURLRequest> url_request,
CefRefPtr<CefRequest> request,
CefRefPtr<CefURLRequestClient> client)
: url_request_(url_request),
request_(request),
client_(client),
message_loop_proxy_(base::MessageLoop::current()->message_loop_proxy()),
status_(UR_IO_PENDING),
error_code_(ERR_NONE),
upload_data_size_(0),
got_upload_progress_complete_(false),
download_data_received_(0),
download_data_total_(-1) {
// Mark the request as read-only.
static_cast<CefRequestImpl*>(request_.get())->SetReadOnly(true);
}
inline bool CalledOnValidThread() {
return message_loop_proxy_->BelongsToCurrentThread();
}
bool Start() {
DCHECK(CalledOnValidThread());
GURL url = GURL(request_->GetURL().ToString());
if (!url.is_valid())
return false;
loader_.reset(blink::Platform::current()->createURLLoader());
url_client_.reset(new CefWebURLLoaderClient(this, request_->GetFlags()));
WebURLRequest urlRequest;
static_cast<CefRequestImpl*>(request_.get())->Get(urlRequest);
if (urlRequest.reportUploadProgress()) {
// Attempt to determine the upload data size.
CefRefPtr<CefPostData> post_data = request_->GetPostData();
if (post_data.get()) {
CefPostData::ElementVector elements;
post_data->GetElements(elements);
if (elements.size() == 1 && elements[0]->GetType() == PDE_TYPE_BYTES) {
CefPostDataElementImpl* impl =
static_cast<CefPostDataElementImpl*>(elements[0].get());
upload_data_size_ = impl->GetBytesCount();
}
}
}
loader_->loadAsynchronously(urlRequest, url_client_.get());
return true;
}
void Cancel() {
DCHECK(CalledOnValidThread());
// The request may already be complete.
if (!loader_.get() || status_ != UR_IO_PENDING)
return;
status_ = UR_CANCELED;
error_code_ = ERR_ABORTED;
// Will result in a call to OnError().
loader_->cancel();
}
void OnResponse(const WebURLResponse& response) {
DCHECK(CalledOnValidThread());
response_ = CefResponse::Create();
CefResponseImpl* responseImpl =
static_cast<CefResponseImpl*>(response_.get());
responseImpl->Set(response);
responseImpl->SetReadOnly(true);
download_data_total_ = response.expectedContentLength();
}
void OnError(const WebURLError& error) {
DCHECK(CalledOnValidThread());
if (status_ == UR_IO_PENDING) {
status_ = UR_FAILED;
error_code_ = static_cast<CefURLRequest::ErrorCode>(error.reason);
}
OnComplete();
}
void OnComplete() {
DCHECK(CalledOnValidThread());
if (status_ == UR_IO_PENDING) {
status_ = UR_SUCCESS;
NotifyUploadProgressIfNecessary();
}
if (loader_.get())
loader_.reset(NULL);
DCHECK(url_request_.get());
client_->OnRequestComplete(url_request_.get());
// This may result in the Context object being deleted.
url_request_ = NULL;
}
void OnDownloadProgress(int64 current) {
DCHECK(CalledOnValidThread());
DCHECK(url_request_.get());
NotifyUploadProgressIfNecessary();
download_data_received_ += current;
client_->OnDownloadProgress(url_request_.get(), download_data_received_,
download_data_total_);
}
void OnDownloadData(const char* data, int dataLength) {
DCHECK(CalledOnValidThread());
DCHECK(url_request_.get());
client_->OnDownloadData(url_request_.get(), data, dataLength);
}
void OnUploadProgress(int64 current, int64 total) {
DCHECK(CalledOnValidThread());
DCHECK(url_request_.get());
if (current == total)
got_upload_progress_complete_ = true;
client_->OnUploadProgress(url_request_.get(), current, total);
}
CefRefPtr<CefRequest> request() { return request_; }
CefRefPtr<CefURLRequestClient> client() { return client_; }
CefURLRequest::Status status() { return status_; }
CefURLRequest::ErrorCode error_code() { return error_code_; }
CefRefPtr<CefResponse> response() { return response_; }
private:
friend class base::RefCountedThreadSafe<CefRenderURLRequest::Context>;
virtual ~Context() {}
void NotifyUploadProgressIfNecessary() {
if (!got_upload_progress_complete_ && upload_data_size_ > 0) {
// URLFetcher sends upload notifications using a timer and will not send
// a notification if the request completes too quickly. We therefore
// send the notification here if necessary.
client_->OnUploadProgress(url_request_.get(), upload_data_size_,
upload_data_size_);
got_upload_progress_complete_ = true;
}
}
// Members only accessed on the initialization thread.
CefRefPtr<CefRenderURLRequest> url_request_;
CefRefPtr<CefRequest> request_;
CefRefPtr<CefURLRequestClient> client_;
scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
CefURLRequest::Status status_;
CefURLRequest::ErrorCode error_code_;
CefRefPtr<CefResponse> response_;
scoped_ptr<blink::WebURLLoader> loader_;
scoped_ptr<CefWebURLLoaderClient> url_client_;
int64 upload_data_size_;
bool got_upload_progress_complete_;
int64 download_data_received_;
int64 download_data_total_;
};
// CefWebURLLoaderClient --------------------------------------------------
namespace {
CefWebURLLoaderClient::CefWebURLLoaderClient(
CefRenderURLRequest::Context* context,
int request_flags)
: context_(context),
request_flags_(request_flags) {
}
CefWebURLLoaderClient::~CefWebURLLoaderClient() {
}
void CefWebURLLoaderClient::willSendRequest(
WebURLLoader* loader,
WebURLRequest& newRequest,
const WebURLResponse& redirectResponse) {
}
void CefWebURLLoaderClient::didSendData(
WebURLLoader* loader,
unsigned long long bytesSent,
unsigned long long totalBytesToBeSent) {
if (request_flags_ & UR_FLAG_REPORT_UPLOAD_PROGRESS)
context_->OnUploadProgress(bytesSent, totalBytesToBeSent);
}
void CefWebURLLoaderClient::didReceiveResponse(
WebURLLoader* loader,
const WebURLResponse& response) {
context_->OnResponse(response);
}
void CefWebURLLoaderClient::didDownloadData(WebURLLoader* loader,
int dataLength,
int encodedDataLength) {
}
void CefWebURLLoaderClient::didReceiveData(WebURLLoader* loader,
const char* data,
int dataLength,
int encodedDataLength) {
context_->OnDownloadProgress(dataLength);
if (!(request_flags_ & UR_FLAG_NO_DOWNLOAD_DATA))
context_->OnDownloadData(data, dataLength);
}
void CefWebURLLoaderClient::didReceiveCachedMetadata(WebURLLoader* loader,
const char* data,
int dataLength) {
}
void CefWebURLLoaderClient::didFinishLoading(WebURLLoader* loader,
double finishTime,
int64_t totalEncodedDataLength) {
context_->OnComplete();
}
void CefWebURLLoaderClient::didFail(WebURLLoader* loader,
const WebURLError& error) {
context_->OnError(error);
}
} // namespace
// CefRenderURLRequest --------------------------------------------------------
CefRenderURLRequest::CefRenderURLRequest(
CefRefPtr<CefRequest> request,
CefRefPtr<CefURLRequestClient> client) {
context_ = new Context(this, request, client);
}
CefRenderURLRequest::~CefRenderURLRequest() {
}
bool CefRenderURLRequest::Start() {
if (!VerifyContext())
return false;
return context_->Start();
}
CefRefPtr<CefRequest> CefRenderURLRequest::GetRequest() {
if (!VerifyContext())
return NULL;
return context_->request();
}
CefRefPtr<CefURLRequestClient> CefRenderURLRequest::GetClient() {
if (!VerifyContext())
return NULL;
return context_->client();
}
CefURLRequest::Status CefRenderURLRequest::GetRequestStatus() {
if (!VerifyContext())
return UR_UNKNOWN;
return context_->status();
}
CefURLRequest::ErrorCode CefRenderURLRequest::GetRequestError() {
if (!VerifyContext())
return ERR_NONE;
return context_->error_code();
}
CefRefPtr<CefResponse> CefRenderURLRequest::GetResponse() {
if (!VerifyContext())
return NULL;
return context_->response();
}
void CefRenderURLRequest::Cancel() {
if (!VerifyContext())
return;
return context_->Cancel();
}
bool CefRenderURLRequest::VerifyContext() {
DCHECK(context_.get());
if (!context_->CalledOnValidThread()) {
NOTREACHED() << "called on invalid thread";
return false;
}
return true;
}
| {
"content_hash": "04a0471ca19cf6b8b77c935f4d780f68",
"timestamp": "",
"source": "github",
"line_count": 360,
"max_line_length": 79,
"avg_line_length": 29.663888888888888,
"alnum_prop": 0.6482816743140744,
"repo_name": "bkeiren/cef",
"id": "8f537a7ae879ba720691ccce8dcf77725a318baa",
"size": "11556",
"binary": false,
"copies": "5",
"ref": "refs/heads/master",
"path": "libcef/renderer/render_urlrequest_impl.cc",
"mode": "33188",
"license": "bsd-3-clause",
"language": [
{
"name": "Batchfile",
"bytes": "45"
},
{
"name": "C",
"bytes": "65298"
},
{
"name": "C++",
"bytes": "5917020"
},
{
"name": "CMake",
"bytes": "10256"
},
{
"name": "HTML",
"bytes": "40923"
},
{
"name": "Objective-C",
"bytes": "31633"
},
{
"name": "Objective-C++",
"bytes": "152640"
},
{
"name": "Python",
"bytes": "74347"
},
{
"name": "Shell",
"bytes": "39"
}
],
"symlink_target": ""
} |
/*
* ModeShape (http://www.modeshape.org)
*
* 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.
*/
/**
* The ModeShape REST Client is a lightweight, non-UI Maven project that interacts with the ModeShape REST server. An {@link org.modeshape.web.jcr.rest.client.IRestClient}
* is used to publish and unpublish files to/from ModeShape {@link org.modeshape.web.jcr.rest.client.domain.Repository repository}
* {@link org.modeshape.web.jcr.rest.client.domain.Workspace workspaces}.
*/
package org.modeshape.web.jcr.rest.client;
| {
"content_hash": "02facc135da92d94abf49187bb79b895",
"timestamp": "",
"source": "github",
"line_count": 23,
"max_line_length": 171,
"avg_line_length": 45.08695652173913,
"alnum_prop": 0.7502410800385728,
"repo_name": "flownclouds/modeshape",
"id": "11872086241ba64512889cc798c6470f40fe76b5",
"size": "1037",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "web/modeshape-web-jcr-rest-client/src/main/java/org/modeshape/web/jcr/rest/client/package-info.java",
"mode": "33188",
"license": "apache-2.0",
"language": [],
"symlink_target": ""
} |
<?php
namespace Pingpong\Admin\Controllers;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Support\Facades\Input;
use Pingpong\Admin\Entities\Role;
use Pingpong\Admin\Repositories\Roles\RoleRepository;
use Pingpong\Admin\Validation\Role\Create;
use Pingpong\Admin\Validation\Role\Update;
class RolesController extends BaseController
{
protected $repository;
public function __construct(RoleRepository $repository)
{
$this->repository = $repository;
}
/**
* Redirect not found.
*
* @return Response
*/
protected function redirectNotFound()
{
return $this->redirect('roles.index');
}
/**
* Display a listing of roles.
*
* @return Response
*/
public function index()
{
$roles = $this->repository->allOrSearch(Input::get('q'));
$no = $roles->firstItem();
return $this->view('roles.index', compact('roles', 'no'));
}
/**
* Show the form for creating a new role.
*
* @return Response
*/
public function create()
{
return $this->view('roles.create');
}
/**
* Store a newly created role in storage.
*
* @return Response
*/
public function store(Create $request)
{
$data = $request->all();
$this->repository->create($data);
return $this->redirect('roles.index');
}
/**
* Display the specified role.
*
* @param int $id
*
* @return Response
*/
public function show($id)
{
try {
$role = $this->repository->findById($id);
return $this->view('roles.show', compact('role'));
} catch (ModelNotFoundException $e) {
return $this->redirectNotFound();
}
}
/**
* Show the form for editing the specified role.
*
* @param int $id
*
* @return Response
*/
public function edit($id)
{
try {
$role = $this->repository->findById($id);
$permission_role = $role->permissions->lists('id');
return $this->view('roles.edit', compact('role', 'permission_role'));
} catch (ModelNotFoundException $e) {
return $this->redirectNotFound();
}
}
/**
* Update the specified role in storage.
*
* @param int $id
*
* @return Response
*/
public function update(Update $request, $id)
{
try {
$role = $this->repository->findById($id);
$data = $request->all();
$role->update($data);
if ($role->permissions->count()) {
$role->permissions()->detach($role->permissions->lists('id')->toArray());
$role->permissions()->attach(\Input::get('permissions'));
}
if ($role->permissions->count() == 0 && count(\Input::get('permissions')) > 0) {
$role->permissions()->attach(\Input::get('permissions'));
}
return $this->redirect('roles.index');
} catch (ModelNotFoundException $e) {
return $this->redirectNotFound();
}
}
/**
* Remove the specified role from storage.
*
* @param int $id
*
* @return Response
*/
public function destroy($id)
{
try {
$this->repository->delete($id);
return $this->redirect('roles.index');
} catch (ModelNotFoundException $e) {
return $this->redirectNotFound();
}
}
}
| {
"content_hash": "23d50a80b511692ea4c5c8cc4e10e96f",
"timestamp": "",
"source": "github",
"line_count": 156,
"max_line_length": 92,
"avg_line_length": 22.903846153846153,
"alnum_prop": 0.5379233137419536,
"repo_name": "pingpong-labs/admin",
"id": "1c65e8acee22e4a74258cce568c2a6d9fedcc219",
"size": "3573",
"binary": false,
"copies": "2",
"ref": "refs/heads/2.1",
"path": "src/Pingpong/Admin/Controllers/RolesController.php",
"mode": "33188",
"license": "bsd-3-clause",
"language": [
{
"name": "ApacheConf",
"bytes": "120"
},
{
"name": "CSS",
"bytes": "920510"
},
{
"name": "HTML",
"bytes": "1254975"
},
{
"name": "JavaScript",
"bytes": "1530946"
},
{
"name": "PHP",
"bytes": "154289"
}
],
"symlink_target": ""
} |
layout: documentation
title: Extensions examples
---
# Extensions examples
## <a name="macro"></a>Macro creating a rule
An example of a macro creating a rule.
`empty.bzl`:
```python
def _impl(ctx):
print("This rule does nothing")
empty = rule(implementation=_impl)
```
`extension.bzl`:
```python
# Loading the rule. The rule doesn't have to be in a separate file.
load("//pkg:empty.bzl", "empty")
def macro(name, visibility=None):
# Creating the rule.
empty(name = name, visibility = visibility)
```
`BUILD`:
```python
load("//pkg:extension.bzl", "macro")
macro(name = "myrule")
```
## <a name="macro_native"></a>Macro creating a native rule
An example of a macro creating a native rule. Native rules are special rules
that are automatically available (without <code>load</code>). They are
accessed using the <a href="lib/native.html">native</a> module.
`extension.bzl`:
```python
def macro(name, visibility=None):
# Creating a native genrule.
native.genrule(
name = name,
outs = [name + '.txt'],
cmd = 'echo hello > $@',
visibility = visibility,
)
```
`BUILD`:
```python
load("//pkg:extension.bzl", "macro")
macro(name = "myrule")
```
## <a name="macro_compound"></a>Macro multiple rules
There's currently no easy way to create a rule that directly uses the
action of a native rule. You can work around this using macros:
```python
def cc_and_something_else_binary(name, srcs, deps, csrcs, cdeps):
cc_binary_name = "%s.cc_binary" % name
native.cc_binary(
name = cc_binary_name,
srcs = csrcs,
deps = cdeps,
visibility = ["//visibility:private"]
)
_cc_and_something_else_binary(
name = name,
srcs = srcs,
deps = deps,
# A label attribute so that this depends on the internal rule.
cc_binary = cc_binary_name,
# Redundant labels attributes so that the rule with this target name knows
# about everything it would know about if cc_and_something_else_binary
# were an actual rule instead of a macro.
csrcs = csrcs,
cdeps = cdeps)
def _impl(ctx):
return struct([...],
# When instrumenting this rule, again hide implementation from
# users.
instrumented_files(
source_attributes = ["srcs", "csrcs"],
dependency_attributes = ["deps", "cdeps"]))
_cc_and_something_else_binary = rule(implementation=_impl)
```
## <a name="conditional-instantiation"></a>Conditional instantiation
Macros can look at previously instantiated rules. This is done with
`native.existing_rule`, which returns information on a single rule defined in the same
`BUILD` file, eg.,
```python
native.existing_rule("descriptor_proto")
```
This is useful to avoid instantiating the same rule twice, which is an
error. For example, the following macro will simulate a test suite,
instantiating tests for diverse flavors of the same test.
`extension.bzl`:
```python
def system_test(name, test_file, flavor):
n = "system_test_%s_%s_test" % (test_file, flavor)
if native.existing_rule(n) == None:
native.py_test(
name = n,
srcs = [
"test_driver.py",
test_file,
],
args = ["--flavor=" + flavor],
)
return n
def system_test_suite(name, flavors=["default"], test_files=[]):
ts = []
for flavor in flavors:
for test in test_files:
ts.append(system_test(name, test, flavor))
native.test_suite(name = name, tests = ts)
```
In the following BUILD file, note how `(basic_test.py, fast)` is emitted for
both the `smoke` test suite and the `thorough` test suite.
`BUILD`:
```python
load("//pkg:extension.bzl", "system_test_suite")
# Run all files through the 'fast' flavor.
system_test_suite(
name = "smoke",
flavors = ["fast"],
test_files = glob(["*_test.py"]),
)
# Run the basic test through all flavors.
system_test_suite(
name = "thorough",
flavors = [
"fast",
"debug",
"opt",
],
test_files = ["basic_test.py"],
)
```
## <a name="aggregation"></a>Aggregating over the BUILD file
Macros can collect information from the BUILD file as processed so far. We call
this aggregation. The typical example is collecting data from all rules of a
certain kind. This is done by calling
<a href="lib/native.html#existing_rules">native.existing\_rules</a>, which
returns a dictionary representing all rules defined so far in the current BUILD
file. The dictionary has entries of the form `name` => `rule`, with the values
using the same format as `native.existing_rule`.
```python
def archive_cc_src_files(tag):
"""Create an archive of all C++ sources that have the given tag."""
all_src = []
for r in native.existing_rules().values():
if tag in r["tags"] and r["kind"] == "cc_library":
all_src.append(r["srcs"])
native.genrule(cmd = "zip $@ $^", srcs = all_src, outs = ["out.zip"])
```
Since `native.existing_rules` constructs a potentially large dictionary, you should avoid
calling it repeatedly within BUILD file.
## <a name="empty"></a>Empty rule
Minimalist example of a rule that does nothing. If you build it, the target will
succeed (with no generated file).
`empty.bzl`:
```python
def _impl(ctx):
# You may use print for debugging.
print("This rule does nothing")
empty = rule(implementation=_impl)
```
`BUILD`:
```python
load("//pkg:empty.bzl", "empty")
empty(name = "nothing")
```
## <a name="attr"></a>Rule with attributes
Example of a rule that shows how to declare attributes and access them.
`printer.bzl`:
```python
def _impl(ctx):
# You may use print for debugging.
print("Rule name = %s, package = %s" % (ctx.label.name, ctx.label.package))
# This prints the labels of the deps attribute.
print("There are %d deps" % len(ctx.attr.deps))
for i in ctx.attr.deps:
print("- %s" % i.label)
# A label can represent any number of files (possibly 0).
print(" files = %s" % [f.path for f in i.files])
printer = rule(
implementation=_impl,
attrs={
# Do not declare "name": It is added automatically.
"number": attr.int(default = 1),
"deps": attr.label_list(allow_files=True),
})
```
`BUILD`:
```python
load("//pkg:printer.bzl", "printer")
printer(
name = "nothing",
deps = [
"BUILD",
":other",
],
)
printer(name = "other")
```
If you execute this file, some information is printed as a warning by the
rule. No file is generated.
## <a name="shell"></a>Simple shell command
Example of a rule that runs a shell command on an input file specified by
the user. The output has the same name as the rule, with a `.size` suffix.
While convenient, Shell commands should be used carefully. Generating the
command-line can lead to escaping and injection issues. It can also create
portability problems. It is often better to declare a binary target in a
BUILD file and execute it. See the example [executing a binary](#execute-bin).
`size.bzl`:
```python
def _impl(ctx):
output = ctx.outputs.out
input = ctx.file.file
# The command may only access files declared in inputs.
ctx.action(
inputs=[input],
outputs=[output],
progress_message="Getting size of %s" % input.short_path,
command="stat -L -c%%s %s > %s" % (input.path, output.path))
size = rule(
implementation=_impl,
attrs={"file": attr.label(mandatory=True, allow_files=True, single_file=True)},
outputs={"out": "%{name}.size"},
)
```
`foo.txt`:
```
Hello
```
`BUILD`:
```python
load("//pkg:size.bzl", "size")
size(
name = "foo_size",
file = "foo.txt",
)
```
## <a name="file"></a>Write string to a file
Example of a rule that writes a string to a file.
`file.bzl`:
```python
def _impl(ctx):
output = ctx.outputs.out
ctx.file_action(output=output, content=ctx.attr.content)
file = rule(
implementation=_impl,
attrs={"content": attr.string()},
outputs={"out": "%{name}.txt"},
)
```
`BUILD`:
```python
load("//pkg:file.bzl", "file")
file(
name = "hello",
content = "Hello world",
)
```
## <a name="execute-bin"></a>Execute a binary
This rule executes an existing binary. In this particular example, the
binary is a tool that merges files. During the analysis phase, we cannot
access any arbitrary label: the dependency must have been previously
declared. To do so, the rule needs a label attribute. In this example, we
will give the label a default value and make it private (so that it is not
visible to end users). Keeping the label private can simplify maintenance,
since you can easily change the arguments and flags you pass to the tool.
`execute.bzl`:
```python
def _impl(ctx):
# The list of arguments we pass to the script.
args = [ctx.outputs.out.path] + [f.path for f in ctx.files.srcs]
# Action to call the script.
ctx.action(
inputs=ctx.files.srcs,
outputs=[ctx.outputs.out],
arguments=args,
progress_message="Merging into %s" % ctx.outputs.out.short_path,
executable=ctx.executable._merge_tool)
concat = rule(
implementation=_impl,
attrs={
"srcs": attr.label_list(allow_files=True),
"out": attr.output(mandatory=True),
"_merge_tool": attr.label(executable=True, cfg="host", allow_files=True,
default=Label("//pkg:merge"))
}
)
```
Any executable target can be used. In this example, we will use a
`sh_binary` rule that concatenates all the inputs.
`BUILD`:
```
load("execute", "concat")
concat(
name = "sh",
srcs = [
"header.html",
"body.html",
"footer.html",
],
out = "page.html",
)
# This target is used by the shell rule.
sh_binary(
name = "merge",
srcs = ["merge.sh"],
)
```
`merge.sh`:
```python
#!/bin/bash
out=$1
shift
cat $* > $out
```
`header.html`:
```
<html><body>
```
`body.html`:
```
content
```
`footer.html`:
```
</body></html>
```
## <a name="execute"></a>Execute an input binary
This rule has a mandatory `binary` attribute. It is a label that can refer
only to executable rules or files.
`execute.bzl`:
```python
def _impl(ctx):
# ctx.new_file is used for temporary files.
# If it should be visible for user, declare it in rule.outputs instead.
f = ctx.new_file(ctx.configuration.bin_dir, "hello")
# As with outputs, each time you declare a file,
# you need an action to generate it.
ctx.file_action(output=f, content=ctx.attr.input_content)
ctx.action(
inputs=[f],
outputs=[ctx.outputs.out],
executable=ctx.executable.binary,
progress_message="Executing %s" % ctx.executable.binary.short_path,
arguments=[
f.path,
ctx.outputs.out.path, # Access the output file using
# ctx.outputs.<attribute name>
]
)
execute = rule(
implementation=_impl,
attrs={
"binary": attr.label(cfg="host", mandatory=True, allow_files=True,
executable=True),
"input_content": attr.string(),
"out": attr.output(mandatory=True),
},
)
```
`a.sh`:
```bash
#!/bin/bash
tr 'a-z' 'A-Z' < $1 > $2
```
`BUILD`:
```python
load("//pkg:execute.bzl", "execute")
execute(
name = "e",
input_content = "some text",
binary = "a.sh",
out = "foo",
)
```
## <a name="runfiles"></a>Runfiles and location substitution
`execute.bzl`:
```python
def _impl(ctx):
executable = ctx.outputs.executable
command = ctx.attr.command
# Expand the label in the command string to a runfiles-relative path.
# The second arg is the list of labels that may be expanded.
command = ctx.expand_location(command, ctx.attr.data)
# Create the output executable file with command as its content.
ctx.file_action(
output=executable,
content=command,
executable=True)
return struct(
# Create runfiles from the files specified in the data attribute.
# The shell executable - the output of this rule - can use them at runtime.
# It is also possible to define data_runfiles and default_runfiles.
# However if runfiles is specified it's not possible to define the above
# ones since runfiles sets them both.
# Remember, that the struct returned by the implementation function needs
# to have a field named "runfiles" in order to create the actual runfiles
# symlink tree.
runfiles=ctx.runfiles(files=ctx.files.data)
)
execute = rule(
implementation=_impl,
executable=True,
attrs={
"command": attr.string(),
"data": attr.label_list(cfg="data", allow_files=True),
},
)
```
`data.txt`:
```
Hello World!
```
`BUILD`:
```python
load("//pkg:execute.bzl", "execute")
execute(
name = "e",
# The location will be expanded to "pkg/data.txt", and it will reference
# the data.txt file in runfiles when this target is invoked as
# "bazel run //pkg:e".
command = "cat $(location :data.txt)",
data = [':data.txt']
)
```
## <a name="late-bound"></a>Computed dependencies
Bazel needs to know about all dependencies before doing the analysis phase and
calling the implementation function. Dependencies can be computed based on the
rule attributes: to do so, use a function as the default
value of an attribute (the attribute must be private and have type `label` or
`list of labels`). The parameters of this function must correspond to the
attributes that are accessed in the function body.
Note: For legacy reasons, the function takes the configuration as an additional
parameter. Please do not rely on the configuration since it will be removed in
the future.
The example below computes the md5 sum of a file. The file can be preprocessed
using a filter. The exact dependencies depend on the filter chosen by the user.
`hash.bzl`:
```python
_filters = {
"comments": Label("//pkg:comments"),
"spaces": Label("//pkg:spaces"),
"none": None,
}
def _get_filter(filter, cfg=None): # requires attribute "filter"
# Return the value for the attribute "_filter_bin"
# It can be a label or None.
return _filters[filter]
def _impl(ctx):
src = ctx.file.src
if not ctx.attr._filter_bin:
# Skip the processing
processed = src
else:
processed = ctx.new_file(ctx.label.name + "_processed")
# Run the selected binary
ctx.action(
outputs = [processed],
inputs = [ctx.file.src],
progress_message="Apply filter '%s'" % ctx.attr.filter,
arguments = [ctx.file.src.path, processed.path],
executable = ctx.executable._filter_bin)
# Compute the hash
out = ctx.outputs.text
ctx.action(
outputs = [out],
inputs = [processed],
command = "md5sum < %s > %s" % (processed.path, out.path))
md5_sum = rule(
implementation=_impl,
attrs={
"filter": attr.string(values=_filters.keys(), default="none"),
"src": attr.label(mandatory=True, single_file=True, allow_files=True),
"_filter_bin": attr.label(default=_get_filter, executable=True),
},
outputs = {"text": "%{name}.txt"})
```
`BUILD`:
```python
load("//pkg:hash.bzl", "md5_sum")
md5_sum(
name = "hash",
src = "hello.txt",
filter = "spaces",
)
sh_binary(
name = "comments",
srcs = ["comments.sh"],
)
sh_binary(
name = "spaces",
srcs = ["spaces.sh"],
)
```
`hello.txt`:
```
Hello World!
```
`comments.sh`:
```
#!/bin/bash
grep -v '^ *#' $1 > $2 # Remove lines with only a Python-style comment
```
`spaces.sh`:
```
#!/bin/bash
tr -d ' ' < $1 > $2 # Remove spaces
```
## <a name="mandatory-providers"></a>Mandatory providers
In this example, rules have a `number` attribute. Each rule adds its
number with the numbers of its transitive dependencies, and write the
result in a file. This shows how to transfer information from a dependency
to its dependents.
`sum.bzl`:
```python
def _impl(ctx):
result = ctx.attr.number
for i in ctx.attr.deps:
result += i.number
ctx.file_action(output=ctx.outputs.out, content=str(result))
# Fields in the struct will be visible by other rules.
return struct(number=result)
sum = rule(
implementation=_impl,
attrs={
"number": attr.int(default=1),
# All deps must provide all listed providers.
"deps": attr.label_list(providers=["number"]),
},
outputs = {"out": "%{name}.sum"}
)
```
`BUILD`:
```python
load("//pkg:sum.bzl", "sum")
sum(
name = "n",
deps = ["n2", "n5"],
)
sum(
name = "n2",
number = 2,
)
sum(
name = "n5",
number = 5,
)
```
## <a name="optional-providers"></a>Optional providers
This is a similar example, but dependencies may not provide a number.
`sum.bzl`:
```python
def _impl(ctx):
result = ctx.attr.number
for i in ctx.attr.deps:
if hasattr(i, "number"):
result += i.number
ctx.file_action(output=ctx.outputs.out, content=str(result))
# Fields in the struct will be visible by other rules.
return struct(number=result)
sum = rule(
implementation=_impl,
attrs={
"number": attr.int(default=1),
"deps": attr.label_list(),
},
outputs = {"out": "%{name}.sum"}
)
```
`BUILD`:
```python
load("//pkg:sum.bzl", "sum")
sum(
name = "n",
deps = ["n2", "n5"],
)
sum(
name = "n2",
number = 2,
)
sum(
name = "n5",
number = 5,
)
```
## <a name="outputs-executable"></a>Default executable output
This example shows how to create a default executable output.
`extension.bzl`:
```python
def _impl(ctx):
ctx.file_action(
# Access the executable output file using ctx.outputs.executable.
output=ctx.outputs.executable,
content="#!/bin/bash\necho Hello!",
executable=True
)
# The executable output is added automatically to this target.
executable_rule = rule(
implementation=_impl,
executable=True
)
```
`BUILD`:
```python
load("//pkg:extension.bzl", "executable_rule")
executable_rule(name = "my_rule")
```
## <a name="outputs-default"></a>Default outputs
This example shows how to create default outputs for a rule.
`extension.bzl`:
```python
def _impl(ctx):
ctx.file_action(
# Access the default outputs using ctx.outputs.<output name>.
output=ctx.outputs.my_output,
content="Hello World!"
)
# The default outputs are added automatically to this target.
rule_with_outputs = rule(
implementation=_impl,
outputs = {
# %{name} is substituted with the rule's name
"my_output": "%{name}.txt"
}
)
```
`BUILD`:
```python
load("//pkg:extension.bzl", "rule_with_outputs")
rule_with_outputs(name = "my_rule")
```
## <a name="outputs-custom"></a>Custom outputs
This example shows how to create custom (user defined) outputs for a rule.
This rule takes a list of output file name templates from the user and
creates each of them containing a "Hello World!" message.
`extension.bzl`:
```python
def _impl(ctx):
# Access the custom outputs using ctx.outputs.<attribute name>.
for output in ctx.outputs.outs:
ctx.file_action(
output=output,
content="Hello World!"
)
# The custom outputs are added automatically to this target.
rule_with_outputs = rule(
implementation=_impl,
attrs={
"outs": attr.output_list()
}
)
```
`BUILD`:
```python
load("//pkg:extension.bzl", "rule_with_outputs")
rule_with_outputs(
name = "my_rule",
outs = ["my_output.txt"]
)
```
## <a name="master-rule"></a>Master rules
This example shows how to create master rules to bind other rules together. The
code below uses genrules for simplicity, but this technique is more useful with
other rules. For example, if you need to compile C++ files, you can reuse
`cc_library`.
`extension.bzl`:
```python
def _impl(ctx):
# Aggregate the output files from the depending rules
files = set()
files += ctx.attr.dep_rule_1.files
files += ctx.attr.dep_rule_2.files
return struct(files=files)
# This rule binds the depending rules together
master_rule = rule(
implementation=_impl,
attrs={
"dep_rule_1": attr.label(),
"dep_rule_2": attr.label()
}
)
def macro(name, cmd, input):
# Create the depending rules
name_1 = name + "_dep_1"
name_2 = name + "_dep_2"
native.genrule(
name = name_1,
cmd = cmd,
outs = [name_1 + ".txt"]
)
native.genrule(
name = name_2,
cmd = "echo " + input + " >$@",
outs = [name_2 + ".txt"]
)
# Create the master rule
master_rule(
name = name,
dep_rule_1 = ":" + name_1,
dep_rule_2 = ":" + name_2
)
```
`BUILD`:
```python
load("//pkg:extension.bzl", "macro")
# This creates the target :my_rule
macro(
name = "my_rule",
cmd = "echo something > $@",
input = "Hello World"
)
```
## <a name="debugging-tips"></a>Debugging tips
Here are some examples on how to debug macros and rules using
<a href="lib/globals.html#print">print</a>.
`debug.bzl`:
```python
print("print something when the module is loaded")
def _impl(ctx):
print("print something when the rule implementation is executed")
print(type("abc")) # prints string, the type of "abc"
print(dir(ctx)) # prints all the fields and methods of ctx
print(dir(ctx.attr)) # prints all the attributes of the rule
# prints the objects each separated with new line
print("object1", "object2", sep="\n")
debug = rule(implementation=_impl)
```
`BUILD`:
```python
load("//pkg:debug.bzl", "debug")
debug(
name = "printing_rule"
)
```
| {
"content_hash": "e8759c742cce73f48f4a4157b319b383",
"timestamp": "",
"source": "github",
"line_count": 942,
"max_line_length": 89,
"avg_line_length": 22.671974522292995,
"alnum_prop": 0.6475628599522405,
"repo_name": "LuminateWireless/bazel",
"id": "b011eee1eaa6b9e020b7b04beebd3fefb787c58d",
"size": "21361",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "site/versions/master/docs/skylark/cookbook.md",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "C",
"bytes": "24765"
},
{
"name": "C++",
"bytes": "787943"
},
{
"name": "HTML",
"bytes": "17758"
},
{
"name": "Java",
"bytes": "20516540"
},
{
"name": "Makefile",
"bytes": "248"
},
{
"name": "PowerShell",
"bytes": "7559"
},
{
"name": "Protocol Buffer",
"bytes": "115887"
},
{
"name": "Python",
"bytes": "283117"
},
{
"name": "Shell",
"bytes": "740492"
}
],
"symlink_target": ""
} |
<div class="container">
<div id="konga-nav-tabs" class="container-fluid">
<!--<div bs-tabs="tabs" ng-model="tabs.activeTab"></div>-->
<tabset>
<tab ng-repeat="tab in tabs" active="tab.active" select="operations.redirectTo(tab)">
<tab-heading>
<i ng-class="tab.type"></i></span>
<span class="tab-heading-title">{{ tab.title | translate:tabExtra[tab.id] }}{{ tab.hasChanges ? '*' : '' }}
<i class="glyphicon glyphicon-remove tab-close-btn" ng-click="operations.closeTab(tab, false)" ng-show="tab.closable"></i></span>
</tab-heading>
</tab>
</tabset>
<!-- Tab panes Container-->
<div class="view-container">
<div ng-view></div>
</div>
</div><!-- End of navTab -->
</div> | {
"content_hash": "7470ebc15fbef5dafd00807c39ff3a7a",
"timestamp": "",
"source": "github",
"line_count": 20,
"max_line_length": 139,
"avg_line_length": 37.1,
"alnum_prop": 0.5943396226415094,
"repo_name": "pritok/konga",
"id": "aa165dab7f1cf38ec29c01e2bb22c747de9c8f72",
"size": "742",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "app/views/konga-content-tabs.html",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "ApacheConf",
"bytes": "24295"
},
{
"name": "CSS",
"bytes": "240867"
},
{
"name": "HTML",
"bytes": "96302"
},
{
"name": "JavaScript",
"bytes": "770399"
},
{
"name": "Shell",
"bytes": "4012"
}
],
"symlink_target": ""
} |
package org.luizricardo.warppipe.pipeline;
import org.luizricardo.warppipe.api.Step;
import org.luizricardo.warppipe.api.StepContext;
import org.luizricardo.warppipe.api.StepData;
import org.luizricardo.warppipe.api.StepManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Optional;
/**
* Encapsulates basic priority logic of a {@link StepData} to be processed.
* It can be influenced by multiple factors which by default are {@link Step#defaultPriority(StepData, StepContext)} and
* {@link StepData#priority()}, where the latter overrides the former and {@link #DEFAULT_PRIORITY} is applied when
* both are absent.
*/
public interface Priority {
Logger logger = LoggerFactory.getLogger(Priority.class);
/**
* Default priority to processing.
*/
Integer DEFAULT_PRIORITY = 0; // "nem fede, nem cheira"
/**
* Default lower priority.
*/
Integer LOWER_PRIORITY = -1;
/**
* Default higher priority.
*/
Integer HIGHER_PRIORITY = 1;
/**
* Resolves actual priority for the current pipeline data.
* @param stepData Data being processed.
* @param context Context for the current pipeline.
* @param stepManager Uses to retrieve the default priority for the {@link Step} that process the data.
* @return Immutable instance.
*/
static Integer resolve(final StepData stepData, final StepContext context, final StepManager stepManager) {
Optional<Integer> priority = stepData.priority();
if (!priority.isPresent()) {
try {
priority = stepManager.defaultPriority(stepData, context);
} catch (PipelineException e) {
logger.warn("Failed to obtain priority", e);
}
}
return priority.orElse(DEFAULT_PRIORITY);
}
}
| {
"content_hash": "6dfeedfaf09cef8bc0e3682f359aed17",
"timestamp": "",
"source": "github",
"line_count": 56,
"max_line_length": 120,
"avg_line_length": 32.82142857142857,
"alnum_prop": 0.6806311207834603,
"repo_name": "utluiz/warp-pipe",
"id": "36398a2a36f814a819976a3f7812f71f2b254550",
"size": "1838",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "warp-pipe-core/src/main/java/org/luizricardo/warppipe/pipeline/Priority.java",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Java",
"bytes": "125480"
}
],
"symlink_target": ""
} |
<!DOCTYPE HTML>
<!--
Arcana by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Angus Pollmann Portfolio</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="/assets/css/ie/html5shiv.js"></script><![endif]-->
<script src="/assets/js/jquery.min.js"></script>
<script src="/assets/js/jquery.dropotron.min.js"></script>
<script src="/assets/js/skel.min.js"></script>
<script src="/assets/js/skel-layers.min.js"></script>
<script src="/assets/js/init.js"></script>
<noscript>
<link rel="stylesheet" href="/assets/css/skel.css" />
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/css/style-wide.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="/assets/css/ie/v8.css" /><![endif]-->
</head>
<body>
<!-- Header -->
<div id="header">
<!-- Logo -->
<h1><a href="/index.html" id="logo">Angus Pollmann <em>Game Designer</em></a></h1>
<!-- Nav -->
<nav id="nav">
<ul>
<li ><a href="/index.html">Home</a></li>
<li>
<a href="">Projects</a>
<ul>
<li><a href="/charon_relay">Mass Effect: The Charon Relay</a></li>
</ul>
</li>
<li ><a href="/blog">Blog</a></li>
<li ><a href="/about">About me</a></li>
<li ><a href="/contact">Contact</a></li>
</ul>
</nav>
</div>
<!-- Posts -->
<section class="wrapper style1">
<div class="container">
<div class="row">
<section class="12u">
<div class="inner">
<h3>Welcome to my portfolio!</h3>
<p>I am a game designer who loves making game system/mechanics/gameplay, be either video game or board game. I use my design, writing and technical background to look at each part of the game and see how it affects the player's experience.</p>
<p>I like working in collaborative environments where everyone is passionate about what they do and are open to discuss and criticize any game design decision, regardless of the area they belong to.</p>
</div>
</section>
</div>
</div>
</section>
<!-- Banner -->
<section id="banner" style="background-image: url(../images/charon_banner2.jpg)">
<header>
<h2>Mass Effect - The Charon Relay: <em>A tabletop RPG adaptation in the Mass Effect universe</em></h2>
<a href="/charon_relay" class="button">See</a>
</header>
</section>
<section id="banner" style="background-image: url(../images/motions_pagina.PNG)">
<header>
<h2>MOTIONS: <em>Collaboration to improve and extend system's architecture as well as add interfaces support</em></h2>
<a href="/motions-development" class="button">See</a>
</header>
</section>
<!-- Footer -->
<div id="footer">
<!-- Icons -->
<ul class="icons">
<li><a href="mailto:[email protected]"><i class="fa fa-envelope fa-2x"></i></a></li>
<li><a href="https://www.facebook.com/wesker.beoulve"><i class="fa fa-facebook fa-2x"></i></a></li>
</ul>
<!-- Copyright -->
<div class="copyright">
<ul class="menu">
<li>© <a href="https://github.com/KuroFye/kurofye.github.io/blob/master/LICENSE"> MIT License</a> </li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li><li> Jekyll Template: <a href="http://cloudcannon.com">Cloud Cannon</a></li>
</ul>
</div>
</div>
</body>
</html> | {
"content_hash": "c8f20484e0842853deb501c116b15c44",
"timestamp": "",
"source": "github",
"line_count": 109,
"max_line_length": 250,
"avg_line_length": 33.51376146788991,
"alnum_prop": 0.5973172734738571,
"repo_name": "KuroFye/kurofye.github.io",
"id": "c8f22f88da90530e496e7c06dfbee2fa6b78806e",
"size": "3653",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "_site/index.html",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "166552"
},
{
"name": "HTML",
"bytes": "129598"
},
{
"name": "JavaScript",
"bytes": "12707"
},
{
"name": "Ruby",
"bytes": "921"
}
],
"symlink_target": ""
} |
package com.google.api.ads.adwords.jaxws.v201506.cm;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
*
* The result of a call to {@link CampaignFeedService#get}. Contains a list of
* associations between campaign and feeds.
*
*
* <p>Java class for CampaignFeedPage complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="CampaignFeedPage">
* <complexContent>
* <extension base="{https://adwords.google.com/api/adwords/cm/v201506}NullStatsPage">
* <sequence>
* <element name="entries" type="{https://adwords.google.com/api/adwords/cm/v201506}CampaignFeed" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CampaignFeedPage", propOrder = {
"entries"
})
public class CampaignFeedPage
extends NullStatsPage
{
protected List<CampaignFeed> entries;
/**
* Gets the value of the entries property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the entries property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getEntries().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link CampaignFeed }
*
*
*/
public List<CampaignFeed> getEntries() {
if (entries == null) {
entries = new ArrayList<CampaignFeed>();
}
return this.entries;
}
}
| {
"content_hash": "488d0f433dabc78271dc2af0acf99b34",
"timestamp": "",
"source": "github",
"line_count": 74,
"max_line_length": 146,
"avg_line_length": 27.716216216216218,
"alnum_prop": 0.6357874207703559,
"repo_name": "andyj24/googleads-java-lib",
"id": "4249f5a2cee8c872c2b40cc30e2acf7e1f0172e7",
"size": "2051",
"binary": false,
"copies": "6",
"ref": "refs/heads/master",
"path": "modules/adwords_appengine/src/main/java/com/google/api/ads/adwords/jaxws/v201506/cm/CampaignFeedPage.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Java",
"bytes": "89458532"
}
],
"symlink_target": ""
} |
package de.mirkosertic.bytecoder.ssa;
import de.mirkosertic.bytecoder.core.BytecodeOpcodeAddress;
public class SuperTypeOfExpression extends Expression {
public SuperTypeOfExpression(final Program aProgram, final BytecodeOpcodeAddress aAddress, final Value aTarget) {
super(aProgram, aAddress);
receivesDataFrom(aTarget);
}
@Override
public TypeRef resolveType() {
return TypeRef.Native.REFERENCE;
}
}
| {
"content_hash": "f7cc96188a99f8939845eba038ab4fff",
"timestamp": "",
"source": "github",
"line_count": 17,
"max_line_length": 117,
"avg_line_length": 26.470588235294116,
"alnum_prop": 0.7466666666666667,
"repo_name": "mirkosertic/Bytecoder",
"id": "9b84f30429e88753eaaaf200ac85a4d5fa077708",
"size": "1047",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "core/src/main/java/de/mirkosertic/bytecoder/ssa/SuperTypeOfExpression.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "C",
"bytes": "153"
},
{
"name": "C++",
"bytes": "1301"
},
{
"name": "CSS",
"bytes": "5154"
},
{
"name": "Clojure",
"bytes": "87"
},
{
"name": "HTML",
"bytes": "599386"
},
{
"name": "Java",
"bytes": "106011215"
},
{
"name": "Kotlin",
"bytes": "15858"
},
{
"name": "LLVM",
"bytes": "2839"
},
{
"name": "Shell",
"bytes": "164"
}
],
"symlink_target": ""
} |
export default from 'redux-thunk';
| {
"content_hash": "26239dc4686e9773eb64d78ed5616ef5",
"timestamp": "",
"source": "github",
"line_count": 1,
"max_line_length": 34,
"avg_line_length": 35,
"alnum_prop": 0.7714285714285715,
"repo_name": "jfairbank/redux-resource",
"id": "ddef213d4d9feec4f880eca468a2ada2e8d312bd",
"size": "35",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "src/resourceMiddleware.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "HTML",
"bytes": "174"
},
{
"name": "JavaScript",
"bytes": "24172"
}
],
"symlink_target": ""
} |
<Page loaded="loaded">
<Page.actionBar>
<ActionBar title="Sign up"></ActionBar>
</Page.actionBar>
<StackLayout>
<Image src="res://logo" stretch="none" horizontalAlignment="center"/>
<TextField text="{{ email }}" id="email" hint="Email Address" keyboardType="email" autocorrect="false" autocapitalizationType="none"/>
<TextField text="{{ password }}" secure="true" hint="Password"/>
<Button text="Sign Up" tap="register"/>
</StackLayout>
</Page>
| {
"content_hash": "06ab5c2a6fb0acaf5d31637863779f68",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 142,
"avg_line_length": 38.69230769230769,
"alnum_prop": 0.6322067594433399,
"repo_name": "dersteppenwolf/nativescript_examples",
"id": "0416054e4f062a8ed272f38bc405c39044916583",
"size": "503",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "Groceries/app/views/register/register.xml",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "2736"
},
{
"name": "JavaScript",
"bytes": "30549"
},
{
"name": "TypeScript",
"bytes": "4125"
}
],
"symlink_target": ""
} |
package oauth
import (
"crypto/hmac"
"crypto/sha1"
"encoding/base64"
"errors"
"fmt"
"io/ioutil"
"math/rand"
"net/http"
"net/url"
"sort"
"strconv"
"strings"
"time"
)
const (
OAUTH_VERSION = "1.0"
SIGNATURE_METHOD = "HMAC-SHA1"
CALLBACK_PARAM = "oauth_callback"
CONSUMER_KEY_PARAM = "oauth_consumer_key"
NONCE_PARAM = "oauth_nonce"
SESSION_HANDLE_PARAM = "oauth_session_handle"
SIGNATURE_METHOD_PARAM = "oauth_signature_method"
SIGNATURE_PARAM = "oauth_signature"
TIMESTAMP_PARAM = "oauth_timestamp"
TOKEN_PARAM = "oauth_token"
TOKEN_SECRET_PARAM = "oauth_token_secret"
VERIFIER_PARAM = "oauth_verifier"
VERSION_PARAM = "oauth_version"
)
// TODO(mrjones) Do we definitely want separate "Request" and "Access" token classes?
// They're identical structurally, but used for different purposes.
type RequestToken struct {
Token string
Secret string
}
type AccessToken struct {
Token string
Secret string
AdditionalData map[string]string
}
type DataLocation int
const (
LOC_BODY DataLocation = iota + 1
LOC_URL
)
// Information about how to contact the service provider (see #1 above).
// You usually find all of these URLs by reading the documentation for the service
// that you're trying to connect to.
// Some common examples are:
// (1) Google, standard APIs:
// http://code.google.com/apis/accounts/docs/OAuth_ref.html
// - RequestTokenUrl: https://www.google.com/accounts/OAuthGetRequestToken
// - AuthorizeTokenUrl: https://www.google.com/accounts/OAuthAuthorizeToken
// - AccessTokenUrl: https://www.google.com/accounts/OAuthGetAccessToken
// Note: Some Google APIs (for example, Google Latitude) use different values for
// one or more of those URLs.
// (2) Twitter API:
// http://dev.twitter.com/pages/auth
// - RequestTokenUrl: http://api.twitter.com/oauth/request_token
// - AuthorizeTokenUrl: https://api.twitter.com/oauth/authorize
// - AccessTokenUrl: https://api.twitter.com/oauth/access_token
// (3) NetFlix API:
// http://developer.netflix.com/docs/Security
// - RequestTokenUrl: http://api.netflix.com/oauth/request_token
// - AuthroizeTokenUrl: https://api-user.netflix.com/oauth/login
// - AccessTokenUrl: http://api.netflix.com/oauth/access_token
type ServiceProvider struct {
RequestTokenUrl string
AuthorizeTokenUrl string
AccessTokenUrl string
}
// Consumers are stateless, you can call the various methods (GetRequestTokenAndUrl,
// AuthorizeToken, and Get) on various different instances of Consumers *as long as
// they were set up in the same way.* It is up to you, as the caller to persist the
// necessary state (RequestTokens and AccessTokens).
type Consumer struct {
// Some ServiceProviders require extra parameters to be passed for various reasons.
// For example Google APIs require you to set a scope= parameter to specify how much
// access is being granted. The proper values for scope= depend on the service:
// For more, see: http://code.google.com/apis/accounts/docs/OAuth.html#prepScope
AdditionalParams map[string]string
// The rest of this class is configured via the NewConsumer function.
consumerKey string
consumerSecret string
serviceProvider ServiceProvider
// Some APIs (e.g. Netflix) aren't quite standard OAuth, and require passing
// additional parameters when authorizing the request token. For most APIs
// this field can be ignored. For Netflix, do something like:
// consumer.AdditionalAuthorizationUrlParams = map[string]string{
// "application_name": "YourAppName",
// "oauth_consumer_key": "YourConsumerKey",
// }
AdditionalAuthorizationUrlParams map[string]string
debug bool
// Defaults to http.Client{}, can be overridden (e.g. for testing) as necessary
HttpClient HttpClient
// Some APIs (e.g. Intuit/Quickbooks) require sending additional headers along with
// requests. (like "Accept" to specify the response type as XML or JSON) Note that this
// will only *add* headers, not set existing ones.
AdditionalHeaders map[string][]string
// Private seams for mocking dependencies when testing
clock clock
nonceGenerator nonceGenerator
signer signer
}
// Creates a new Consumer instance.
// - consumerKey and consumerSecret:
// values you should obtain from the ServiceProvider when you register your
// application.
//
// - serviceProvider:
// see the documentation for ServiceProvider for how to create this.
//
func NewConsumer(consumerKey string, consumerSecret string,
serviceProvider ServiceProvider) *Consumer {
clock := &defaultClock{}
return &Consumer{
consumerKey: consumerKey,
consumerSecret: consumerSecret,
serviceProvider: serviceProvider,
clock: clock,
HttpClient: &http.Client{},
nonceGenerator: rand.New(rand.NewSource(clock.Nanos())),
signer: &SHA1Signer{},
AdditionalParams: make(map[string]string),
AdditionalAuthorizationUrlParams: make(map[string]string),
}
}
// Kicks off the OAuth authorization process.
// - callbackUrl:
// Authorizing a token *requires* redirecting to the service provider. This is the
// URL which the service provider will redirect the user back to after that
// authorization is completed. The service provider will pass back a verification
// code which is necessary to complete the rest of the process (in AuthorizeToken).
// Notes on callbackUrl:
// - Some (all?) service providers allow for setting "oob" (for out-of-band) as a
// callback url. If this is set the service provider will present the
// verification code directly to the user, and you must provide a place for
// them to copy-and-paste it into.
// - Otherwise, the user will be redirected to callbackUrl in the browser, and
// will append a "oauth_verifier=<verifier>" parameter.
//
// This function returns:
// - rtoken:
// A temporary RequestToken, used during the authorization process. You must save
// this since it will be necessary later in the process when calling
// AuthorizeToken().
//
// - url:
// A URL that you should redirect the user to in order that they may authorize you
// to the service provider.
//
// - err:
// Set only if there was an error, nil otherwise.
func (c *Consumer) GetRequestTokenAndUrl(callbackUrl string) (rtoken *RequestToken, loginUrl string, err error) {
params := c.baseParams(c.consumerKey, c.AdditionalParams)
params.Add(CALLBACK_PARAM, callbackUrl)
req := newGetRequest(c.serviceProvider.RequestTokenUrl, params)
c.signRequest(req, c.makeKey("")) // We don't have a token secret for the key yet
resp, err := c.getBody(c.serviceProvider.RequestTokenUrl, params)
if err != nil {
return nil, "", errors.New("getBody: " + err.Error())
}
requestToken, err := parseRequestToken(*resp)
if err != nil {
return nil, "", errors.New("parseRequestToken: " + err.Error())
}
loginParams := make(url.Values)
for k, v := range c.AdditionalAuthorizationUrlParams {
loginParams.Set(k, v)
}
loginParams.Set("oauth_token", requestToken.Token)
loginUrl = c.serviceProvider.AuthorizeTokenUrl + "?" + loginParams.Encode()
return requestToken, loginUrl, nil
}
// After the user has authorized you to the service provider, use this method to turn
// your temporary RequestToken into a permanent AccessToken. You must pass in two values:
// - rtoken:
// The RequestToken returned from GetRequestTokenAndUrl()
//
// - verificationCode:
// The string which passed back from the server, either as the oauth_verifier
// query param appended to callbackUrl *OR* a string manually entered by the user
// if callbackUrl is "oob"
//
// It will return:
// - atoken:
// A permanent AccessToken which can be used to access the user's data (until it is
// revoked by the user or the service provider).
//
// - err:
// Set only if there was an error, nil otherwise.
func (c *Consumer) AuthorizeToken(rtoken *RequestToken, verificationCode string) (atoken *AccessToken, err error) {
params := map[string]string{
VERIFIER_PARAM: verificationCode,
TOKEN_PARAM: rtoken.Token,
}
return c.makeAccessTokenRequest(params, rtoken.Secret)
}
// Use the service provider to refresh the AccessToken for a given session.
// Note that this is only supported for service providers that manage an
// authorization session (e.g. Yahoo).
//
// Most providers do not return the SESSION_HANDLE_PARAM needed to refresh
// the token.
//
// See http://oauth.googlecode.com/svn/spec/ext/session/1.0/drafts/1/spec.html
// for more information.
// - accessToken:
// The AccessToken returned from AuthorizeToken()
//
// It will return:
// - atoken:
// An AccessToken which can be used to access the user's data (until it is
// revoked by the user or the service provider).
//
// - err:
// Set if accessToken does not contain the SESSION_HANDLE_PARAM needed to
// refresh the token, or if an error occurred when making the request.
func (c *Consumer) RefreshToken(accessToken *AccessToken) (atoken *AccessToken, err error) {
params := make(map[string]string)
sessionHandle, ok := accessToken.AdditionalData[SESSION_HANDLE_PARAM]
if !ok {
return nil, errors.New("Missing " + SESSION_HANDLE_PARAM + " in access token.")
}
params[SESSION_HANDLE_PARAM] = sessionHandle
params[TOKEN_PARAM] = accessToken.Token
return c.makeAccessTokenRequest(params, accessToken.Secret)
}
// Use the service provider to obtain an AccessToken for a given session
// - params:
// The access token request paramters.
//
// - secret:
// Secret key to use when signing the access token request.
//
// It will return:
// - atoken
// An AccessToken which can be used to access the user's data (until it is
// revoked by the user or the service provider).
//
// - err:
// Set only if there was an error, nil otherwise.
func (c *Consumer) makeAccessTokenRequest(params map[string]string, secret string) (atoken *AccessToken, err error) {
orderedParams := c.baseParams(c.consumerKey, c.AdditionalParams)
for key, value := range params {
orderedParams.Add(key, value)
}
req := newGetRequest(c.serviceProvider.AccessTokenUrl, orderedParams)
c.signRequest(req, c.makeKey(secret))
resp, err := c.getBody(c.serviceProvider.AccessTokenUrl, orderedParams)
if err != nil {
return nil, err
}
return parseAccessToken(*resp)
}
// Executes an HTTP Get, authorized via the AccessToken.
// - url:
// The base url, without any query params, which is being accessed
//
// - userParams:
// Any key=value params to be included in the query string
//
// - token:
// The AccessToken returned by AuthorizeToken()
//
// This method returns:
// - resp:
// The HTTP Response resulting from making this request.
//
// - err:
// Set only if there was an error, nil otherwise.
func (c *Consumer) Get(url string, userParams map[string]string, token *AccessToken) (resp *http.Response, err error) {
return c.makeAuthorizedRequest("GET", url, LOC_URL, "", userParams, token)
}
func encodeUserParams(userParams map[string]string) string {
data := url.Values{}
for k, v := range userParams {
data.Add(k, v)
}
return data.Encode()
}
// DEPRECATED: Use Post() instead.
func (c *Consumer) PostForm(url string, userParams map[string]string, token *AccessToken) (resp *http.Response, err error) {
return c.Post(url, userParams, token)
}
func (c *Consumer) Post(url string, userParams map[string]string, token *AccessToken) (resp *http.Response, err error) {
return c.makeAuthorizedRequest("POST", url, LOC_BODY, "", userParams, token)
}
func (c *Consumer) Delete(url string, userParams map[string]string, token *AccessToken) (resp *http.Response, err error) {
return c.makeAuthorizedRequest("DELETE", url, LOC_URL, "", userParams, token)
}
func (c *Consumer) Put(url string, body string, userParams map[string]string, token *AccessToken) (resp *http.Response, err error) {
return c.makeAuthorizedRequest("PUT", url, LOC_URL, body, userParams, token)
}
func (c *Consumer) Debug(enabled bool) {
c.debug = enabled
c.signer.Debug(enabled)
}
type pair struct {
key string
value string
}
type pairs []pair
func (p pairs) Len() int { return len(p) }
func (p pairs) Less(i, j int) bool { return p[i].key < p[j].key }
func (p pairs) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
func (c *Consumer) makeAuthorizedRequest(method string, url string, dataLocation DataLocation, body string, userParams map[string]string, token *AccessToken) (resp *http.Response, err error) {
allParams := c.baseParams(c.consumerKey, c.AdditionalParams)
// Do not add the "oauth_token" parameter, if the access token has not been
// specified. By omitting this parameter when it is not specified, allows
// two-legged OAuth calls.
if len(token.Token) > 0 {
allParams.Add(TOKEN_PARAM, token.Token)
}
authParams := allParams.Clone()
// Sort parameters alphabetically (primarily for testability / repeatability)
paramPairs := make(pairs, len(userParams))
i := 0
for key, value := range userParams {
paramPairs[i] = pair{key: key, value: value}
i++
}
sort.Sort(paramPairs)
queryParams := ""
separator := "?"
if dataLocation == LOC_BODY {
separator = ""
}
if userParams != nil {
for i := range paramPairs {
allParams.Add(paramPairs[i].key, paramPairs[i].value)
thisPair := escape(paramPairs[i].key) + "=" + escape(paramPairs[i].value)
if dataLocation == LOC_URL {
queryParams += separator + thisPair
} else {
body += separator + thisPair
}
separator = "&"
}
}
key := c.makeKey(token.Secret)
base_string := c.requestString(method, url, allParams)
authParams.Add(SIGNATURE_PARAM, c.signer.Sign(base_string, key))
contentType := ""
if dataLocation == LOC_BODY {
contentType = "application/x-www-form-urlencoded"
}
return c.httpExecute(method, url+queryParams, contentType, body, authParams)
}
type request struct {
method string
url string
oauthParams *OrderedParams
userParams map[string]string
}
type HttpClient interface {
Do(req *http.Request) (resp *http.Response, err error)
}
type clock interface {
Seconds() int64
Nanos() int64
}
type nonceGenerator interface {
Int63() int64
}
type signer interface {
Sign(message, key string) string
Debug(enabled bool)
}
type defaultClock struct{}
func (*defaultClock) Seconds() int64 {
return time.Now().Unix()
}
func (*defaultClock) Nanos() int64 {
return time.Now().UnixNano()
}
func newGetRequest(url string, oauthParams *OrderedParams) *request {
return &request{
method: "GET",
url: url,
oauthParams: oauthParams,
}
}
func (c *Consumer) signRequest(req *request, key string) *request {
base_string := c.requestString(req.method, req.url, req.oauthParams)
req.oauthParams.Add(SIGNATURE_PARAM, c.signer.Sign(base_string, key))
return req
}
func (c *Consumer) makeKey(tokenSecret string) string {
return escape(c.consumerSecret) + "&" + escape(tokenSecret)
}
// Obtains an AccessToken from the response of a service provider.
// - data:
// The response body.
//
// This method returns:
// - atoken:
// The AccessToken generated from the response body.
//
// - err:
// Set if an AccessToken could not be parsed from the given input.
func parseAccessToken(data string) (atoken *AccessToken, err error) {
parts, err := url.ParseQuery(data)
if err != nil {
return nil, err
}
tokenParam := parts[TOKEN_PARAM]
parts.Del(TOKEN_PARAM)
if len(tokenParam) < 1 {
return nil, errors.New("Missing " + TOKEN_PARAM + " in response. " +
"Full response body: '" + data + "'")
}
tokenSecretParam := parts[TOKEN_SECRET_PARAM]
parts.Del(TOKEN_SECRET_PARAM)
if len(tokenSecretParam) < 1 {
return nil, errors.New("Missing " + TOKEN_SECRET_PARAM + " in response." +
"Full response body: '" + data + "'")
}
additionalData := parseAdditionalData(parts)
return &AccessToken{tokenParam[0], tokenSecretParam[0], additionalData}, nil
}
func parseRequestToken(data string) (*RequestToken, error) {
parts, err := url.ParseQuery(data)
if err != nil {
return nil, err
}
tokenParam := parts[TOKEN_PARAM]
if len(tokenParam) < 1 {
return nil, errors.New("Missing " + TOKEN_PARAM + " in response. " +
"Full response body: '" + data + "'")
}
tokenSecretParam := parts[TOKEN_SECRET_PARAM]
if len(tokenSecretParam) < 1 {
return nil, errors.New("Missing " + TOKEN_SECRET_PARAM + " in response." +
"Full response body: '" + data + "'")
}
return &RequestToken{tokenParam[0], tokenSecretParam[0]}, nil
}
func (c *Consumer) baseParams(consumerKey string, additionalParams map[string]string) *OrderedParams {
params := NewOrderedParams()
params.Add(VERSION_PARAM, OAUTH_VERSION)
params.Add(SIGNATURE_METHOD_PARAM, SIGNATURE_METHOD)
params.Add(TIMESTAMP_PARAM, strconv.FormatInt(c.clock.Seconds(), 10))
params.Add(NONCE_PARAM, strconv.FormatInt(c.nonceGenerator.Int63(), 10))
params.Add(CONSUMER_KEY_PARAM, consumerKey)
for key, value := range additionalParams {
params.Add(key, value)
}
return params
}
func parseAdditionalData(parts url.Values) map[string]string {
params := make(map[string]string)
for key, value := range parts {
if len(value) > 0 {
params[key] = value[0]
}
}
return params
}
type SHA1Signer struct {
debug bool
}
func (s *SHA1Signer) Debug(enabled bool) {
s.debug = enabled
}
func (s *SHA1Signer) Sign(message string, key string) string {
if s.debug {
fmt.Println("Signing:", message)
fmt.Println("Key:", key)
}
hashfun := hmac.New(sha1.New, []byte(key))
hashfun.Write([]byte(message))
rawsignature := hashfun.Sum(nil)
base64signature := make([]byte, base64.StdEncoding.EncodedLen(len(rawsignature)))
base64.StdEncoding.Encode(base64signature, rawsignature)
if s.debug {
fmt.Println("Base64 signature:", string(base64signature))
}
return string(base64signature)
}
func escape(s string) string {
t := make([]byte, 0, 3*len(s))
for i := 0; i < len(s); i++ {
c := s[i]
if isEscapable(c) {
t = append(t, '%')
t = append(t, "0123456789ABCDEF"[c>>4])
t = append(t, "0123456789ABCDEF"[c&15])
} else {
t = append(t, s[i])
}
}
return string(t)
}
func isEscapable(b byte) bool {
return !('A' <= b && b <= 'Z' || 'a' <= b && b <= 'z' || '0' <= b && b <= '9' || b == '-' || b == '.' || b == '_' || b == '~')
}
func (c *Consumer) requestString(method string, url string, params *OrderedParams) string {
result := method + "&" + escape(url)
for pos, key := range params.Keys() {
if pos == 0 {
result += "&"
} else {
result += escape("&")
}
result += escape(fmt.Sprintf("%s=%s", key, params.Get(key)))
}
return result
}
func (c *Consumer) getBody(url string, oauthParams *OrderedParams) (*string, error) {
resp, err := c.httpExecute("GET", url, "", "", oauthParams)
if err != nil {
return nil, errors.New("httpExecute: " + err.Error())
}
bodyBytes, err := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if err != nil {
return nil, errors.New("ReadAll: " + err.Error())
}
bodyStr := string(bodyBytes)
if c.debug {
fmt.Printf("STATUS: %d %s\n", resp.StatusCode, resp.Status)
fmt.Println("BODY RESPONSE: " + bodyStr)
}
return &bodyStr, nil
}
// HTTPExecuteError signals that a call to httpExecute failed.
type HTTPExecuteError struct {
// RequestHeaders provides a stringified listing of request headers.
RequestHeaders string
// ResponseBodyBytes is the response read into a byte slice.
ResponseBodyBytes []byte
// Status is the status code string response.
Status string
// StatusCode is the parsed status code.
StatusCode int
}
// Error provides a printable string description of an HTTPExecuteError.
func (e HTTPExecuteError) Error() string {
return "HTTP response is not 200/OK as expected. Actual response: \n" +
"\tResponse Status: '" + e.Status + "'\n" +
"\tResponse Code: " + strconv.Itoa(e.StatusCode) + "\n" +
"\tResponse Body: " + string(e.ResponseBodyBytes) + "\n" +
"\tRequest Headers: " + e.RequestHeaders
}
func (c *Consumer) httpExecute(
method string, urlStr string, contentType string, body string, oauthParams *OrderedParams) (*http.Response, error) {
// Create base request.
req, err := http.NewRequest(method, urlStr, strings.NewReader(body))
if err != nil {
return nil, errors.New("NewRequest failed: " + err.Error())
}
// Set auth header.
req.Header = http.Header{}
oauthHdr := "OAuth "
for pos, key := range oauthParams.Keys() {
if pos > 0 {
oauthHdr += ","
}
oauthHdr += key + "=\"" + oauthParams.Get(key) + "\""
}
req.Header.Add("Authorization", oauthHdr)
// Add additional custom headers
for key, vals := range c.AdditionalHeaders {
for _, val := range vals {
req.Header.Add(key, val)
}
}
// Set contentType if passed.
if contentType != "" {
req.Header.Set("Content-Type", contentType)
}
req.Header.Set("Content-Length", strconv.Itoa(len(body)))
if c.debug {
fmt.Printf("Request: %v\n", req)
}
resp, err := c.HttpClient.Do(req)
if err != nil {
return nil, errors.New("Do: " + err.Error())
}
debugHeader := ""
for k, vals := range req.Header {
for _, val := range vals {
debugHeader += "[key: " + k + ", val: " + val + "]"
}
}
// StatusMultipleChoices is 300, any 2xx response should be treated as success
if resp.StatusCode < http.StatusOK || resp.StatusCode >= http.StatusMultipleChoices {
defer resp.Body.Close()
bytes, _ := ioutil.ReadAll(resp.Body)
return resp, HTTPExecuteError{
RequestHeaders: debugHeader,
ResponseBodyBytes: bytes,
Status: resp.Status,
StatusCode: resp.StatusCode,
}
}
return resp, err
}
//
// ORDERED PARAMS
//
type OrderedParams struct {
allParams map[string]string
keyOrdering []string
}
func NewOrderedParams() *OrderedParams {
return &OrderedParams{
allParams: make(map[string]string),
keyOrdering: make([]string, 0),
}
}
func (o *OrderedParams) Get(key string) string {
return o.allParams[key]
}
func (o *OrderedParams) Keys() []string {
sort.Sort(o)
return o.keyOrdering
}
func (o *OrderedParams) Add(key, value string) {
o.AddUnescaped(key, escape(value))
}
func (o *OrderedParams) AddUnescaped(key, value string) {
o.allParams[key] = value
o.keyOrdering = append(o.keyOrdering, key)
}
func (o *OrderedParams) Len() int {
return len(o.keyOrdering)
}
func (o *OrderedParams) Less(i int, j int) bool {
return o.keyOrdering[i] < o.keyOrdering[j]
}
func (o *OrderedParams) Swap(i int, j int) {
o.keyOrdering[i], o.keyOrdering[j] = o.keyOrdering[j], o.keyOrdering[i]
}
func (o *OrderedParams) Clone() *OrderedParams {
clone := NewOrderedParams()
for _, key := range o.Keys() {
clone.AddUnescaped(key, o.Get(key))
}
return clone
}
| {
"content_hash": "a8dafa54e5c84c5431a086aeeeadd178",
"timestamp": "",
"source": "github",
"line_count": 744,
"max_line_length": 192,
"avg_line_length": 31.177419354838708,
"alnum_prop": 0.6848163476461459,
"repo_name": "dmnlk/gomadare",
"id": "0af8243834ce8c7fc70d13c9d32244a55289f8ba",
"size": "25128",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "Godeps/_workspace/src/github.com/mrjones/oauth/oauth.go",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Go",
"bytes": "27701"
}
],
"symlink_target": ""
} |
require 'sitehub/memoize'
class SiteHub
describe Memoize do
context :module_spec
let(:test_class) do
Class.new do
extend Memoize
def helper(*args)
result = block_given? ? yield : nil
[args, result].flatten.compact
end
memoize :helper
end
end
subject do
test_class.new
end
describe '#memoize' do
it 'memoizes the return of the given method' do
result = subject.helper
expect(result).to be(subject.helper)
end
context 'method name has a ? in it' do
it 'memoizes the return of the given method' do
test_class.class_eval do
def true?
'answer'
end
memoize :true?
end
result = subject.true?
expect(result).to be(subject.true?)
end
end
context 'args passed' do
it 'sends them to the memoized method' do
expect(subject.helper(:arg1, :arg2)).to eq([:arg1, :arg2])
end
end
context 'block passed' do
it 'sends the block to the memoized method' do
block = proc { :block_called }
expect(subject.helper(&block)).to eq([:block_called])
end
end
end
end
end
| {
"content_hash": "371880e2001c366be06caaf216eaa421",
"timestamp": "",
"source": "github",
"line_count": 56,
"max_line_length": 68,
"avg_line_length": 22.910714285714285,
"alnum_prop": 0.5502727981293842,
"repo_name": "lashd/site-hub",
"id": "f8698e2e7dd80249fff13c4e264416447c353a2a",
"size": "1283",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "spec/sitehub/memoize_spec.rb",
"mode": "33188",
"license": "bsd-3-clause",
"language": [
{
"name": "Ruby",
"bytes": "98187"
}
],
"symlink_target": ""
} |
import { noop } from "lodash";
export = noop;
| {
"content_hash": "05936e62989d527451398a10214c677a",
"timestamp": "",
"source": "github",
"line_count": 2,
"max_line_length": 30,
"avg_line_length": 23,
"alnum_prop": 0.6521739130434783,
"repo_name": "micurs/DefinitelyTyped",
"id": "04e6cacbb37a0ae218bfe3469795bf0b8e812968",
"size": "369",
"binary": false,
"copies": "13",
"ref": "refs/heads/master",
"path": "lodash.noop/index.d.ts",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CoffeeScript",
"bytes": "15"
},
{
"name": "Protocol Buffer",
"bytes": "678"
},
{
"name": "TypeScript",
"bytes": "18084911"
}
],
"symlink_target": ""
} |
title: 'Family Support Services'
display_title: 'Family Support Services and Counselling'
visible: true
find_out_more:
contact: 'Salma El Rakhawy (Counsellor)'
phone: '<a href="tel:=0893455755">08 9345 5755</a>'
email: '<a href="mailto:[email protected]">[email protected]</a>'
body_classes: text-center
style_classes: narrow
description: ''
funded_by: 'This program is funded by the WA Government through the Department of Community Services.'
sections:
-
image: null
title: null
style_classes: narrow
text:
- 'The Family Support Services and Counselling program focusses on assisting recently arrived humanitarian entrants as well as longer term individuals, couples, and families from CALD and refugee backgrounds who experience difficulties.'
- 'This is done through providing a space where culturally sensitive family support and counselling can take place, to be able to recognise and work through a variety of issues clients may be facing that may limit their successful settlement and full participation in Australian society.'
- 'They are encouraged and supported to build healthy and respectful relationships, improve understanding and communication with the family, and build on their strengths, skills, confidence and knowledge in order to become self-sufficient.'
-
image: null
title: null
style_classes: narrow
text:
- 'Some of the issues clients are referred to the program for include:'
- ~list~
list:
- 'Settlement stress (e.g. social isolation, acculturation stress, language barriers, unemployment, financial stress, health concerns, housing, immigration concerns etc.)'
- 'Couple or family relationship issues'
- 'Family and domestic violence'
- 'Intergenerational issues (parent child conflict)'
- 'Identity confusion (younger clients)'
- 'Parenting support'
- 'Grief and loss'
-
style_classes: narrow
text:
- 'Issues beyond the scope of the program include:'
- ~list~
list:
- 'Newly arrived humanitarian entrant families with children are also assessed and provided with an information session about raising children in Australia, including understanding their legal obligations in Australia and supporting them to learn new parenting skills if required.'
- 'The counsellor also provides information sessions and workshops to a variety of CALD populations including women’s groups, families, and youth, on a range of topics such as parenting, stress management and settlement issues.'
- 'Part of the service provision also includes advocacy on behalf of clients, supporting them in navigating their settlement in Australia and coping with associated issues. They are assisted in accessing other services and government agencies through referral processes.'
- 'The program accepts internal referrals from other programs within MMRC, self-referrals, as well as referrals from other non-profit and government organisations.'
- 'Severe trauma related distress'
- 'Severe mental health disorders and psychological issues'
---
| {
"content_hash": "9c918223abfcf7653e8d5d4f86512027",
"timestamp": "",
"source": "github",
"line_count": 49,
"max_line_length": 300,
"avg_line_length": 67.55102040816327,
"alnum_prop": 0.7120845921450151,
"repo_name": "nicolasconnault/mmrcwa-grav",
"id": "773f44e2c578d18e1d8a2ed26e516574174bc66d",
"size": "3316",
"binary": false,
"copies": "3",
"ref": "refs/heads/master",
"path": "user/pages/02.programs/04.fss/default.md",
"mode": "33261",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "668386"
},
{
"name": "CoffeeScript",
"bytes": "2763"
},
{
"name": "HTML",
"bytes": "647850"
},
{
"name": "JavaScript",
"bytes": "392354"
},
{
"name": "Logos",
"bytes": "831"
},
{
"name": "PHP",
"bytes": "1880246"
},
{
"name": "Shell",
"bytes": "1700"
}
],
"symlink_target": ""
} |
/** @constructor */
ScalaJS.c.scala_languageFeature$implicitConversions$ = (function() {
ScalaJS.c.java_lang_Object.call(this)
});
ScalaJS.c.scala_languageFeature$implicitConversions$.prototype = new ScalaJS.inheritable.java_lang_Object();
ScalaJS.c.scala_languageFeature$implicitConversions$.prototype.constructor = ScalaJS.c.scala_languageFeature$implicitConversions$;
/** @constructor */
ScalaJS.inheritable.scala_languageFeature$implicitConversions$ = (function() {
/*<skip>*/
});
ScalaJS.inheritable.scala_languageFeature$implicitConversions$.prototype = ScalaJS.c.scala_languageFeature$implicitConversions$.prototype;
ScalaJS.is.scala_languageFeature$implicitConversions$ = (function(obj) {
return (!(!((obj && obj.$classData) && obj.$classData.ancestors.scala_languageFeature$implicitConversions$)))
});
ScalaJS.as.scala_languageFeature$implicitConversions$ = (function(obj) {
if ((ScalaJS.is.scala_languageFeature$implicitConversions$(obj) || (obj === null))) {
return obj
} else {
ScalaJS.throwClassCastException(obj, "scala.languageFeature$implicitConversions")
}
});
ScalaJS.isArrayOf.scala_languageFeature$implicitConversions$ = (function(obj, depth) {
return (!(!(((obj && obj.$classData) && (obj.$classData.arrayDepth === depth)) && obj.$classData.arrayBase.ancestors.scala_languageFeature$implicitConversions$)))
});
ScalaJS.asArrayOf.scala_languageFeature$implicitConversions$ = (function(obj, depth) {
if ((ScalaJS.isArrayOf.scala_languageFeature$implicitConversions$(obj, depth) || (obj === null))) {
return obj
} else {
ScalaJS.throwArrayCastException(obj, "Lscala.languageFeature$implicitConversions;", depth)
}
});
ScalaJS.data.scala_languageFeature$implicitConversions$ = new ScalaJS.ClassTypeData({
scala_languageFeature$implicitConversions$: 0
}, false, "scala.languageFeature$implicitConversions$", ScalaJS.data.java_lang_Object, {
scala_languageFeature$implicitConversions$: 1,
scala_languageFeature$implicitConversions: 1,
java_lang_Object: 1
});
ScalaJS.c.scala_languageFeature$implicitConversions$.prototype.$classData = ScalaJS.data.scala_languageFeature$implicitConversions$;
ScalaJS.moduleInstances.scala_languageFeature$implicitConversions = undefined;
ScalaJS.modules.scala_languageFeature$implicitConversions = (function() {
if ((!ScalaJS.moduleInstances.scala_languageFeature$implicitConversions)) {
ScalaJS.moduleInstances.scala_languageFeature$implicitConversions = new ScalaJS.c.scala_languageFeature$implicitConversions$().init___()
};
return ScalaJS.moduleInstances.scala_languageFeature$implicitConversions
});
//@ sourceMappingURL=languageFeature$implicitConversions$.js.map
| {
"content_hash": "d387fb5cb923a5cb7e6f7044e2ff1686",
"timestamp": "",
"source": "github",
"line_count": 47,
"max_line_length": 164,
"avg_line_length": 56.851063829787236,
"alnum_prop": 0.7829341317365269,
"repo_name": "ignaciocases/hermeneumatics",
"id": "1d464578d4074d9f4474ed2638321f8ac72ec3f1",
"size": "2672",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "node_modules/scala-node/main/target/streams/compile/externalDependencyClasspath/$global/package-js/extracted-jars/scalajs-library_2.10-0.4.0.jar--29fb2f8b/scala/languageFeature$implicitConversions$.js",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "CSS",
"bytes": "430"
},
{
"name": "CoffeeScript",
"bytes": "9579"
}
],
"symlink_target": ""
} |
/*Author:Martin.Holzherr;Date:20080922;Context:"PEG Support for C#";Licence:CPOL
* <<History>>
* 20080922;V1.0 created
* 20080929;SEMBLOCK_INDENTATION;improved indentation of local classes assocated to semantic blocks
* 20081001;//NOTIN_MISSING_PAREN;corrected code template for NotIn(...) where an opening paren was missing
* 20081002;USING_BLOCK;added support for using in rules like'[9] parenth_form_content using Line_join_sem_: ...'
* <</History>>
*/
using System;
using Peg.Base;
using System.IO;
using System.Diagnostics;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using Peg.Samples;
namespace Peg.CSharp
{
enum ECSharpKind{
Project,
MainImpl,
ModuleHead,
ModuleTail,
ParserHeader,
StaticConstructor,
ParserImpl,
GrammarHeader,
InterfaceFunc,
ErrHandler,
ErrTable,
And,
Or,
Option,
RuleRef,
RuleRefWithArgs,
Literals,
OptimizedCharset,
String,
StringCaseInsensitive,
Any,
Peek,
Not,
In,
NotIn,
OneOf,
NotOneOf,
TreeAnd,
TreePeek,
TreeNot,
Rule,
RuleTree,
RuleAst,
RuleCreaTree,
RuleCreaAst,
TreeChars,
OptRepeat,
PlusRepeat,
ForLoop,
//{bit operations
Bits,
PeekBits,
NotBits,
MatchingBitsInto,
BitsInto,
Bit,
PeekBit,
BitNot,
Into,
Fatal,
Warning}
enum ETemplateKind{
TemplNone,
TemplNot,
TemplPeek,
TemplAnd,
TemplTreeNot,
TemplTreePeek,
TemplTreeSafeAnd,
TemplOr,
TemplOptimizedCharset,
TemplNegatedOptimizedCharset,
TemplCharset,
TemplNegatedCharset,
TemplRepetition,
TemplTreeNT,
TemplAstNT,
TemplTreeChars,
TemplRule,
TemplTreeRule,
TemplAstRule,
TemplTreeCreateRule,
TemplAstCreateRule,
TemplRuleRef,
TemplString,
TemplIntoVariable,
TemplStringCaseInsensitive,
TemplLiterals,
TemplDots,
TemplBitAccess,
TemplFatal,
TemplWarning,
TemplIntoVar,
TemplSemFuncCall}
struct CodeTemplate{
internal CodeTemplate(ECSharpKind eKind, string sCodeTemplate)
{
this.eKind = eKind;
this.sCodeTemplate = sCodeTemplate;
}
internal ECSharpKind eKind;
internal string sCodeTemplate;
}
public class PegCSharpGenerator
{
#region Data Members
TextWriter outFile_;
TreeContext context_;
string moduleName_;
string outputFileName_;
internal int literalsCount_;
internal int optimizedCharsetCount_;
internal StringBuilder optimizationStaticConstructor_;
static string mainImplCSharp=
@"using System;
namespace ExprRecognizeProgram
{
using System.IO;
using PegGrammar;
using ExprRecognize;
class Program
{
static bool ExprRecognizeParse(string srcFile, StreamWriter FerrOut)
{
try
{
string src;
using (StreamReader r = new StreamReader(srcFile))
{
src = r.ReadToEnd();
}
try
{
ExprRecognize expr = new ExprRecognize(src, FerrOut);
bool bMatches= expr.Expr();
return bMatches;
}
catch (PegException)
{
return false;
}
}
catch (Exception)
{
FerrOut.WriteLine(\input file could not be opened '{0}'\, srcFile);
FerrOut.Flush();
return false;
}
}
static void Main(string[] args)
{
if( args.Length<1){
Console.WriteLine(\usage: ExprRecognize sourcefile [errorfile]\);
return;
}
StreamWriter FerrOut;
if( args.Length>=2){
FerrOut= new StreamWriter(args[1]);
if( FerrOut==null){
Console.WriteLine(\ could not open error file {0}\ ,args[1]);
return;
}
}else{
FerrOut= new StreamWriter(Console.OpenStandardError());
}
bool bMatches = ExprRecognizeParse(args[0], FerrOut);
if (bMatches) Console.WriteLine(\file '{0}' is matched by ExprRecognize\,args[0]);
else Console.WriteLine(\file '{0}' is not matched by ExprRecognize\,args[0]);
}
}
}";
static string moduleHeadCSharp=
@"
using Peg.Base;
using System;
using System.IO;
using System.Text;
namespace $(MODULE_NAME)
{
enum E$(MODULE_NAME){$(ENUMERATOR)};
class $(MODULE_NAME) : $(PARSER)
{
$(SEMANTIC_BLOCKS)
#region Input Properties
public static EncodingClass encodingClass = EncodingClass.$(ENCODING_CLASS);
public static UnicodeDetection unicodeDetection = UnicodeDetection.$(UNICODE_DETECTION);
#endregion Input Properties
#region Constructors
public $(MODULE_NAME)()
: base()
{
$(INITIALIZATION)
}
public $(MODULE_NAME)($(SRC_TYPE) src,TextWriter FerrOut)
: base(src,FerrOut)
{
$(INITIALIZATION)
}
#endregion Constructors
#region Overrides
public override string GetRuleNameFromId(int id)
{
try
{
E$(MODULE_NAME) ruleEnum = (E$(MODULE_NAME))id;
string s= ruleEnum.ToString();
int val;
if( int.TryParse(s,out val) ){
return base.GetRuleNameFromId(id);
}else{
return s;
}
}
catch (Exception)
{
return base.GetRuleNameFromId(id);
}
}
public override void GetProperties(out EncodingClass encoding, out UnicodeDetection detection)
{
encoding = encodingClass;
detection = unicodeDetection;
}
#endregion Overrides
";
static string moduleTailCSharp=
@" }
}";
static string staticConstructor=
@"
#region Optimization Data
$(OPTIMIZEDCHARSET_DECL)
$(OPTIMIZEDLITERALS_DECL)
static $(MODULE_NAME)()
{
$(OPTIMIZEDCHARSET_IMPL)
$(OPTIMIZEDLITERALS_IMPL)
}
#endregion Optimization Data
";
static string argNReplace = "\n,()=>$(ARGN)$(ARGN1)";
CodeTemplate[] templates = {
new CodeTemplate(ECSharpKind.MainImpl, mainImplCSharp),
new CodeTemplate(ECSharpKind.ModuleHead, moduleHeadCSharp),
new CodeTemplate(ECSharpKind.ModuleTail, moduleTailCSharp),
new CodeTemplate(ECSharpKind.StaticConstructor,staticConstructor),
new CodeTemplate(ECSharpKind.And, "And(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.Or, "\n$(CONDITION)"),
new CodeTemplate(ECSharpKind.Option, "Option(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.Peek, "Peek(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.Not, "Not(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.In, "In($(PAIRS))"),
new CodeTemplate(ECSharpKind.NotIn, "NotIn($(PAIRS))"),//NOTIN_MISSING_PAREN
new CodeTemplate(ECSharpKind.OneOf, "OneOf($(CHARS))"),
new CodeTemplate(ECSharpKind.NotOneOf, "NotOneOf($(CHARS))"),
new CodeTemplate(ECSharpKind.TreeAnd, "And(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.TreePeek, "Peek(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.TreeNot, "Not(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.RuleRef, "$(NAME)()"),
new CodeTemplate(ECSharpKind.RuleRefWithArgs,"$(NAME)(()=>\n$(ARG0)$(ARGN) )"),
new CodeTemplate(ECSharpKind.String, "Char($(CHARS))"),
new CodeTemplate(ECSharpKind.StringCaseInsensitive,
"IChar($(CHARS))"),
new CodeTemplate(ECSharpKind.Literals, "OneOfLiterals($(LITERALS))"),
new CodeTemplate(ECSharpKind.OptimizedCharset,"OneOf($(CHARSET))"),
new CodeTemplate(ECSharpKind.Any, "Any()"),
new CodeTemplate(ECSharpKind.RuleTree, "return TreeNT((int)E$(MODULE_NAME).$(ENUMERATOR),()=>\n$(CONDITION) );"),
new CodeTemplate(ECSharpKind.RuleAst, "return TreeAST((int)E$(MODULE_NAME).$(ENUMERATOR),()=>\n$(CONDITION) );"),
new CodeTemplate(ECSharpKind.RuleCreaTree, "return TreeNT($(CREATOR),(int)E$(MODULE_NAME).$(ENUMERATOR),()=>\n$(CONDITION) );"),
new CodeTemplate(ECSharpKind.RuleCreaAst, "return TreeAST($(CREATOR),int)E$(MODULE_NAME).$(ENUMERATOR),()=>\n$(CONDITION) );"),
new CodeTemplate(ECSharpKind.TreeChars, "TreeChars(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.OptRepeat, "OptRepeat(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.PlusRepeat, "PlusRepeat(()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.ForLoop, "ForRepeat($(LOWER),$(UPPER),()=>\n$(CONDITION) )"),
new CodeTemplate(ECSharpKind.Rule, "return $(BODY);"),
new CodeTemplate(ECSharpKind.Bits, "Bits($(LOWER),$(UPPER),$(BYTE))"),
new CodeTemplate(ECSharpKind.PeekBits, "PeekBits($(LOWER),$(UPPER),$(BYTE))"),
new CodeTemplate(ECSharpKind.NotBits, "NotBits($(LOWER),$(UPPER),$(BYTE))"),
new CodeTemplate(ECSharpKind.MatchingBitsInto,
"BitsInto($(LOWER),$(UPPER),$(BYTE),out $(INTO))"),
new CodeTemplate(ECSharpKind.BitsInto, "BitsInto($(LOWER),$(UPPER),out $(INTO))"),
new CodeTemplate(ECSharpKind.Bit, "Bit($(LOWER),$(BYTE))"),
new CodeTemplate(ECSharpKind.PeekBit, "PeekBit($(LOWER),$(BYTE))"),
new CodeTemplate(ECSharpKind.BitNot, "BitNot($(LOWER),$(BYTE))"),
new CodeTemplate(ECSharpKind.Into, "Into(()=>\n$(CONDITION),out $(INTO))"),
new CodeTemplate(ECSharpKind.Fatal, "Fatal(\"$(ERROR)\")"),
new CodeTemplate(ECSharpKind.Warning, "Warning(\"$(ERROR)\")"),
};
#endregion Data Members
internal class CharsetInfo{//used to break up character ranges and character sets into chunks
internal struct Range{internal string lower; internal string upper;}
internal List<List<Range>> range_;
internal List<List<string>> chars_;
}
#region Template Classes (Code generation support)
internal class Template{
internal ETemplateKind kind_;
internal List<Template> subNodes_;
internal string templateCode;
internal Dictionary<string, string> replacements; //e.g. $(CONDITION) => $0 && $1 && $2
internal Template(ETemplateKind kind)
{
kind_ = kind;
subNodes_ = new List<Template>();
replacements = new Dictionary<string, string>();
}
Template():this(ETemplateKind.TemplNone)
{
}
}
internal class TemplateInt : Template
{
internal TemplateInt(ETemplateKind kind, int value)
: base(kind)
{
value_ = value;
}
internal int value_;
}
internal class TemplateString : Template
{
internal TemplateString(ETemplateKind kind, string name)
: base(kind)
{
name_ = name;
}
internal string name_;
}
internal class TemplateStrings : Template
{
internal TemplateStrings(ETemplateKind kind, List<string> strings)
:base(kind)
{
strings_ = strings;
}
internal List<string> strings_;
}
internal class TemplateCharsetInfo : Template
{
internal TemplateCharsetInfo(ETemplateKind kind, CharsetInfo charsetInfo)
: base(kind)
{
charsetInfo_ = charsetInfo;
}
internal CharsetInfo charsetInfo_;
}
internal class TemplateRepetition : Template
{
internal TemplateRepetition(ETemplateKind kind, PegGrammarParser.TRange repetition)
: base(kind)
{
repetition_ = repetition;
}
internal PegGrammarParser.TRange repetition_;
}
internal class TemplateContainer<T> : Template
{
internal TemplateContainer(ETemplateKind kind,T t)
: base(kind)
{
t_ = t;
}
internal T t_;
}
#endregion Template Classes (Code generation support)
#region Code Generator Classes
internal class TemplateGenerator
{
#region data members
TreeContext context_;
#endregion data members
internal TemplateGenerator(TreeContext context)
{
context_ = context;
}
#region C# char encodings
string GetEscapeValue(PegNode n)
{
switch (n.id_)
{
case (int)EPegGrammar.escape_char:
Debug.Assert(n.match_.Length == 1);
return "\\" + n.GetAsString(context_.src_);
case (int)EPegGrammar.escape_int: return "\\" + n.GetAsString(context_.src_);
default: Debug.Assert(false); return "";
}
}
char GetEscapeUnicodeValue(PegNode n)
{
switch (n.id_)
{
case (int)EPegGrammar.escape_char:
Debug.Assert(n.match_.Length == 1);
char c= n.GetAsString(context_.src_)[0];
switch (c)
{
case 'n': return '\n';
case 'r': return '\r';
case 'v': return '\v';
default: return c;
}
case (int)EPegGrammar.escape_int:
{
string octalNumber = n.GetAsString(context_.src_);
return (char)Convert.ToInt32(octalNumber,8);
}
default: Debug.Assert(false); return ' ';
}
}
string GetCodePointValue(PegNode n)
{
int numericValue = 0;
string s = n.GetAsString(context_.src_);
switch (n.id_)
{
case (int)EPegGrammar.hexadecimal_digits:
Int32.TryParse(s, System.Globalization.NumberStyles.HexNumber, null, out numericValue);
break;
case (int)EPegGrammar.binary_digits:
for (int i = 0; i < s.Length; ++i)
{
numericValue *= 2;
numericValue += (s[i] - '0');
}
break;
case (int)EPegGrammar.decimal_digits:
Int32.TryParse(s, out numericValue);
break;
}
return "\\u" + numericValue.ToString("x4", null);
}
char GetCodePointUnicodeValue(PegNode n)
{
int numericValue = 0;
string s = n.GetAsString(context_.src_);
switch (n.id_)
{
case (int)EPegGrammar.hexadecimal_digits:
Int32.TryParse(s, System.Globalization.NumberStyles.HexNumber, null, out numericValue);
break;
case (int)EPegGrammar.binary_digits:
for (int i = 0; i < s.Length; ++i)
{
numericValue *= 2;
numericValue += (s[i] - '0');
}
break;
case (int)EPegGrammar.decimal_digits:
Int32.TryParse(s, out numericValue);
break;
}
return (char)numericValue;
}
string GetCSharpChar(PegNode n)
{
if (n== null) return "";
switch ((EPegGrammar)n.id_)
{
case EPegGrammar.escape_char:
case EPegGrammar.escape_int: return GetEscapeValue(n);
case EPegGrammar.code_point: return GetCodePointValue(n.child_);
case EPegGrammar.printable_char: return n.GetAsString(context_.src_);
default: return n.GetAsString(context_.src_);
}
}
char GetCSharpUnicode(PegNode n)
{
if (n.child_ != null)
{
switch ((EPegGrammar)n.child_.id_)
{
case EPegGrammar.escape_char:
case EPegGrammar.escape_int: return GetEscapeUnicodeValue(n.child_);
case EPegGrammar.code_point: return GetCodePointUnicodeValue(n.child_.child_);
case EPegGrammar.printable_char: return n.GetAsString(context_.src_)[0];
default: Debug.Assert(false); return ' ';
}
}
else
{
return n.GetAsString(context_.src_)[0];
}
}
#endregion C# char encodings
#region Template generators
internal Template GenTemplateForRule(PegNode rule)
{
string sRuleName;
bool bIsTree, bIsAst;
PegNode ruleIdent = PUtils.FindNode(rule.child_, EPegGrammar.rule_name);
Debug.Assert(ruleIdent != null);
sRuleName = ruleIdent.GetAsString(context_.src_);
PegNode ruleId = PUtils.GetRuleId(rule, true);
ETemplateKind kind = ETemplateKind.TemplRule;
PUtils.TreeOrAstPresent(ruleId.next_, out bIsTree, out bIsAst);
PegNode create= PUtils.FindNode(rule.child_, EPegGrammar.create_spec);
Template templNode;
if (create!=null)
{
if (bIsTree) kind = ETemplateKind.TemplTreeCreateRule;
else if (bIsAst) kind = ETemplateKind.TemplAstCreateRule;
Debug.Assert(create.child_ != null && create.child_.id_ == (int)EPegGrammar.create_method);
templNode = new TemplateStrings(kind, new List<string>() { sRuleName, create.child_.GetAsString(context_.src_) });
}
else
{
if (bIsTree) kind = ETemplateKind.TemplTreeRule;
else if (bIsAst) kind = ETemplateKind.TemplAstRule;
else kind = ETemplateKind.TemplRule;
templNode = new TemplateString(kind, sRuleName);
}
PegNode rhs = PUtils.GetRhs(rule);
if (rhs != null)
{
Template templChild = GenTemplateForRhs(rhs, bIsTree || bIsAst);
templNode.subNodes_.Add(templChild);
}
return templNode;
}
Template GenTemplateForRhs(PegNode rhs, bool bIsTreeGenerating)
{
PegNode choice = rhs.child_;
Debug.Assert(choice != null && choice.id_ == (int)EPegGrammar.choice);
return GenTemplateForAlternatives(choice, bIsTreeGenerating);
}
Template TryGenTemplateForLiteralAlternatives(PegNode choice)
{
int count;
List<string> literals= new List<string>();
for (count=0; choice != null; choice = choice.next_,++count)
{
PegNode n= PUtils.GetByPath(choice,
(int)EPegGrammar.choice,
(int)EPegGrammar.term,
(int)EPegGrammar.atom,
(int)EPegGrammar.suffixed_literal,
(int)EPegGrammar.quoted_content);
if( n==null || n.next_!=null || n.parent_.parent_.next_!=null || n.parent_.parent_.parent_.next_!=null) break;//case or atom_postfix or term
string s = "";
for (PegNode c = n.child_; c != null; c = c.next_)
{
s += GetCSharpUnicode(c);
}
literals.Add(s);
}
if (count >= 8 && choice == null)
{
return new TemplateStrings(ETemplateKind.TemplLiterals, literals);
}
return null;
}
Template TryGenTemplateForOptimizedCharsets(ETemplateKind kind, CharsetInfo charsetInfo)
{
int count = 0;
foreach (var chars in charsetInfo.chars_)
{
count += chars.Count;
}
foreach (var ranges in charsetInfo.range_)
{
count += ranges.Count;
}
if (count >= 8)
{
return new TemplateCharsetInfo(
kind == ETemplateKind.TemplCharset? ETemplateKind.TemplOptimizedCharset: ETemplateKind.TemplNegatedOptimizedCharset,
charsetInfo);
}
return null;
}
Template GenTemplateForAlternatives(PegNode choice, bool bIsTreeGenerating)
{
Template t = TryGenTemplateForLiteralAlternatives(choice);
if (t != null) return t;
if (choice.next_ != null)
{
Template templNode = new Template(ETemplateKind.TemplOr);
for (; choice != null; choice = choice.next_)
{
templNode.subNodes_.Add(GenTemplateForTerm(choice.child_));
}
return templNode;
}
else
{
return GenTemplateForTerm(choice.child_);
}
}
Template GenTemplateForTerm(PegNode term)
{
Debug.Assert(term != null && term.id_ == (int)EPegGrammar.term);
if (term.next_ != null)
{
Template templNode = new Template(ETemplateKind.TemplAnd);
for (; term != null; term = term.next_)
{
templNode.subNodes_.Add(GenTemplateForAtomInfo(term));
}
return templNode;
}
else
{
return GenTemplateForAtomInfo(term);
}
}
Template GenTemplateForAtomInfo(PegNode term)
{
PegNode atom = term.child_;
Debug.Assert(term.child_ != null);
//handle pre-atom symbol
Template templateNode = PreAtomItem(ref atom);//&a !a ^a ^^a
if (templateNode == null)
templateNode = PostAtomItem(ref atom);//a{low,high} a* a? a+
if (templateNode != null)
{
templateNode.subNodes_.Add(AtomChildItem(atom.child_));
// HandleBitAccessOptimizations(ref templateNode);
return templateNode;
}
else
{
return AtomChildItem(atom.child_);
}
}
Template PreAtomItem(ref PegNode atom)
{//handles ^a ^^a &a !a and a* a+ a{low,high}
if (atom.id_ == (int)EPegGrammar.atom_prefix)
{
Debug.Assert(atom.child_ != null);
switch (atom.child_.id_)
{
case (int)EPegGrammar.tree_symbol:
case (int)EPegGrammar.ast_symbol:
{//currently only
bool bIsNt = atom.child_.next_ != null && atom.child_.next_.id_ == (int)EPegGrammar.rule_ref;
bool bIsTree = atom.child_.id_ == (int)EPegGrammar.tree_symbol;
atom = atom.next_;
if (bIsNt)
{
return new Template(bIsTree ? ETemplateKind.TemplTreeNT : ETemplateKind.TemplAstNT);
}
else
{
return new Template(ETemplateKind.TemplTreeChars);
}
}
case (int)EPegGrammar.peek_symbol:
{
atom = atom.next_;
return new Template(ETemplateKind.TemplPeek);
}
case (int)EPegGrammar.not_symbol:
{
atom = atom.next_;
return new Template(ETemplateKind.TemplNot);
}
default:
Debug.Assert(false);
return null;
}
}
return null;
}
Template PostAtomItem(ref PegNode atom)
{
if (atom.next_ != null && atom.next_.id_ == (int)EPegGrammar.atom_postfix)
{
PegNode n = atom.next_.child_;
Debug.Assert(n != null);
switch (n.id_)
{
case (int)EPegGrammar.repetition_range:
PegGrammarParser.TRange rep = n as PegGrammarParser.TRange;
return new TemplateRepetition(ETemplateKind.TemplRepetition, rep);
case (int)EPegGrammar.into_variable: //provisonary implementation
return new TemplateString(ETemplateKind.TemplIntoVariable, n.GetAsString(context_.src_));
case (int)EPegGeneratorNodes.IntoVarWithContext:
NormalizeTree.SemanticVarOrFuncWithContext intoVarInfo = n as NormalizeTree.SemanticVarOrFuncWithContext;
Debug.Assert(intoVarInfo != null);
var templInto = new TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext>(ETemplateKind.TemplIntoVar, intoVarInfo);
return templInto;
default://"not yet implemented"
Debug.Assert(false);
return null;
}
}
return null;
}
Template AtomChildItem(PegNode atomChild)
{ /*returns a template node describing this atom and its childs */
switch (atomChild.id_)
{
case (int)EPegGrammar.rule_ref:
{
string sRuleName = PUtils.GetRuleNameFromRuleRef(atomChild, context_.src_);
Template templNode= new TemplateString(ETemplateKind.TemplRuleRef, sRuleName);
if (atomChild.next_ != null && atomChild.next_.id_ == (int)EPegGrammar.peg_args)
{
for (PegNode rhs = atomChild.next_.child_; rhs != null; rhs = rhs.next_)
{
Template templArg = GenTemplateForRhs(rhs, true);
templNode.subNodes_.Add(templArg);
}
}
return templNode;
}
case (int)EPegGeneratorNodes.GenericCall:
{
NormalizeTree.GenericCall gc = atomChild as NormalizeTree.GenericCall;
Debug.Assert(gc != null);
string sRuleName = gc.GetAsString(context_.src_);
return new TemplateString(ETemplateKind.TemplRuleRef, sRuleName);
}
case (int)EPegGeneratorNodes.SemanticFunctionWithContext:
NormalizeTree.SemanticVarOrFuncWithContext semFuncCall = atomChild as NormalizeTree.SemanticVarOrFuncWithContext;
Debug.Assert(semFuncCall != null);
var templSemFuncCall = new TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext>(ETemplateKind.TemplSemFuncCall, semFuncCall);
return templSemFuncCall;
case (int)EPegGrammar.suffixed_literal:
Debug.Assert(atomChild.child_ != null);
bool bCaseSensitive = context_.HasCaseSensitiveProperty() || atomChild.child_.next_ != null && atomChild.child_.next_.id_ == (int)EPegGrammar.case_insensitve;
List<string> strings = new List<string>();
for (PegNode n = atomChild.child_.child_; n != null; n = n.next_)
{
strings.Add(GetCSharpChar(n));
}
return new TemplateStrings(
bCaseSensitive
? ETemplateKind.TemplStringCaseInsensitive
: ETemplateKind.TemplString,
strings);
case (int)EPegGrammar.into_variable:
return new TemplateString(ETemplateKind.TemplIntoVariable, atomChild.GetAsString(context_.src_));
case (int)EPegGrammar.code_point:
List<string> codePointValue = new List<string>();
codePointValue.Add(GetCodePointValue(atomChild.child_));
return new TemplateStrings(ETemplateKind.TemplString, codePointValue);
case (int)EPegGrammar.character_set:
{ /*^^character_set: '[' set_negation? ((char_set_range/char_set_char)+ @']'*/
CharsetInfo charsetInfo = new CharsetInfo();
ETemplateKind kind = ETemplateKind.TemplCharset;
charsetInfo.chars_ = new List<List<string>>();
charsetInfo.range_ = new List<List<CharsetInfo.Range>>();
for (PegNode n = atomChild.child_; n != null; n = n.next_)
{
switch (n.id_)
{
case (int)EPegGrammar.set_negation: kind = ETemplateKind.TemplNegatedCharset;
break;
case (int)EPegGrammar.char_set_char:
{
string s = GetCSharpChar(n.child_);
if (charsetInfo.chars_.Count == 0 || charsetInfo.chars_[charsetInfo.chars_.Count - 1].Count % 16 == 0)
{
charsetInfo.chars_.Add(new List<string>());
}
charsetInfo.chars_[charsetInfo.chars_.Count - 1].Add(s);
}
break;
case (int)EPegGrammar.char_set_range:
{
Debug.Assert(n.child_ != null && n.child_.id_ == (int)EPegGrammar.char_set_char
&& n.child_.next_ != null && n.child_.next_.id_ == (int)EPegGrammar.char_set_char);
string sFirst = GetCSharpChar(n.child_.child_);
string sLast = GetCSharpChar(n.child_.next_.child_);
CharsetInfo.Range r;
r.lower= sFirst; r.upper = sLast;
if (charsetInfo.range_.Count == 0 || charsetInfo.range_[charsetInfo.range_.Count - 1].Count % 4 == 0)
{
charsetInfo.range_.Add(new List<CharsetInfo.Range>());
}
charsetInfo.range_[charsetInfo.range_.Count - 1].Add(r);
}
break;
}
}
Template template= TryGenTemplateForOptimizedCharsets(kind,charsetInfo);
if (template != null) return template;
else
return new TemplateCharsetInfo(kind, charsetInfo);
}
case (int)EPegGrammar.rhs_of_rule:
Debug.Assert(atomChild.child_ != null && atomChild.child_.id_ == (int)EPegGrammar.choice);
return GenTemplateForAlternatives(atomChild.child_, false);
case (int)EPegGrammar.hexadecimal_digits:
List<string> hexadecimal_digitsValue = new List<string>();
hexadecimal_digitsValue.Add("\\s" + atomChild.GetAsString(context_.src_));
return new TemplateStrings(ETemplateKind.TemplString, hexadecimal_digitsValue);
case (int)EPegGrammar.any_char:
return new TemplateInt(ETemplateKind.TemplDots, 1);
case (int)EPegGeneratorNodes.FatalNode:
case (int)EPegGeneratorNodes.WarningNode:
NormalizeTree.Message m = atomChild as NormalizeTree.Message;
return new TemplateString(
atomChild.id_ == (int)EPegGeneratorNodes.FatalNode
? ETemplateKind.TemplFatal
: ETemplateKind.TemplWarning,
m.message_);
case (int)EPegGrammar.message:
bool isFatal = false;
if ((isFatal = atomChild.child_.id_ == (int)EPegGrammar.fatal) || atomChild.child_.id_ == (int)EPegGrammar.warning)
{
if (atomChild.child_.next_.id_ == (int)EPegGrammar.multiline_double_quote_literal)
{
var multiDblQuoteNode = atomChild.child_.next_ as PegGrammarParser.MultiLineDblQuoteNode;
return new
TemplateString(isFatal ? ETemplateKind.TemplFatal : ETemplateKind.TemplWarning,
multiDblQuoteNode.quoted_);
}
}/*
else if( nThrow.child_.next_.id_==(int)Epeg_generator.enumerator ){
PegNode nEnum= nThrow.child_.next_;
templNode.name = nEnum.GetAsString(context_.src_);
}*/
Debug.Assert(false);
break;
case (int)EPegGrammar.bit_access:
Debug.Assert(atomChild.child_ != null && atomChild.child_.id_ == (int)EPegGrammar.bit_range);
PegGrammarParser.TRange bitRange = atomChild.child_ as PegGrammarParser.TRange;
Template templBitAccess = new TemplateRepetition(ETemplateKind.TemplBitAccess, bitRange);
Debug.Assert(atomChild.child_.next_!=null);
templBitAccess.subNodes_.Add(AtomChildItem(atomChild.child_.next_));
if (atomChild.child_.next_.next_ != null) templBitAccess.subNodes_.Add(AtomChildItem(atomChild.child_.next_.next_));
return templBitAccess;
case (int)EPegGeneratorNodes.IntoVarWithContext:
NormalizeTree.SemanticVarOrFuncWithContext intoVarInfo = atomChild as NormalizeTree.SemanticVarOrFuncWithContext;
Debug.Assert(intoVarInfo != null);
var templInto = new TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext>(ETemplateKind.TemplIntoVar, intoVarInfo);
return templInto;
default:
Debug.Assert(false);
break;
}
return null;
}
/*void HandleBitAccessOptimizations(ref Template templateNode)
{
if( templateNode.subNodes_.Count>=1
&& templateNode.subNodes_[0].kind_==ETemplateKind.TemplBitAccess ){
if( templateNode.kind_==ETemplateKind.TemplNot ){
}
else if (templateNode.kind_ == ETemplateKind.TemplPeek)
{
}
}
}*/
#endregion Template generators
}
internal class CodeFromTemplate
{
#region Data Members
PegCSharpGenerator parent_;
TreeContext context_;
#endregion Data Members
#region Constructors
internal CodeFromTemplate(PegCSharpGenerator parent, TreeContext context)
{
parent_ = parent;
context_ = context;
}
#endregion Constructors
#region Formatting and Code Emit
void Emit(string rule)
{/*append rulecode to generated source code */
rule = new string(' ', 11) + rule;
PrefixIndent(ref rule, 16);
parent_.outFile_.Write(rule);
}
string DoAlignments(Template templNode, int indent, bool parentDone)
{ //currently replacements are unsafe because macro could also be found as string
string s = templNode.templateCode;
if (s == null) return "";
s = s.Replace('\n', ' ');
foreach (KeyValuePair<string, string> kvp in templNode.replacements)
{
string value = kvp.Value.Replace('\n', ' ');
parent_.ReplaceMacro(ref s, kvp.Key, value);
}
for (int i = 0; i < templNode.subNodes_.Count; ++i)
{
parent_.ReplaceMacro(ref s, "$(" + i.ToString() + ")", DoAlignments(templNode.subNodes_[i], indent, false));
}
if (indent + s.Length > context_.generatorParams_.maxLineLength_)
{
if (!parentDone && indent != 0) return s;
s = templNode.templateCode;
string sIndent = new string(' ', indent) + "\n";
s = s.Replace("\n", sIndent);
foreach (KeyValuePair<string, string> kvp in templNode.replacements)
{
parent_.ReplaceMacro(ref s, kvp.Key, kvp.Value);
}
for (int i = 0; i < templNode.subNodes_.Count; ++i)
{
string elem = DoAlignments(templNode.subNodes_[i], indent + 2, true);
PrefixIndent(ref elem, indent + 2);
parent_.ReplaceMacro(ref s, "$(" + i.ToString() + ")", elem);
}
}
return s;
}
#endregion Formatting and Code Emi
#region Helper Functions
string GetAsCharacterCode(string s)
{
string result;
switch(s)
{
case "'": result = @"'\''"; break;
case "\\": result = @"'\\'"; break;
case "\\]": result = "']'"; break;
default: result = "'" + s + "'"; break;
}
if (context_.IsGrammarForBinaryInput())
{
if (s.Length > 2 && s.Substring(0, 2) == "\\u")
{
return "0x" + s.Substring(2);
}
else
{
return "(byte)" + result;
}
}
return result;
}
void PrefixIndent(ref string s, int indent)
{
int i, last = 0;
string sIndent = new string(' ', indent);
while ((i = s.IndexOf('\n', last)) != -1)
{
s = s.Substring(0, i + 1) + sIndent + s.Substring(i + 1);
last = i + indent + 1;
}
}
bool IsComposite(Template templNode)
{
return templNode.kind_ == ETemplateKind.TemplOr;
}
#endregion Helper Functions
#region Template Generation associated C# code
void SetRuleCode(Template templNode)
{
string condition;
if (templNode.subNodes_.Count > 0)
{
condition = GenMatchCodeForCSharp(templNode.subNodes_[0], 1);
templNode.replacements.Add("$(CONDITION)", "$(0)");
}
else
{
condition = "true";
templNode.replacements.Add("$(CONDITION)", "true");
}
}
internal void GenMatchCodeForRuleCSharp(Template templNode)
{
/*generates C# code for templNode and its chidlren and stores it in the templNode*/
switch (templNode.kind_)
{
case ETemplateKind.TemplRule:
string ruleCode = parent_.FindCSharpTemplateCode(ECSharpKind.Rule);
templNode.templateCode = ruleCode;
string body;
if (templNode.subNodes_.Count > 0)
{
body = GenMatchCodeForCSharp(templNode.subNodes_[0], 1);
templNode.replacements.Add("$(BODY)", "$(0)");
}
else
{
body = "true";
templNode.replacements.Add("$(BODY)", "true");
}
parent_.ReplaceMacro(ref ruleCode, "$(BODY)", body);
ruleCode = DoAlignments(templNode, 0, false);
Emit(ruleCode);
break;
case ETemplateKind.TemplTreeRule:
case ETemplateKind.TemplAstRule:
{
TemplateString templString = templNode as TemplateString;
string s = parent_.FindCSharpTemplateCode(templNode.kind_ == ETemplateKind.TemplTreeRule ? ECSharpKind.RuleTree : ECSharpKind.RuleAst);
templNode.templateCode = s;
SetRuleCode(templNode);
templNode.replacements.Add("$(MODULE_NAME)", parent_.moduleName_);
templNode.replacements.Add("$(ENUMERATOR)", parent_.GetCSharpPrefixed(templString.name_));
s = DoAlignments(templNode, 0, false);
Emit(s);
}
break;
case ETemplateKind.TemplAstCreateRule:
case ETemplateKind.TemplTreeCreateRule:
{
TemplateStrings templStrings = templNode as TemplateStrings;
string s = parent_.FindCSharpTemplateCode(templNode.kind_ == ETemplateKind.TemplTreeCreateRule ? ECSharpKind.RuleCreaTree : ECSharpKind.RuleCreaAst);
templNode.templateCode = s;
SetRuleCode(templNode);
templNode.replacements.Add("$(MODULE_NAME)", parent_.moduleName_);
templNode.replacements.Add("$(ENUMERATOR)", parent_.GetCSharpPrefixed(templStrings.strings_[0]));
templNode.replacements.Add("$(CREATOR)", templStrings.strings_[1]);
s = DoAlignments(templNode, 0, false);
Emit(s);
}
break;
default: Debug.Assert(false);//not yet implemented
break;
}
}
string BuildConditionStringCSharp(Template templNode, string templateCode, string sOperator, int level)
{
bool bFirstTime = true;
string templateCondition = "";
for (int i = 0; i < templNode.subNodes_.Count; ++i)
{
var subNode = templNode.subNodes_[i];
string condPart = GenMatchCodeForCSharp(subNode, level + 1);
if (i > 0) templateCondition += "\n";
if (!bFirstTime) templateCondition += sOperator + " ";
else templateCondition += " ";
if (IsComposite(subNode)) templateCondition += "($(" + i.ToString() + "))";
else templateCondition += "$(" + i.ToString() + ")";
bFirstTime = false;
}
templNode.replacements.Add("$(CONDITION)", templateCondition);
return templateCode;
}
string GetObjectName(PegNode semanticBlock, bool bIsLocal)
{
if (semanticBlock.id_ == (int)EPegGrammar.named_semantic_block)
{
Debug.Assert(semanticBlock.child_.id_ == (int)EPegGrammar.sem_block_name);
string name = semanticBlock.child_.GetAsString(context_.src_);
if (name.Substring(0, 1).ToLower() == name.Substring(0, 1))
{
FatalErrOut("FATAL from <PEG_GENERATOR>: Semantic Block Name '" + name + "' must start with an uppercase");
}
string varName = name.Substring(0, 1).ToLower();
if (name.Length > 1) varName += name.Substring(1);
return varName;
}
else
{
Debug.Assert(semanticBlock.id_ == (int)EPegGrammar.anonymous_semantic_block);
if (bIsLocal) return "_sem";
else return "_top";
}
}
private void FatalErrOut(string p)
{
context_.errOut_.WriteLine(p);
if (parent_.outFile_ != null) parent_.outFile_.WriteLine(p);
}
string GetBitAccessCode(string cSharpTemplCode, TemplateRepetition templRange)
{
Debug.Assert(templRange.subNodes_.Count > 0);
Template templMatch = templRange.subNodes_[0];
Debug.Assert( templMatch.kind_ == ETemplateKind.TemplString
|| templMatch.kind_ == ETemplateKind.TemplDots);//ETemplateKind.TemplCharset not yet handled
Template templInto = templRange.subNodes_.Count <= 1 ? null : templRange.subNodes_[1];
string value = "'\u0000'";
if (templMatch.kind_ == ETemplateKind.TemplDots)
{
//nothing has to be don
}
else if (templMatch.kind_ == ETemplateKind.TemplCharset)
{
Debug.Assert(false); // not yet implemented
}
else
{
TemplateStrings templStrings = templMatch as TemplateStrings;
Debug.Assert(templStrings != null && templStrings.strings_.Count > 0);
value = GetAsCharacterCode(templStrings.strings_[0]);
}
parent_.ReplaceMacro(ref cSharpTemplCode, "$(LOWER)", templRange.repetition_.lower.ToString());
parent_.ReplaceMacro(ref cSharpTemplCode, "$(UPPER)", templRange.repetition_.upper.ToString());
parent_.ReplaceMacro(ref cSharpTemplCode, "$(BYTE)", value);
if (templInto!=null)
{
TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext> tc;
if ((tc = templInto as TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext>) != null)
{
NormalizeTree.SemanticVarOrFuncWithContext intoInfo = tc.t_;
string intoName =
GetObjectName(intoInfo.semBlock_,intoInfo.isLocal_)
+ "."
+ intoInfo.variableOrFunc_.GetAsString(context_.src_);
parent_.ReplaceMacro(ref cSharpTemplCode, "$(INTO)", intoName);
}
}
return cSharpTemplCode;
}
bool TryHandleBitaccessOptimization(Template templNode)
{// try generate PeekBits,NotBits,PeekBit,NotBit ,:not yet handled: charsets as last parameter
Debug.Assert(templNode.kind_ == ETemplateKind.TemplPeek || templNode.kind_ == ETemplateKind.TemplNot);
if ( templNode.subNodes_.Count > 0
&& templNode.subNodes_[0].kind_ == ETemplateKind.TemplBitAccess )
{
TemplateRepetition templRange = templNode.subNodes_[0] as TemplateRepetition;
Debug.Assert(templRange.subNodes_.Count > 0);
if (templRange.subNodes_.Count > 1) return false; //no optimization possible
string sCSharpCodeTemplate;
if (templRange.repetition_.lower == templRange.repetition_.upper)
{
sCSharpCodeTemplate =
parent_.FindCSharpTemplateCode(templNode.kind_ == ETemplateKind.TemplPeek ? ECSharpKind.PeekBit : ECSharpKind.BitNot);
}
else
{
sCSharpCodeTemplate =
parent_.FindCSharpTemplateCode(templNode.kind_ == ETemplateKind.TemplPeek ? ECSharpKind.PeekBits : ECSharpKind.NotBits);
}
sCSharpCodeTemplate= GetBitAccessCode(sCSharpCodeTemplate, templRange);
templNode.templateCode = sCSharpCodeTemplate;
return true;
}
return false;
}
string InRangeCode(List<List<CharsetInfo.Range>> ranges,ETemplateKind kind,ref int elemCount)
{
string InTemplate = kind == ETemplateKind.TemplCharset
? parent_.FindCSharpTemplateCode(ECSharpKind.In)
: parent_.FindCSharpTemplateCode(ECSharpKind.NotIn);
string condition = "";
if (kind == ETemplateKind.TemplCharset)
{
foreach (var range in ranges)
{
string InTempl = InTemplate;
string pairs = "";
foreach (var pair in range)
{
if (pairs.Length > 0) pairs += ", ";
pairs += GetAsCharacterCode(pair.lower) + "," + GetAsCharacterCode(pair.upper);
}
parent_.ReplaceMacro(ref InTempl, "$(PAIRS)", pairs);
if (condition.Length > 0) condition += "||";
condition += InTempl;
++elemCount;
}
}
else
{
foreach (var range in ranges)
{
string InTempl = InTemplate;
string pairs = "";
foreach (var pair in range)
{
pairs += pair.lower + pair.upper;
}
parent_.ReplaceMacro(ref InTempl, "$(PAIRS)", "\"" + pairs + "\"");
if (condition.Length > 0) condition += "||";
condition += InTempl;
++elemCount;
}
}
return condition;
}
string GetAsInDoubleQuotes(string s)
{
return s.Replace("\"", "\\\"");
}
string OneOfCharsCode(List<List<string>> chars, ETemplateKind kind,ref int elemCount)
{
string OneOfCharsTemplate = kind == ETemplateKind.TemplCharset
? parent_.FindCSharpTemplateCode(ECSharpKind.OneOf)
: parent_.FindCSharpTemplateCode(ECSharpKind.NotOneOf);
string condition = "";
foreach (var charset in chars)
{
string oneOfChar = OneOfCharsTemplate;
string formattedChars = "";
foreach (var singleChar in charset)
{
formattedChars += GetAsInDoubleQuotes(singleChar);
}
parent_.ReplaceMacro(ref oneOfChar, "$(CHARS)", "\"" + formattedChars + "\"");
if (condition.Length > 0) condition += "||";
condition += oneOfChar;
++elemCount;
}
return condition;
}
string GetLimitCode(int numericLimit,PegNode variableLimit)
{
if (variableLimit != null)
{
var intoVarInfo = variableLimit as NormalizeTree.SemanticVarOrFuncWithContext;
string intoName =
GetObjectName(intoVarInfo.semBlock_, intoVarInfo.isLocal_)
+ "."
+ intoVarInfo.variableOrFunc_.GetAsString(context_.src_);
return intoName;
}
else return numericLimit.ToString();
}
string GenMatchCodeForCSharp(Template templNode, int level)
{
Debug.Assert(templNode != null);
switch (templNode.kind_)
{
case ETemplateKind.TemplNot:
{
if( TryHandleBitaccessOptimization(templNode) ) return "";
string s = parent_.FindCSharpTemplateCode(ECSharpKind.Not);
templNode.templateCode = s;
string sCondition = GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
templNode.replacements.Add("$(CONDITION)", "$(0)");
return s;
}
case ETemplateKind.TemplPeek:
{
if (TryHandleBitaccessOptimization(templNode)) return "";
string s = parent_.FindCSharpTemplateCode(ECSharpKind.Peek);
templNode.templateCode = s;
string sCondition = GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
templNode.replacements.Add("$(CONDITION)", "$(0)");
return s;
}
case ETemplateKind.TemplAnd:
{
string s = parent_.FindCSharpTemplateCode(ECSharpKind.And);
templNode.templateCode = s;
string sResult = BuildConditionStringCSharp(templNode, s, "&&", level + 1);
return sResult;
}
case ETemplateKind.TemplOr:
{
string s = parent_.FindCSharpTemplateCode(ECSharpKind.Or);
templNode.templateCode = s;
string sResult = BuildConditionStringCSharp(templNode, s, "||", level + 1);
return sResult;
}
case ETemplateKind.TemplNegatedCharset:
case ETemplateKind.TemplCharset:
{
string InTemplate = parent_.FindCSharpTemplateCode(ECSharpKind.In);
string OneOfCharsTemplate = parent_.FindCSharpTemplateCode(ECSharpKind.OneOf);
TemplateCharsetInfo charsetNode = templNode as TemplateCharsetInfo;
int elemCount = 0;
string condition = InRangeCode(charsetNode.charsetInfo_.range_, templNode.kind_,ref elemCount);
string condition1 = OneOfCharsCode(charsetNode.charsetInfo_.chars_, templNode.kind_, ref elemCount);
if( condition.Length > 0 && condition1.Length > 0) condition+= "||";
condition+= condition1;
if (elemCount > 1) condition = "(" + condition + ")";
templNode.templateCode = condition;
return condition;
}
case ETemplateKind.TemplIntoVariable:
{ //provisonary implementation
TemplateString templInto = templNode as TemplateString;
Debug.Assert(templInto.subNodes_.Count > 0);
templInto.replacements.Add("$(CONDITION)","$(0)");
templInto.replacements.Add("$(INTO)", templInto.name_);
templInto.templateCode = parent_.FindCSharpTemplateCode(ECSharpKind.Into);
GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
return "";
}
case ETemplateKind.TemplIntoVar:
{
TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext> templIntoVar = templNode as TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext>;
NormalizeTree.SemanticVarOrFuncWithContext intoInfo = templIntoVar.t_;
string intoName = GetObjectName(intoInfo.semBlock_, intoInfo.isLocal_)
+ "." + intoInfo.variableOrFunc_.GetAsString(context_.src_);
Debug.Assert(templIntoVar.subNodes_.Count > 0);
templIntoVar.replacements.Add("$(CONDITION)", "$(0)");
templIntoVar.replacements.Add("$(INTO)", intoName);
templIntoVar.templateCode = parent_.FindCSharpTemplateCode(ECSharpKind.Into);
GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
return "";
}
case ETemplateKind.TemplSemFuncCall:
{
TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext> templFuncCall= templNode as TemplateContainer<NormalizeTree.SemanticVarOrFuncWithContext>;
NormalizeTree.SemanticVarOrFuncWithContext intoInfo = templFuncCall.t_;
string callSem = GetObjectName(intoInfo.semBlock_, intoInfo.isLocal_)
+ "." + intoInfo.variableOrFunc_.GetAsString(context_.src_);
string s = parent_.FindCSharpTemplateCode(ECSharpKind.RuleRef);
templNode.templateCode = s;
templNode.replacements.Add("$(NAME)", callSem);
return s;
}
case ETemplateKind.TemplRepetition:
{
TemplateRepetition templRep = templNode as TemplateRepetition;
if (templRep.repetition_.lower == 0 && templRep.repetition_.upper == 1)
{//option
string result = parent_.FindCSharpTemplateCode(ECSharpKind.Option);
templNode.templateCode = result;
string condition = GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
templNode.replacements.Add("$(CONDITION)", "$(0)");
return result;
}
else if ((templRep.repetition_.lower == 0 || templRep.repetition_.lower == 1) && templRep.repetition_.upper == Int32.MaxValue)
{
bool bIsOptRepeat = templRep.repetition_.lower == 0;
string result = parent_.FindCSharpTemplateCode(bIsOptRepeat ? ECSharpKind.OptRepeat : ECSharpKind.PlusRepeat);
templNode.templateCode = result;
string condition = GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
templNode.replacements.Add("$(CONDITION)", "$(0)");
return result;
}
else
{ // general for loop needed
string result = parent_.FindCSharpTemplateCode(ECSharpKind.ForLoop);
templNode.templateCode = result;
string condition = GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
string lower = GetLimitCode(templRep.repetition_.lower, templRep.repetition_.lowerIntoVar);
string upper = GetLimitCode(templRep.repetition_.upper, templRep.repetition_.upperIntoVar);
templNode.replacements.Add("$(CONDITION)", "$(0)");
templNode.replacements.Add("$(LOWER)", lower);
templNode.replacements.Add("$(UPPER)", upper);
return result;
}
}
case ETemplateKind.TemplRuleRef:
{
TemplateString templString = templNode as TemplateString;
string s= parent_.FindCSharpTemplateCode(templString.subNodes_.Count > 0
? ECSharpKind.RuleRefWithArgs
: ECSharpKind.RuleRef);
templNode.templateCode = s;
string refName = parent_.GetCSharpPrefixed(templString.name_);
templNode.replacements.Add("$(NAME)", refName);
if (templString.subNodes_.Count > 0) //call rule having arguments
{
for(int i=0;i<templNode.subNodes_.Count;++i)
{
GenMatchCodeForCSharp(templNode.subNodes_[i],level+1);
templNode.replacements.Add("$(ARG" + i.ToString() + ")", "$(" + i.ToString() + ")");
if (i + 1 < templNode.subNodes_.Count)
{
string continuation = argNReplace;
string next = "$(ARG" + (i + 1).ToString() + ")";
continuation= continuation.Replace("$(ARGN)", next);
continuation = continuation.Replace("$(ARGN1)", "$(ARGN)");
s= s.Replace("$(ARGN)", continuation);
}
else
{
s= s.Replace("$(ARGN)", "");
}
}
templNode.templateCode = s;
return s;
}
return s;
}
case ETemplateKind.TemplLiterals:
{
TemplateStrings templateStrings = templNode as TemplateStrings;
string s = parent_.FindCSharpTemplateCode(ECSharpKind.Literals);
templNode.templateCode = s;
string varName = "optimizedLiterals" + parent_.literalsCount_.ToString();
templNode.replacements.Add("$(LITERALS)", varName);
++parent_.literalsCount_;
AddOptimizationInitialization(templateStrings, varName);
return s;
}
case ETemplateKind.TemplOptimizedCharset:
case ETemplateKind.TemplNegatedOptimizedCharset:
{
TemplateCharsetInfo charsetNode = templNode as TemplateCharsetInfo;
string s = parent_.FindCSharpTemplateCode(ECSharpKind.OptimizedCharset);
templNode.templateCode = s;
string varName= "optimizedCharset" + parent_.optimizedCharsetCount_.ToString();
templNode.replacements.Add("$(CHARSET)",varName);
++parent_.optimizedCharsetCount_;
AddOptimizationInitialization(charsetNode, varName,templNode.kind_);
return s;
}
case ETemplateKind.TemplString:
case ETemplateKind.TemplStringCaseInsensitive:
{
TemplateStrings templStrings = templNode as TemplateStrings;
string s = parent_.FindCSharpTemplateCode(templNode.kind_ == ETemplateKind.TemplString ? ECSharpKind.String : ECSharpKind.StringCaseInsensitive);
templNode.templateCode = s;
string sChars = "";
if (templStrings.strings_.Count >= 8)
{
for (int i = 0; i < templStrings.strings_.Count; ++i){
string c= GetAsCharacterCode(templStrings.strings_[i]);
c= c.Substring(1,c.Length-2);
if( c.Length==1 && c[0]=='"' ) c= "\\" + c;
sChars += c;
}
sChars = "\"" + sChars + "\"";
}else{
for (int i = 0; i < templStrings.strings_.Count; ++i)
{
if (i > 0) sChars += ",";
sChars += GetAsCharacterCode(templStrings.strings_[i]);
}
}
templNode.replacements.Add("$(CHARS)", sChars);
return s;
}
case ETemplateKind.TemplDots:
{
string result = parent_.FindCSharpTemplateCode(ECSharpKind.Any);
templNode.templateCode = result;
return result;
}
case ETemplateKind.TemplBitAccess:
{
TemplateRepetition templRange = templNode as TemplateRepetition;
string cSharpTemplCode;
ECSharpKind kind;
if( templRange.subNodes_.Count>=2 ){
if (templRange.subNodes_[0].kind_ == ETemplateKind.TemplDots)
kind = ECSharpKind.BitsInto;
else kind = ECSharpKind.MatchingBitsInto;
}else if( templRange.repetition_.lower == templRange.repetition_.upper ){
kind= ECSharpKind.Bit;
}else{
kind= ECSharpKind.Bits;
}
cSharpTemplCode= parent_.FindCSharpTemplateCode(kind);
templNode.templateCode = GetBitAccessCode(cSharpTemplCode, templRange);
return cSharpTemplCode;
}
case ETemplateKind.TemplWarning:
case ETemplateKind.TemplFatal:
{
TemplateString templString = templNode as TemplateString;
string result = parent_.FindCSharpTemplateCode(
templNode.kind_ == ETemplateKind.TemplFatal ? ECSharpKind.Fatal : ECSharpKind.Warning);
templNode.templateCode = result;
templNode.replacements.Add("$(PREFIX)", "");
templNode.replacements.Add("$(ERROR)", GetAsInDoubleQuotes(templString.name_));
return result;
}
case ETemplateKind.TemplTreeChars:
{
string s = parent_.FindCSharpTemplateCode(ECSharpKind.TreeChars);
templNode.templateCode = s;
string condition = GenMatchCodeForCSharp(templNode.subNodes_[0], level + 1);
templNode.replacements.Add("$(CONDITION)", "$(0)");
return s;
}
default: Debug.Assert(false);
return "";
}
}
#endregion Template Generation associated C# code
#region Code Optimizations
void CheckAddStaticConstructor()
{
if (parent_.optimizationStaticConstructor_.Length == 0)
{
string s = parent_.FindCSharpTemplateCode(ECSharpKind.StaticConstructor);
parent_.ReplaceMacro(ref s, "$(MODULE_NAME)", parent_.moduleName_);
parent_.optimizationStaticConstructor_.Append(s);
}
}
void AddOptimizationInitialization(TemplateStrings literals, string varName)
{
CheckAddStaticConstructor();
StringBuilder s = new StringBuilder();
s.Append("{\n string[] literals=\n ");
s.Append("{ ");
for (int i = 0; i < literals.strings_.Count; ++i)
{
if (i > 0)
{
s.Append(",");
if (i % 8 == 0) s.Append("\n ");
}
s.Append("\"");
s.Append(literals.strings_[i]);
s.Append("\"");
}
s.Append(" };\n ");
s.Append(varName);
s.Append("= new OptimizedLiterals(literals);\n }\n");
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,
"$(OPTIMIZEDLITERALS_DECL)",
"internal static OptimizedLiterals " + varName + ";\n " + "$(OPTIMIZEDLITERALS_DECL)");
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,
"$(OPTIMIZEDLITERALS_IMPL)",
s.ToString() + "\n $(OPTIMIZEDLITERALS_IMPL)");
}
void AddOptimizationInitialization(TemplateCharsetInfo charset, string varName,ETemplateKind kind)
{
CheckAddStaticConstructor();
StringBuilder s = new StringBuilder();
s.Append("{\n ");
if (charset.charsetInfo_.range_.Count > 0)
{
s.Append("OptimizedCharset.Range[] ranges = new OptimizedCharset.Range[]\n {");
foreach(var r in charset.charsetInfo_.range_)
{
foreach (var pair in r)
{
s.Append("new OptimizedCharset.Range(");
s.Append(GetAsCharacterCode(pair.lower) + "," + GetAsCharacterCode(pair.upper));
s.Append("),\n ");
}
}
s.Append("};\n ");
}
if (charset.charsetInfo_.chars_.Count > 0)
{
s.Append("char[] oneOfChars = new char[] {");
bool bFirstTime = true;
int count = 0;
foreach (var chars in charset.charsetInfo_.chars_)
{
foreach (var singleChar in chars)
{
if (!bFirstTime) s.Append(",");
s.Append(GetAsCharacterCode(singleChar));
if (++count % 5 == 0)
{
s.Append("\n ");
}
bFirstTime = false;
}
}
s.Append("};\n ");
}
s.Append(varName);
s.Append("= new OptimizedCharset(");
s.Append(charset.charsetInfo_.range_.Count > 0 ? "ranges,":"null,");
s.Append(charset.charsetInfo_.chars_.Count > 0 ? "oneOfChars":"null");
if (kind == ETemplateKind.TemplNegatedOptimizedCharset) s.Append(", true");
s.Append(");");
s.Append("\n }\n ");
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,
"$(OPTIMIZEDCHARSET_DECL)",
"internal static OptimizedCharset " + varName + ";\n " + "$(OPTIMIZEDCHARSET_DECL)");
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,
"$(OPTIMIZEDCHARSET_IMPL)",
s.ToString() + "\n $(OPTIMIZEDCHARSET_IMPL)");
}
#endregion Code Optimizations
}
internal class TopLevelCode
{
#region Local Types
struct InitializationTermination{public string initialization;public string termination;}
#endregion Local Types
#region Data Members
PegCSharpGenerator parent_;
TreeContext context_;
Dictionary<string, InitializationTermination> dictUsing_ = new Dictionary<string, InitializationTermination>();
#endregion Data Members
#region Constructors
internal TopLevelCode(PegCSharpGenerator parent, TreeContext context)
{
parent_ = parent;
context_ = context;
}
#endregion Constructors
#region Internal Functions
internal void GenCodeCSharpForThisModule()
{
if (!OpenOutFile("C#", ".cs")) return;
try
{
GenCodeForModuleHeadCSharp();
GenCodeForRulesCSharp();
GenCodeForOptimizations();
GenCodeForModuleEndCSharp();
}
catch (Exception )
{
throw;
}
finally
{
context_.generatorParams_.errOut_.WriteLine("INFO from <PEG_GENERATOR> {0} bytes written to '{1}'",
((StreamWriter)parent_.outFile_).BaseStream.Position,
parent_.outputFileName_);
parent_.outFile_.Close();
}
}
#endregion Internal Functions
#region Private Functions
bool OpenOutFile(string sGenSubDirectory, string fileEnding)
{
try
{
string cSharpDir =
PUtils.MakeFileName("",context_.generatorParams_.outputDirectory_, sGenSubDirectory);
parent_.outputFileName_ = PUtils.MakeFileName(
parent_.moduleName_ + fileEnding,cSharpDir);
if (!Directory.Exists(cSharpDir))
{
Directory.CreateDirectory(cSharpDir);
}
parent_.outFile_ = new StreamWriter(parent_.outputFileName_);
parent_.outFile_.WriteLine("/* created on {0} from peg generator V1.0 using '{1}' as input*/", DateTime.Now.ToString(),context_.generatorParams_.sourceFileTitle_);
}
catch (Exception e)
{
context_.errOut_.WriteLine("FATAL from <PEG_GENERATOR> FILE:'{0}' could not be opened (%s)", parent_.outputFileName_, e.Message);
return false;
}
return true;
}
string GenCodeEnumForRuleCSharp(PegNode n)
{
PegNode ruleIdent = PUtils.FindNode(n.child_, EPegGrammar.rule_name);
Debug.Assert(ruleIdent != null);
PegNode ruleId = PUtils.GetRuleId(n, true);
string sEnum;
sEnum =
parent_.GetCSharpPrefixed(ruleIdent.GetAsString(context_.src_)) + "= " + ruleId.GetAsString(context_.src_);
return sEnum;
}
bool IsGrammarForBinaryInput()
{
return context_.dictProperties_.ContainsKey("encoding_class")
&& context_.dictProperties_["encoding_class"].Equals("binary", StringComparison.InvariantCultureIgnoreCase);
}
bool GetEncoding(out string encoding_class,out string encoding_detection)
{
encoding_class = EncodingClass.ascii.ToString();
encoding_detection = UnicodeDetection.notApplicable.ToString();
if (!context_.dictProperties_.ContainsKey("encoding_class")) return false;
encoding_class = context_.dictProperties_["encoding_class"];
encoding_detection = UnicodeDetection.notApplicable.ToString();
if (context_.dictProperties_.ContainsKey("encoding_detection"))
{
encoding_detection = context_.dictProperties_["encoding_detection"];
}
return true;
}
string GenEnumeratorDefinition()
{
string sEnumerators = "";
PegNode firstRule = PUtils.GetRuleFromRoot(context_.root_);
for (PegNode q = firstRule; q != null; q = q.next_)
{
if (q != firstRule) sEnumerators += ", ";
int NLpos = sEnumerators.LastIndexOf('\n');
if (sEnumerators.Substring(NLpos + 1).Length > context_.generatorParams_.maxLineLength_)
{
sEnumerators += "\n";
}
sEnumerators += GenCodeEnumForRuleCSharp(q);
}
return sEnumerators;
}
string GenSemanticBlockContent(PegNode semBlock, string className,bool isLocal,
out string initialization,out string termination)
{
string blockSrc="";
int begPos = semBlock.match_.posBeg_;
PegNode content = PUtils.FindNode(semBlock, EPegGrammar.semantic_block_content);
Debug.Assert(content != null);
bool constructorFound = false;
bool disposeFound;
bool destructorOrDisposableFound = FindDispose(content,out disposeFound);
if (isLocal && destructorOrDisposableFound)
{
if (semBlock.id_ == (int)EPegGrammar.anonymous_semantic_block) blockSrc += " : IDisposable";
else if (semBlock.id_ == (int)EPegGrammar.named_semantic_block)
{
blockSrc += context_.src_.Substring(begPos, semBlock.child_.match_.posEnd_ - begPos);
begPos = semBlock.child_.match_.posEnd_;
blockSrc += " : IDisposable";
}
}
for (PegNode member = content.child_; member != null; member = member.next_)
{
switch ((EPegGrammar)member.id_)
{
case EPegGrammar.into_declaration:{
for( PegNode variable = PUtils.FindNode(member, EPegGrammar.variable);
variable!=null;
variable= PUtils.FindNodeNext(variable,EPegGrammar.variable))
{
if( IsUsedMember(variable)||(!isLocal&&IsAccessedInLocalClass(variable)))
{
if( !AccessModifierPresent(member.child_))
{
AddInternalModifier(ref blockSrc,ref begPos,member);
break;
}
}
}
}
break;
case EPegGrammar.field_declaration:{
for (PegNode variable = PUtils.FindNode(member, EPegGrammar.variable);
variable != null;
variable = PUtils.FindNodeNext(variable, EPegGrammar.variable))
{
if ((!isLocal && IsAccessedInLocalClass(variable)) && !AccessModifierPresent(member.child_))
{
AddInternalModifier(ref blockSrc, ref begPos, member);
break;
}
}
}
break;
case EPegGrammar.sem_func_declaration:
case EPegGrammar.creator_func_declaration:
{
PegNode memberName= PUtils.FindNode(member, EPegGrammar.member_name);
if ( IsUsedMember(memberName) || (!isLocal&&IsAccessedInLocalClass(memberName)))
{
if (!AccessModifierPresent(member.child_.child_))
{
AddInternalModifier(ref blockSrc,ref begPos,member);
}
}
if (isLocal)
{
QualifyTopLevelMemberAccessInMethodBody(member.child_.next_, ref blockSrc, ref begPos);
}
}
break;
case EPegGrammar.func_declaration:{
PegNode memberName= PUtils.FindNode(member,EPegGrammar.member_name);
if( memberName.GetAsString(context_.src_)=="Dispose" && !AccessModifierPresent(member.child_.child_))
{
AddPublicModifier(ref blockSrc,ref begPos,member);
}else{
if( (!isLocal&&IsAccessedInLocalClass(memberName)) && !AccessModifierPresent(member.child_.child_))
{
AddInternalModifier(ref blockSrc,ref begPos,member);
}
}
if (isLocal)
{
QualifyTopLevelMemberAccessInMethodBody(member.child_.next_, ref blockSrc, ref begPos);
}
}
break;
case EPegGrammar.destructor_decl:
{
if (!disposeFound && isLocal)
{
blockSrc += context_.src_.Substring(begPos, member.match_.posBeg_ - begPos);
blockSrc += GetMinimumIndentation(blockSrc)+"public void Dispose()";
begPos = member.child_.next_.match_.posBeg_;
QualifyTopLevelMemberAccessInMethodBody(member.child_.next_, ref blockSrc, ref begPos);
}
}
break;
case EPegGrammar.constructor_decl:
{
constructorFound = true;
if (!AccessModifierPresent(member.child_.child_))
{
AddInternalModifier(ref blockSrc, ref begPos, member);
}
PegNode memberName = PUtils.FindNode(member, EPegGrammar.member_name);
blockSrc += context_.src_.Substring(begPos, memberName.match_.posBeg_ - begPos);
blockSrc += className;
begPos = memberName.match_.posEnd_;
if (isLocal)
{
PegNode f = PUtils.FindNode(member.child_, EPegGrammar.formal_pars);
if (f!=null && f.child_ == null)
{
AddParentParameterToConstructor(ref blockSrc,ref begPos,f);
}
QualifyTopLevelMemberAccessInMethodBody(member.child_.next_, ref blockSrc, ref begPos);
blockSrc += context_.src_.Substring(begPos, member.match_.posEnd_ - begPos);
begPos = member.match_.posEnd_;
blockSrc += "\n" + GetMinimumIndentation(blockSrc) + parent_.moduleName_ + " parent_;\n";
}
}
break;
}
}
if (isLocal && !constructorFound)
{
blockSrc += context_.src_.Substring(begPos, content.match_.posEnd_ - begPos);
begPos = content.match_.posEnd_;
AddConstructorForLocalClass(ref blockSrc, className);
}
blockSrc += context_.src_.Substring(begPos, semBlock.match_.posEnd_ - begPos);
termination = "";
initialization = "";
if (className.Length > 0)
{
if (isLocal)
{
initialization = "var _sem= new " + className + "(this);\n";
if (destructorOrDisposableFound)
{
initialization = "using(var _sem= new " + className +"(this)){";
termination = "\n }";
}
}
else
{
string objName = GetSingletonName(className);
blockSrc += className + " " + objName + ";\n";
initialization = GetSingletonName(className) + "= new " + className + "();\n";
}
}
return blockSrc;
}
private void AddParentParameterToConstructor(ref string blockSrc,ref int begPos,PegNode formalPars)
{
AddSource(ref blockSrc, ref begPos,formalPars.match_.posBeg_+1);
blockSrc += parent_.moduleName_ + " parent";
PegNode methodBody = formalPars.parent_.next_;
AddSource(ref blockSrc, ref begPos, methodBody.match_.posBeg_ + 1);
blockSrc+= "parent_= parent; ";
}
private void AddSource(ref string src,ref int startPos,int endPos)
{
src += context_.src_.Substring(startPos, endPos - startPos);
startPos = endPos;
}
private bool FindDispose(PegNode content,out bool disposeFound)
{
bool destructorFound = false;
disposeFound = false;
for (PegNode member = content.child_; member != null; member = member.next_)
{
switch ((EPegGrammar)member.id_)
{
case EPegGrammar.constructor_decl: destructorFound = true; break;
case EPegGrammar.func_declaration:
PegNode memberName = PUtils.FindNode(member, EPegGrammar.member_name);
if (memberName.GetAsString(context_.src_) == "Dispose") disposeFound = true;
break;
}
}
return disposeFound||destructorFound;
}
private string GetSingletonName(string className)
{
Debug.Assert(className.Length>1);
if (className[0] == '_') return "_" + className.Substring(1, 1).ToLower() + className.Substring(2);
else return className.Substring(0, 1).ToLower() + className.Substring(1);
}
private bool IsAccessedInLocalClass(PegNode memberName)
{
return context_.referencedMembers_.Contains(memberName.GetAsString(context_.src_));
}
private void AddConstructorForLocalClass(ref string blockSrc, string className)
{
string indentation = GetMinimumIndentation(blockSrc);
string constructorTemplate =
@"internal $(CLASSNAME)($(MODULE_NAME) grammarClass){ parent_ = grammarClass; }
$(MODULE_NAME) parent_;
";
parent_.ReplaceMacro(ref constructorTemplate, "$(CLASSNAME)", className);
parent_.ReplaceMacro(ref constructorTemplate, "$(MODULE_NAME)", parent_.moduleName_);
constructorTemplate = indentation + constructorTemplate;
constructorTemplate = constructorTemplate.Replace("\n", "\n" + indentation);
blockSrc += constructorTemplate;
}
private string GetMinimumIndentation(string blockSrc)//SEMBLOCK_INDENTATION
{
int minIndentation=blockSrc.Length;
for (int pos = 0; pos < blockSrc.Length && (pos = blockSrc.IndexOf('\n', pos)) != -1; ++pos)
{
int indent;
for (indent = 1; pos + indent < blockSrc.Length && Char.IsWhiteSpace(blockSrc[pos+indent]); )
{
if (blockSrc[pos + indent] == '\t')
indent += context_.generatorParams_.spacesPerTap_;
else
indent += 1;
}
if(--indent>0 && indent<minIndentation ) minIndentation=indent;
}
return new string(' ', minIndentation == blockSrc.Length ? 0 : minIndentation);
}
/// <summary>
/// Determines whether pegNode is referenced from an into-variable or a called semantic function
/// </summary>
/// <param name="pegNode"></param>
/// <returns></returns>
private bool IsUsedMember(PegNode pegNode)
{
return context_.semanticInfoNodes_.Contains(pegNode);
}
/// <summary>
/// Determines whether one of the children of pegNode is referenced from an into-variable or a called semantic function
/// </summary>
/// <param name="pegNode"></param>
/// <returns></returns>
private bool HasUsedMemberInChildren(PegNode pegNode)
{
if (pegNode == null) return false;
for (PegNode p = pegNode.child_; p != null; p = p.next_)
{
if (IsUsedMember(p)||HasUsedMemberInChildren(p)) return true;
}
return false;
}
/// <summary>
/// If a member of a top level class is used in this method body then qualify the access to this top level member
/// </summary>
/// <param name="pegNode"></param>
/// <param name="blockSrc"></param>
/// <param name="begPos"></param>
private void QualifyTopLevelMemberAccessInMethodBody(PegNode pegNode, ref string blockSrc, ref int begPos)
{
if (pegNode == null) return;
if (pegNode.id_ == (int)EPegGrammar.designator)
{
string desigIdent = pegNode.child_.GetAsString(context_.src_);
if (context_.dictSemanticInfo_.ContainsKey(desigIdent))
{
var semNode = context_.dictSemanticInfo_[desigIdent];
string qualification = null;
if (semNode.id_ == (int)EPegGrammar.named_semantic_block)
{
if( semNode.child_.match_.GetAsString(context_.src_).Equals("CREATE") ){
qualification= "parent_.";
}else{
string className = semNode.child_.GetAsString(context_.src_);
qualification= "parent_." + className.Substring(0,1).ToLower() + className.Substring(1) + ".";
}
}
else if (semNode.id_ == (int)EPegGrammar.anonymous_semantic_block)
{
qualification= "parent_._top.";
}
if(qualification!=null )
{
blockSrc += context_.src_.Substring(begPos, pegNode.child_.match_.posBeg_ - begPos);
blockSrc += qualification;
begPos= pegNode.child_.match_.posBeg_;
}
}
}
QualifyTopLevelMemberAccessInMethodBody(pegNode.child_, ref blockSrc, ref begPos);
QualifyTopLevelMemberAccessInMethodBody(pegNode.next_, ref blockSrc, ref begPos);
}
private void AddInternalModifier(ref string blockSrc, ref int begPos, PegNode member)
{
blockSrc += context_.src_.Substring(begPos, member.match_.posBeg_ - begPos);
blockSrc += "internal ";
begPos = member.match_.posBeg_;
}
private void AddPublicModifier(ref string blockSrc, ref int begPos, PegNode member)
{
blockSrc += context_.src_.Substring(begPos, member.match_.posBeg_ - begPos);
blockSrc += "public ";
begPos = member.match_.posBeg_;
}
private bool HasUsedMember(PegNode node)
{
return true;
}
private bool AccessModifierPresent(PegNode pegNode)
{
if (pegNode == null ) return false;
for(
;pegNode.id_==(int)EPegGrammar.field_modifier
|| pegNode.id_==(int)EPegGrammar.method_modifier;
pegNode= pegNode.next_)
{
string s= pegNode.GetAsString(context_.src_);
s= s.Trim();
switch(s)
{
case "protected":
case "private":
case "internal":
case "public": return true;
}
}
return false;
}
string GenSemanticBlockInfo(string indent,out string initialization)
{
PegNode blockInfo = PUtils.FindNode(context_.root_, EPegGrammar.toplevel_semantic_blocks);
string srcCode = "";
initialization="";
string termination="";
if (blockInfo!=null )
{
for (PegNode semanticBlock = blockInfo.child_; semanticBlock != null; semanticBlock = semanticBlock.next_)
{
if (semanticBlock.id_ == (int)EPegGrammar.anonymous_semantic_block)
{
string blockSrcCode= "class _Top";
string blockInitialization;
blockSrcCode += GenSemanticBlockContent(semanticBlock,"_Top",false,
out blockInitialization, out termination);
initialization += blockInitialization + "\n";
srcCode = blockSrcCode.Replace("\n", "\n" + indent);
}
else if (semanticBlock.id_ == (int)EPegGrammar.named_semantic_block)
{
Debug.Assert(semanticBlock.child_ != null && semanticBlock.child_.id_ == (int)EPegGrammar.sem_block_name);
string className = semanticBlock.child_.GetAsString(context_.src_);
if( semanticBlock.child_.match_.GetAsString(context_.src_).Equals("CREATE") ){
srcCode+= "#region CREATE\n";
string blockInitialization;
srcCode += GenSemanticBlockContent(semanticBlock.child_.next_.child_,"",false,
out blockInitialization, out termination);
srcCode+= "#endregion CREATE\n";
}else if( IsUsedAsLocalBlock(className) ){
string blockCode= "class ";
string blockInitialization;
blockCode+= GenSemanticBlockContent(semanticBlock, className, true,
out blockInitialization, out termination);
dictUsing_.Add(className, new InitializationTermination { initialization = blockInitialization, termination = termination });
srcCode+= blockCode.Replace("\n", "\n" + indent);
}else{
string blockCode= "class ";
blockCode+= GenSemanticBlockContent(semanticBlock, className, false,
out initialization,out termination);
srcCode+= blockCode.Replace("\n", "\n" + indent);
}
}
}
}
return srcCode;
}
private bool IsUsedAsLocalBlock(string className)
{
for (PegNode rule = PUtils.GetRuleFromRoot(context_.root_); rule != null; rule = rule.next_)
{
PegNode using_block = PUtils.FindNode(rule.child_, EPegGrammar.sem_block_name);
if (using_block != null && using_block.GetAsString(context_.src_) == className) return true;
}
return false;
}
void GenCodeForModuleHeadCSharp()
{
string moduleHead = parent_.FindCSharpTemplateCode(ECSharpKind.ModuleHead);
string encoding_class, encoding_detection;
GetEncoding(out encoding_class,out encoding_detection);
parent_.ReplaceMacro(ref moduleHead, "$(ENCODING_CLASS)", encoding_class);
parent_.ReplaceMacro(ref moduleHead, "$(UNICODE_DETECTION)", encoding_detection);
parent_.ReplaceMacro(ref moduleHead, "$(MODULE_NAME)", parent_.moduleName_);
string enumerators = GenEnumeratorDefinition();
parent_.ReplaceMacro(ref moduleHead, "$(ENUMERATOR)", enumerators,true);
string parserName = IsGrammarForBinaryInput() ? "PegByteParser" : "PegCharParser";
parent_.ReplaceMacro(ref moduleHead, "$(PARSER)", parserName);
string srcType = context_.IsGrammarForBinaryInput() ? "byte[]" : "string";
parent_.ReplaceMacro(ref moduleHead, "$(SRC_TYPE)", srcType);
string initialization;
string semanticBlockInfo = GenSemanticBlockInfo(" ",out initialization);
parent_.ReplaceMacro(ref moduleHead, "$(SEMANTIC_BLOCKS)", semanticBlockInfo);
parent_.ReplaceMacro(ref moduleHead, "$(INITIALIZATION)", initialization);
parent_.outFile_.Write(moduleHead);
}
void GenCodeForRulesCSharp()
{
parent_.outFile_.WriteLine(" #region Grammar Rules");
PegNode firstRule = PUtils.GetRuleFromRoot(context_.root_);
for (PegNode q = firstRule; q != null; q = q.next_)
{
GenCodeForRuleCSharp(q);
}
parent_.outFile_.WriteLine(" #endregion Grammar Rules");
}
string GetOriginalRuleString(PegNode rule)
{
string s = rule.GetAsString(context_.src_);
return s.Trim().Replace("*/", "* /");
}
void GenLocalSemanticBlock(string sRuleName, PegNode semBlock, out string initialization, out string termination)
{
if (semBlock.id_ == (int)EPegGrammar.anonymous_semantic_block)
{
string className= "_" + sRuleName;
string srcCode = "class " + className;
srcCode += GenSemanticBlockContent(semBlock,className,true,out initialization,out termination);
srcCode = srcCode.Replace("\n", "\n ");
parent_.outFile_.WriteLine(" {0}", srcCode);
}
else if (semBlock.id_ == (int)EPegGrammar.named_semantic_block)
{
string srcCode = "class ";
string className = semBlock.child_.GetAsString(context_.src_);
string blockCode = GenSemanticBlockContent(semBlock, className,true,out initialization,out termination);
srcCode += blockCode;
srcCode = srcCode.Replace("\n", "\n ");
parent_.outFile_.WriteLine(" {0}", srcCode);
}
else
{
Debug.Assert(false);
initialization = "";
termination = "";
}
}
string GetRuleParams(PegNode rule)
{
string paramCode = "";
PegNode @params = PUtils.FindNode(rule.child_.child_, EPegGrammar.peg_params);
if (@params != null)
{
for (PegNode param = @params.child_; param != null; param = param.next_)
{
if (paramCode != "") paramCode += ", ";
paramCode += "Matcher " + parent_.GetCSharpPrefixed(param.GetAsString(context_.src_));
}
}
return paramCode;
}
void GenCodeForRuleCSharp(PegNode rule)
{
PegNode ruleIdent = PUtils.FindNode(rule.child_, EPegGrammar.rule_name);
string sRuleFunc = parent_.GetCSharpPrefixed(ruleIdent.GetAsString(context_.src_));
PegNode sem_block = PUtils.FindNode(rule.child_, EPegGrammar.named_semantic_block,EPegGrammar.anonymous_semantic_block);
string initialization="";
string termination="";
if (sem_block != null) GenLocalSemanticBlock(sRuleFunc, sem_block, out initialization, out termination);
else
{
PegNode using_block = PUtils.FindNode(rule.child_, EPegGrammar.sem_block_name);
if (using_block != null)
{
string name = using_block.GetAsString(context_.src_);
GenLocalBlockInitializationAndTermination(name,out initialization, out termination);
if (initialization == "")
{
FatalErrorOut("FATAL from <PEG_GENERATOR>: using class "+name+"; '"+name+"' not found");
}
}
}
string originalRuleString = GetOriginalRuleString(rule);
string ruleParams = GetRuleParams(rule);
parent_.outFile_.WriteLine(" public bool {0}({1}) /*{2}*/\n {{\n",
sRuleFunc,
ruleParams,
originalRuleString);
if (initialization != "")
{
parent_.outFile_.WriteLine(" {0}", initialization);
}
Template templNode = (new TemplateGenerator(context_)).GenTemplateForRule(rule);
(new CodeFromTemplate(parent_, context_)).GenMatchCodeForRuleCSharp(templNode);
if (termination != "")
{
parent_.outFile_.WriteLine(" {0}", termination);
}
parent_.outFile_.WriteLine("\n\t\t}");
}
private void FatalErrorOut(string p)
{
context_.generatorParams_.errOut_.WriteLine(p);
if (parent_.outFile_ != null) parent_.outFile_.WriteLine(p);
}
private void GenLocalBlockInitializationAndTermination(string className,out string initialization, out string termination)
{//retrieve initialization and termination from map
if(dictUsing_.ContainsKey(className))
{
initialization= dictUsing_[className].initialization;
termination= dictUsing_[className].termination;
}else{
initialization="";
termination="";
}
}
void GenCodeForModuleEndCSharp()
{
string moduleTrailer = parent_.FindCSharpTemplateCode(ECSharpKind.ModuleTail);
parent_.outFile_.Write(moduleTrailer);
}
void GenCodeForOptimizations()
{
if (parent_.optimizationStaticConstructor_.Length > 0)
{
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,"$(OPTIMIZEDCHARSET_DECL)","");
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,"$(OPTIMIZEDLITERALS_DECL)","");
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,"$(OPTIMIZEDCHARSET_IMPL)","");
parent_.ReplaceMacro(parent_.optimizationStaticConstructor_,"$(OPTIMIZEDLITERALS_IMPL)","");
parent_.outFile_.Write(parent_.optimizationStaticConstructor_);
}
}
#endregion Private Functions
}
#endregion Code Generator Classes
#region Constructors
internal PegCSharpGenerator(TreeContext context)
{
context_= context;
literalsCount_ = 0;
optimizedCharsetCount_ = 0;
optimizationStaticConstructor_ = new StringBuilder();
moduleName_= context.GetModuleName();
if (moduleName_.Length == 0)
{
context_.generatorParams_.errOut_.WriteLine("FATAL from <PEG_GENERATOR>: grammarName in <<Grammar Name=\"<grammarName>\" ..>> missing");
return;
}
else if (!IsCSharpIdentifier(moduleName_))
{
context_.generatorParams_.errOut_.WriteLine("FATAL from <PEG_GENERATOR>: {0} in <<Grammar Name=\"{1}\" ..>> is not a correct identifier", moduleName_,moduleName_);
return;
}
(new TopLevelCode(this, context_)).GenCodeCSharpForThisModule();
}
#endregion Constructors
#region Helper functions
bool IsCSharpIdentifier(string name)
{
Regex regex = new Regex("^[A-Za-z_][A-Za-z_0-9]*$");
return regex.Match(name).Success;
}
string FindCSharpTemplateCode(ECSharpKind eKind)
{
for (int i = 0; i < templates.Length; ++i)
{
if (templates[i].eKind == eKind) return templates[i].sCodeTemplate;
}
Debug.Assert(false);
return "";
}
void ReplaceMacro(ref string s, string macro, string replacement, bool doAlignement)
{
int i= s.IndexOf(macro);
if (i == -1) return;
int lineBreak= s.Substring(0, i).LastIndexOf('\n');
if (lineBreak == -1) lineBreak = 0;
string align = new string(' ', i-lineBreak);
align= "\n" + align;
replacement= replacement.Replace("\n", align);
s= s.Replace(macro,replacement);
}
void ReplaceMacro(ref string s, string macro, string replacement)
{
s= s.Replace(macro, replacement);
}
void ReplaceMacro(StringBuilder s, string macro, string replacement)
{
s.Replace(macro, replacement);
}
string GetCSharpPrefixed(string s)
{
string[] keywords={
"abstract",
"as",
"base",
"bool",
"break",
"byte",
"case",
"catch",
"char",
"checked",
"class",
"const",
"continue",
"decimal",
"default",
"delegate",
"do",
"double",
"else",
"enum",
"event",
"explicit",
"extern",
"false",
"finally",
"fixed",
"float",
"for",
"foreach",
"goto",
"if",
"implicit",
"in",
"int",
"interface",
"internal",
"is",
"lock",
"long",
"namespace",
"new",
"null",
"object",
"operator",
"out",
"override",
"params",
"private",
"protected",
"public",
"readonly",
"ref",
"return",
"sbyte",
"sealed",
"short",
"sizeof",
"stackalloc",
"static",
"string",
"struct",
"switch",
"this",
"throw",
"true",
"try",
"typeof",
"uint",
"ulong",
"unchecked",
"unsafe",
"ushort",
"using",
"virtual",
"void",
"volatile",
"while"
};
for(int i=0;i<keywords.Length;++i){
if( keywords[i]==s ) return "@"+s;
}
return s;
}
#endregion Helper functions
}
} | {
"content_hash": "6390e704e5149ff6c13c5da7967ab0a9",
"timestamp": "",
"source": "github",
"line_count": 2366,
"max_line_length": 186,
"avg_line_length": 48.60735418427726,
"alnum_prop": 0.46843180731272555,
"repo_name": "rytmis/dotless",
"id": "bebcdbd7d4dd1f415086ae6e6d7ff7912b0df6a1",
"size": "115007",
"binary": false,
"copies": "6",
"ref": "refs/heads/master",
"path": "lib/PEG_GrammarExplorer/PEG_GrammarExplorer/PegSamples/PegGenerator/PegCSharpGenerator.cs",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "ASP",
"bytes": "108"
},
{
"name": "Batchfile",
"bytes": "1563"
},
{
"name": "C",
"bytes": "48325"
},
{
"name": "C#",
"bytes": "2322006"
},
{
"name": "CSS",
"bytes": "85722"
},
{
"name": "HTML",
"bytes": "95167"
},
{
"name": "JavaScript",
"bytes": "358"
},
{
"name": "PowerShell",
"bytes": "54854"
},
{
"name": "Python",
"bytes": "80271"
},
{
"name": "Ruby",
"bytes": "716"
},
{
"name": "Shell",
"bytes": "1250"
},
{
"name": "Smalltalk",
"bytes": "105"
}
],
"symlink_target": ""
} |
use std::collections::{HashMap, HashSet, BinaryHeap, VecDeque};
use std::cmp::Ordering;
#[derive(Eq, PartialEq, PartialOrd, Debug, Copy, Clone)]
pub struct WeightedEdge {
v: usize,
w: usize,
weight: usize
}
impl WeightedEdge {
pub fn new(v: usize, w: usize, weight: usize) -> WeightedEdge {
WeightedEdge {
v: v,
w: w,
weight: weight
}
}
pub fn weight(&self) -> usize {
self.weight
}
pub fn either(&self) -> usize {
self.v
}
pub fn other(&self, v: usize) -> usize {
if v == self.v {
self.w
}
else {
self.v
}
}
}
impl Ord for WeightedEdge {
fn cmp(&self, other: &WeightedEdge) -> Ordering {
if self.weight < other.weight { Ordering::Greater }
else if self.weight > other.weight { Ordering::Less }
else { Ordering::Equal }
}
}
pub struct EdgeWeightedGraph {
edges: HashMap<usize, Vec<WeightedEdge>>
}
impl Default for EdgeWeightedGraph {
fn default() -> EdgeWeightedGraph {
EdgeWeightedGraph {
edges: HashMap::default()
}
}
}
impl EdgeWeightedGraph {
pub fn vertices(&self) -> usize {
self.edges.len()
}
pub fn edges(&self) -> usize {
self.edges.values().fold(0, |acc, v| acc + v.len()) / 2
}
pub fn add_edge(&mut self, edge: WeightedEdge) {
let v = edge.either();
self.edges.entry(v).or_insert_with(Vec::new).push(edge);
self.edges.entry(edge.other(v)).or_insert_with(Vec::new).push(edge);
}
pub fn adjacent_to(&self, v: usize) -> Option<&Vec<WeightedEdge>> {
self.edges.get(&v)
}
}
#[derive(Debug)]
pub struct LazyMst {
marked: HashSet<usize>,
pq: BinaryHeap<WeightedEdge>,
weight: usize
}
impl LazyMst {
pub fn new(graph: &EdgeWeightedGraph) -> Result<LazyMst, ()> {
if graph.vertices() > 0 {
let mut lazy_mst = LazyMst {
marked: HashSet::default(),
pq: BinaryHeap::default(),
weight: 0
};
let mut mst = VecDeque::default();
lazy_mst.visit(graph, *graph.edges.keys().next().unwrap());
while let Some(edge) = lazy_mst.pq.pop() {
let v = edge.either();
let w = edge.other(v);
if !lazy_mst.marked.contains(&v)
|| !lazy_mst.marked.contains(&w) {
mst.push_back(edge);
if !lazy_mst.marked.contains(&v) {
lazy_mst.visit(graph, v);
}
if !lazy_mst.marked.contains(&w) {
lazy_mst.visit(graph, w);
}
}
}
lazy_mst.weight = mst.iter().fold(0, |acc, e| acc + e.weight);
Ok(lazy_mst)
}
else {
Err(())
}
}
fn visit(&mut self, graph: &EdgeWeightedGraph, v: usize) {
self.marked.insert(v);
if let Some(adj) = graph.adjacent_to(v) {
for e in adj {
if !self.marked.contains(&e.other(v)) {
self.pq.push(*e);
}
}
}
}
pub fn weight(&self) -> usize {
self.weight
}
}
| {
"content_hash": "2c2a56623a68d40e2bab29b729ac81f9",
"timestamp": "",
"source": "github",
"line_count": 136,
"max_line_length": 76,
"avg_line_length": 24.647058823529413,
"alnum_prop": 0.49134844868735084,
"repo_name": "Alex-Diez/Rust-TDD-Katas",
"id": "106febbb5138301ab8e9220196f60a3604124c7a",
"size": "3352",
"binary": false,
"copies": "2",
"ref": "refs/heads/master",
"path": "old-katas/src/mst_kata/day_1.rs",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Rust",
"bytes": "337405"
}
],
"symlink_target": ""
} |
package edu.ucsb.cs56.w14.drawings.wjli;
import javax.swing.*;
/** SimpleGui1 comes from Head First Java 2nd Edition p. 355.
It illustrates a simple GUI with a Button that doesn't do anything yet.
@author Head First Java, 2nd Edition p. 355
@author P. Conrad (who only typed it in and added the Javadoc comments)
@author W. Li
@version CS56, Winter 2014, UCSB
*/
public class SimpleGui1 {
/** main method to fire up a JFrame on the screen
@param args not used
*/
public static void main (String[] args) {
JFrame frame = new JFrame() ;
JButton button = new JButton("Hit me hard!!!") ;
int x = (int)(Math.random() * 255);
int y = (int)(Math.random() * 255);
int z = (int)(Math.random() * 255);
java.awt.Color myColor = new java.awt.Color(x,y,z); // R, G, B values.
button.setBackground(myColor);
button.setOpaque(true);
frame. setDefaultCloseOperation(JFrame. EXIT_ON_CLOSE) ;
frame. getContentPane() . add(button) ;
frame. setSize(300,300) ;
frame. setVisible(true) ;
}
}
| {
"content_hash": "468686fd74271e5025526e9c51e6729b",
"timestamp": "",
"source": "github",
"line_count": 33,
"max_line_length": 77,
"avg_line_length": 31.636363636363637,
"alnum_prop": 0.6618773946360154,
"repo_name": "UCSB-CS56-W14/CS56-W14-lab06",
"id": "050da56bc518b8a0e4d95314d664ed826cfb728d",
"size": "1044",
"binary": false,
"copies": "1",
"ref": "refs/heads/master",
"path": "src/edu/ucsb/cs56/W14/drawings/wjli/SimpleGui1.java",
"mode": "33188",
"license": "mit",
"language": [
{
"name": "Java",
"bytes": "1890766"
}
],
"symlink_target": ""
} |
/**
* <!-- Package description. -->
* Demonstrates usage of cron-based scheduler.
*/
package org.apache.ignite.examples.misc.schedule;
| {
"content_hash": "23f011f971a00dc3faa6f97fe63b9303",
"timestamp": "",
"source": "github",
"line_count": 7,
"max_line_length": 49,
"avg_line_length": 20,
"alnum_prop": 0.6928571428571428,
"repo_name": "NSAmelchev/ignite",
"id": "5888bc2111726031a39b6a413a738fe8313fc8ec",
"size": "942",
"binary": false,
"copies": "20",
"ref": "refs/heads/master",
"path": "examples/src/main/java-lgpl/org/apache/ignite/examples/misc/schedule/package-info.java",
"mode": "33188",
"license": "apache-2.0",
"language": [
{
"name": "Batchfile",
"bytes": "54788"
},
{
"name": "C",
"bytes": "7601"
},
{
"name": "C#",
"bytes": "7740054"
},
{
"name": "C++",
"bytes": "4487801"
},
{
"name": "CMake",
"bytes": "54473"
},
{
"name": "Dockerfile",
"bytes": "11909"
},
{
"name": "FreeMarker",
"bytes": "15591"
},
{
"name": "HTML",
"bytes": "14341"
},
{
"name": "Java",
"bytes": "50117357"
},
{
"name": "JavaScript",
"bytes": "1085"
},
{
"name": "Jinja",
"bytes": "32958"
},
{
"name": "Makefile",
"bytes": "932"
},
{
"name": "PHP",
"bytes": "11079"
},
{
"name": "PowerShell",
"bytes": "9247"
},
{
"name": "Python",
"bytes": "330115"
},
{
"name": "Scala",
"bytes": "425434"
},
{
"name": "Shell",
"bytes": "311510"
}
],
"symlink_target": ""
} |
Subsets and Splits