code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
package messages;
import java.util.Date;
public class ChatMessage extends Message
{
private String mySender;
private String myReciever;
private String myText;
private Long mySrvTimeStamp;
private Long myClintTimeStamp;
public ChatMessage(){
super("Chat");
this.mySender = "";
this.setMyReciever("");
th... | 122group2 | trunk/pIMp/Server/messages/ChatMessage.java | Java | gpl2 | 1,776 |
package messages;
public class ReturnStatusMessage extends Message
{
private String type;
private String username;
private int status;
public ReturnStatusMessage() {super("ReturnStatus");}
public ReturnStatusMessage(String type, String username, int status)
{
super("ReturnStatus");
this.type = ... | 122group2 | trunk/pIMp/Server/messages/ReturnStatusMessage.java | Java | gpl2 | 1,428 |
package messages;
public class RemoveBuddyMessage extends Message
{
private String type;
private String from;
private String to;
public RemoveBuddyMessage() {super("RemoveBuddy");}
public RemoveBuddyMessage(String type, String from, String to)
{
super("RemoveBuddy");
this.type = type;
this.f... | 122group2 | trunk/pIMp/Server/messages/RemoveBuddyMessage.java | Java | gpl2 | 1,306 |
package messages;
public class GetHistoryMessage extends Message {
private String username;
public GetHistoryMessage()
{
super("GetHistory");
this.username = "";
}
public GetHistoryMessage(String type, String username)
{
super("GetHistory");
this.username = username;
}
public v... | 122group2 | trunk/pIMp/Server/messages/GetHistoryMessage.java | Java | gpl2 | 705 |
package messages;
public class AddBuddyMessage extends Message
{
private String type;
private String from;
private String to;
public AddBuddyMessage() {super("AddBuddy");}
public AddBuddyMessage(String type, String from, String to)
{
super("AddBuddy");
this.type = type;
this.from = from;
... | 122group2 | trunk/pIMp/Server/messages/AddBuddyMessage.java | Java | gpl2 | 1,288 |
package messages;
public class GetBuddyListMessage extends Message
{
private String type;
private String username;
public GetBuddyListMessage() {super("GetBuddyList");}
public GetBuddyListMessage(String type, String username)
{
super("GetBuddyList");
// this.type = type;
this.username = usernam... | 122group2 | trunk/pIMp/Server/messages/GetBuddyListMessage.java | Java | gpl2 | 1,205 |
package messages;
import java.io.*;
import java.net.*;
public class Client
{
public static void main(String[] args) throws IOException
{
String host = "169.234.14.7";
// String host = "169.234.15.29";
int port = 4444;
String username = "";
String destination = "";
Socket kkSocket = null... | 122group2 | trunk/pIMp/Server/messages/Client.java | Java | gpl2 | 3,227 |
package messages;
import java.util.ArrayList;
import DBComm.Buddy;
public class ReturnBuddyListMessage extends Message
{
private String username;
private ArrayList<Buddy> buddies = new ArrayList<Buddy>();
public ReturnBuddyListMessage() {super("ReturnBuddyList");}
public ReturnBuddyListMessage(Stri... | 122group2 | trunk/pIMp/Server/messages/ReturnBuddyListMessage.java | Java | gpl2 | 1,659 |
package messages;
public class LoginMessage extends Message
{
private String username;
private String password;
private String version;
public LoginMessage(){
super("Login");
this.username = "";
this.password = "";
this.version = "";
}
public LoginMessage(String username, String password, ... | 122group2 | trunk/pIMp/Server/messages/LoginMessage.java | Java | gpl2 | 1,223 |
package messages;
public class RegistrationMessage extends Message {
private String username;
private String password;
public RegistrationMessage(){
super("Registration");
this.username = "";
this.password = "";
}
public RegistrationMessage(String type, String username, String password)... | 122group2 | trunk/pIMp/Server/messages/RegistrationMessage.java | Java | gpl2 | 1,062 |
package messages;
public class ReturnAvailabilityMessage extends Message {
private String username;
private String availability;
public ReturnAvailabilityMessage()
{
super("ReturnAvailability");
this.username = "";
this.availability = "";
}
public ReturnAvailabilityMessage(String t... | 122group2 | trunk/pIMp/Server/messages/ReturnAvailabilityMessage.java | Java | gpl2 | 1,140 |
package messages;
public class GetStatusMessage extends Message {
private String username;
public GetStatusMessage()
{
super("GetStatus");
this.username = "";
}
public GetStatusMessage(String type, String username)
{
super("GetStatus");
this.username = username;
}
public String... | 122group2 | trunk/pIMp/Server/messages/GetStatusMessage.java | Java | gpl2 | 695 |
// Message.java
// Generic Message class that all messages extend from
package messages;
public class Message
{
private String type = "Chat"; // default if no type is given
public Message() {}
public Message(String type) {}
public String getType() {return type;}
public void setType(String type) ... | 122group2 | trunk/pIMp/Server/messages/Message.java | Java | gpl2 | 344 |
package messages;
public class WhoIsMessage extends Message {
private String username;
private String password;
public WhoIsMessage(){
super("Whois");
this.username = "";
}
public WhoIsMessage(String username) {
super("whois");
this.username = username;
}
public String getUser... | 122group2 | trunk/pIMp/Server/messages/WhoIsMessage.java | Java | gpl2 | 751 |
package parser;
import messages.AddBuddyMessage;
import messages.AwayMessage;
import messages.ChatMessage;
import messages.GetBuddyListMessage;
import messages.LoginMessage;
import messages.RegistrationMessage;
import messages.RemoveBuddyMessage;
import messages.ReturnAvailabilityMessage;
import messages.Ret... | 122group2 | trunk/pIMp/Server/parser/Parser.java | Java | gpl2 | 7,810 |
// ServerThreadStaticHash.java
// Static HashMap that holds client threads for the standalone clients
package serverSocket;
import java.util.HashMap;
public class ServerThreadStaticHash
{
private static HashMap<String,ServerThread> hashtable = new HashMap<String,ServerThread>();
public static void add... | 122group2 | trunk/pIMp/Server/serverSocket/ServerThreadStaticHash.java | Java | gpl2 | 633 |
package serverSocket;
import java.net.*;
import java.util.ArrayList;
import java.io.*;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import messages.AddBuddyMessage;
import messages.AwayMessage;
import mes... | 122group2 | trunk/pIMp/Server/serverSocket/ServerThread.java | Java | gpl2 | 15,568 |
package serverSocket;
import java.net.*;
import java.util.Scanner;
import java.io.*;
import DBComm.DBComm;
public class Server
{
public static void main(String[] args)
{
/*
ServerProcess s1 = new ServerProcess();
s1.start();
Scanner s = new Scanner(System.in);
while(s.hasNextLine()){
i... | 122group2 | trunk/pIMp/Server/serverSocket/Server.java | Java | gpl2 | 1,681 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>0-Hack</title>
<link rel="stylesheet" href="/static/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
0-Hack
</div>
<div align="r... | 0-hack | admin.html | HTML | mpl11 | 1,350 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>0-Hack - Items</title>
<link rel="stylesheet" href="static/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
0-Hack
</div>
<div a... | 0-hack | shop_items_page.html | HTML | mpl11 | 2,032 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>0-Hack</title>
<link rel="stylesheet" href="/static/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
0-Hack
</div>
<div align="r... | 0-hack | index.html | HTML | mpl11 | 2,325 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>0-Hack</title>
<link rel="stylesheet" href="/static/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
0-Hack
</div>
<div align="r... | 0-hack | sell_item_page.html | HTML | mpl11 | 1,852 |
# -*- coding: utf-8 -*-
import webapp2
from google.appengine.api import users
from google.appengine.ext import db
import os
import jinja2
import datetime
jinja_environment = jinja2.Environment(loader=jinja2.FileSystemLoader(os.path.dirname(__file__)),
autoescape=True)
class Use... | 0-hack | main.py | Python | mpl11 | 15,295 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Edit Profile</title>
<link rel="icon" type="image/ico" href="favicon.ico"/>
<link rel="stylesheet" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
... | 0-hack | profile_edit.html | HTML | mpl11 | 15,428 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>0-Hack - Items</title>
<link rel="stylesheet" href="static/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
0-Hack
</div>
<div a... | 0-hack | search_items.html | HTML | mpl11 | 1,726 |
body {
font-family: 'Lato', san-serif;
font-size: 1em;
background-repeat: no-repeat;
background-color: #FFFFFF;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bdbdbd), to(#FFFFFF));
background-image: -webkit-linear-gradient(top, #bdbdbd, #FFFFFF);
background-image: -moz-linear-gra... | 0-hack | static/style.css | CSS | mpl11 | 4,113 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>0-Hack</title>
<link rel="stylesheet" href="/static/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
0-Hack
</div>
<div align="r... | 0-hack | shop.html | HTML | mpl11 | 1,394 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Name of User - 0-Hack</title>
<link rel="icon" type="image/ico" href="favicon.ico"/>
<link rel="stylesheet" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</... | 0-hack | profile.html | HTML | mpl11 | 1,644 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>0-Hack</title>
<link rel="stylesheet" href="/static/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
0-Hack
</div>
<div align="r... | 0-hack | validatesellitem.html | HTML | mpl11 | 1,740 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/SendMessageToAllServlet.java | Java | asf20 | 3,029 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/AdminServlet.java | Java | asf20 | 2,204 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/ApiKeyInitializer.java | Java | asf20 | 3,560 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/RegisterServlet.java | Java | asf20 | 1,482 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/UnregisterServlet.java | Java | asf20 | 1,455 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/Datastore.java | Java | asf20 | 9,856 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/BaseServlet.java | Java | asf20 | 2,087 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | gcm-server/src/com/google/android/apps/iosched/gcm/server/SendMessageServlet.java | Java | asf20 | 5,791 |
<html>
<body>
<h2>Push request could not be queued!</h2>
</body>
</html> | 10mlfeng-iosched | gcm-server/war/error.html | HTML | asf20 | 72 |
<html>
<body>
<h2>Push request queued successfully!</h2>
</body>
</html> | 10mlfeng-iosched | gcm-server/war/success.html | HTML | asf20 | 72 |
/**
* Creates a new level control.
* @constructor
* @param {IoMap} iomap the IO map controller.
* @param {Array.<string>} levels the levels to create switchers for.
*/
function LevelControl(iomap, levels) {
var that = this;
this.iomap_ = iomap;
this.el_ = this.initDom_(levels);
google.maps.event.addList... | 10mlfeng-iosched | map/levelcontrol.js | JavaScript | asf20 | 2,264 |
#map-canvas {
height: 500px;
}
#levels-wrapper {
margin: 10px;
padding: 5px;
background: #fff;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
box-shadow: 0px 1px 3px rgba(0... | 10mlfeng-iosched | map/map.css | CSS | asf20 | 2,657 |
// Copyright 2011 Google
/**
* 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 wri... | 10mlfeng-iosched | map/map.js | JavaScript | asf20 | 26,216 |
/**
* Creates a new Floor.
* @constructor
* @param {google.maps.Map=} opt_map
*/
function Floor(opt_map) {
/**
* @type Array.<google.maps.MVCObject>
*/
this.overlays_ = [];
/**
* @type boolean
*/
this.shown_ = true;
if (opt_map) {
this.setMap(opt_map);
}
}
/**
* @param {google.maps.M... | 10mlfeng-iosched | map/floor.js | JavaScript | asf20 | 1,176 |
/**
* @license
*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable l... | 10mlfeng-iosched | map/smartmarker.js | JavaScript | asf20 | 2,564 |
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0" />
<meta content="text/html; charset=utf-8" http-equiv="Content-type">
<meta content="IE=8" http-equiv="X-UA-Compatible">
<meta content=
"Googl... | 10mlfeng-iosched | map/embed.html | HTML | asf20 | 1,825 |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
./kill_process.sh
$ADB shell rm -r /data/data/com.google.android.apps.iosched/* | 10mlfeng-iosched | scripts/kill_data.sh | Shell | asf20 | 124 |
#!/bin/sh
# Remember VERBOSE only works on debug builds of the app
adb shell setprop log.tag.iosched_SyncHelper VERBOSE
adb shell setprop log.tag.iosched_SessionsHandler VERBOSE
adb shell setprop log.tag.iosched_ImageCache VERBOSE
adb shell setprop log.tag.iosched_ImageWorker VERBOSE
adb shell setprop log.tag.iosched_I... | 10mlfeng-iosched | scripts/increase_verbosity.sh | Shell | asf20 | 339 |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell am start \
-a android.intent.action.MAIN \
-c android.intent.category.LAUNCHER \
-n com.google.android.apps.iosched/.ui.HomeActivity
| 10mlfeng-iosched | scripts/launch.sh | Shell | asf20 | 202 |
#!/bin/sh
adb shell pm clear com.google.android.apps.iosched | 10mlfeng-iosched | scripts/cleardata.sh | Shell | asf20 | 60 |
#!/bin/sh
adb shell cat /data/data/com.google.android.apps.iosched/shared_prefs/com.google.android.apps.iosched_preferences.xml | xmllint --format - | 10mlfeng-iosched | scripts/cat_preferences.sh | Shell | asf20 | 148 |
#!/usr/bin/python
# Copyright 2011 Google, Inc. All Rights Reserved.
# simple script to walk source tree looking for third-party licenses
# dumps resulting html page to stdout
import os, re, mimetypes, sys
# read source directories to scan from command line
SOURCE = sys.argv[1:]
# regex to find /* */ style commen... | 10mlfeng-iosched | scripts/collect_licenses.py | Python | asf20 | 3,190 |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
MAC_UNAME="Darwin"
if [[ "`uname`" == ${MAC_UNAME} ]]; then
DATE_FORMAT="%Y-%m-%dT%H:%M:%S"
else
DATE_FORMAT="%Y-%m-%d %H:%M:%S"
fi
if [ -z "$1" ]; then
NOW_DATE=$(date "+${DATE_FORMAT}")
echo Please provide a mock time in the format \"${NOW_DATE}\" or \"d\" to del... | 10mlfeng-iosched | scripts/set_mock_time.sh | Shell | asf20 | 1,137 |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell am force-stop com.google.android.apps.iosched
| 10mlfeng-iosched | scripts/kill_process.sh | Shell | asf20 | 102 |
#!/bin/sh
# Sessions list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/sessions
# Vendors list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/vendors
# Session detail
#adb shell am start -a... | 10mlfeng-iosched | scripts/deeplinks.sh | Shell | asf20 | 676 |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell "echo '$*' | sqlite3 -header -column /data/data/com.google.android.apps.iosched/databases/schedule.db" | 10mlfeng-iosched | scripts/dbquery.sh | Shell | asf20 | 158 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/api/android/plus/PlusOneButton.java | Java | asf20 | 1,391 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/api/android/plus/GooglePlus.java | Java | asf20 | 969 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/analytics/tracking/android/EasyTracker.java | Java | asf20 | 1,193 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/gcm/ServerUtilities.java | Java | asf20 | 6,922 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/gcm/GCMRedirectedBroadcastReceiver.java | Java | asf20 | 1,209 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/gcm/GCMIntentService.java | Java | asf20 | 5,422 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/SocialStreamFragment.java | Java | asf20 | 29,610 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/ExploreFragment.java | Java | asf20 | 5,900 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/TracksAdapter.java | Java | asf20 | 6,615 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/VendorDetailFragment.java | Java | asf20 | 6,277 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/AccountActivity.java | Java | asf20 | 11,121 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/tablet/MapMultiPaneActivity.java | Java | asf20 | 9,250 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/tablet/TracksDropdownFragment.java | Java | asf20 | 10,527 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/tablet/SessionsVendorsMultiPaneActivity.java | Java | asf20 | 20,162 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/TrackInfoHelperFragment.java | Java | asf20 | 5,505 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/MyScheduleFragment.java | Java | asf20 | 24,254 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/SearchActivity.java | Java | asf20 | 8,467 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/HomeActivity.java | Java | asf20 | 16,365 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/SocialStreamActivity.java | Java | asf20 | 1,820 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/VendorsFragment.java | Java | asf20 | 7,539 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/widget/ShowHideMasterLayout.java | Java | asf20 | 15,609 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/widget/SimpleSectionedListAdapter.java | Java | asf20 | 6,081 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/widget/BezelImageView.java | Java | asf20 | 5,729 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/widget/CheckableFrameLayout.java | Java | asf20 | 2,376 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/widget/ButtonBar.java | Java | asf20 | 1,695 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/SessionLivestreamActivity.java | Java | asf20 | 47,101 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/SessionDetailFragment.java | Java | asf20 | 26,488 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/phone/SessionsActivity.java | Java | asf20 | 3,083 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/phone/TrackDetailActivity.java | Java | asf20 | 7,891 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/phone/VendorDetailActivity.java | Java | asf20 | 3,248 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/phone/MapActivity.java | Java | asf20 | 2,964 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/phone/SessionDetailActivity.java | Java | asf20 | 5,069 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/gtv/GoogleTVSessionLivestreamActivity.java | Java | asf20 | 23,470 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/MapFragment.java | Java | asf20 | 8,494 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/BeamActivity.java | Java | asf20 | 3,300 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/BaseActivity.java | Java | asf20 | 7,118 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/SimpleSinglePaneActivity.java | Java | asf20 | 2,407 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/SessionsFragment.java | Java | asf20 | 23,652 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/ui/WhatsOnFragment.java | Java | asf20 | 11,175 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/calendar/SessionAlarmReceiver.java | Java | asf20 | 1,391 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/calendar/SessionCalendarService.java | Java | asf20 | 17,856 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/calendar/SessionAlarmService.java | Java | asf20 | 12,996 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/Config.java | Java | asf20 | 2,785 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/appwidget/MyScheduleWidgetProvider.java | Java | asf20 | 13,326 |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 10mlfeng-iosched | android/src/com/google/android/apps/iosched/appwidget/MyScheduleWidgetService.java | Java | asf20 | 17,704 |