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
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/gui/GUI.js
JavaScript
asf20
34,978
<div id="dg-save" class="dg dialogue"> Here's the new load parameter for your <code>GUI</code>'s constructor: <textarea id="dg-new-constructor"></textarea> <div id="dg-save-locally"> <input id="dg-local-storage" type="checkbox"/> Automatically save values to <code>localStorage</code> on exit. <di...
0227ly-1
src/dat/gui/saveDialogue.html
HTML
asf20
652
$background-color: #1a1a1a; $hover-lighten: 5%; $border-lighten: 7%; $active-lighten: 10%; $number-color: #2FA1D6; $boolean-color: #806787; $string-color: #1ed36f; $function-color: #e61d5f; $save-row-color: #dad5cb; $button-color: darken($save-row-color, 10%); $border-color: lighten($background-color, $border-lighten...
0227ly-1
src/dat/gui/style.scss
SCSS
asf20
4,354
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/Controller.js
JavaScript
asf20
3,736
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/NumberControllerSlider.css
CSS
asf20
921
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/NumberControllerSlider.js
JavaScript
asf20
3,448
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/NumberController.js
JavaScript
asf20
3,745
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/BooleanController.js
JavaScript
asf20
2,199
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/NumberControllerBox.js
JavaScript
asf20
3,479
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/FunctionController.js
JavaScript
asf20
1,784
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/ColorController.js
JavaScript
asf20
9,208
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/factory.js
JavaScript
asf20
1,864
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/OptionController.js
JavaScript
asf20
2,511
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/controllers/StringController.js
JavaScript
asf20
2,121
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/dom/CenteredDiv.js
JavaScript
asf20
2,984
/** * dat-gui JavaScript Controller Library * http://code.google.com/p/dat-gui * * Copyright 2011 Data Arts Team, Google Creative Lab * * 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 ...
0227ly-1
src/dat/dom/dom.js
JavaScript
asf20
7,163
<!DOCTYPE html> <html> <head> </head> <body> <script type="text/javascript" src="build/dat.gui.min.js"></script> <script type="text/javascript"> var obj = { x: 5 }; var gui = new dat.GUI(); gui.add(obj, 'x'); </script> </body> </html>
0227ly-1
example.html
HTML
asf20
250
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Play here. * * @author (Karen Gonzalez) * @version (25/05/14) */ public class Play extends BotonesMenu { /**Variables de instancia de la clase play*/ private CatchWorld m; ...
131402-catchthekeys
trunk/Play.java
Java
gpl3
783
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Color; import java.util.List; /** * An actor class that can display a scoreboard, using Greenfoot's * UserInfo class. * * You typically use this by including some code into the world for when your game ends: * * <...
131402-catchthekeys
trunk/ScoreBoard.java
Java
gpl3
4,242
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Dulce here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Dulce extends Bonus { public Dulce() { } public void act() { ...
131402-catchthekeys
trunk/Dulce.java
Java
gpl3
358
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Font; // import java.awt.Color; /** * Write a description of class CatchWorld here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class CatchWorld extends World { /**Variables de inst...
131402-catchthekeys
trunk/CatchWorld.java
Java
gpl3
14,001
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Records here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Records extends BotonesMenu { /**Variable de instancia*/ private CatchWorld m; /**Cons...
131402-catchthekeys
trunk/Records.java
Java
gpl3
738
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Color; /** * Write a description of class time here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class time extends Actor { /**Variables de instancia*/ private boolean running = fa...
131402-catchthekeys
trunk/time.java
Java
gpl3
2,145
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Color; /** * Write a description of class Letrero here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Letrero extends Actor { /**Variables de instancia*/ private String letrer...
131402-catchthekeys
trunk/Letrero.java
Java
gpl3
675
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Bala here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Bala extends Actor { /**Variables de instancia de la clase Bala*/ private boolean dir; private ...
131402-catchthekeys
trunk/Bala.java
Java
gpl3
1,269
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Fresa here. * * @author (your name) * @version (a version number or a date) */ public class Fresa extends Fruta { /**Metodo actua de la clase fresa, se manda llamar los metodos a ...
131402-catchthekeys
trunk/Fresa.java
Java
gpl3
637
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Gato here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Gato extends Enemigos { /**Variables de instancia de la clase Gato*/ private int velocidad; pri...
131402-catchthekeys
trunk/Gato.java
Java
gpl3
4,003
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Font; // import java.awt.Color; /** * Write a description of class Roca here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Roca extends Actor { /**Variables de instancia de...
131402-catchthekeys
trunk/Roca.java
Java
gpl3
1,215
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Leon here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Leon extends Enemigos { /**Variables de instancia de la clase Leon*/ private int dirAle; priv...
131402-catchthekeys
trunk/Leon.java
Java
gpl3
2,135
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class BotonesMenu here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class BotonesMenu extends Actor { /** * Act - do whatever the BotonesMenu wants to do. This method...
131402-catchthekeys
trunk/BotonesMenu.java
Java
gpl3
501
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Bonus here. * * @author (Karen Gonzalez ) * @version (29/05/14) */ public class Bonus extends Actor { public void act() { // Add your action code here. } }
131402-catchthekeys
trunk/Bonus.java
Java
gpl3
320
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Ayuda here. * * @author (Karen Gonzalez ) * @version (29/05/14) */ public class Ayuda extends BotonesMenu { /**Variables de instancia de la clase Ayuda*/ private CatchWorld m; ...
131402-catchthekeys
trunk/Ayuda.java
Java
gpl3
791
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Font; // import java.awt.Color; /** * Write a description of class Llave here. * * @author (Karen Gonzalez) * @version (25/05/14) */ public class Llave extends Actor { /**Constructor de la cla...
131402-catchthekeys
trunk/Llave.java
Java
gpl3
496
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Regresar here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Regresar extends BotonesMenu { /**Variable de instancia*/ private CatchWorld m; /**Co...
131402-catchthekeys
trunk/Regresar.java
Java
gpl3
737
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Ladron here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Ladron extends Enemigos { /**Variables de instancia*/ private int contBala; private bool...
131402-catchthekeys
trunk/Ladron.java
Java
gpl3
1,233
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Font; // import java.awt.Color; /** * Write a description of class Jugador here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Jugador extends Actor { /**Variables de instancia*/ ...
131402-catchthekeys
trunk/Jugador.java
Java
gpl3
9,154
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Next here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Next extends BotonesMenu { /**Variables de instancia de la clase Next*/ private CatchWorld m; ...
131402-catchthekeys
trunk/Next.java
Java
gpl3
734
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Martillo here. * * @author (your name) * @version (a version number or a date) */ public class Martillo extends Bonus { /**Constructor de clase martillo, unicamente se le da una nu...
131402-catchthekeys
trunk/Martillo.java
Java
gpl3
492
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Fruta here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Fruta extends Actor { public void act() { } public void JugadorToma...
131402-catchthekeys
trunk/Fruta.java
Java
gpl3
366
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Pocoyo here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Pocoyo extends Jugador { /**Metodo actua, donde se indica que ejecute los metodos de la clase super **/...
131402-catchthekeys
trunk/Pocoyo.java
Java
gpl3
389
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Plataforma here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Plataforma extends Actor { /**Constructor de la clase Plataforma, se redimenciona la imagen*/ ...
131402-catchthekeys
trunk/Plataforma.java
Java
gpl3
485
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.awt.Font; // import java.awt.Color; /** * Write a description of class Vida here. * * @author Karen Gonzalez Almendarez * @version (26/05/14) */ public class Vida extends Actor { /**Constructor...
131402-catchthekeys
trunk/Vida.java
Java
gpl3
622
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Piña here. * * @author (your name) * @version (a version number or a date) */ public class Piña extends Fruta { private CatchWorld mundo; private Jugador pocoyo; private Leo...
131402-catchthekeys
trunk/Piña.java
Java
gpl3
1,177
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Creditos here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Creditos extends BotonesMenu { /**Variable de instancia*/ private CatchWorld m; /**Co...
131402-catchthekeys
trunk/Creditos.java
Java
gpl3
742
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Enemigos here. * * @author (Karen Gonzalez) * @version (29/05/14) */ public class Enemigos extends Actor { /** * Act - do whatever the Enemigos wants to do. This method is calle...
131402-catchthekeys
trunk/Enemigos.java
Java
gpl3
469
/** * A simple timer class that allows you to keep track of how much time * has passed between events. * * You use this class by creating a timer as a member field in your actor (or whatever): * <pre> * * private SimpleTimer timer = new SimpleTimer(); * </pre> * * Then when you want to start the timer (for...
131402-catchthekeys
trunk/SimpleTimer.java
Java
gpl3
1,777
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class Uva here. * * @author (your name) * @version (a version number or a date) */ public class Uva extends Fruta { /**Constructor de la clase uva, se redimenciona la imagen con otra escala*...
131402-catchthekeys
trunk/Uva.java
Java
gpl3
779
/* * 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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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; }
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
samples/gcm-demo-server/src/com/google/android/gcm/demo/server/HomeServlet.java
Java
asf20
2,340
<jsp:forward page="/home"/>
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
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...
1005hk-zz
samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/ApiKeyInitializer.java
Java
asf20
2,712
/* * 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...
1005hk-zz
samples/gcm-demo-appengine/src/com/google/android/gcm/demo/server/HomeServlet.java
Java
asf20
2,295
<jsp:forward page="/home"/>
1005hk-zz
samples/gcm-demo-appengine/WebContent/index.jsp
Java Server Pages
asf20
28
<html> <body> You have been registered successfully. <br><br> You can now <a href="students/Phase1.html">begin an application submission</a> after logging in. </body> </html>
135-grad-admissions
trunk/data-source-realm/Success.html
HTML
mit
180
#left { margin-right: 153px; } #right { margin-left: 150px; } #left_wrapper { width: 50%; margin-right: -150px; float: left; position: relative; z-index: 0; } #middle_wrapper { width: 300px; margin-right: -150px; float: left; position: relative; z-index: 2; } #right_wrapper { width: 49.9%; ...
135-grad-admissions
trunk/data-source-realm/style.css
CSS
mit
372
<% if(request.isUserInRole("admin")) response.sendRedirect("admins/index.jsp"); else if(request.isUserInRole("student")) response.sendRedirect("students/Phase1.html"); %>
135-grad-admissions
trunk/data-source-realm/index.jsp
Java Server Pages
mit
178
<html> <body> Login to the Admissions Committee Review System <b>failed!</b> </body> </html>
135-grad-admissions
trunk/data-source-realm/login-error.jsp
Java Server Pages
mit
100
<html> <body> <ul> <li>Access <a href="students/">Students Area</a></li> <li>Access <a href="admins/">Admins Area</a></li> </ul> <p><a href="invalidate.jsp">Invalidate Session</a></p> </body> </html>
135-grad-admissions
trunk/data-source-realm/index.html
HTML
mit
221
#left { margin-right: 153px; } #right { margin-left: 150px; } #left_wrapper { width: 50%; margin-right: -150px; float: left; position: relative; z-index: 0; } #middle_wrapper { width: 300px; margin-right: -150px; float: left; position: relative; z-index: 2; } #right_wrapper { width: 49.9%; ...
135-grad-admissions
trunk/data-source-realm/admins/style.css
CSS
mit
372
<html> <body> <p>Hello <b><%= request.getUserPrincipal().getName() %></b>!</p> <br> <p><a href="Applications.jsp">All Applicants by name</a></p> <p><a href="SpecializationAnalytics.jsp">All Applicants by desired specialization</a></p> <p><a href="DisciplinesAnalytics.jsp">All Applicants by earned degre...
135-grad-admissions
trunk/data-source-realm/admins/index.jsp
Java Server Pages
mit
410
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@page import="support.*, java.util.*, java.sql.*" %> <!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="t...
135-grad-admissions
trunk/data-source-realm/admins/Applications.jsp
Java Server Pages
mit
2,392
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@page import="support.*, java.util.*, java.sql.*" %> <!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="t...
135-grad-admissions
trunk/data-source-realm/admins/SpecializationAnalytics.jsp
Java Server Pages
mit
1,456
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@page import="support.*, java.util.*, java.sql.*" %> <!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" conten...
135-grad-admissions
trunk/data-source-realm/admins/DisciplinesAnalytics.jsp
Java Server Pages
mit
1,375
<html> <body> <form name="frmSignIn" method="POST" action="j_security_check"> <table> <tr> <td>Username</td> <td> <input maxlength="20" size="12" name="j_username" type="text"/> </td> </tr> <tr> <td>Password</td> <td> <input maxlength="20" size="12" na...
135-grad-admissions
trunk/data-source-realm/login.jsp
Java Server Pages
mit
609
#left { margin-right: 153px; } #right { margin-left: 150px; } #left_wrapper { width: 50%; margin-right: -150px; float: left; position: relative; z-index: 0; } #middle_wrapper { width: 300px; margin-right: -150px; float: left; position: relative; z-index: 2; } #right_wrapper { width: 49.9%; ...
135-grad-admissions
trunk/data-source-realm/students/style.css
CSS
mit
372
<html> <body> <p>Hello <b><%= request.getUserPrincipal().getName() %></b>!</p> <p>Roles: <ul> <% if (request.isUserInRole("admin")) { %> <li>admin</li> <% } %> <% if (request.isUserInRole("student")) { %> <li>student</li> <% } %> </ul> </p> <p><a href="../invalidate.jsp">...
135-grad-admissions
trunk/data-source-realm/students/index.jsp
Java Server Pages
mit
365
<!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=UTF-8"> <title>Who are you?</title> </head> <body> <form method="GET" action="2_Citizenship.jsp"> First Name:<input type="text" name="firstName...
135-grad-admissions
trunk/data-source-realm/students/Phase1.html
HTML
mit
509
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <!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=ISO-8859-1"> <title>Cancelled</title> </he...
135-grad-admissions
trunk/data-source-realm/students/13_Cancellation.jsp
Java Server Pages
mit
407
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@page import="java.util.*" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="style.css" rel="stylesheet" type="text/css" medi...
135-grad-admissions
trunk/data-source-realm/students/11_Verification.jsp
Java Server Pages
mit
3,145
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@page import="java.util.*, java.sql.*" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="style.css" rel="stylesheet" type="te...
135-grad-admissions
trunk/data-source-realm/students/8_DegreeDiscipline.jsp
Java Server Pages
mit
3,910