clean external js lib to only use the minifyed version
| @ -1,5 +0,0 @@ | |||||||
| <?php include_once 'header.php';?>
 |  | ||||||
| 
 |  | ||||||
| <h1>pagina de include</h1> |  | ||||||
| 
 |  | ||||||
| <?php include_once 'footer.php';?>
 |  | ||||||
| @ -1,3 +0,0 @@ | |||||||
| [Trash Info] |  | ||||||
| Path=included.php |  | ||||||
| DeletionDate=2017-09-05T19:02:02 |  | ||||||
| @ -1,3 +0,0 @@ | |||||||
| [Trash Info] |  | ||||||
| Path=sidebar.html |  | ||||||
| DeletionDate=2017-09-05T18:56:27 |  | ||||||
							
								
								
									
										0
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										
											BIN
										
									
								
								.htaccess.swp
									
									
									
									
									
								
							
							
						
						
							
								
								
									
										14
									
								
								CONTRIBUTING.md
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,14 @@ | |||||||
|  | # How to Contribute | ||||||
|  | 
 | ||||||
|  | ## Pull Requests | ||||||
|  | 
 | ||||||
|  | 1. Fork the Slim Skeleton repository | ||||||
|  | 2. Create a new branch for each feature or improvement | ||||||
|  | 3. Send a pull request from each feature branch to the **3.x** branch | ||||||
|  | 
 | ||||||
|  | It is very important to separate new features or improvements into separate feature branches, and to send a | ||||||
|  | pull request for each branch. This allows us to review and pull in new features or improvements individually. | ||||||
|  | 
 | ||||||
|  | ## Style Guide | ||||||
|  | 
 | ||||||
|  | All pull requests must adhere to the [PSR-2 standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md). | ||||||
							
								
								
									
										26
									
								
								README.md
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,26 @@ | |||||||
|  | # Slim Framework 3 Skeleton Application | ||||||
|  | 
 | ||||||
|  | Use this skeleton application to quickly setup and start working on a new Slim Framework 3 application. This application uses the latest Slim 3 with the PHP-View template renderer. It also uses the Monolog logger. | ||||||
|  | 
 | ||||||
|  | This skeleton application was built for Composer. This makes setting up a new Slim Framework application quick and easy. | ||||||
|  | 
 | ||||||
|  | ## Install the Application | ||||||
|  | 
 | ||||||
|  | Run this command from the directory in which you want to install your new Slim Framework application. | ||||||
|  | 
 | ||||||
|  |     php composer.phar create-project slim/slim-skeleton [my-app-name] | ||||||
|  | 
 | ||||||
|  | Replace `[my-app-name]` with the desired directory name for your new application. You'll want to: | ||||||
|  | 
 | ||||||
|  | * Point your virtual host document root to your new application's `public/` directory. | ||||||
|  | * Ensure `logs/` is web writeable. | ||||||
|  | 
 | ||||||
|  | To run the application in development, you can also run this command.  | ||||||
|  | 
 | ||||||
|  | 	php composer.phar start | ||||||
|  | 
 | ||||||
|  | Run this command to run the test suite | ||||||
|  | 
 | ||||||
|  | 	php composer.phar test | ||||||
|  | 
 | ||||||
|  | That's it! Now go build something cool. | ||||||
							
								
								
									
										0
									
								
								api/contact.php
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								api/register.php
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										39
									
								
								composer.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,39 @@ | |||||||
