<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| function ssh_connection() { | |
| if $SHOW_HOST ; then | |
| HOSTER="%{$fg[yellow]%}%m " | |
| else | |
| HOSTER="" | |
| fi | |
| if [[ -n $SSH_CONNECTION ]]; then | |
| echo "%{$fg[cyan]%}☁ $HOSTER" | |
| fi | |
| } |
| # Don't add the Local settings file to the repository # | |
| htdocs/wp-config-local.php | |
| # If using SASS to compile stylesheets this saves conflicts, plus there not needed! # | |
| htdocs/wp-content/themes/YOURTHEME/.sass-cache/* | |
| # No need to add the upgrade folder to the repo # | |
| htdocs/wp-content/upgrade/* | |
| # sitemaps not needed locally # |
| body { position: relative; padding-top: 90px; } | |
| /* Responsive tests | |
| ------------------------- */ | |
| .responsive-utilities-test { | |
| margin-top: 5px; | |
| margin-left: 0; | |
| list-style: none; | |
| overflow: hidden; /* clear floats */ | |
| } |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>PROJECT</title> | |
| <meta name="description" content="Edder Rojas Project"> | |
| <meta name="author" content="Edder Rojas"> | |
| <!—[if lt IE 9]> | |
| <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]—> |
| <?php | |
| /** | |
| * Parses a url to extract the query parameters from it as a assoc array | |
| * @param string $url | |
| * @param bool $decode (optional) apply url decode | |
| * @return array | |
| */ | |
| function parseUrl($url, $decode = false) | |
| { |
| /* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011 | |
| * http://benalman.com/ | |
| * Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */ | |
| (function($) { | |
| var o = $({}); | |
| $.subscribe = function() { | |
| o.on.apply(o, arguments); |