WebClient folder renamed to net and WebClient renamed to HttpClient

This commit is contained in:
Vladimir Enchev
2014-04-14 15:02:34 +03:00
parent f7b5c9af3e
commit 2cdad80094
8 changed files with 21 additions and 21 deletions

View File

@ -128,16 +128,16 @@
</TypeScriptCompile>
<TypeScriptCompile Include="Utils\utils_android.ts" />
<TypeScriptCompile Include="Utils\utils_ios.ts" />
<TypeScriptCompile Include="WebClient\web_client.android.ts">
<DependentUpon>web_client.d.ts</DependentUpon>
<TypeScriptCompile Include="net\http_client.android.ts">
<DependentUpon>http_client.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="WebClient\web_client.ios.ts">
<DependentUpon>web_client.d.ts</DependentUpon>
<TypeScriptCompile Include="net\http_client.ios.ts">
<DependentUpon>http_client.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="WebClient\web_client.d.ts" />
<TypeScriptCompile Include="net\http_client.d.ts" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="WebClient\index.ts" />
<TypeScriptCompile Include="net\index.ts" />
<TypeScriptCompile Include="UserPreferences\index.ts" />
<TypeScriptCompile Include="Location\index.ts" />
<TypeScriptCompile Include="Image\index.ts" />
@ -146,8 +146,8 @@
<TypeScriptCompile Include="Camera\index.ts" />
<TypeScriptCompile Include="Application\index.ts" />
<TypeScriptCompile Include="android17.d.ts" />
<TypeScriptCompile Include="Promises\promises.ts" />
<TypeScriptCompile Include="Promises\index.ts" />
<TypeScriptCompile Include="promises\promises.ts" />
<TypeScriptCompile Include="promises\index.ts" />
<Content Include="_references.ts" />
<TypeScriptCompile Include="Console\console.android.ts">
<DependentUpon>console.d.ts</DependentUpon>
@ -166,7 +166,7 @@
<Content Include="UserPreferences\Readme.md" />
</ItemGroup>
<ItemGroup>
<Content Include="WebClient\Readme.md" />
<Content Include="net\Readme.md" />
</ItemGroup>
<ItemGroup>
<Content Include="Readme.md" />

View File

@ -1,2 +1,2 @@
declare var module, require;
module.exports = require("Promises/promises");
module.exports = require("promises/promises");

View File

@ -1,2 +0,0 @@
declare var module, require;
module.exports = require("WebClient/web_client");

View File

@ -5,7 +5,7 @@
import image_module = require("Image/image");
import app_module = require("Application/application");
export class Client {
export class HttpClient {
/**
* Downloads string from url.
*/

View File

@ -3,7 +3,7 @@
*/
import image_module = require("Image/image");
export declare class Client {
export declare class HttpClient {
private static get(url: string, successCallback?: (result: any) => void, errorCallback?: (e: Error) => void)
getString(url: string, successCallback?: (result: string) => void, errorCallback?: (e: Error) => void)
getJSON(url: string, successCallback?: (result: Object) => void, errorCallback?: (e: Error) => void)

View File

@ -3,15 +3,15 @@
*/
import image_module = require("Image/image");
import promises_module = require("Promises/promises");
import promises_module = require("promises/promises");
export class Client {
export class HttpClient {
/**
* Downloads string from url.
*/
public getString(url: string, successCallback: (result: string) => void, errorCallback?: (e: Error) => void) {
try {
Client.get(url, function (data) {
HttpClient.get(url, function (data) {
if (successCallback) {
successCallback(Foundation.NSString.initWithDataEncoding(data, 4).toString());
}
@ -25,7 +25,7 @@ export class Client {
public static getString(url : string) {
var d = new promises_module.Promises.Deferred();
new Client().getString(url, r => d.resolve(r), e => d.reject(e));
new HttpClient().getString(url, r => d.resolve(r), e => d.reject(e));
return d.promise();
}
@ -44,7 +44,7 @@ export class Client {
}
public getImage(url: string, successCallback: (result: image_module.Image) => void, errorCallback?: (e: Error) => void) {
Client.get(url, function (data) {
HttpClient.get(url, function (data) {
if (successCallback) {
var image = new image_module.Image();
image.loadFromData(data);
@ -57,11 +57,11 @@ export class Client {
if (!successCallback && !errorCallback)
{
var d = new promises_module.Promises.Deferred();
Client.getUrl(url, r => d.resolve(r), e => d.reject(e));
HttpClient.getUrl(url, r => d.resolve(r), e => d.reject(e));
return d.promise();
}
Client.getUrl(url, successCallback, errorCallback);
HttpClient.getUrl(url, successCallback, errorCallback);
}
private static getUrl(url: string, successCallback: (result: any) => void, errorCallback?: (e: Error) => void) {

2
net/index.ts Normal file
View File

@ -0,0 +1,2 @@
declare var module, require;
module.exports = require("net/http_client");