|  | { | ||||||
|  |     "name": "slim/slim-skeleton", | ||||||
|  |     "description": "Groups Geometry and Dynamics, ICM2018 Satellite, Web Project", | ||||||
|  |     "keywords": ["ICM2018", "GGDWorkshop", "Montevideo","Math","Groups","Geometry"], | ||||||
|  |     "homepage": "https://ggdworkshop.cmat.edu.uy", | ||||||
|  |     "license": "GPLv2", | ||||||
|  |     "authors": [ | ||||||
|  |         { | ||||||
|  |             "name": "Germán Correa", | ||||||
|  |             "email": "germanc@cmat.edu.uy", | ||||||
|  |             "homepage": "http://www.cmat.edu.uy" | ||||||
|  |         } | ||||||
|  |     ], | ||||||
|  |     "require": { | ||||||
|  |         "php": ">=5.5.0", | ||||||
|  |         "slim/slim": "^3.1", | ||||||
|  |         "monolog/monolog": "^1.17", | ||||||
|  |         "slim/twig-view": "^2.3", | ||||||
|  |         "google/recaptcha": "^1.1", | ||||||
|  |         "kanellov/slim-twig-flash": "^0.2.0", | ||||||
|  |         "phpmailer/phpmailer": "~6.0" | ||||||
|  |     }, | ||||||
|  |     "require-dev": { | ||||||
|  |         "phpunit/phpunit": ">=4.8 < 6.0" | ||||||
|  |     }, | ||||||
|  |     "autoload-dev": { | ||||||
|  |         "psr-4": { | ||||||
|  |             "Tests\\": "tests/" | ||||||
|  |         } | ||||||
|  |     }, | ||||||
|  |     "config": { | ||||||
|  |         "process-timeout" : 0 | ||||||
|  |     }, | ||||||
|  |     "scripts": { | ||||||
|  |         "start": "php -S localhost:8080 -t public index.php", | ||||||
|  |         "test": "phpunit" | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  | } | ||||||
							
								
								
									
										
											BIN
										
									
								
								db/.db.php.swp
									
									
									
									
									
								
							
							
						
						
							
								
								
									
										0
									
								
								.Trash-1000/files/sidebar.html → db/.schema.lock
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										1
									
								
								db/.~lock.Registro.csv#
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1 @@ | |||||||
|  | ,germanc,AM,10.12.2017 23:23,file:///home/germanc/.config/libreoffice/4; | ||||||
							
								
								
									
										62
									
								
								db/bkp/.bkp.db
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,62 @@ | |||||||
|  | PRAGMA foreign_keys=OFF; | ||||||
|  | BEGIN TRANSACTION; | ||||||
|  | CREATE TABLE Registro | ||||||
|  | ( | ||||||
|  |   id              INTEGER PRIMARY KEY AUTOINCREMENT, | ||||||
|  |   nombre          VARCHAR(50) NOT NULL, | ||||||
|  |   apellido        VARCHAR(50) NOT NULL, | ||||||
|  |   titulo          VARCHAR(50), | ||||||
|  |   afiliacion      VARCHAR(50), | ||||||
|  |   ciudad          VARCHAR(50), | ||||||
|  |   pais            VARCHAR(50), | ||||||
|  |   email           VARCHAR(80) NOT NULL UNIQUE, | ||||||
|  |   fechaLlegada    DATE, | ||||||
|  |   fechaPartida    DATE, | ||||||
|  |   financiacion    BOOLEAN     NOT NULL, | ||||||
|  |   invitado        BOOLEAN     NOT NULL, | ||||||
|  |   cartaInvitacion BOOLEAN     NOT NULL, | ||||||
|  |   roomingPref     VARCHAR(50), | ||||||
|  |   roommate        VARCHAR(50), | ||||||
|  |   fechaRegistro   DATETIME NOT NULL | ||||||
|  | ); | ||||||
|  | INSERT INTO "Registro" VALUES(1,'German','Correa','','','Montevideo','Uruguay','german.correa.balier@gmail.com','','',0,0,0,' | ||||||
|  |           ','German Correa','2017-12-18 18:05:28'); | ||||||
|  | INSERT INTO "Registro" VALUES(2,'German','Correa','','','Montevideo','Uruguay','german.correa.basslier@gmail.com','','',1,1,1,' | ||||||
|  |           ','German Correa','2017-12-18 19:04:38'); | ||||||
|  | INSERT INTO "Registro" VALUES(3,'German','Correa','','','Montevideo','Uruguay','gaaerman.correa.balier@gmail.com','','',0,0,1,' | ||||||
|  |           ','German Correa','2017-12-18 19:05:15'); | ||||||
|  | INSERT INTO "Registro" VALUES(4,'German','Correa','','','Montevideo','Uruguay','aagerman.correa.balier@gmail.com','','',1,0,1,' | ||||||
|  |           ','German Correa','2017-12-18 19:06:34'); | ||||||
|  | CREATE TABLE Speakers | ||||||
|  | ( | ||||||
|  |   id              INTEGER PRIMARY KEY AUTOINCREMENT, | ||||||
|  |   nombre          VARCHAR(50) NOT NULL, | ||||||
|  |   apellido        VARCHAR(50) NOT NULL, | ||||||
|  |   afiliacion      VARCHAR(50) NOT NULL, | ||||||
|  |   foto            VARCHAR(200), | ||||||
|  |   web             VARCHAR(200), | ||||||
|  |   confirmado      BOOLEAN | ||||||
|  | ); | ||||||
|  | INSERT INTO "Speakers" VALUES(1,'Jairo','Bochi','Universidad Católica de Chile','img/speakers/jariobochi.jpg','http://www.mat.uc.cl/~jairo.bochi/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(2,'Christian','Bonatti','Université de Bourgogne','img/speakers/cbonatti.jpg','http://bonatti.perso.math.cnrs.fr/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(3,'Keith','Burns','Northwestern University','img/speakers/kburns.jpg','http://www.math.northwestern.edu/~burns/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(4,'Yaiza','Canzani','University of North Carolina at Chapel Hill','img/speakers/ycanzani.jpg','http://canzani.web.unc.edu/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(5,'Gonzalo','Contreras','CIMAT, Guanajuato','img/speakers/gcontreras.jpg','http://www.cimat.mx/~gonzalo/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(6,'Adriana','da Luz','Universidad de la República','img/speakers/adaluz.jpg','',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(7,'Colin','Guillarmou','Université Paris-Sud','img/speakers/cguillarmou.jpg','https://www.math.u-psud.fr/~guillarmou/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(8,'Ursula','Hamenstädt','Universität Bonn','img/speakers/uhamenstadt.jpg','http://www.math.uni-bonn.de/people/ursula/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(9,'Thomas','Koberda','University of Virginia','img/speakers/tkoberda.jpg','http://faculty.virginia.edu/Koberda/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(10,'Andrés','Koropecki','Universidade Federal Fluminense','img/speakers/akoropecki.jpg','http://www.professores.uff.br/koro/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(11,'François','Ledrappier','University of Notre Dame','img/speakers/fledrappier.jpg','http://math.nd.edu/people/faculty/francois-ledrappier/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(12,'Yash','Lodha','Cornell University','img/speakers/ylodha.jpg','http://www.math.cornell.edu/m/People/bynetid/yl763',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(13,'Leonardo','Macarini','Universidade Federal do Rio de Janeiro','img/speakers/lmacarini.jpg','http://www.im.ufrj.br/visualizarDocente.php?idDepartamento=3&idDocente=28',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(14,'Kathryn','Mann','Brown University','img/speakers/kmann.jpg','http://www.math.brown.edu/~mann/index.html',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(15,'Andrés','Navas','Universidad de Santiago de Chile','img/speakers/anavas.jpg','http://www.mat.usach.cl/index.php/2012-12-19-12-50-19/academicos/75-andres-navas-flores',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(16,'Jean-François','Quint','Université Bordeaux I','img/speakers/jfquint.jpg','https://www.math.u-bordeaux.fr/~jquint/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(17,'Andrés','Sambarino','Université Paris VI','img/speakers/asambarino.jpg','https://webusers.imj-prg.fr/~andres.sambarino/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(18,'Pablo','Shmerkin','Universidad Torcuato Di Tella','img/speakers/pshmerkin.jpg','http://www.utdt.edu/profesores/pshmerkin',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(19,'Maxime','Wolff','Université Paris VI','img/speakers/mwolff.jpg','https://webusers.imj-prg.fr/~maxime.wolff/',1); | ||||||
|  | DELETE FROM sqlite_sequence; | ||||||
|  | INSERT INTO "sqlite_sequence" VALUES('Speakers',19); | ||||||
|  | INSERT INTO "sqlite_sequence" VALUES('Registro',4); | ||||||
|  | COMMIT; | ||||||
							
								
								
									
										62
									
								
								db/bkp/2017-12-18.bkp.db
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,62 @@ | |||||||
|  | PRAGMA foreign_keys=OFF; | ||||||
|  | BEGIN TRANSACTION; | ||||||
|  | CREATE TABLE Registro | ||||||
|  | ( | ||||||
|  |   id              INTEGER PRIMARY KEY AUTOINCREMENT, | ||||||
|  |   nombre          VARCHAR(50) NOT NULL, | ||||||
|  |   apellido        VARCHAR(50) NOT NULL, | ||||||
|  |   titulo          VARCHAR(50), | ||||||
|  |   afiliacion      VARCHAR(50), | ||||||
|  |   ciudad          VARCHAR(50), | ||||||
|  |   pais            VARCHAR(50), | ||||||
|  |   email           VARCHAR(80) NOT NULL UNIQUE, | ||||||
|  |   fechaLlegada    DATE, | ||||||
|  |   fechaPartida    DATE, | ||||||
|  |   financiacion    BOOLEAN     NOT NULL, | ||||||
|  |   invitado        BOOLEAN     NOT NULL, | ||||||
|  |   cartaInvitacion BOOLEAN     NOT NULL, | ||||||
|  |   roomingPref     VARCHAR(50), | ||||||
|  |   roommate        VARCHAR(50), | ||||||
|  |   fechaRegistro   DATETIME NOT NULL | ||||||
|  | ); | ||||||
|  | INSERT INTO "Registro" VALUES(1,'German','Correa','','','Montevideo','Uruguay','german.correa.balier@gmail.com','','',0,0,0,' | ||||||
|  |           ','German Correa','2017-12-18 18:05:28'); | ||||||
|  | INSERT INTO "Registro" VALUES(2,'German','Correa','','','Montevideo','Uruguay','german.correa.basslier@gmail.com','','',1,1,1,' | ||||||
|  |           ','German Correa','2017-12-18 19:04:38'); | ||||||
|  | INSERT INTO "Registro" VALUES(3,'German','Correa','','','Montevideo','Uruguay','gaaerman.correa.balier@gmail.com','','',0,0,1,' | ||||||
|  |           ','German Correa','2017-12-18 19:05:15'); | ||||||
|  | INSERT INTO "Registro" VALUES(4,'German','Correa','','','Montevideo','Uruguay','aagerman.correa.balier@gmail.com','','',1,0,1,' | ||||||
|  |           ','German Correa','2017-12-18 19:06:34'); | ||||||
|  | CREATE TABLE Speakers | ||||||
|  | ( | ||||||
|  |   id              INTEGER PRIMARY KEY AUTOINCREMENT, | ||||||
|  |   nombre          VARCHAR(50) NOT NULL, | ||||||
|  |   apellido        VARCHAR(50) NOT NULL, | ||||||
|  |   afiliacion      VARCHAR(50) NOT NULL, | ||||||
|  |   foto            VARCHAR(200), | ||||||
|  |   web             VARCHAR(200), | ||||||
|  |   confirmado      BOOLEAN | ||||||
|  | ); | ||||||
|  | INSERT INTO "Speakers" VALUES(1,'Jairo','Bochi','Universidad Católica de Chile','img/speakers/jariobochi.jpg','http://www.mat.uc.cl/~jairo.bochi/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(2,'Christian','Bonatti','Université de Bourgogne','img/speakers/cbonatti.jpg','http://bonatti.perso.math.cnrs.fr/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(3,'Keith','Burns','Northwestern University','img/speakers/kburns.jpg','http://www.math.northwestern.edu/~burns/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(4,'Yaiza','Canzani','University of North Carolina at Chapel Hill','img/speakers/ycanzani.jpg','http://canzani.web.unc.edu/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(5,'Gonzalo','Contreras','CIMAT, Guanajuato','img/speakers/gcontreras.jpg','http://www.cimat.mx/~gonzalo/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(6,'Adriana','da Luz','Universidad de la República','img/speakers/adaluz.jpg','',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(7,'Colin','Guillarmou','Université Paris-Sud','img/speakers/cguillarmou.jpg','https://www.math.u-psud.fr/~guillarmou/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(8,'Ursula','Hamenstädt','Universität Bonn','img/speakers/uhamenstadt.jpg','http://www.math.uni-bonn.de/people/ursula/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(9,'Thomas','Koberda','University of Virginia','img/speakers/tkoberda.jpg','http://faculty.virginia.edu/Koberda/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(10,'Andrés','Koropecki','Universidade Federal Fluminense','img/speakers/akoropecki.jpg','http://www.professores.uff.br/koro/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(11,'François','Ledrappier','University of Notre Dame','img/speakers/fledrappier.jpg','http://math.nd.edu/people/faculty/francois-ledrappier/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(12,'Yash','Lodha','Cornell University','img/speakers/ylodha.jpg','http://www.math.cornell.edu/m/People/bynetid/yl763',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(13,'Leonardo','Macarini','Universidade Federal do Rio de Janeiro','img/speakers/lmacarini.jpg','http://www.im.ufrj.br/visualizarDocente.php?idDepartamento=3&idDocente=28',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(14,'Kathryn','Mann','Brown University','img/speakers/kmann.jpg','http://www.math.brown.edu/~mann/index.html',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(15,'Andrés','Navas','Universidad de Santiago de Chile','img/speakers/anavas.jpg','http://www.mat.usach.cl/index.php/2012-12-19-12-50-19/academicos/75-andres-navas-flores',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(16,'Jean-François','Quint','Université Bordeaux I','img/speakers/jfquint.jpg','https://www.math.u-bordeaux.fr/~jquint/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(17,'Andrés','Sambarino','Université Paris VI','img/speakers/asambarino.jpg','https://webusers.imj-prg.fr/~andres.sambarino/',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(18,'Pablo','Shmerkin','Universidad Torcuato Di Tella','img/speakers/pshmerkin.jpg','http://www.utdt.edu/profesores/pshmerkin',1); | ||||||
|  | INSERT INTO "Speakers" VALUES(19,'Maxime','Wolff','Université Paris VI','img/speakers/mwolff.jpg','https://webusers.imj-prg.fr/~maxime.wolff/',1); | ||||||
|  | DELETE FROM sqlite_sequence; | ||||||
|  | INSERT INTO "sqlite_sequence" VALUES('Speakers',19); | ||||||
|  | INSERT INTO "sqlite_sequence" VALUES('Registro',4); | ||||||
|  | COMMIT; | ||||||
							
								
								
									
										0
									
								
								db/ggdworkshop.db
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								db/schema.sql
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										18
									
								
								docker-compose.yml
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,18 @@ | |||||||
|  | version: '2' | ||||||
|  | 
 | ||||||
|  | volumes: | ||||||
|  |     logs: | ||||||
|  |         driver: local | ||||||
|  | 
 | ||||||
|  | services: | ||||||
|  |     slim: | ||||||
|  |         image: php:7-alpine | ||||||
|  |         working_dir: /var/www | ||||||
|  |         command: php -S 0.0.0.0:8080 -t public public/index.php | ||||||
|  |         environment: | ||||||
|  |             docker: "true" | ||||||
|  |         ports: | ||||||
|  |             - 8080:8080 | ||||||
|  |         volumes: | ||||||
|  |             - .:/var/www | ||||||
|  |             - logs:/var/www/logs | ||||||
							
								
								
									
										1
									
								
								logs/README.md
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1 @@ | |||||||
|  | Your Slim Framework application's log files will be written to this directory. | ||||||
							
								
								
									
										162
									
								
								logs/app.log
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,162 @@ | |||||||
|  | [2018-05-01 15:01:08] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"b87ce20"} | ||||||
|  | [2018-05-01 15:01:17] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"f65bb35"} | ||||||
|  | [2018-05-01 15:01:54] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"86167df"} | ||||||
|  | [2018-05-01 15:02:05] slim-app.INFO: GDDWorkshop '/invitedspeakers' route [] {"uid":"107b8e7"} | ||||||
|  | [2018-05-01 15:02:10] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"c896c1e"} | ||||||
|  | [2018-05-01 15:02:22] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"1746f8f"} | ||||||
|  | [2018-05-01 15:05:32] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"1778b34"} | ||||||
|  | [2018-05-01 15:06:50] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"9c566c1"} | ||||||
|  | [2018-05-01 15:06:50] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"8e420a8"} | ||||||
|  | [2018-05-01 15:07:24] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"9287670"} | ||||||
|  | [2018-05-01 15:08:36] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"589b436"} | ||||||
|  | [2018-05-01 15:32:49] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"5293b34"} | ||||||
|  | [2018-05-01 15:32:52] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"b6e540c"} | ||||||
|  | [2018-05-01 15:32:58] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"02e7c9e"} | ||||||
|  | [2018-05-01 15:32:59] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"c2846ab"} | ||||||
|  | [2018-05-01 15:33:50] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"f6268c4"} | ||||||
|  | [2018-05-01 15:33:51] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"45ee33c"} | ||||||
|  | [2018-05-01 15:34:00] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"c12faf6"} | ||||||
|  | [2018-05-01 15:36:11] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"17c5bc5"} | ||||||
|  | [2018-05-01 15:36:11] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"09dbe8f"} | ||||||
|  | [2018-05-01 15:45:37] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"bc02db5"} | ||||||
|  | [2018-05-01 15:45:53] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"fe3f398"} | ||||||
|  | [2018-05-01 15:46:23] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"cd14c54"} | ||||||
|  | [2018-05-01 15:47:00] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"d105287"} | ||||||
|  | [2018-05-01 15:47:46] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"683608e"} | ||||||
|  | [2018-05-01 15:47:48] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"0ca042b"} | ||||||
|  | [2018-05-01 15:48:16] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"c7faae7"} | ||||||
|  | [2018-05-01 15:49:54] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"deb0d42"} | ||||||
|  | [2018-05-01 15:50:11] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"053501c"} | ||||||
|  | [2018-05-01 15:50:38] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"1df5654"} | ||||||
|  | [2018-05-01 15:50:56] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"4c0811c"} | ||||||
|  | [2018-05-01 15:51:22] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"9bf8e58"} | ||||||
|  | [2018-05-01 15:51:30] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"2fb4d3e"} | ||||||
|  | [2018-05-01 15:55:15] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"87a4f44"} | ||||||
|  | [2018-05-01 15:55:20] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"4176193"} | ||||||
|  | [2018-05-01 15:55:56] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"a80f27a"} | ||||||
|  | [2018-05-01 15:55:56] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"fa7a04a"} | ||||||
|  | [2018-05-01 15:57:04] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"c7d20e3"} | ||||||
|  | [2018-05-01 15:57:16] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"51c7538"} | ||||||
|  | [2018-05-01 15:57:52] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"49b46b4"} | ||||||
|  | [2018-05-01 15:58:03] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"53ff01e"} | ||||||
|  | [2018-05-01 15:58:19] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"a3a7a0a"} | ||||||
|  | [2018-05-01 15:58:54] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"2dfead3"} | ||||||
|  | [2018-05-01 15:59:07] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"7680725"} | ||||||
|  | [2018-05-01 16:05:39] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"ba9704a"} | ||||||
|  | [2018-05-01 16:06:08] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"a44c481"} | ||||||
|  | [2018-05-01 16:07:03] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"f0a1e19"} | ||||||
|  | [2018-05-01 16:17:48] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"23e246a"} | ||||||
|  | [2018-05-01 16:22:23] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"66a1762"} | ||||||
|  | [2018-05-01 16:34:08] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"550c558"} | ||||||
|  | [2018-05-01 16:34:26] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"85b1c3c"} | ||||||
|  | [2018-05-01 16:34:42] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"36ef37a"} | ||||||
|  | [2018-05-01 16:34:58] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"2591ced"} | ||||||
|  | [2018-05-01 16:35:39] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"0fc452f"} | ||||||
|  | [2018-05-01 16:35:59] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"fd4e516"} | ||||||
|  | [2018-05-01 16:36:13] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"1f1682e"} | ||||||
|  | [2018-05-01 16:36:30] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"5cff436"} | ||||||
|  | [2018-05-01 16:36:53] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"f3d4386"} | ||||||
|  | [2018-05-01 16:37:22] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"d405171"} | ||||||
|  | [2018-05-01 16:37:43] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"a80a8a6"} | ||||||
|  | [2018-05-01 16:38:25] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"e18bd77"} | ||||||
|  | [2018-05-01 16:38:53] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"8ef3efe"} | ||||||
|  | [2018-05-01 16:40:41] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"a69ad5f"} | ||||||
|  | [2018-05-01 16:40:51] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"cee2aa9"} | ||||||
|  | [2018-05-01 16:41:52] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"4d0c399"} | ||||||
|  | [2018-05-01 16:42:27] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"9c3548d"} | ||||||
|  | [2018-05-01 16:43:24] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"0227da4"} | ||||||
|  | [2018-05-01 16:53:14] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"9a46873"} | ||||||
|  | [2018-05-01 16:53:41] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"e825160"} | ||||||
|  | [2018-05-01 16:54:31] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"8ed8ef9"} | ||||||
|  | [2018-05-01 16:54:52] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"65a21eb"} | ||||||
|  | [2018-05-01 16:55:29] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"d0cf7e3"} | ||||||
|  | [2018-05-01 16:57:45] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"f5f6043"} | ||||||
|  | [2018-05-01 16:59:33] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"7426553"} | ||||||
|  | [2018-05-01 17:01:29] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"7f2fff7"} | ||||||
|  | [2018-05-01 17:02:01] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"4d0299d"} | ||||||
|  | [2018-05-01 17:02:21] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"0990ed5"} | ||||||
|  | [2018-05-01 17:03:48] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"9588490"} | ||||||
|  | [2018-05-01 17:05:22] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"fd27209"} | ||||||
|  | [2018-05-01 17:13:16] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"1a8f38e"} | ||||||
|  | [2018-05-01 17:14:09] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"43f4688"} | ||||||
|  | [2018-05-01 17:14:28] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"b460e72"} | ||||||
|  | [2018-05-01 17:16:44] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"5c8b070"} | ||||||
|  | [2018-05-01 17:17:31] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"526af46"} | ||||||
|  | [2018-05-01 17:17:38] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"750cf29"} | ||||||
|  | [2018-05-01 17:20:34] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"7ec5ae5"} | ||||||
|  | [2018-05-01 17:21:17] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"6090d55"} | ||||||
|  | [2018-05-01 17:21:55] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"9e8ad97"} | ||||||
|  | [2018-05-01 17:24:36] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"91f1c38"} | ||||||
|  | [2018-05-01 17:24:54] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"00be826"} | ||||||
|  | [2018-05-01 17:25:14] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"0488afb"} | ||||||
|  | [2018-05-01 17:28:09] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"7bde9b0"} | ||||||
|  | [2018-06-01 18:44:17] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"08ebccc"} | ||||||
|  | [2018-06-01 18:44:21] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"e7b80cd"} | ||||||
|  | [2018-06-01 18:46:50] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"d75db68"} | ||||||
|  | [2018-06-01 18:49:58] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"280dc54"} | ||||||
|  | [2018-06-01 18:50:26] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"c75568e"} | ||||||
|  | [2018-06-01 18:55:31] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"e487dc8"} | ||||||
|  | [2018-06-01 18:57:15] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"3b0ca4f"} | ||||||
|  | [2018-06-01 18:57:56] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"b94b7eb"} | ||||||
|  | [2018-06-01 19:02:02] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"bec165b"} | ||||||
|  | [2018-06-01 19:11:49] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"f0a3ff1"} | ||||||
|  | [2018-06-01 19:13:40] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"6b9401e"} | ||||||
|  | [2018-06-02 17:46:58] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"12aa7c1"} | ||||||
|  | [2018-06-02 18:16:14] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"0a58294"} | ||||||
|  | [2018-06-02 18:22:36] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"3e86f9f"} | ||||||
|  | [2018-06-02 18:25:50] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"7d72300"} | ||||||
|  | [2018-06-02 18:26:04] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"f05bdc4"} | ||||||
|  | [2018-06-02 18:26:13] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"ca765fa"} | ||||||
|  | [2018-06-02 18:26:18] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"613a126"} | ||||||
|  | [2018-06-02 18:27:35] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"b20f744"} | ||||||
|  | [2018-06-02 18:27:58] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"6555a02"} | ||||||
|  | [2018-06-02 18:32:46] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"bf128f2"} | ||||||
|  | [2018-06-02 18:33:06] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"2e036e6"} | ||||||
|  | [2018-06-02 18:33:48] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"2bd6161"} | ||||||
|  | [2018-06-02 18:34:08] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"4ef9302"} | ||||||
|  | [2018-06-02 18:34:51] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"49893a0"} | ||||||
|  | [2018-06-02 18:35:00] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"cfd9df2"} | ||||||
|  | [2018-06-02 18:35:08] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"6226e86"} | ||||||
|  | [2018-06-02 18:36:36] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"e1ef751"} | ||||||
|  | [2018-06-02 18:36:42] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"c2d76ed"} | ||||||
|  | [2018-06-02 18:36:54] slim-app.INFO: GDDWorkshop '/registrtion' route [] {"uid":"0086175"} | ||||||
|  | [2018-07-17 18:51:57] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"bbe1259"} | ||||||
|  | [2018-07-17 18:51:59] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"9855241"} | ||||||
|  | [2018-07-17 18:52:03] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"6476620"} | ||||||
|  | [2018-07-17 18:55:34] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"a0ed52f"} | ||||||
|  | [2018-07-17 18:59:28] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"6e86c3f"} | ||||||
|  | [2018-07-17 19:01:15] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"bc900e8"} | ||||||
|  | [2018-07-17 19:03:56] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"24b5c72"} | ||||||
|  | [2018-07-17 19:05:33] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"755342e"} | ||||||
|  | [2018-07-17 19:06:17] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"b1f7c34"} | ||||||
|  | [2018-07-17 19:08:06] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"28bb570"} | ||||||
|  | [2018-07-17 19:09:46] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"5b94e30"} | ||||||
|  | [2018-07-17 19:11:56] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"02506dd"} | ||||||
|  | [2018-07-17 19:12:57] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"c068d6f"} | ||||||
|  | [2018-07-17 19:13:28] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"ba67327"} | ||||||
|  | [2018-07-17 19:17:09] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"7684f27"} | ||||||
|  | [2018-07-17 19:17:35] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"7be1569"} | ||||||
|  | [2018-07-17 19:18:14] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"970a2a4"} | ||||||
|  | [2018-07-17 19:21:37] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"9b80829"} | ||||||
|  | [2018-07-17 19:23:01] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"48cb2af"} | ||||||
|  | [2018-07-17 19:40:14] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"33518a9"} | ||||||
|  | [2018-07-17 19:41:26] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"a93b191"} | ||||||
|  | [2018-07-17 19:42:31] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"1b592c3"} | ||||||
|  | [2018-07-17 19:53:37] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"0c3eb76"} | ||||||
|  | [2018-07-17 20:46:43] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"ba3eb25"} | ||||||
|  | [2018-07-17 20:46:47] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"462a341"} | ||||||
|  | [2018-07-17 20:49:51] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"e0a5111"} | ||||||
|  | [2018-07-17 20:51:13] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"3f73294"} | ||||||
|  | [2018-07-17 20:51:36] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"8c6384b"} | ||||||
|  | [2018-07-17 20:51:38] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"3ab3135"} | ||||||
|  | [2018-07-17 20:54:06] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"590a8b1"} | ||||||
|  | [2018-07-23 15:03:12] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"d8be037"} | ||||||
|  | [2018-07-23 15:03:15] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"f6c5d7c"} | ||||||
|  | [2018-07-23 15:05:29] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"d94c464"} | ||||||
|  | [2018-07-23 15:06:35] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"a6df2d4"} | ||||||
|  | [2018-07-23 15:09:03] slim-app.INFO: GDDWorkshop '/practicalinfo' route [] {"uid":"7076393"} | ||||||
|  | [2018-07-23 15:46:28] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"e5ebbf1"} | ||||||
|  | [2018-07-23 15:47:29] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"ed65655"} | ||||||
|  | [2018-07-23 15:48:00] slim-app.INFO: GDDWorkshop '/invitedspeakers' route [] {"uid":"837082a"} | ||||||
|  | [2018-07-23 15:48:34] slim-app.INFO: GDDWorkshop '/program' route [] {"uid":"89fe618"} | ||||||
|  | [2024-02-03 21:51:05] slim-app.INFO: GDDWorkshop '/' route [] {"uid":"7fe4582"} | ||||||
							
								
								
									
										7
									
								
								phpunit.xml
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,7 @@ | |||||||
|  | <phpunit bootstrap="vendor/autoload.php"> | ||||||
|  |     <testsuites> | ||||||
|  |         <testsuite name="SlimSkeleton"> | ||||||
|  |             <directory>tests</directory> | ||||||
|  |         </testsuite> | ||||||
|  |     </testsuites> | ||||||
|  | </phpunit> | ||||||
							
								
								
									
										
											BIN
										
									
								
								public/favicon.ico
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 1.1 KiB | 
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.eot → public/fonts/glyphicons-halflings-regular.eot
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.svg → public/fonts/glyphicons-halflings-regular.svg
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						| Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB | 
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.ttf → public/fonts/glyphicons-halflings-regular.ttf
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff → public/fonts/glyphicons-halflings-regular.woff
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff2 → public/fonts/glyphicons-halflings-regular.woff2
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										6
									
								
								public/htaccess
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,6 @@ | |||||||
|  | 
 | ||||||
