Reimporting GIT repository
59
Lista.txt
Executable file
|
@ -0,0 +1,59 @@
|
|||
Al entrar:
|
||||
Se verifica si el usuario existe; sino, se deja entrar y se almacena
|
||||
el usuario en una Cookie del cliente
|
||||
-Pendiente: ¿Cómo regresar al usuario a la página de Login CON UN
|
||||
MENSAJE DE ERROR si el usuario ya existe?
|
||||
-Posible respuesta: implementar la página de inicio en PHP, normal si
|
||||
el POST es nulo, con mensaje del servidor si el POST trae un mensaje
|
||||
-Posible respuesta #2: implementar una función AJAX que verifique
|
||||
antes de meterse a la página, mostrar el mensaje de error si está
|
||||
reservado, ir a la página si no.
|
||||
-Pendiente: ¿Cómo encargarse del caso en que el usuario se sale de
|
||||
la sesión y vuelve a entrar con el mismo nombre ya reservado?
|
||||
-Posible respuesta: Un Daemon revisa que, si el usuario lleva cierto
|
||||
tiempo sin hacer Ping, se desreserva el nombre.
|
||||
|
||||
Al enviar un mensaje:
|
||||
Se envía al manejador el mensaje y el usuario que lo mandó
|
||||
Se guarda el mensaje en la base de datos
|
||||
-Pendiente: ¿Qué estructura de datos se recomienda para almacenar
|
||||
internamente los mensajes?
|
||||
-Posible respuesta: tablita SQL y un PHP para manejarlo
|
||||
|
||||
Al enviar un archivo:
|
||||
Se envía al manejador el archivo, y el usuario que lo subió
|
||||
Se guarda el enlace en la base de datos, y el archivo por aparte,
|
||||
marcando que el mensaje es un enlace (talvez)
|
||||
-Pendiente: ¿Cómo lidiar con archivos cuyo nombre esté en conflicto con
|
||||
otro que ya se haya subido al servidor?
|
||||
-Posible respuesta: sobreescribiendo (fácil, relativamente obvio) o
|
||||
dando un nombre nuevo al archivo (más complicado)
|
||||
|
||||
En cada Ping de actualización:
|
||||
-Pendiente: ¿Cómo usar AJAX y PHP para enviar un mensaje a todos los
|
||||
usuarios que están dentro de la sala?
|
||||
-Posible respuesta: cada cliente hace Polling cada segundo más o menos
|
||||
Enviar fecha de último elemento al servidor (¿=ID secuencial?)
|
||||
El servidor debe devolver solamente los elementos que tienen fecha
|
||||
posterior
|
||||
Los datos se despliegan en pantalla para cada usuario
|
||||
-Pendiente: ¿Cómo convierto de SQL a PHP a JSON a HTML y viceversa?
|
||||
-Posible respuesta: iteración PHP, conversor/desconversor a JSON,
|
||||
manejo del DOM
|
||||
-Pendiente: ¿Cómo mantener el estado del último elemento?
|
||||
-Posible respuesta: enviar un input[type="hidden"] con el último
|
||||
elemento, o una variable de JS
|
||||
|
||||
Al cerrar sesión todos los usuarios:
|
||||
-Pendiente: ¿Cómo determinar que todos los usuarios cerraron sesión,
|
||||
para poder borrar la base de datos en paz?
|
||||
-Posible respuesta: Ignorarlo de momento.
|
||||
|
||||
Repasar:
|
||||
-CSS: Overflow
|
||||
-JS: SetInterval
|
||||
|
||||
Tablas de la BD:
|
||||
|
||||
Usuarios: id, usr
|
||||
Mensajes: id, usr, time, content
|
BIN
apple-touch-icon-114x114-precomposed.png
Executable file
After Width: | Height: | Size: 1.2 KiB |
BIN
apple-touch-icon-72x72-precomposed.png
Executable file
After Width: | Height: | Size: 854 B |
BIN
apple-touch-icon-precomposed.png
Executable file
After Width: | Height: | Size: 730 B |
BIN
apple-touch-icon.png
Executable file
After Width: | Height: | Size: 730 B |
83
chatroom.html
Normal file
|
@ -0,0 +1,83 @@
|
|||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>TradeChat</title>
|
||||
<meta name="description" content="TradeChat - the quick and dirty chat with file transfer">
|
||||
<meta name="author" content="Carlos Andrés Solís R." />
|
||||
<meta name="viewport" content="width=device-width">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.control-label, .help-inline {
|
||||
display: none;
|
||||
}
|
||||
#chatlog {
|
||||
min-height:300px;
|
||||
height: 300px;
|
||||
overflow: scroll;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
|
||||
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 7]>
|
||||
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
|
||||
<![endif]-->
|
||||
|
||||
<div class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html">TradeChat</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div id="chatlog" class="well">
|
||||
<!--//Insert content here-->
|
||||
</div>
|
||||
</div>
|
||||
<form class="well form-inline" role="form" name="chatPost" enctype="multipart/form-data" action="fileUploader.php" method="post">
|
||||
<div class="input-group">
|
||||
<input type="text" id="message" name="message" class="form-control input-sm" placeholder="Insert message here:" />
|
||||
<span class="input-group-btn">
|
||||
<button type="button" id="sendButton" name="sendButton" class="btn btn-sm btn-primary">Send</button>
|
||||
<button type="file" id="attachButton" name="attachButton" class="btn btn-sm btn-default"><span class="glyphicon glyphicon-file"></span></button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<footer>
|
||||
<p>© Carlos Solís - AZK.Ware 2013 - Licensed under AGPL v3 or higher - Some components under compatible licenses; see COPYING for details</p>
|
||||
</footer>
|
||||
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"><\/script>')</script>-->
|
||||
<script src="js/vendor/jquery-1.10.1.min.js"></script>
|
||||
|
||||
<script src="js/vendor/bootstrap.min.js"></script>
|
||||
|
||||
<script src="js/plugins.js"></script>
|
||||
<script src="js/chatroom.js"></script>
|
||||
<!--
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src='//www.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
384
css/bootstrap-theme.css
vendored
Executable file
|
@ -0,0 +1,384 @@
|
|||
.btn-default,
|
||||
.btn-primary,
|
||||
.btn-success,
|
||||
.btn-info,
|
||||
.btn-warning,
|
||||
.btn-danger {
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
|
||||
.btn-default:active,
|
||||
.btn-primary:active,
|
||||
.btn-success:active,
|
||||
.btn-info:active,
|
||||
.btn-warning:active,
|
||||
.btn-danger:active,
|
||||
.btn-default.active,
|
||||
.btn-primary.active,
|
||||
.btn-success.active,
|
||||
.btn-info.active,
|
||||
.btn-warning.active,
|
||||
.btn-danger.active {
|
||||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
}
|
||||
|
||||
.btn:active,
|
||||
.btn.active {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e6e6e6));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #e6e6e6, 100%);
|
||||
background-image: -moz-linear-gradient(top, #ffffff 0%, #e6e6e6 100%);
|
||||
background-image: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #e0e0e0;
|
||||
border-color: #ccc;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
||||
}
|
||||
|
||||
.btn-default:active,
|
||||
.btn-default.active {
|
||||
background-color: #e6e6e6;
|
||||
border-color: #e0e0e0;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
|
||||
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%);
|
||||
background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #2d6ca2;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
||||
}
|
||||
|
||||
.btn-primary:active,
|
||||
.btn-primary.active {
|
||||
background-color: #3071a9;
|
||||
border-color: #2d6ca2;
|
||||
}
|
||||
|
||||
.btn-success {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
|
||||
background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%);
|
||||
background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
||||
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #419641;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
||||
}
|
||||
|
||||
.btn-success:active,
|
||||
.btn-success.active {
|
||||
background-color: #449d44;
|
||||
border-color: #419641;
|
||||
}
|
||||
|
||||
.btn-warning {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
|
||||
background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%);
|
||||
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
||||
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #eb9316;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
||||
}
|
||||
|
||||
.btn-warning:active,
|
||||
.btn-warning.active {
|
||||
background-color: #ec971f;
|
||||
border-color: #eb9316;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
|
||||
background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%);
|
||||
background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
||||
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #c12e2a;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
||||
}
|
||||
|
||||
.btn-danger:active,
|
||||
.btn-danger.active {
|
||||
background-color: #c9302c;
|
||||
border-color: #c12e2a;
|
||||
}
|
||||
|
||||
.btn-info {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
|
||||
background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%);
|
||||
background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
||||
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #2aabd2;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
||||
}
|
||||
|
||||
.btn-info:active,
|
||||
.btn-info.active {
|
||||
background-color: #31b0d5;
|
||||
border-color: #2aabd2;
|
||||
}
|
||||
|
||||
.thumbnail,
|
||||
.img-thumbnail {
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
|
||||
.dropdown-menu > li > a:hover,
|
||||
.dropdown-menu > li > a:focus,
|
||||
.dropdown-menu > .active > a,
|
||||
.dropdown-menu > .active > a:hover,
|
||||
.dropdown-menu > .active > a:focus {
|
||||
background-color: #357ebd;
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
|
||||
background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
|
||||
background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#f8f8f8));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #f8f8f8, 100%);
|
||||
background-image: -moz-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
|
||||
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-radius: 4px;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
|
||||
.navbar .navbar-nav > .active > a {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
.navbar-brand,
|
||||
.navbar-nav > li > a {
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
||||
}
|
||||
|
||||
.navbar-inverse {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3c3c3c), to(#222222));
|
||||
background-image: -webkit-linear-gradient(top, #3c3c3c, 0%, #222222, 100%);
|
||||
background-image: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
|
||||
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-nav > .active > a {
|
||||
background-color: #222222;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-brand,
|
||||
.navbar-inverse .navbar-nav > li > a {
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
.navbar-static-top,
|
||||
.navbar-fixed-top,
|
||||
.navbar-fixed-bottom {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.alert {
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.alert-success {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc));
|
||||
background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #c8e5bc, 100%);
|
||||
background-image: -moz-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
||||
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #b2dba1;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
||||
}
|
||||
|
||||
.alert-info {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0));
|
||||
background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #b9def0, 100%);
|
||||
background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
||||
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #9acfea;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
||||
}
|
||||
|
||||
.alert-warning {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0));
|
||||
background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #f8efc0, 100%);
|
||||
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
||||
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #f5e79e;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
||||
}
|
||||
|
||||
.alert-danger {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3));
|
||||
background-image: -webkit-linear-gradient(top, #f2dede, 0%, #e7c3c3, 100%);
|
||||
background-image: -moz-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
||||
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #dca7a7;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
||||
}
|
||||
|
||||
.progress {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f5f5f5));
|
||||
background-image: -webkit-linear-gradient(top, #ebebeb, 0%, #f5f5f5, 100%);
|
||||
background-image: -moz-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
||||
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
|
||||
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%);
|
||||
background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
||||
}
|
||||
|
||||
.progress-bar-success {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
|
||||
background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%);
|
||||
background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
||||
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
||||
}
|
||||
|
||||
.progress-bar-info {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
|
||||
background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%);
|
||||
background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
||||
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
||||
}
|
||||
|
||||
.progress-bar-warning {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
|
||||
background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%);
|
||||
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
||||
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
||||
}
|
||||
|
||||
.progress-bar-danger {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
|
||||
background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%);
|
||||
background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
||||
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
||||
}
|
||||
|
||||
.list-group {
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
|
||||
.list-group-item.active,
|
||||
.list-group-item.active:hover,
|
||||
.list-group-item.active:focus {
|
||||
text-shadow: 0 -1px 0 #3071a9;
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3278b3));
|
||||
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3278b3, 100%);
|
||||
background-image: -moz-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #3278b3;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
|
||||
}
|
||||
|
||||
.panel {
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.panel-default > .panel-heading {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8));
|
||||
background-image: -webkit-linear-gradient(top, #f5f5f5, 0%, #e8e8e8, 100%);
|
||||
background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
||||
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
||||
}
|
||||
|
||||
.panel-primary > .panel-heading {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
|
||||
background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
|
||||
background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
||||
}
|
||||
|
||||
.panel-success > .panel-heading {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#d0e9c6));
|
||||
background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #d0e9c6, 100%);
|
||||
background-image: -moz-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
||||
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
||||
}
|
||||
|
||||
.panel-info > .panel-heading {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#c4e3f3));
|
||||
background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #c4e3f3, 100%);
|
||||
background-image: -moz-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
||||
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
||||
}
|
||||
|
||||
.panel-warning > .panel-heading {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#faf2cc));
|
||||
background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #faf2cc, 100%);
|
||||
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
||||
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
||||
}
|
||||
|
||||
.panel-danger > .panel-heading {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#ebcccc));
|
||||
background-image: -webkit-linear-gradient(top, #f2dede, 0%, #ebcccc, 100%);
|
||||
background-image: -moz-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
||||
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
||||
}
|
||||
|
||||
.well {
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#e8e8e8), to(#f5f5f5));
|
||||
background-image: -webkit-linear-gradient(top, #e8e8e8, 0%, #f5f5f5, 100%);
|
||||
background-image: -moz-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
||||
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #dcdcdc;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
|
||||
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
}
|
1
css/bootstrap-theme.min.css
vendored
Executable file
6805
css/bootstrap.css
vendored
Executable file
9
css/bootstrap.min.css
vendored
Normal file
22
css/main.css
Executable file
|
@ -0,0 +1,22 @@
|
|||
|
||||
|
||||
/* ==========================================================================
|
||||
Author's custom styles
|
||||
========================================================================== */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
BIN
fonts/glyphicons-halflings-regular.eot
Executable file
1
fonts/glyphicons-halflings-regular.svg
Executable file
After Width: | Height: | Size: 60 KiB |
BIN
fonts/glyphicons-halflings-regular.ttf
Executable file
BIN
fonts/glyphicons-halflings-regular.woff
Executable file
5
footer.html
Executable file
|
@ -0,0 +1,5 @@
|
|||
<footer>
|
||||
<p>© Carlos Solís - AZK.Ware 2013</p>
|
||||
<p>Licensed under AGPL v3 or higher</p>
|
||||
<p>Some components under compatible licenses; see COPYING for details</p>
|
||||
</footer>
|
85
index.html
Normal file
|
@ -0,0 +1,85 @@
|
|||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>TradeChat</title>
|
||||
<meta name="description" content="TradeChat - the quick and dirty chat with file transfer">
|
||||
<meta name="author" content="Carlos Andrés Solís R." />
|
||||
<meta name="viewport" content="width=device-width">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.control-label, .help-inline {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
|
||||
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 7]>
|
||||
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
|
||||
<![endif]-->
|
||||
|
||||
<div class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<a class="navbar-brand" href="index.html">TradeChat</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Main jumbotron for a primary marketing message or call to action -->
|
||||
<div class="jumbotron">
|
||||
<div class="container">
|
||||
<h1>TradeChat</h1>
|
||||
<p>The quick and dirty chat with file transfer.</p>
|
||||
<p>Just enter your desired username and get started!</p>
|
||||
<p>(cookies and JavaScript required to work)</p>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="form-inline" name="loginForm">
|
||||
<div class="input-group">
|
||||
<input type="text" id="user" name="user" class="form-control input-lg" placeholder="Username">
|
||||
<span class="input-group-btn"></span>
|
||||
<button type="button" id="loginButton" name="loginButton" class="btn btn-lg btn-success">Log in</button>
|
||||
</span>
|
||||
<span class="help-inline">This user name is already in use.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<footer>
|
||||
<p>© Carlos Solís - AZK.Ware 2013 - Licensed under AGPL v3 or higher - Some components under compatible licenses; see COPYING for details</p>
|
||||
</footer>
|
||||
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"><\/script>')</script>-->
|
||||
<script src="js/vendor/jquery-1.10.1.min.js"></script>
|
||||
|
||||
<script src="js/vendor/bootstrap.min.js"></script>
|
||||
|
||||
<script src="js/plugins.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
<!--
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src='//www.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
BIN
initializr/apple-touch-icon-144x144-precomposed.png
Executable file
After Width: | Height: | Size: 1.4 KiB |
BIN
initializr/apple-touch-icon-57x57-precomposed.png
Executable file
After Width: | Height: | Size: 730 B |
BIN
initializr/favicon.ico
Executable file
After Width: | Height: | Size: 766 B |
15
initializr/humans.txt
Executable file
|
@ -0,0 +1,15 @@
|
|||
# humanstxt.org/
|
||||
# The humans responsible & technology colophon
|
||||
|
||||
# TEAM
|
||||
|
||||
<name> -- <role> -- <twitter>
|
||||
|
||||
# THANKS
|
||||
|
||||
<name>
|
||||
|
||||
# TECHNOLOGY COLOPHON
|
||||
|
||||
HTML5, CSS3
|
||||
jQuery, Modernizr
|
89
initializr/index.html
Executable file
|
@ -0,0 +1,89 @@
|
|||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>TradeChat</title>
|
||||
<meta name="description" content="TradeChat - the quick and dirty chat with file transfer">
|
||||
<meta name="author" content="Carlos Andrés Solís R." />
|
||||
<meta name="viewport" content="width=device-width">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.control-label, .help-inline {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
|
||||
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 7]>
|
||||
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
|
||||
<![endif]-->
|
||||
|
||||
<div class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="#">TradeChat</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Main jumbotron for a primary marketing message or call to action -->
|
||||
<div class="jumbotron">
|
||||
<div class="container">
|
||||
<h1>TradeChat</h1>
|
||||
<p>The quick and dirty chat with file transfer.</p>
|
||||
<p>Just enter your desired username and get started!</p>
|
||||
</div>
|
||||
<div class="container">
|
||||
<form class="form-vertical form-inline" enctype="multipart/form-data" name="login" action="loginProcess.php" method="post">
|
||||
<div class="controls">
|
||||
<input name="user" class="form-control span6" placeholder="Username">
|
||||
<button type="button" name="loginButton" class="btn btn-success">Log in</button>
|
||||
<span class="help-inline">This user name is already in use.</span>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<footer>
|
||||
<p>© Carlos Solís - AZK.Ware 2013</p>
|
||||
<p>Licensed under AGPL v3 or higher</p>
|
||||
<p>Some components under compatible licenses; see COPYING for details</p>
|
||||
</footer>
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"><\/script>')</script>
|
||||
|
||||
<script src="js/vendor/bootstrap.min.js"></script>
|
||||
|
||||
<script src="js/plugins.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src='//www.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
101
js/chatroom.js
Normal file
|
@ -0,0 +1,101 @@
|
|||
//TODO: ping chatDriver with nickname
|
||||
//TODO: chatDriver must delete the nickname after X seconds without answering
|
||||
//TODO: old files should be removed after X hours
|
||||
//TODO: lastPost becomes undefined somewhere somehow; can't pinpoint
|
||||
var lastPost = "0000-00-00 00:00:00";
|
||||
|
||||
var reloadChat = function(){
|
||||
// Workflow:
|
||||
//- Chatroom requests info starting from lastPost (default to 0)
|
||||
//- Server receives lastPost and returns two arrays
|
||||
//- First array contains latest lastPost
|
||||
//- Second array contains a subarray with all posts from last update
|
||||
$.getJSON("http://localhost/~csolisr/web/Proyecto/php/chatDriver.php",
|
||||
{"lastPost": lastPost},
|
||||
function(data) {
|
||||
//Render the received data
|
||||
var renderedData = "";
|
||||
if (data["messageArray"]){
|
||||
for (var i=0; i<data["messageArray"].length; ++i){
|
||||
var current = data["messageArray"][i];
|
||||
var usr = current["usr"];
|
||||
/*var time = new Date(current["time"]*1000);
|
||||
var content = current["content"];
|
||||
|
||||
var timeDisplay = time.getFullYear()+"-"+
|
||||
time.getMonth()+"-"+
|
||||
time.getDate()+" "+
|
||||
time.getHours()+":"+
|
||||
time.getMinutes()+":"+
|
||||
time.getSeconds();
|
||||
*/
|
||||
var timeDisplay = current["time"];
|
||||
renderedData += "<div class='renderedData'>";
|
||||
renderedData += "<b> "+usr+": </b>";
|
||||
renderedData += current["content"];
|
||||
renderedData += " <i>(at "+timeDisplay+")</i>";
|
||||
renderedData += "</div>\n";
|
||||
$("#chatlog").append(renderedData);
|
||||
}
|
||||
}
|
||||
|
||||
lastPost = data["lastPost"];
|
||||
});
|
||||
}
|
||||
|
||||
var postMsg = function(msg){
|
||||
//Draw the user name from your cookie
|
||||
var usr = "";
|
||||
if (document.cookie) {
|
||||
var cookieList = document.cookie.split(";");
|
||||
for (var i=0; i<cookieList.length; ++i){
|
||||
var cookieValues = cookieList[i];
|
||||
while (cookieValues.charAt(0) == " "){
|
||||
var cookieLen = cookieValues.length;
|
||||
cookieValues = cookieValues.substring(1, cookieLen);
|
||||
}
|
||||
if (cookieValues.indexOf("username=") == 0){
|
||||
var ulen= "username=".length;
|
||||
var clen = cookieValues.length;
|
||||
usr = cookieValues.substring(ulen, clen);
|
||||
}
|
||||
}
|
||||
}
|
||||
//The time and id parameters are obtained server-side
|
||||
//Prepare the JSON payload
|
||||
var payloadUsername = usr;
|
||||
//var payloadTime = new Date();
|
||||
//payloadTime.setTime(payloadTime.getTime());
|
||||
var payloadMessage = msg;
|
||||
//var JSONPayload = JSON.stringify({"username": payloadUsername,"time": payloadTime,"message": payloadMessage});
|
||||
//var JSONPayload = JSON.stringify({"username": payloadUsername,"message": payloadMessage});
|
||||
var JSONPayload = {"username": payloadUsername, "message": payloadMessage};
|
||||
//var JSONPayload = JSON.stringify([payloadUsername, payloadMessage] );
|
||||
return JSONPayload;
|
||||
}
|
||||
|
||||
window.setInterval(reloadChat, 1000);
|
||||
//Button functions
|
||||
$(document).ready(function(){
|
||||
//Functionality for sendButton
|
||||
$("#sendButton").click(function(){
|
||||
//Draw message from the #message field
|
||||
var msg = $("#message").val();
|
||||
var JSONPayload = postMsg(msg);
|
||||
//Send the payload
|
||||
$.getJSON("http://localhost/~csolisr/web/Proyecto/php/postMessage.php",
|
||||
JSONPayload,
|
||||
function(data) {
|
||||
//Clear the post
|
||||
if (data["requestValid"]=="true"){
|
||||
$("#message").val("");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
//TODO: Functionality for attachButton
|
||||
//$('#attachButton').click(function(e){
|
||||
|
||||
//return false;
|
||||
//});
|
||||
});
|
42
js/main.js
Normal file
|
@ -0,0 +1,42 @@
|
|||
$(document).ready(function(){
|
||||
$("#loginButton").click(function(){
|
||||
/*
|
||||
$.ajax({
|
||||
url: "http://localhost/~csolisr/web/Proyecto/usersList.php",
|
||||
crossDomain: true,
|
||||
dataType: "json",
|
||||
type: "GET",
|
||||
timeout: 1000
|
||||
}).done(function(data) {
|
||||
*/
|
||||
var username = $("#user").val();
|
||||
$.getJSON("http://localhost/~csolisr/web/Proyecto/php/usersList.php",
|
||||
{"usr": username},
|
||||
function(data) {
|
||||
if (!data["userExists"]) {
|
||||
//Hide the error message
|
||||
$(".help-inline").css("display", "hidden");
|
||||
//TODO: Register this user in the database
|
||||
$.getJSON("http://localhost/~csolisr/web/Proyecto/php/registerUser.php",
|
||||
{"username":username},
|
||||
function(data) {
|
||||
if (data["requestValid"]=="true"){
|
||||
var now = new Date();
|
||||
now.setTime(now.getTime());
|
||||
var expiration = 1000*60*60; //1 hour
|
||||
//TODO: Expire the session and disreserve the name
|
||||
//after an hour of inactivity.
|
||||
var expirationDate = new Date(now.getTime() + expiration);
|
||||
document.cookie = "username="+username+";"+
|
||||
"expires="+expirationDate.toGMTString()+";"+
|
||||
"path=/;";
|
||||
//TODO: Actually reading this cookie on the chat!
|
||||
window.location = "http://localhost/~csolisr/web/Proyecto/chatroom.html";
|
||||
}
|
||||
});
|
||||
} else {
|
||||
$(".help-inline").css("display", "inline");
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
24
js/plugins.js
Executable file
|
@ -0,0 +1,24 @@
|
|||
// Avoid `console` errors in browsers that lack a console.
|
||||
(function() {
|
||||
var method;
|
||||
var noop = function () {};
|
||||
var methods = [
|
||||
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
|
||||
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
|
||||
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
|
||||
'timeStamp', 'trace', 'warn'
|
||||
];
|
||||
var length = methods.length;
|
||||
var console = (window.console = window.console || {});
|
||||
|
||||
while (length--) {
|
||||
method = methods[length];
|
||||
|
||||
// Only stub undefined methods.
|
||||
if (!console[method]) {
|
||||
console[method] = noop;
|
||||
}
|
||||
}
|
||||
}());
|
||||
|
||||
// Place any jQuery/helper plugins in here.
|
1999
js/vendor/bootstrap.js
vendored
Executable file
6
js/vendor/bootstrap.min.js
vendored
Executable file
6
js/vendor/jquery-1.10.1.min.js
vendored
Executable file
11
js/vendor/modernizr-2.6.2-respond-1.1.0.min.js
vendored
Executable file
51
php/chatDriver.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
//echo var_dump($_GET);
|
||||
//echo var_dump($_POST);
|
||||
//echo '<input type="hidden" value="'.time().'"/><p>'.time().'</p><br/>';
|
||||
$lastPost = $_GET["lastPost"];
|
||||
if (!empty($lastPost)) {
|
||||
$conn = mysql_connect("localhost", "root", "N00b0r1337") or die(mysql_error());
|
||||
$db = mysql_select_db("project") or die(mysql_error);
|
||||
|
||||
//TODO: Verify if this syntax is valid.
|
||||
//TODO: Reimplement to use datetime
|
||||
//TODO: Investigate syntax of datetime
|
||||
$sqlQuery = "SELECT id, usr, time, content FROM messages WHERE time > '".$lastPost."'";
|
||||
$sqlResult = mysql_query($sqlQuery, $conn) or die(mysql_error());
|
||||
$sqlArr = array();
|
||||
$sqlCounter = 0;
|
||||
//This must return two arrays
|
||||
//The first one contains the lastPost
|
||||
//The second one is the series of arrays listed in order
|
||||
|
||||
//TODO: Must somehow delete posts after time passes
|
||||
while($row = mysql_fetch_array($sqlResult)) {
|
||||
$sqlRow = array();
|
||||
|
||||
$sqlRow["id"] = $row["id"];
|
||||
$sqlRow["usr"] = $row["usr"];
|
||||
$sqlRow["time"] = $row["time"];
|
||||
$sqlRow["content"] = $row["content"];
|
||||
|
||||
$sqlArr[$sqlCounter] = $sqlRow;
|
||||
|
||||
$sqlCounter++;
|
||||
}
|
||||
$sqlSuperArray = array();
|
||||
//Calculate what's the highest (most recent) time
|
||||
$mostRecent = "0000-00-00 00:00:00";
|
||||
if(!empty($sqlArr)) {
|
||||
for($i=0,$s=count($sqlArr); $i<$s; ++$i) {
|
||||
if ($sqlArr[$i]["time"] > $mostRecent){
|
||||
$mostRecent = $sqlArr[$i]["time"];
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$mostRecent = $lastPost;
|
||||
}
|
||||
$sqlSuperArray["lastPost"] = $mostRecent;
|
||||
$sqlSuperArray["messageArray"] = $sqlArr;
|
||||
$sqlJSON = json_encode($sqlSuperArray);
|
||||
echo $sqlJSON;
|
||||
}
|
||||
?>
|
16
php/databaseDisplay.php
Executable file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
$conn = mysql_connect("localhost", "root", "N00b0r1337") or die(mysql_error());
|
||||
$db = mysql_select_db("project") or die(mysql_error);
|
||||
|
||||
$sqlQuery = "SELECT * FROM messages";
|
||||
$sqlResult = mysql_query($sqlQuery, $conn) or die(mysql_error());
|
||||
while($row = mysql_fetch_array($sqlResult)) {
|
||||
$id = $row["id"];
|
||||
echo $id;
|
||||
echo "<br/>";
|
||||
$usr = $row["usr"];
|
||||
echo $usr;
|
||||
echo "<br/>";
|
||||
}
|
||||
echo mysql_result($sqlResult, 0, "NUMBER") or die(mysql_error());
|
||||
?>
|
12
php/fileUploader.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
$upload = $_FILES["attachButton"];
|
||||
if (!empty($_FILES["attachButton"])){
|
||||
$v = $_FILES["attachButton"];
|
||||
$n = $v["name"];
|
||||
$r = $v["tmp_name"];
|
||||
|
||||
$f = dirname(__FILE__);
|
||||
|
||||
move_uploaded_file($r, "$f/$n");
|
||||
}
|
||||
?>
|
16
php/postMessage.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
if (!empty($_GET["message"])) {
|
||||
$conn = mysql_connect("localhost", "root", "N00b0r1337") or die(mysql_error());
|
||||
$db = mysql_select_db("project") or die(mysql_error);
|
||||
|
||||
$usr = $_GET["username"];
|
||||
//$posttime = $_GET["time"];
|
||||
$posttime = date("Y-m-d H:i:s");
|
||||
$content = $_GET["message"];
|
||||
$sqlQuery = "INSERT INTO messages (usr, time, content) VALUES ('".$usr."', '".$posttime."', '".$content."')";
|
||||
$sqlResult = mysql_query($sqlQuery, $conn) or die(mysql_error());
|
||||
echo '{"requestValid":"true"}'; //Must work to reach here or else there will be no answer... hopefully
|
||||
} else {
|
||||
echo '{"requestValid":"false"}';
|
||||
}
|
||||
?>
|
14
php/registerUser.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
if (!empty($_GET["username"])) {
|
||||
$conn = mysql_connect("localhost", "root", "N00b0r1337") or die(mysql_error());
|
||||
$db = mysql_select_db("project") or die(mysql_error);
|
||||
|
||||
$usr = $_GET["username"];
|
||||
|
||||
$sqlQuery = "INSERT INTO users (usr) VALUES ('".$usr."')";
|
||||
$sqlResult = mysql_query($sqlQuery, $conn) or die(mysql_error());
|
||||
echo '{"requestValid":"true"}'; //Must work to reach here or else there will be no answer... hopefully
|
||||
} else {
|
||||
echo '{"requestValid":"false"}';
|
||||
}
|
||||
?>
|
28
php/usersList.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
if (!empty($_GET["usr"])) {
|
||||
$conn = mysql_connect("localhost", "root", "N00b0r1337") or die(mysql_error());
|
||||
$db = mysql_select_db("project") or die(mysql_error);
|
||||
|
||||
$sqlQuery = "SELECT id, usr FROM users WHERE usr = '".$_GET["usr"]."'";
|
||||
|
||||
$sqlResult = mysql_query($sqlQuery, $conn) or die(mysql_error());
|
||||
|
||||
$sqlArr = array();
|
||||
$sqlCounter = 0;
|
||||
|
||||
while($row = mysql_fetch_array($sqlResult)) {
|
||||
$sqlRow = array();
|
||||
|
||||
$sqlRow["id"] = $row["id"];
|
||||
$sqlRow["usr"] = $row["usr"];
|
||||
|
||||
$sqlArr[$sqlCounter] = $sqlRow;
|
||||
$sqlCounter++;
|
||||
}
|
||||
if ($sqlCounter > 0 ){
|
||||
echo '{"userExists":true}';
|
||||
} else {
|
||||
echo '{"userExists":false}';
|
||||
}
|
||||
}
|
||||
?>
|
65
project.sql
Normal file
|
@ -0,0 +1,65 @@
|
|||
-- phpMyAdmin SQL Dump
|
||||
-- version 3.5.2.2
|
||||
-- http://www.phpmyadmin.net
|
||||
--
|
||||
-- Servidor: localhost
|
||||
-- Tiempo de generación: 10-12-2013 a las 01:35:24
|
||||
-- Versión del servidor: 5.5.27
|
||||
-- Versión de PHP: 5.4.7
|
||||
|
||||
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
|
||||
--
|
||||
-- Base de datos: `project`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Estructura de tabla para la tabla `messages`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `messages` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`usr` text NOT NULL,
|
||||
`time` date NOT NULL,
|
||||
`content` text NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
|
||||
|
||||
--
|
||||
-- Volcado de datos para la tabla `messages`
|
||||
--
|
||||
|
||||
INSERT INTO `messages` (`id`, `usr`, `time`, `content`) VALUES
|
||||
(1, 'admin', '1970-01-02', 'Welcome to TradeChat!');
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Estructura de tabla para la tabla `users`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `users` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`usr` text NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
|
||||
|
||||
--
|
||||
-- Volcado de datos para la tabla `users`
|
||||
--
|
||||
|
||||
INSERT INTO `users` (`id`, `usr`) VALUES
|
||||
(1, 'admin');
|
||||
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|