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 com.trilead.ssh2.crypto.cipher;
import java.io.IOException;
import java.io.InputStream;
/**
* CipherInputStream.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: CipherInputStream.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
*/
public class CipherInputStream {
BlockCiph... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/CipherInputStream.java | Java | gpl3 | 3,027 |
package com.trilead.ssh2.crypto.cipher;
/**
* CBCMode.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: CBCMode.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
*/
public class CBCMode implements BlockCipher {
BlockCipher tc;
int blockSize;
boolean doEncrypt;
byte[] cbc_vector;... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/CBCMode.java | Java | gpl3 | 1,929 |
package com.trilead.ssh2.crypto.cipher;
/*
This file is based on the 3DES implementation from the Bouncy Castle Crypto package.
Their licence file states the following:
Copyright (c) 2000 - 2004 The Legion Of The Bouncy Castle
(http://www.bouncycastle.org)
Permission is hereby granted, free of charge, ... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/DES.java | Java | gpl3 | 15,046 |
package com.trilead.ssh2.crypto.cipher;
/**
* This is CTR mode as described in draft-ietf-secsh-newmodes-XY.txt
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: CTRMode.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
*/
public class CTRMode implements BlockCipher {
byte[] X;
byte[] ... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/CTRMode.java | Java | gpl3 | 1,338 |
package com.trilead.ssh2.crypto.cipher;
import java.io.IOException;
import java.io.OutputStream;
/**
* CipherOutputStream.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: CipherOutputStream.java,v 1.1 2007/10/15 12:49:55 cplattne Exp
* $
*/
public class CipherOutputStr... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/CipherOutputStream.java | Java | gpl3 | 3,077 |
package com.trilead.ssh2.crypto.cipher;
import java.util.Vector;
/**
* BlockCipherFactory.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: BlockCipherFactory.java,v 1.2 2008/04/01 12:38:09 cplattne Exp
* $
*/
public class BlockCipherFactory {
static class CipherEntry ... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/BlockCipherFactory.java | Java | gpl3 | 3,343 |
package com.trilead.ssh2.crypto.cipher;
/**
* BlockCipher.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: BlockCipher.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
*/
public interface BlockCipher {
public int getBlockSize();
public void init(boolean forEncryption, byte[] key);... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/BlockCipher.java | Java | gpl3 | 405 |
package com.trilead.ssh2.crypto.cipher;
/*
This file was shamelessly taken (and modified) from the Bouncy Castle Crypto package.
Their licence file states the following:
Copyright (c) 2000 - 2004 The Legion Of The Bouncy Castle
(http://www.bouncycastle.org)
Permission is hereby granted, free of charge,... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/DESede.java | Java | gpl3 | 2,933 |
package com.trilead.ssh2.crypto.cipher;
/*
This file was shamelessly taken from the Bouncy Castle Crypto package.
Their licence file states the following:
Copyright (c) 2000 - 2004 The Legion Of The Bouncy Castle
(http://www.bouncycastle.org)
Permission is hereby granted, free of charge, to any person ... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/BlowFish.java | Java | gpl3 | 21,167 |
package com.trilead.ssh2.crypto.cipher;
/**
* NullCipher.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: NullCipher.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
*/
public class NullCipher implements BlockCipher {
private int blockSize = 8;
public NullCipher() {
}
public... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/cipher/NullCipher.java | Java | gpl3 | 686 |
package com.trilead.ssh2.crypto.digest;
import java.math.BigInteger;
/**
* HashForSSH2Types.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: HashForSSH2Types.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
*/
public class HashForSSH2Types {
Digest md;
public HashForSSH2Types(D... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/digest/HashForSSH2Types.java | Java | gpl3 | 1,514 |
package com.trilead.ssh2.crypto.digest;
/**
* MAC.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: MAC.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
*/
public final class MAC {
public final static void checkMacList(String[] macs) {
for (int i = 0; i < macs.length; i++)
getKe... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/digest/MAC.java | Java | gpl3 | 1,784 |
package com.trilead.ssh2.crypto.digest;
/**
* HMAC.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: HMAC.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
*/
public final class HMAC implements Digest {
Digest md;
byte[] k_xor_ipad;
byte[] k_xor_opad;
byte[] tmp;
int size;
... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/digest/HMAC.java | Java | gpl3 | 1,637 |
package com.trilead.ssh2.crypto.digest;
/**
* MD5. Based on the example code in RFC 1321. Optimized (...a little).
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: MD5.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
*/
/*
* The following disclaimer has been copied from RFC 1321:
*... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/digest/MD5.java | Java | gpl3 | 8,231 |
package com.trilead.ssh2.crypto.digest;
/**
* SHA-1 implementation based on FIPS PUB 180-1. Highly optimized.
* <p>
* (http://www.itl.nist.gov/fipspubs/fip180-1.htm)
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: SHA1.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
*/
public final... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/digest/SHA1.java | Java | gpl3 | 18,874 |
package com.trilead.ssh2.crypto.digest;
/**
* Digest.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: Digest.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
*/
public interface Digest {
public void digest(byte[] out);
public void digest(byte[] out, int off);
public int getDig... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/digest/Digest.java | Java | gpl3 | 480 |
package com.trilead.ssh2.crypto;
import java.io.CharArrayWriter;
import java.io.IOException;
/**
* Basic Base64 Support.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: Base64.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
*/
public class Base64 {
static final char[] alphabet = ... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/Base64.java | Java | gpl3 | 3,060 |
package com.trilead.ssh2.crypto;
import java.io.IOException;
import java.math.BigInteger;
/**
* SimpleDERReader.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: SimpleDERReader.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
*/
public class SimpleDERReader {
byte[] buffer;
int ... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/SimpleDERReader.java | Java | gpl3 | 2,965 |
package com.trilead.ssh2.crypto;
import java.io.BufferedReader;
import java.io.CharArrayReader;
import java.io.IOException;
import java.math.BigInteger;
import com.trilead.ssh2.crypto.cipher.AES;
import com.trilead.ssh2.crypto.cipher.BlockCipher;
import com.trilead.ssh2.crypto.cipher.CBCMode;
import com.tri... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/PEMDecoder.java | Java | gpl3 | 9,676 |
package com.trilead.ssh2.crypto;
import com.trilead.ssh2.compression.CompressionFactory;
import com.trilead.ssh2.crypto.cipher.BlockCipherFactory;
import com.trilead.ssh2.crypto.digest.MAC;
import com.trilead.ssh2.transport.KexManager;
/**
* CryptoWishList.
*
* @author Christian Plattner, plattner@trile... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/CryptoWishList.java | Java | gpl3 | 1,053 |
package com.trilead.ssh2.crypto.dh;
import java.math.BigInteger;
import java.security.SecureRandom;
import com.trilead.ssh2.DHGexParameters;
import com.trilead.ssh2.crypto.digest.HashForSSH2Types;
/**
* DhGroupExchange.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: DhGroupExch... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/dh/DhGroupExchange.java | Java | gpl3 | 2,471 |
package com.trilead.ssh2.crypto.dh;
import java.io.UnsupportedEncodingException;
import java.math.BigInteger;
import java.security.SecureRandom;
import com.trilead.ssh2.crypto.digest.HashForSSH2Types;
import com.trilead.ssh2.log.Logger;
/**
* DhExchange.
*
* @author Christian Plattner, plattner@trile... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/dh/DhExchange.java | Java | gpl3 | 3,809 |
package com.trilead.ssh2.crypto;
/**
* Parsed PEM structure.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: PEMStructure.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
*/
public class PEMStructure {
public int pemType;
String dekInfo[];
String procType[];
public byte[] data... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/PEMStructure.java | Java | gpl3 | 324 |
package com.trilead.ssh2.crypto;
import java.math.BigInteger;
import com.trilead.ssh2.crypto.digest.HashForSSH2Types;
/**
* Establishes key material for iv/key/mac (both directions).
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: KeyMaterial.java,v 1.1 2007/10/15 12:49:56 cplattn... | 07pratik-mysshpratik | src/com/trilead/ssh2/crypto/KeyMaterial.java | Java | gpl3 | 2,588 |
package com.trilead.ssh2;
/**
* A <code>SFTPv3DirectoryEntry</code> as returned by
* {@link SFTPv3Client#ls(String)}.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: SFTPv3DirectoryEntry.java,v 1.1 2007/10/15 12:49:56 cplattne
* Exp $
*/
public class SFTPv3DirectoryEnt... | 07pratik-mysshpratik | src/com/trilead/ssh2/SFTPv3DirectoryEntry.java | Java | gpl3 | 1,242 |
package com.trilead.ssh2.util;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.Collections;
import java.util.LinkedList;
import com.trilead.ssh2.log.Logger;
/**
* TimeoutService (beta). Here you can register a timeout.
* <p>
* Implemented having large scale programs in mind: ... | 07pratik-mysshpratik | src/com/trilead/ssh2/util/TimeoutService.java | Java | gpl3 | 3,426 |
package com.trilead.ssh2.util;
/**
* Tokenizer. Why? Because StringTokenizer is not available in J2ME.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: Tokenizer.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
*/
public class Tokenizer {
/**
* Exists because StringTokenizer is not ... | 07pratik-mysshpratik | src/com/trilead/ssh2/util/Tokenizer.java | Java | gpl3 | 1,097 |
/* proxydroid - Global / Individual Proxy App for Android
* Copyright (C) 2011 K's Maze <kafkasmaze@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the... | 07pratik-mysshpratik | src/com/ksmaze/android/preference/ListPreferenceMultiSelect.java | Java | gpl3 | 4,571 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/InfBlocks.java | Java | gpl3 | 16,176 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/StaticTree.java | Java | gpl3 | 5,533 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/JZlib.java | Java | gpl3 | 2,824 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/Tree.java | Java | gpl3 | 14,495 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain ... | 07pratik-mysshpratik | src/com/jcraft/jzlib/ZStreamException.java | Java | gpl3 | 1,919 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/Deflate.java | Java | gpl3 | 53,285 |
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */
/*
Copyright (c) 2001 Lapo Luchini.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice... | 07pratik-mysshpratik | src/com/jcraft/jzlib/ZInputStream.java | Java | gpl3 | 4,456 |
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */
/*
Copyright (c) 2001 Lapo Luchini.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice... | 07pratik-mysshpratik | src/com/jcraft/jzlib/ZOutputStream.java | Java | gpl3 | 4,333 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/Inflate.java | Java | gpl3 | 10,848 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/InfCodes.java | Java | gpl3 | 17,564 |
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source cod... | 07pratik-mysshpratik | src/com/jcraft/jzlib/ZStream.java | Java | gpl3 | 6,931 |
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source cod... | 07pratik-mysshpratik | src/com/jcraft/jzlib/InfTree.java | Java | gpl3 | 18,173 |
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the abo... | 07pratik-mysshpratik | src/com/jcraft/jzlib/Adler32.java | Java | gpl3 | 3,369 |
#!/system/bin/sh
DIR=/data/data/org.sshtunnel
PATH=$DIR:$PATH
case $1 in
start)
echo "
base {
log_debug = off;
log_info = off;
log = stderr;
daemon = on;
redirector = iptables;
}
" >$DIR/redsocks.conf
echo "
redsocks {
local_ip = 127.0.0.1;
local_port = 8123;
ip = 127.0.0.1;
port = $2;
type = socks5;... | 07pratik-mysshpratik | assets/proxy_socks.sh | Shell | gpl3 | 522 |
#!/system/bin/sh
DIR=/data/data/org.sshtunnel
PATH=$DIR:$PATH
case $1 in
start)
echo "
base {
log_debug = off;
log_info = off;
log = stderr;
daemon = on;
redirector = iptables;
}
" >$DIR/redsocks.conf
echo "
redsocks {
local_ip = 127.0.0.1;
local_port = 8123;
ip = 127.0.0.1;
port = $2;
type = http-re... | 07pratik-mysshpratik | assets/proxy_http.sh | Shell | gpl3 | 633 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<title>CHANGELOG</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<div>
... | 0911aihara-kitchentimer | assets/changelog.html | HTML | gpl3 | 10,261 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html style="cursor: auto ! important;"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GNU General Public License - GNU Project - Free Software Foundation (FSF)</title>
<link rel="alternate" type="application/rdf+xml... | 0911aihara-kitchentimer | assets/gpl-3.0-standalone.html | HTML | gpl3 | 37,038 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="it-IT" xmlns="http://www.w3.org/1999/xhtml" lang="it-IT">
<head>
<title>Info</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h2>FAQ</h2>... | 0911aihara-kitchentimer | assets/info-it.html | HTML | gpl3 | 5,043 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<title>EULA</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<div>
<h... | 0911aihara-kitchentimer | assets/eula.html | HTML | gpl3 | 1,128 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="it-IT" xmlns="http://www.w3.org/1999/xhtml" lang="it-IT">
<head>
<title>Info</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h2>FAQ</h2>... | 0911aihara-kitchentimer | assets/info.html | HTML | gpl3 | 4,656 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/customtypes/Food.java | Java | gpl3 | 1,787 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/database/DbTool.java | Java | gpl3 | 4,029 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/misc/Changelog.java | Java | gpl3 | 2,181 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/misc/Log.java | Java | gpl3 | 1,684 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/misc/Eula.java | Java | gpl3 | 3,421 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/misc/Constants.java | Java | gpl3 | 2,366 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/receivers/AlarmReceiver.java | Java | gpl3 | 7,097 |
/*
* Copyright (C) 2008 The Android Open Source Project
*
* 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 requir... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/customviews/NumberPickerButton.java | Java | gpl3 | 2,644 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/customviews/DonateDialogPreference.java | Java | gpl3 | 1,868 |
/*
* Copyright (C) 2008 The Android Open Source Project
*
* 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 requir... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/customviews/NumberPicker.java | Java | gpl3 | 13,792 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/customviews/MyDialogPreference.java | Java | gpl3 | 1,558 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/utils/Utils.java | Java | gpl3 | 6,661 |
package com.leinardi.kitchentimer.ui;
import com.leinardi.kitchentimer.R;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.WebView;
public class InfoActivity extends Activity {
/** Called when the activity is first creat... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/ui/InfoActivity.java | Java | gpl3 | 745 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/ui/ConfigActivity.java | Java | gpl3 | 2,372 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/ui/PresetsActivity.java | Java | gpl3 | 11,431 |
/**
* Kitchen Timer
* Copyright (C) 2010 Roberto Leinardi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | 0911aihara-kitchentimer | src/com/leinardi/kitchentimer/ui/MainActivity.java | Java | gpl3 | 19,983 |
package au.com.bytecode.opencsv;
/**
Copyright 2005 Bytecode Pty Ltd.
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 b... | 0911aihara-kitchentimer | src/au/com/bytecode/opencsv/CSVWriter.java | Java | gpl3 | 7,434 |
package au.com.bytecode.opencsv;
/**
Copyright 2005 Bytecode Pty Ltd.
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 b... | 0911aihara-kitchentimer | src/au/com/bytecode/opencsv/CSVReader.java | Java | gpl3 | 9,470 |
/*
* Copyright 2013 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 in... | 10beseahaider-muclone | gcm-client/GcmClient/src/main/java/com/google/android/gcm/demo/app/DemoActivity.java | Java | asf20 | 9,852 |
/*
* Copyright 2013 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 in... | 10beseahaider-muclone | gcm-client/GcmClient/src/main/java/com/google/android/gcm/demo/app/GcmBroadcastReceiver.java | Java | asf20 | 1,788 |
/*
* Copyright (C) 2013 The Android Open Source Project
*
* 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 app... | 10beseahaider-muclone | gcm-client/GcmClient/src/main/java/com/google/android/gcm/demo/app/GcmIntentService.java | Java | asf20 | 4,598 |
/*
* 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 in w... | 10beseahaider-muclone | gcm-server/src/com/google/android/gcm/server/InvalidRequestException.java | Java | asf20 | 1,700 |
/*
* 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 in w... | 10beseahaider-muclone | gcm-server/src/com/google/android/gcm/server/Result.java | Java | asf20 | 3,458 |
/*
* 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 in w... | 10beseahaider-muclone | gcm-server/src/com/google/android/gcm/server/Sender.java | Java | asf20 | 24,302 |
/*
* 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 in w... | 10beseahaider-muclone | gcm-server/src/com/google/android/gcm/server/Constants.java | Java | asf20 | 6,107 |
/*
* 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 in w... | 10beseahaider-muclone | gcm-server/src/com/google/android/gcm/server/Message.java | Java | asf20 | 5,628 |
/*
* 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 in w... | 10beseahaider-muclone | gcm-server/src/com/google/android/gcm/server/MulticastResult.java | Java | asf20 | 3,886 |
/*
* 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 in... | 10beseahaider-muclone | gcm-client-deprecated/src/com/google/android/gcm/GCMBaseIntentService.java | Java | asf20 | 14,032 |
/*
* 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 in... | 10beseahaider-muclone | gcm-client-deprecated/src/com/google/android/gcm/GCMRegistrar.java | Java | asf20 | 22,174 |
/*
* 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 in... | 10beseahaider-muclone | gcm-client-deprecated/src/com/google/android/gcm/GCMConstants.java | Java | asf20 | 6,105 |
/*
* 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 in... | 10beseahaider-muclone | gcm-client-deprecated/src/com/google/android/gcm/GCMLogger.java | Java | asf20 | 1,530 |
/*
* 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 in... | 10beseahaider-muclone | gcm-client-deprecated/src/com/google/android/gcm/GCMBroadcastReceiver.java | Java | asf20 | 3,012 |
/** Automatically generated file. DO NOT MODIFY */
package com.google.android.gcm;
public final class BuildConfig {
public final static boolean DEBUG = true;
} | 10beseahaider-muclone | gcm-client-deprecated/gen/com/google/android/gcm/BuildConfig.java | Java | asf20 | 164 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-server/src/com/google/android/gcm/demo/server/SendAllMessagesServlet.java | Java | asf20 | 5,498 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-server/src/com/google/android/gcm/demo/server/UnregisterServlet.java | Java | asf20 | 1,429 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-server/src/com/google/android/gcm/demo/server/RegisterServlet.java | Java | asf20 | 1,450 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-server/src/com/google/android/gcm/demo/server/Datastore.java | Java | asf20 | 2,049 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-server/src/com/google/android/gcm/demo/server/BaseServlet.java | Java | asf20 | 2,802 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-server/src/com/google/android/gcm/demo/server/ApiKeyInitializer.java | Java | asf20 | 2,369 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-server/src/com/google/android/gcm/demo/server/HomeServlet.java | Java | asf20 | 2,340 |
<jsp:forward page="/home"/>
| 10beseahaider-muclone | samples/gcm-demo-server/WebContent/index.jsp | Java Server Pages | asf20 | 28 |
/*
* 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 in... | 10beseahaider-muclone | samples/gcm-demo-client/src/com/google/android/gcm/demo/app/DemoActivity.java | Java | asf20 | 5,509 |
/*
* 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 in... | 10beseahaider-muclone | samples/gcm-demo-client/src/com/google/android/gcm/demo/app/ServerUtilities.java | Java | asf20 | 7,034 |
/*
* 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 in... | 10beseahaider-muclone | samples/gcm-demo-client/src/com/google/android/gcm/demo/app/CommonUtilities.java | Java | asf20 | 1,993 |
/*
* 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 in... | 10beseahaider-muclone | samples/gcm-demo-client/src/com/google/android/gcm/demo/app/GCMIntentService.java | Java | asf20 | 4,223 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/SendAllMessagesServlet.java | Java | asf20 | 3,528 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/SendMessageServlet.java | Java | asf20 | 7,021 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/UnregisterServlet.java | Java | asf20 | 1,429 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/RegisterServlet.java | Java | asf20 | 1,450 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/Datastore.java | Java | asf20 | 8,837 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/BaseServlet.java | Java | asf20 | 2,802 |
/*
* 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 in w... | 10beseahaider-muclone | samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/ApiKeyInitializer.java | Java | asf20 | 2,712 |