This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public final class MimeTypes | |
| { | |
| public static final class Application | |
| { | |
| public static final String ATOM_XML = "application/atom+xml"; | |
| public static final String ATOMCAT_XML = "application/atomcat+xml"; | |
| public static final String ECMASCRIPT = "application/ecmascript"; | |
| public static final String JAVA_ARCHIVE = "application/java-archive"; | |
| public static final String JAVASCRIPT = "application/javascript"; | |
| public static final String JSON = "application/json"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "walshcj/emergency_dev", | |
| "description": "UCI Emergency communications site", | |
| "type": "project", | |
| "license": "GPL", | |
| "version": "0.0.2", | |
| "minimum-stability": "stable", | |
| "authors": [ | |
| { | |
| "name": "Christopher Walsh", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nav aria-label="Primary navigation" class="navbar navbar-inverse" id="nav-primary"> | |
| <div class="container-fluid"> | |
| <div class="navbar-header"> | |
| <button aria-expanded="false" class="navbar-toggle collapsed" data-target="#nav-primary-items" | |
| data-toggle="collapse" type="button" id="ui-collapse-207"> | |
| <span class="sr-only">Toggle primary navigation</span> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| </button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| minification = 0 | |
| themePackages = { | |
| pawtucket = { | |
| bootstrap3UciCascade = css/bootstrap3-uci-cascade.css | |
| } | |
| } | |
| themeLoadSets = { | |
| _default = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| set_include_path(get_include_path().PATH_SEPARATOR.dirname(__FILE__)); | |
| ini_set('display_errors', false); | |
| ini_set('log_errors', true); | |
| ini_set('error_log', dirname(__FILE__).DIRECTORY_SEPARATOR.'error.log'); | |
| error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING); | |
| require_once( 'ws_lib.php' ); | |
| require_once 'UCI/Cascade/WebServices/WebService.php'; |