|  | RewriteEngine on | ||||||
|  | RewriteBase / | ||||||
|  | RewriteCond %{REQUEST_FILENAME} !-d | ||||||
|  | RewriteCond %{REQUEST_FILENAME} !-f | ||||||
|  | RewriteRule ^ index.php [QSA,L] | ||||||
							
								
								
									
										6425
									
								
								public/img/Workshop-GGD2018-afiche.pdf
									
									
									
									
									
										Executable file
									
								
							
							
						
						
							
								
								
									
										
											BIN
										
									
								
								public/img/afiche.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 250 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/afichebkp2.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 268 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/aulario.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 94 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/fing-edificio-aerea.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 31 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/fing-edificio.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 29 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/headerpic2.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 488 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/intercityhotel.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 77 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/cmat.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 3.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/csic.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 50 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/f100.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 29 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/fing.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 16 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/icm_satellite.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 94 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/imerl.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 5.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/logo-nrf-trans.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 47 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/logo-sstf-trans.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 16 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/logo_nrf.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 40 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/nsflogo.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 1.4 MiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/logos/udelar.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 487 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/img/rmane.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 131 KiB | 
							
								
								
									
										33
									
								
								public/index.php
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,33 @@ | |||||||
|  | <?php | ||||||
|  | if (PHP_SAPI == 'cli-server') { | ||||||
|  |     // To help the built-in PHP dev server, check if the request was actually for
 | ||||||
|  |     // something which should probably be served as a static file
 | ||||||
|  |     $url  = parse_url($_SERVER['REQUEST_URI']); | ||||||
|  |     $file = __DIR__ . $url['path']; | ||||||
|  |     if (is_file($file)) { | ||||||
|  |         return false; | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | require __DIR__ . '/../vendor/autoload.php'; | ||||||
|  | 
 | ||||||
|  | session_start(); | ||||||
|  | 
 | ||||||
|  | // Instantiate the app
 | ||||||
|  | $settings = require __DIR__ . '/../src/settings.php'; | ||||||
|  | $app = new \Slim\App($settings); | ||||||
|  | 
 | ||||||
|  | // Set up dependencies
 | ||||||
|  | require __DIR__ . '/../src/dependencies.php'; | ||||||
|  | 
 | ||||||
|  | // Register middleware
 | ||||||
|  | require __DIR__ . '/../src/middleware.php'; | ||||||
|  | 
 | ||||||
|  | // Register routes
 | ||||||
|  | require __DIR__ . '/../src/routes.php'; | ||||||
|  | 
 | ||||||
|  | // Require DB
 | ||||||
|  | require __DIR__.'/../db/db.php'; | ||||||
|  | 
 | ||||||
|  | // Run app
 | ||||||
|  | $app->run(); | ||||||
							
								
								
									
										69
									
								
								public/js/app.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,69 @@ | |||||||
|  | function routeMenu(){ | ||||||
|  | 	var ruta = window.location.pathname.split(".")[0]; | ||||||
|  | 	$("ul#menu li").removeClass("active"); | ||||||
|  | 	switch(ruta){ | ||||||
|  | 		case "/": | ||||||
|  | 			$("li#home").addClass("active"); | ||||||
|  | 			break; | ||||||
|  | 		case "/program": | ||||||
|  | 			$("li#program").addClass("active"); | ||||||
|  | 			break; | ||||||
|  | 		case "/committees": | ||||||
|  | 			$("li#committees").addClass("active"); | ||||||
|  | 			break; | ||||||
|  | 		case "/invitedspeakers": | ||||||
|  | 			$("li#invitedspeakers").addClass("active"); | ||||||
|  | 			break; | ||||||
|  | 		case "/registration": | ||||||
|  | 			$("li#registration").addClass("active"); | ||||||
|  | 			break; | ||||||
|  | 		case "/participants": | ||||||
|  | 			$("li#participants").addClass("active"); | ||||||
|  | 			break; | ||||||
|  | 		case "/practicalinfo": | ||||||
|  | 			$("li#practicalinfo").addClass("active"); | ||||||
|  | 			break; | ||||||
|  | 		default: | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  | $(document).ready(function(){ | ||||||
|  | 	routeMenu(); | ||||||
|  | 	var margin = $(".container").css("margin-left"); | ||||||
|  | 	//$("#menu").css("margin-left",margin);
 | ||||||
|  | 
 | ||||||
|  | 	$('#contactform').submit(function(event){ | ||||||
|  |         var fail=false; | ||||||
|  | 		$("#statusmsg").hide(); | ||||||
|  | 		event.preventDefault(); | ||||||
|  | 		if($('#g-recaptcha-response').val() == ""){ | ||||||
|  |             	$("div.g-recaptcha").tooltip({ | ||||||
|  | 				"title":'Marque "No soy un robot"', | ||||||
|  | 				"pacement":"right", | ||||||
|  | 				"trigger":"manual" | ||||||
|  | 			}); | ||||||
|  | 			$("div.g-recaptcha").tooltip("show"); | ||||||
|  | 			fail=true; | ||||||
|  |         } | ||||||
|  |         if(!fail){ | ||||||
|  |             var post = $.post('contact', $(this).serialize()); | ||||||
|  |             post.done(function(data){ | ||||||
|  |                 data = $.parseJSON(data); | ||||||
|  |                 if(data.success){ | ||||||
|  |                     showmsg(data.message,true); | ||||||
|  |                 } | ||||||
|  |                 else{ | ||||||
|  |                     showmsg(data.message,false); | ||||||
|  | 
 | ||||||
|  |                 } | ||||||
|  |                 console.log(data) | ||||||
|  | 
 | ||||||
|  |             }); | ||||||
|  |             post.fail(function(error){ | ||||||
|  |                 console.log(error) | ||||||
|  |             }); | ||||||
|  |         } | ||||||
|  | 	}); | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | }); | ||||||
							
								
								
									
										252
									
								
								public/js/data.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						| @ -0,0 +1,252 @@ | |||||||
|  | var data = { | ||||||
|  |   paises: [     | ||||||
|  |   {text: 'Afghanistan', id: 'AF'},  | ||||||
|  |   {text: 'Åland Islands', id: 'AX'},  | ||||||
|  |   {text: 'Albania', id: 'AL'},  | ||||||
|  |   {text: 'Algeria', id: 'DZ'},  | ||||||
|  |   {text: 'American Samoa', id: 'AS'},  | ||||||
|  |   {text: 'AndorrA', id: 'AD'},  | ||||||
|  |   {text: 'Angola', id: 'AO'},  | ||||||
|  |   {text: 'Anguilla', id: 'AI'},  | ||||||
|  |   {text: 'Antarctica', id: 'AQ'},  | ||||||
|  |   {text: 'Antigua and Barbuda', id: 'AG'},  | ||||||
|  |   {text: 'Argentina', id: 'AR'},  | ||||||
|  |   {text: 'Armenia', id: 'AM'},  | ||||||
|  |   {text: 'Aruba', id: 'AW'},  | ||||||
|  |   {text: 'Australia', id: 'AU'},  | ||||||
|  |   {text: 'Austria', id: 'AT'},  | ||||||
|  |   {text: 'Azerbaijan', id: 'AZ'},  | ||||||
|  |   {text: 'Bahamas', id: 'BS'},  | ||||||
|  |   {text: 'Bahrain', id: 'BH'},  | ||||||
|  |   {text: 'Bangladesh', id: 'BD'},  | ||||||
|  |   {text: 'Barbados', id: 'BB'},  | ||||||
|  |   {text: 'Belarus', id: 'BY'},  | ||||||
|  |   {text: 'Belgium', id: 'BE'},  | ||||||
|  |   {text: 'Belize', id: 'BZ'},  | ||||||
|  |   {text: 'Benin', id: 'BJ'},  | ||||||
|  |   {text: 'Bermuda', id: 'BM'},  | ||||||
|  |   {text: 'Bhutan', id: 'BT'},  | ||||||
|  |   {text: 'Bolivia', id: 'BO'},  | ||||||
|  |   {text: 'Bosnia and Herzegovina', id: 'BA'},  | ||||||
|  |   {text: 'Botswana', id: 'BW'},  | ||||||
|  |   {text: 'Bouvet Island', id: 'BV'},  | ||||||
|  |   {text: 'Brazil', id: 'BR'},  | ||||||
|  |   {text: 'British Indian Ocean Territory', id: 'IO'},  | ||||||
|  |   {text: 'Brunei Darussalam', id: 'BN'},  | ||||||
|  |   {text: 'Bulgaria', id: 'BG'},  | ||||||
|  |   {text: 'Burkina Faso', id: 'BF'},  | ||||||
|  |   {text: 'Burundi', id: 'BI'},  | ||||||
|  |   {text: 'Cambodia', id: 'KH'},  | ||||||
|  |   {text: 'Cameroon', id: 'CM'},  | ||||||
|  |   {text: 'Canada', id: 'CA'},  | ||||||
|  |   {text: 'Cape Verde', id: 'CV'},  | ||||||
|  |   {text: 'Cayman Islands', id: 'KY'},  | ||||||
|  |   {text: 'Central African Republic', id: 'CF'},  | ||||||
|  |   {text: 'Chad', id: 'TD'},  | ||||||
|  |   {text: 'Chile', id: 'CL'},  | ||||||
|  |   {text: 'China', id: 'CN'},  | ||||||
|  |   {text: 'Christmas Island', id: 'CX'},  | ||||||
|  |   {text: 'Cocos (Keeling) Islands', id: 'CC'},  | ||||||
|  |   {text: 'Colombia', id: 'CO'},  | ||||||
|  |   {text: 'Comoros', id: 'KM'},  | ||||||
|  |   {text: 'Congo', id: 'CG'},  | ||||||
|  |   {text: 'Congo, The Democratic Republic of the', id: 'CD'},  | ||||||
|  |   {text: 'Cook Islands', id: 'CK'},  | ||||||
|  |   {text: 'Costa Rica', id: 'CR'},  | ||||||
|  |   {text: 'Cote D\'Ivoire', id: 'CI'},  | ||||||
|  |   {text: 'Croatia', id: 'HR'},  | ||||||
|  |   {text: 'Cuba', id: 'CU'},  | ||||||
|  |   {text: 'Cyprus', id: 'CY'},  | ||||||
|  |   {text: 'Czech Republic', id: 'CZ'},  | ||||||
|  |   {text: 'Denmark', id: 'DK'},  | ||||||
|  |   {text: 'Djibouti', id: 'DJ'},  | ||||||
|  |   {text: 'Dominica', id: 'DM'},  | ||||||
|  |   {text: 'Dominican Republic', id: 'DO'},  | ||||||
|  |   {text: 'Ecuador', id: 'EC'},  | ||||||
|  |   {text: 'Egypt', id: 'EG'},  | ||||||
|  |   {text: 'El Salvador', id: 'SV'},  | ||||||
|  |   {text: 'Equatorial Guinea', id: 'GQ'},  | ||||||
|  |   {text: 'Eritrea', id: 'ER'},  | ||||||
|  |   {text: 'Estonia', id: 'EE'},  | ||||||
|  |   {text: 'Ethiopia', id: 'ET'},  | ||||||
|  |   {text: 'Falkland Islands (Malvinas)', id: 'FK'},  | ||||||
|  |   {text: 'Faroe Islands', id: 'FO'},  | ||||||
|  |   {text: 'Fiji', id: 'FJ'},  | ||||||
|  |   {text: 'Finland', id: 'FI'},  | ||||||
|  |   {text: 'France', id: 'FR'},  | ||||||
|  |   {text: 'French Guiana', id: 'GF'},  | ||||||
|  |   {text: 'French Polynesia', id: 'PF'},  | ||||||
|  |   {text: 'French Southern Territories', id: 'TF'},  | ||||||
|  |   {text: 'Gabon', id: 'GA'},  | ||||||
|  |   {text: 'Gambia', id: 'GM'},  | ||||||
|  |   {text: 'Georgia', id: 'GE'},  | ||||||
|  |   {text: 'Germany', id: 'DE'},  | ||||||
|  |   {text: 'Ghana', id: 'GH'},  | ||||||
|  |   {text: 'Gibraltar', id: 'GI'},  | ||||||
|  |   {text: 'Greece', id: 'GR'},  | ||||||
|  |   {text: 'Greenland', id: 'GL'},  | ||||||
|  |   {text: 'Grenada', id: 'GD'},  | ||||||
|  |   {text: 'Guadeloupe', id: 'GP'},  | ||||||
|  |   {text: 'Guam', id: 'GU'},  | ||||||
|  |   {text: 'Guatemala', id: 'GT'},  | ||||||
|  |   {text: 'Guernsey', id: 'GG'},  | ||||||
|  |   {text: 'Guinea', id: 'GN'},  | ||||||
|  |   {text: 'Guinea-Bissau', id: 'GW'},  | ||||||
|  |   {text: 'Guyana', id: 'GY'},  | ||||||
|  |   {text: 'Haiti', id: 'HT'},  | ||||||
|  |   {text: 'Heard Island and Mcdonald Islands', id: 'HM'},  | ||||||
|  |   {text: 'Holy See (Vatican City State)', id: 'VA'},  | ||||||
|  |   {text: 'Honduras', id: 'HN'},  | ||||||
|  |   {text: 'Hong Kong', id: 'HK'},  | ||||||
|  |   {text: 'Hungary', id: 'HU'},  | ||||||
|  |   {text: 'Iceland', id: 'IS'},  | ||||||
|  |   {text: 'India', id: 'IN'},  | ||||||
|  |   {text: 'Indonesia', id: 'ID'},  | ||||||
|  |   {text: 'Iran, Islamic Republic Of', id: 'IR'},  | ||||||
|  |   {text: 'Iraq', id: 'IQ'},  | ||||||
|  |   {text: 'Ireland', id: 'IE'},  | ||||||
|  |   {text: 'Isle of Man', id: 'IM'},  | ||||||
|  |   {text: 'Israel', id: 'IL'},  | ||||||
|  |   {text: 'Italy', id: 'IT'},  | ||||||
|  |   {text: 'Jamaica', id: 'JM'},  | ||||||
|  |   {text: 'Japan', id: 'JP'},  | ||||||
|  |   {text: 'Jersey', id: 'JE'},  | ||||||
|  |   {text: 'Jordan', id: 'JO'},  | ||||||
|  |   {text: 'Kazakhstan', id: 'KZ'},  | ||||||
|  |   {text: 'Kenya', id: 'KE'},  | ||||||
|  |   {text: 'Kiribati', id: 'KI'},  | ||||||
|  |   {text: 'Korea, Democratic People\'S Republic of', id: 'KP'},  | ||||||
|  |   {text: 'Korea, Republic of', id: 'KR'},  | ||||||
|  |   {text: 'Kuwait', id: 'KW'},  | ||||||
|  |   {text: 'Kyrgyzstan', id: 'KG'},  | ||||||
|  |   {text: 'Lao People\'S Democratic Republic', id: 'LA'},  | ||||||
|  |   {text: 'Latvia', id: 'LV'},  | ||||||
|  |   {text: 'Lebanon', id: 'LB'},  | ||||||
|  |   {text: 'Lesotho', id: 'LS'},  | ||||||
|  |   {text: 'Liberia', id: 'LR'},  | ||||||
|  |   {text: 'Libyan Arab Jamahiriya', id: 'LY'},  | ||||||
|  |   {text: 'Liechtenstein', id: 'LI'},  | ||||||
|  |   {text: 'Lithuania', id: 'LT'},  | ||||||
|  |   {text: 'Luxembourg', id: 'LU'},  | ||||||
|  |   {text: 'Macao', id: 'MO'},  | ||||||
|  |   {text: 'Macedonia, The Former Yugoslav Republic of', id: 'MK'},  | ||||||
|  |   {text: 'Madagascar', id: 'MG'},  | ||||||
|  |   {text: 'Malawi', id: 'MW'},  | ||||||
|  |   {text: 'Malaysia', id: 'MY'},  | ||||||
|  |   {text: 'Maldives', id: 'MV'},  | ||||||
|  |   {text: 'Mali', id: 'ML'},  | ||||||
|  |   {text: 'Malta', id: 'MT'},  | ||||||
|  |   {text: 'Marshall Islands', id: 'MH'},  | ||||||
|  |   {text: 'Martinique', id: 'MQ'},  | ||||||
|  |   {text: 'Mauritania', id: 'MR'},  | ||||||
|  |   {text: 'Mauritius', id: 'MU'},  | ||||||
|  |   {text: 'Mayotte', id: 'YT'},  | ||||||
|  |   {text: 'Mexico', id: 'MX'},  | ||||||
|  |   {text: 'Micronesia, Federated States of', id: 'FM'},  | ||||||
|  |   {text: 'Moldova, Republic of', id: 'MD'},  | ||||||
|  |   {text: 'Monaco', id: 'MC'},  | ||||||
|  |   {text: 'Mongolia', id: 'MN'},  | ||||||
|  |   {text: 'Montserrat', id: 'MS'},  | ||||||
|  |   {text: 'Morocco', id: 'MA'},  | ||||||
|  |   {text: 'Mozambique', id: 'MZ'},  | ||||||
|  |   {text: 'Myanmar', id: 'MM'},  | ||||||
|  |   {text: 'Namibia', id: 'NA'},  | ||||||
|  |   {text: 'Nauru', id: 'NR'},  | ||||||
|  |   {text: 'Nepal', id: 'NP'},  | ||||||
|  |   {text: 'Netherlands', id: 'NL'},  | ||||||
|  |   {text: 'Netherlands Antilles', id: 'AN'},  | ||||||
|  |   {text: 'New Caledonia', id: 'NC'},  | ||||||
|  |   {text: 'New Zealand', id: 'NZ'},  | ||||||
|  |   {text: 'Nicaragua', id: 'NI'},  | ||||||
|  |   {text: 'Niger', id: 'NE'},  | ||||||
|  |   {text: 'Nigeria', id: 'NG'},  | ||||||
|  |   {text: 'Niue', id: 'NU'},  | ||||||
|  |   {text: 'Norfolk Island', id: 'NF'},  | ||||||
|  |   {text: 'Northern Mariana Islands', id: 'MP'},  | ||||||
|  |   {text: 'Norway', id: 'NO'},  | ||||||
|  |   {text: 'Oman', id: 'OM'},  | ||||||
|  |   {text: 'Pakistan', id: 'PK'},  | ||||||
|  |   {text: 'Palau', id: 'PW'},  | ||||||
|  |   {text: 'Palestinian Territory, Occupied', id: 'PS'},  | ||||||
|  |   {text: 'Panama', id: 'PA'},  | ||||||
|  |   {text: 'Papua New Guinea', id: 'PG'},  | ||||||
|  |   {text: 'Paraguay', id: 'PY'},  | ||||||
|  |   {text: 'Peru', id: 'PE'},  | ||||||
|  |   {text: 'Philippines', id: 'PH'},  | ||||||
|  |   {text: 'Pitcairn', id: 'PN'},  | ||||||
|  |   {text: 'Poland', id: 'PL'},  | ||||||
|  |   {text: 'Portugal', id: 'PT'},  | ||||||
|  |   {text: 'Puerto Rico', id: 'PR'},  | ||||||
|  |   {text: 'Qatar', id: 'QA'},  | ||||||
|  |   {text: 'Reunion', id: 'RE'},  | ||||||
|  |   {text: 'Romania', id: 'RO'},  | ||||||
|  |   {text: 'Russian Federation', id: 'RU'},  | ||||||
|  |   {text: 'RWANDA', id: 'RW'},  | ||||||
|  |   {text: 'Saint Helena', id: 'SH'},  | ||||||
|  |   {text: 'Saint Kitts and Nevis', id: 'KN'},  | ||||||
|  |   {text: 'Saint Lucia', id: 'LC'},  | ||||||
|  |   {text: 'Saint Pierre and Miquelon', id: 'PM'},  | ||||||
|  |   {text: 'Saint Vincent and the Grenadines', id: 'VC'},  | ||||||
|  |   {text: 'Samoa', id: 'WS'},  | ||||||
|  |   {text: 'San Marino', id: 'SM'},  | ||||||
|  |   {text: 'Sao Tome and Principe', id: 'ST'},  | ||||||
|  |   {text: 'Saudi Arabia', id: 'SA'},  | ||||||
|  |   {text: 'Senegal', id: 'SN'},  | ||||||
|  |   {text: 'Serbia and Montenegro', id: 'CS'},  | ||||||
|  |   {text: 'Seychelles', id: 'SC'},  | ||||||
|  |   {text: 'Sierra Leone', id: 'SL'},  | ||||||
|  |   {text: 'Singapore', id: 'SG'},  | ||||||
|  |   {text: 'Slovakia', id: 'SK'},  | ||||||
|  |   {text: 'Slovenia', id: 'SI'},  | ||||||
|  |   {text: 'Solomon Islands', id: 'SB'},  | ||||||
|  |   {text: 'Somalia', id: 'SO'},  | ||||||
|  |   {text: 'South Africa', id: 'ZA'},  | ||||||
|  |   {text: 'South Georgia and the South Sandwich Islands', id: 'GS'},  | ||||||
|  |   {text: 'Spain', id: 'ES'},  | ||||||
|  |   {text: 'Sri Lanka', id: 'LK'},  | ||||||
|  |   {text: 'Sudan', id: 'SD'},  | ||||||
|  |   {text: 'Suriname', id: 'SR'},  | ||||||
|  |   {text: 'Svalbard and Jan Mayen', id: 'SJ'},  | ||||||
|  |   {text: 'Swaziland', id: 'SZ'},  | ||||||
|  |   {text: 'Sweden', id: 'SE'},  | ||||||
|  |   {text: 'Switzerland', id: 'CH'},  | ||||||
|  |   {text: 'Syrian Arab Republic', id: 'SY'},  | ||||||
|  |   {text: 'Taiwan, Province of China', id: 'TW'},  | ||||||
|  |   {text: 'Tajikistan', id: 'TJ'},  | ||||||
|  |   {text: 'Tanzania, United Republic of', id: 'TZ'},  | ||||||
|  |   {text: 'Thailand', id: 'TH'},  | ||||||
|  |   {text: 'Timor-Leste', id: 'TL'},  | ||||||
|  |   {text: 'Togo', id: 'TG'},  | ||||||
|  |   {text: 'Tokelau', id: 'TK'},  | ||||||
|  |   {text: 'Tonga', id: 'TO'},  | ||||||
|  |   {text: 'Trinidad and Tobago', id: 'TT'},  | ||||||
|  |   {text: 'Tunisia', id: 'TN'},  | ||||||
|  |   {text: 'Turkey', id: 'TR'},  | ||||||
|  |   {text: 'Turkmenistan', id: 'TM'},  | ||||||
|  |   {text: 'Turks and Caicos Islands', id: 'TC'},  | ||||||
|  |   {text: 'Tuvalu', id: 'TV'},  | ||||||
|  |   {text: 'Uganda', id: 'UG'},  | ||||||
|  |   {text: 'Ukraine', id: 'UA'},  | ||||||
|  |   {text: 'United Arab Emirates', id: 'AE'},  | ||||||
|  |   {text: 'United Kingdom', id: 'GB'},  | ||||||
|  |   {text: 'United States', id: 'US'},  | ||||||
|  |   {text: 'United States Minor Outlying Islands', id: 'UM'},  | ||||||
|  |   {text: 'Uruguay', id: 'UY'},  | ||||||
|  |   {text: 'Uzbekistan', id: 'UZ'},  | ||||||
|  |   {text: 'Vanuatu', id: 'VU'},  | ||||||
|  |   {text: 'Venezuela', id: 'VE'},  | ||||||
|  |   {text: 'Viet Nam', id: 'VN'},  | ||||||
|  |   {text: 'Virgin Islands, British', id: 'VG'},  | ||||||
|  |   {text: 'Virgin Islands, U.S.', id: 'VI'},  | ||||||
|  |   {text: 'Wallis and Futuna', id: 'WF'},  | ||||||
|  |   {text: 'Western Sahara', id: 'EH'},  | ||||||
|  |   {text: 'Yemen', id: 'YE'},  | ||||||
|  |   {text: 'Zambia', id: 'ZM'},  | ||||||
|  |   {text: 'Zimbabwe', id: 'ZW'} | ||||||
|  |   ], | ||||||
|  |   roomtypes:[ | ||||||
|  |     {id:1,text:"Shared"}, | ||||||
|  |     {id:2,text:"Private"} | ||||||
|  |   ] | ||||||
|  | } | ||||||
|  |    | ||||||
							
								
								
									
										0
									
								
								lib/bootstrap/.editorconfig → public/js/lib/bootstrap/.editorconfig
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/.gitattributes → public/js/lib/bootstrap/.gitattributes
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/.gitignore → public/js/lib/bootstrap/.gitignore
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/.hound.yml → public/js/lib/bootstrap/.hound.yml
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/.travis.yml → public/js/lib/bootstrap/.travis.yml
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/CHANGELOG.md → public/js/lib/bootstrap/CHANGELOG.md
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/CNAME → public/js/lib/bootstrap/CNAME
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/CONTRIBUTING.md → public/js/lib/bootstrap/CONTRIBUTING.md
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/Gemfile → public/js/lib/bootstrap/Gemfile
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/Gemfile.lock → public/js/lib/bootstrap/Gemfile.lock
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/Gruntfile.js → public/js/lib/bootstrap/Gruntfile.js
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/ISSUE_TEMPLATE.md → public/js/lib/bootstrap/ISSUE_TEMPLATE.md
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/LICENSE → public/js/lib/bootstrap/LICENSE
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/README.md → public/js/lib/bootstrap/README.md
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/_config.yml → public/js/lib/bootstrap/_config.yml
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/bower.json → public/js/lib/bootstrap/bower.json
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/composer.json → public/js/lib/bootstrap/composer.json
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap-theme.css → public/js/lib/bootstrap/dist/css/bootstrap-theme.css
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap-theme.css.map → public/js/lib/bootstrap/dist/css/bootstrap-theme.css.map
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap-theme.min.css → public/js/lib/bootstrap/dist/css/bootstrap-theme.min.css
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap-theme.min.css.map → public/js/lib/bootstrap/dist/css/bootstrap-theme.min.css.map
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap.css → public/js/lib/bootstrap/dist/css/bootstrap.css
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap.css.map → public/js/lib/bootstrap/dist/css/bootstrap.css.map
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap.min.css → public/js/lib/bootstrap/dist/css/bootstrap.min.css
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/docs/dist/css/bootstrap.min.css.map → public/js/lib/bootstrap/dist/css/bootstrap.min.css.map
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/fonts/glyphicons-halflings-regular.eot → public/js/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
							
								
								
									
										0
									
								
								lib/bootstrap/fonts/glyphicons-halflings-regular.svg → public/js/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg
									
									
									
									
										vendored
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						| Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB | 
 sabelo
						sabelo