Skip to content

Commit a1db810

Browse files
author
Vladimir Enchev
committed
http and file-system naming changed to use "-"
1 parent 056d430 commit a1db810

17 files changed

+34
-34
lines changed

BCL.csproj

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,8 @@
105105
<TypeScriptCompile Include="declarations.ios.d.ts">
106106
<DependentUpon>declarations.d.ts</DependentUpon>
107107
</TypeScriptCompile>
108-
<TypeScriptCompile Include="filesystem\file_system.d.ts" />
109-
<TypeScriptCompile Include="filesystem\file_system.ts">
110-
<DependentUpon>file_system.d.ts</DependentUpon>
111-
</TypeScriptCompile>
112-
<TypeScriptCompile Include="filesystem\file_system_access.android.ts">
113-
<DependentUpon>file_system_access.d.ts</DependentUpon>
114-
</TypeScriptCompile>
115-
<TypeScriptCompile Include="filesystem\file_system_access.d.ts" />
116-
<TypeScriptCompile Include="filesystem\file_system_access.ios.ts">
117-
<DependentUpon>file_system_access.d.ts</DependentUpon>
118-
</TypeScriptCompile>
108+
<TypeScriptCompile Include="file-system\file-system.d.ts" />
109+
<TypeScriptCompile Include="file-system\file-system-access.d.ts" />
119110
<TypeScriptCompile Include="image\image.ts">
120111
<DependentUpon>image.d.ts</DependentUpon>
121112
</TypeScriptCompile>
@@ -138,11 +129,11 @@
138129
<TypeScriptCompile Include="location\location_types.ts">
139130
<DependentUpon>location.d.ts</DependentUpon>
140131
</TypeScriptCompile>
141-
<TypeScriptCompile Include="Tests\file_system_tests.ts" />
142-
<TypeScriptCompile Include="Tests\http_tests.ts" />
132+
<TypeScriptCompile Include="Tests\file-system-tests.ts" />
133+
<TypeScriptCompile Include="Tests\http-tests.ts" />
143134
<TypeScriptCompile Include="Tests\image-tests.ts" />
144135
<TypeScriptCompile Include="Tests\index.ts" />
145-
<TypeScriptCompile Include="Tests\location_tests.ts" />
136+
<TypeScriptCompile Include="Tests\location-tests.ts" />
146137
<TypeScriptCompile Include="Tests\testRunner.ts" />
147138
<TypeScriptCompile Include="Tests\TKUnit.ts" />
148139
<TypeScriptCompile Include="text\index.ts" />
@@ -156,18 +147,12 @@
156147
<TypeScriptCompile Include="utils\module_merge.ts" />
157148
<TypeScriptCompile Include="utils\utils_android.ts" />
158149
<TypeScriptCompile Include="utils\utils_ios.ts" />
159-
<TypeScriptCompile Include="http\http_request.android.ts">
160-
<DependentUpon>http_request.d.ts</DependentUpon>
161-
</TypeScriptCompile>
162-
<TypeScriptCompile Include="http\http_request.ios.ts">
163-
<DependentUpon>http_request.d.ts</DependentUpon>
164-
</TypeScriptCompile>
165-
<TypeScriptCompile Include="http\http_request.d.ts" />
150+
<TypeScriptCompile Include="http\http-request.d.ts" />
166151
</ItemGroup>
167152
<ItemGroup>
168153
<TypeScriptCompile Include="http\index.ts" />
169154
<TypeScriptCompile Include="location\index.ts" />
170-
<TypeScriptCompile Include="filesystem\index.ts" />
155+
<TypeScriptCompile Include="file-system\index.ts" />
171156
<TypeScriptCompile Include="console\index.ts" />
172157
<TypeScriptCompile Include="camera\index.ts" />
173158
<TypeScriptCompile Include="application\index.ts" />
@@ -186,13 +171,28 @@
186171
<TypeScriptCompile Include="timer\timer.ios.ts">
187172
<DependentUpon>timer.d.ts</DependentUpon>
188173
</TypeScriptCompile>
189-
<TypeScriptCompile Include="Tests\local_settings_tests.ts" />
174+
<TypeScriptCompile Include="Tests\local-settings-tests.ts" />
190175
<TypeScriptCompile Include="console\console-helper.android.ts">
191176
<DependentUpon>console-helper.d.ts</DependentUpon>
192177
</TypeScriptCompile>
193178
<TypeScriptCompile Include="console\console-helper.ios.ts">
194179
<DependentUpon>console-helper.d.ts</DependentUpon>
195180
</TypeScriptCompile>
181+
<TypeScriptCompile Include="file-system\file-system.ts">
182+
<DependentUpon>file-system.d.ts</DependentUpon>
183+
</TypeScriptCompile>
184+
<TypeScriptCompile Include="file-system\file-system-access.android.ts">
185+
<DependentUpon>file-system-access.d.ts</DependentUpon>
186+
</TypeScriptCompile>
187+
<TypeScriptCompile Include="file-system\file-system-access.ios.ts">
188+
<DependentUpon>file-system-access.d.ts</DependentUpon>
189+
</TypeScriptCompile>
190+
<TypeScriptCompile Include="http\http-request.android.ts">
191+
<DependentUpon>http-request.d.ts</DependentUpon>
192+
</TypeScriptCompile>
193+
<TypeScriptCompile Include="http\http-request.ios.ts">
194+
<DependentUpon>http-request.d.ts</DependentUpon>
195+
</TypeScriptCompile>
196196
<Content Include="image\Readme.md" />
197197
<TypeScriptCompile Include="localsettings\index.ts" />
198198
<TypeScriptCompile Include="localsettings\local_settings.android.ts">
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Using the file system requires the FileSystem module.
55
// TODO: var fs = require("filesystem"); => this will break the intellisense of the tests
66
// ``` JavaScript
7-
import fs = require("filesystem/file_system");
7+
import fs = require("file-system/file-system");
88
// ```
99
// The pre-required `fs` module is used throughout the following code snippets.
1010
// </snippet>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import TKUnit = require("Tests/TKUnit");
22
import http = require("http/http");
3-
import http_request = require("http/http_request");
3+
import http_request = require("http/http-request");
44

55
export var test_getString_isDefined = function () {
66
TKUnit.assert(typeof (http.getString) !== "undefined", "Method http.getString() should be defined!");

Tests/image-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import image = require("image/image");
22
import app = require("application/application");
3-
import fs = require("filesystem/file_system");
3+
import fs = require("file-system/file-system");
44
import TKUnit = require("Tests/TKUnit");
55

66
export var testFromResource = function () {

Tests/testRunner.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
var TKUnit = require("Tests/TKUnit");
2-
var fsTests = require("Tests/file_system_tests");
3-
var httpTests = require("Tests/http_tests");
4-
var locationTests = require("Tests/location_tests");
5-
var localSettingsTests = require("Tests/local_settings_tests");
2+
var fsTests = require("Tests/file-system-tests");
3+
var httpTests = require("Tests/http-tests");
4+
var locationTests = require("Tests/location-tests");
5+
var localSettingsTests = require("Tests/local-settings-tests");
66
var imageTests = require("Tests/image-tests");
77

88
export var runAll = function () {

0 commit comments

Comments
 (0)