GAE要收费了? GCS cross location copy pricing update

更新1:
似乎是虚惊一场,但近期应用非常不稳定,可能是因为日子快要到了。
参考:
https://code.google.com/p/goagent/issues/detail?id=20252#c32
https://cloud.google.com/pricing/#app-engine
https://cloud.google.com/pricing/#cloud-stor

原文:
今天收到的邮件,免费的东西总是不能长远的。

GCS cross location copy pricing update

Hello Google Cloud Storage User,
Please be advised that, beginning July 14, 2015, Google will begin charging the following fees for Google Cloud Storage:
$0.01 per GB of data transferred between buckets located in different regions of the same continent
Egress rates per GB of data transferred between buckets located on different continents
Until then, you will be able to view your current usage in the billing details for your project in order to help you estimate the impact of these changes on your monthly spend.
For additional information and examples of this billing charge, please visit https://cloud.google.com/storage/pricing#network-regions
— The Google Cloud Storage Team
Google Inc. 1600 Amphitheatre Parkway, Mountain View, CA 94043
You have received this mandatory service announcement to update you about important changes to Google Cloud Platform or your account.

IE和Firefox下,a标签使用href=”javascript:void(0);”和target=”_blank”行为不符合预期

今天在开发中发现,使用如下方式的链接。在Chrome中点击后行为符合预期,但在IE下会新开标签卡(根据参考资料,Firefox中有相同问题)。
<a href=”javascript:void(0);” target=”_blank”>test</a>

后经查找资料,发现需如下解决。
通过onclick阻止浏览器默认事件:<a onclick=”return false;” href=”javascript:void(0);” target=”_blank”>test</a>
或直接:<a target=”_blank”>test</a>

原因在于三款浏览器,对三个属性的处理顺序不同。
Chrome顺序:onclick -> href -> target
IE和Firefox顺序:onclick -> target -> href

参考资料:
html a标签的href target onclick
关于火狐和IE下href=”javascript:void(0)”兼容性的问题
javascript:void(0) and target=“_blank” behaviour