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
#!/usr/bin/python | |
import sys | |
import os | |
import pprint | |
import subprocess | |
import pickle | |
import atexit | |
import simplejson as json | |
sys.path.insert(0, "../API") |
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
diff --git a/src/Manos/Manos.Http/HttpEntity.cs b/src/Manos/Manos.Http/HttpEntity.cs | |
index 5230efe..8f35b52 100644 | |
--- a/src/Manos/Manos.Http/HttpEntity.cs | |
+++ b/src/Manos/Manos.Http/HttpEntity.cs | |
@@ -64,6 +64,7 @@ namespace Manos.Http { | |
private IHttpBodyHandler body_handler; | |
private bool finished_reading; | |
+ private bool Upgraded; | |
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
//Code sample from test: | |
//https://github.com/ServiceStack/ServiceStack.Text/blob/master/tests/ServiceStack.Text.Tests/DynamicModels/GoogleMapsApiTests.cs | |
using System; | |
using System.Collections.Generic; | |
using NUnit.Framework; | |
namespace ServiceStack.Text.Tests.DynamicModels | |
{ | |
public class GoogleMapsApiTests |