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
2015-10-27T17:13:16.710Z - silly: [1] New Request: 40d06ace-2082-41b8-99d4-772f288cff21 | |
2015-10-27T17:13:16.712Z - silly: [1] RequestHandler: Session ID [e3a3b429-461b-423e-a9ec-35a333fcd9af] Cookie SID [undefined] Created [false] Expired [true] | |
2015-10-27T17:13:16.712Z - silly: [1] RequestHandler: Comparing Path [/api/plugins/install/wp_import] to Pattern [^/media/.*[/]{0,1}$] Result [false] | |
2015-10-27T17:13:16.712Z - silly: [1] RequestHandler: Comparing Path [/api/plugins/install/wp_import] to Pattern [^/public/[^/]+/.*[/]{0,1}$] Result [false] | |
2015-10-27T17:13:16.713Z - silly: [1] RequestHandler: Comparing Path [/api/plugins/install/wp_import] to Pattern [^/preview/[^/]+/[^/]+[/]{0,1}$] Result [false] | |
2015-10-27T17:13:16.713Z - silly: [1] RequestHandler: Comparing Path [/api/plugins/install/wp_import] to Pattern [^/section/[^/]+[/]{0,1}$] Result [false] | |
2015-10-27T17:13:16.713Z - silly: [1] RequestHandler: Comparing Path [/api/plugins/install/wp_import] to Pattern [^/article/[^/]+[/]{0,1}$] Result [false] |
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
@*CSS*@ | |
@ViewComponentHelper.RenderStyles(new[] | |
{ | |
"/Content/site.css", | |
"/Content/bootstrap.css" | |
}) | |
@*Javascript*@ | |
@ViewComponentHelper.RenderScripts(new[] | |
{ |
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
<appSettings> | |
<!-- Resource Cache Buster (Query String Postfix) --> | |
<add key="CacheComponentVersion" value="1" /> | |
</appSettings> |
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 static class ViewComponentHelper | |
{ | |
private static string _cacheComponentVersion; | |
public static IHtmlString RenderScripts(string[] paths) | |
{ | |
//Bust The Cache. | |
var bustedPaths = paths.Select(BustPath).ToArray(); | |
return Scripts.Render(bustedPaths); | |
} |
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
//Get Services For id | |
function GetServices(id) { | |
//Get Popular Services | |
var popularServiceUrl = PopularServiceUrl(id); | |
$.getJSON(popularServiceUrl, {}, function (data) { | |
var pservices = {}; | |
var services = {}; |
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
function GetPopularServices(id) { | |
var d = $.Deferred(); | |
var popularServiceUrl = PopularServiceUrl(id); | |
$.getJSON(popularServiceUrl, {}, function (data) { | |
CreatePopularService(this, function(service) { | |
//... | |
//Resolve The Promise | |
d.resolve({ services: [service] }); | |
}); | |
}).error(function () { ShowErrorDialog(); }); |
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
bash-3.2$ heroku releases | |
=== app Releases | |
v32 Deploy 9f6da49 **** 1h ago | |
v31 Deploy 0942632 **** 15h ago | |
v30 Deploy d98ffb3 **** 15h ago | |
v29 Deploy 613c33d **** 15h ago | |
... |
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
- var version = '0'; |
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
#!/bin/bash | |
#Update Version Number | |
version=$((`heroku releases | sed -n 2p | awk '{print substr($1,2); }'` + 1)) | |
echo Updating JADE Version Number... | |
sed "s/'.*'/'$version'/" ./views/version.jade > version.tmp | |
mv version.tmp ./views/version.jade | |
#Deploy |
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
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:Controls="clr-namespace:WpfNodeGraph.GraphEngine.Controls"> | |
<!-- Node--> | |
<Style TargetType="{x:Type Controls:Node}"> | |
</Style> | |
<!-- Hook--> | |
<Style TargetType="{x:Type Controls:Hook}"> |
NewerOlder