Author: wkeil
Date: Wed Mar 25 20:19:44 2015
New Revision: 1669217
URL: http://svn.apache.org/r1669217
Log:
DMAP-151: URLoader configured to use SVN instead of Web URL
Changed config
Task-Url: https://issues.apache.org/jira/browse/DMAP-151
Modified:
devicemap/trunk/devicemap/csharp/DeviceMap/DeviceMap.csproj
devicemap/trunk/devicemap/csharp/DeviceMapConsole/App.config
devicemap/trunk/devicemap/csharp/DeviceMapConsole/DeviceMapConsole.csproj
devicemap/trunk/devicemap/vbnet/DeviceMap/Constants.vb
devicemap/trunk/devicemap/vbnet/DeviceMapConsole/App.config
devicemap/trunk/devicemap/vbnet/DeviceMapConsole/DeviceMapConsole.vbproj
Modified: devicemap/trunk/devicemap/csharp/DeviceMap/DeviceMap.csproj
URL:
http://svn.apache.org/viewvc/devicemap/trunk/devicemap/csharp/DeviceMap/DeviceMap.csproj?rev=1669217&r1=1669216&r2=1669217&view=diff
==============================================================================
--- devicemap/trunk/devicemap/csharp/DeviceMap/DeviceMap.csproj (original)
+++ devicemap/trunk/devicemap/csharp/DeviceMap/DeviceMap.csproj Wed Mar 25
20:19:44 2015
@@ -67,9 +67,6 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
- <ItemGroup>
- <Content Include="DeviceMap-ASF.ico" />
- </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets
below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Modified: devicemap/trunk/devicemap/csharp/DeviceMapConsole/App.config
URL:
http://svn.apache.org/viewvc/devicemap/trunk/devicemap/csharp/DeviceMapConsole/App.config?rev=1669217&r1=1669216&r2=1669217&view=diff
==============================================================================
--- devicemap/trunk/devicemap/csharp/DeviceMapConsole/App.config (original)
+++ devicemap/trunk/devicemap/csharp/DeviceMapConsole/App.config Wed Mar 25
20:19:44 2015
@@ -2,7 +2,8 @@
<configuration>
<connectionStrings>
<add name="_DeviceMap" connectionString="C:\Ddr\Resources"/>
- <add name="DeviceMap"
connectionString="http://svn.apache.org/repos/asf/incubator/devicemap/trunk/data/device-data/src/main/resources/devicedata"/>
+ <add name="_DeviceMap2"
connectionString="http://svn.apache.org/repos/asf/incubator/devicemap/trunk/data/device-data/src/main/resources/devicedata"/>
<!-- Deprecated -->
+ <add name="DeviceMap" connectionString
="http://devicemap-vm.apache.org/data/latest/"/>
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
Modified:
devicemap/trunk/devicemap/csharp/DeviceMapConsole/DeviceMapConsole.csproj
URL:
http://svn.apache.org/viewvc/devicemap/trunk/devicemap/csharp/DeviceMapConsole/DeviceMapConsole.csproj?rev=1669217&r1=1669216&r2=1669217&view=diff
==============================================================================
--- devicemap/trunk/devicemap/csharp/DeviceMapConsole/DeviceMapConsole.csproj
(original)
+++ devicemap/trunk/devicemap/csharp/DeviceMapConsole/DeviceMapConsole.csproj
Wed Mar 25 20:19:44 2015
@@ -54,7 +54,9 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
- <None Include="App.config" />
+ <None Include="App.config">
+ <SubType>Designer</SubType>
+ </None>
</ItemGroup>
<ItemGroup>
<Content Include="DeviceMap-ASF.ico" />
Modified: devicemap/trunk/devicemap/vbnet/DeviceMap/Constants.vb
URL:
http://svn.apache.org/viewvc/devicemap/trunk/devicemap/vbnet/DeviceMap/Constants.vb?rev=1669217&r1=1669216&r2=1669217&view=diff
==============================================================================
--- devicemap/trunk/devicemap/vbnet/DeviceMap/Constants.vb (original)
+++ devicemap/trunk/devicemap/vbnet/DeviceMap/Constants.vb Wed Mar 25 20:19:44
2015
@@ -10,7 +10,7 @@
Public Const DEVICE_TOSTRING_FORMAT As String = "Id='{0}', ParentId='{1}',
Type='{2}', Pattern={3}, Attributes={4}"
Public Const HTTP_PREFIX As String = "http"
- Public Const RELEASE_VERSION As String = "1.0"
+ Public Const RELEASE_VERSION As String = "1.1"
Public Const SIMPLE As String = "simple"
Public Const USER_AGENT_SPLIT As String = " |-|_|/|\\|\[|\]|\(|\)|;"
Public Const VERSION_FORMAT As String = "Version : {0}, Build : {1}"
Modified: devicemap/trunk/devicemap/vbnet/DeviceMapConsole/App.config
URL:
http://svn.apache.org/viewvc/devicemap/trunk/devicemap/vbnet/DeviceMapConsole/App.config?rev=1669217&r1=1669216&r2=1669217&view=diff
==============================================================================
--- devicemap/trunk/devicemap/vbnet/DeviceMapConsole/App.config (original)
+++ devicemap/trunk/devicemap/vbnet/DeviceMapConsole/App.config Wed Mar 25
20:19:44 2015
@@ -2,7 +2,8 @@
<configuration>
<connectionStrings>
<add name="_DeviceMap" connectionString="C:\Ddr\Resources"/>
- <add name="DeviceMap"
connectionString="http://svn.apache.org/repos/asf/incubator/devicemap/trunk/data/device-data/src/main/resources/devicedata"/>
+ <add name="_DeviceMap2"
connectionString="http://svn.apache.org/repos/asf/incubator/devicemap/trunk/data/device-data/src/main/resources/devicedata"/>
+ <add name="DeviceMap" connectionString
="http://devicemap-vm.apache.org/data/latest/"/>
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
Modified:
devicemap/trunk/devicemap/vbnet/DeviceMapConsole/DeviceMapConsole.vbproj
URL:
http://svn.apache.org/viewvc/devicemap/trunk/devicemap/vbnet/DeviceMapConsole/DeviceMapConsole.vbproj?rev=1669217&r1=1669216&r2=1669217&view=diff
==============================================================================
--- devicemap/trunk/devicemap/vbnet/DeviceMapConsole/DeviceMapConsole.vbproj
(original)
+++ devicemap/trunk/devicemap/vbnet/DeviceMapConsole/DeviceMapConsole.vbproj
Wed Mar 25 20:19:44 2015
@@ -48,8 +48,7 @@
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<PropertyGroup>
- <ApplicationIcon>
- </ApplicationIcon>
+ <ApplicationIcon>DeviceMap-ASF.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
@@ -107,9 +106,12 @@
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
- <None Include="App.config" />
+ <None Include="App.config">
+ <SubType>Designer</SubType>
+ </None>
</ItemGroup>
<ItemGroup>
+ <Content Include="DeviceMap-ASF.ico" />
<Content Include="ua_strings.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>