2012年5月8日
#
| 以前のサービス名 | 新しいサービス名 | | Windows Azure Compute | Cloud Services | | Windows Azure Platform - All Services | All Services | | Windows Azure CDN | CDN | | Windows Azure Storage | Storage | | Windows Azure Traffic Manager | Traffic Manager | | Windows Azure Virtual Network | Virtual Network | | AppFabric Cache | Cache | | AppFabric Service Bus | Service Bus | | AppFabric Access Control | Access Control | | SQL Azure | SQL Database | | SQL Azure Reporting Service | SQL Reporting | |
そこかしこからAzureの名前がなくなっているのですがどうしたのでしょうか。
特に「SQL Database」とかこんなサービス名にされちゃったらBingで検索してもSQL Azureの情報にたどり着けないのではないでしょうか。
それとも、新しいサービス名の前には「Azure」がプレフィックスとしてつくのでしょうか?
Azure Cloud Services
Azure All Services
Azrue CDN
Azure Storage
Azure Traffice Manager
Azure Virtual Network
Azure Cache
Azure Service Bus
Azure Access Control
Azure SQL Database
Azure SQL Reporting
ほら!非常に分かりやすいでしょ?
ついでに略称も考えてみましょう。
ACS
AAS
ACDN
AS
ATM
AVM
AC
ASB
AAC
ASD
ASR
ほら重ならない!
修正BSDライセンスのコードを使いそうなのでメモ。
- 無保証である事の明記
- 著作権の表示
- ライセンス条文の表示
- 初期にあった宣伝事項がない(ここが修正と呼ばれる所以)
- ソースコードの複製・改変したオブジェクトコードを頒布可能
- 複製・改変したソースコードの公開は不要
- GPLのようなコピーレフトではない
ClipMP4のバージョンアップで「UIに日本語以外がつかわれているよ!」とFailを食らったのでデザインとしてタイトルを英語にしているよとテスターノートに書いて再申請しましたがまた落とされたのでContactしてみました。
質問:
This application program uses English for a part of UI for designed reasons. However, Japanese is described in parallel as much as possible. As for becoming Fail because of the examination, I do not understand which part of UI violates it. Please teach which part of which screen corresponds specifying a concrete description.
この質問に対して次のような回答をもらいました。
Thank you for contacting the Windows Phone App Hub Developer Support Team. My name is Marisa and I will be assisting you. In order for us to better assist you with this issue; please reply to this email with the ApplicationGuid for the app you are referring to.
えーっと、どうすればいいですかwwww
忘備録
ContextクラスのプロパティをURLパラメタとして設定する例
Dim urlParam As String
Dim param As New Text.StringBuilder
Dim venueType As Type = GetType(TVenueItem)
Dim members As Reflection.PropertyInfo() = venueType.GetProperties()
For Each member As Reflection.PropertyInfo In members
param.Append("&")
param.Append(member.Name)
param.Append("=")
param.Append(HttpUtility.UrlEncode(member.GetValue(target, Nothing).ToString))
Next
param.Replace("&", "?", 0, 1)
urlParam = param.ToString()
Me.NavigationService.Navigate(New Uri("/Views/DetailsPage.xaml" & urlParam, UriKind.Relative))