Windows 7対応のnVIDIAドライバがリリース
nVIDIAのGeForce/ION Driver Release 185がリリースされています。
バージョンは、185.85です。
GeForce 6, 7, 8, 9, 100, 200をサポートするWindows7向けWHQL-認定ドライバで、
32/64bit 両方あります。
ドライバのダウンロードページ:NVIDIAドライバダウンロード
2009年5月 8日
nVIDIAのGeForce/ION Driver Release 185がリリースされています。
バージョンは、185.85です。
GeForce 6, 7, 8, 9, 100, 200をサポートするWindows7向けWHQL-認定ドライバで、
32/64bit 両方あります。
ドライバのダウンロードページ:NVIDIAドライバダウンロード
2009年3月20日
Windows Live Writerをカスタマイズする場合、マニフェスト ファイルを編集することになります。
マニフェスト ファイルはXMLドキュメントで、Windows Live Writerがサーバー上の特定の場所から、必要に応じてダウンロードします。
基本となる構造は、下記のXML宣言とルートエレメントから構成されています。
<?xml version="1.0" encoding="utf-8" ?> <manifest xmlns="http://schemas.microsoft.com/wlw/manifest/weblog"> </manifest>
MovableType用の例
<?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns="http://schemas.microsoft.com/wlw/manifest/weblog">
<options>
<clientType>MovableType</clientType>
<supportsCategoriesInline>Yes</supportsCategoriesInline>
<supportsSlug>Yes</supportsSlug>
<supportsPages>Yes</supportsPages>
<supportsScripts>Yes</supportsScripts>
<supportsEmbeds>Yes</supportsEmbeds>
</options>
<weblog>
<serviceName>Movable Type</serviceName>
<homepageLinkText>サイトを確認</homepageLinkText>
<adminLinkText>ダッシュボードを開く</adminLinkText>
<adminUrl><mt:AdminScript encode_xml="1"></adminUrl>
<postEditingUrl><mt:AdminScript encode_xml="1">?__mode=view&_type=entry&blog_id={blog-id}&id={post-id}</postEditingUrl>
</weblog>
</manifest>
ルートエレメント内には次の4つのエレメントを含めることができます。
すべて省略可能です。
| <options> | ブログの機能の設定 |
| <weblog> | Windows Live Writerのサイバーのカスタマイズ |
| <buttons> | Windows Live Writerのツールバーのカスタマイズ |
| <views> | 既定の編集ビューの指定 |
2009年3月20日
Windows Live Writerがブログの設定を確認するために必要なファイルが wlwmanifest.xml です。
このマニフェスト ファイルをサーバーに配置する場合、2つの方法を取ることができます。
<link>タグで記述する場合、<head>~</head>内に
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="stuff/wlwmanifest.xml" />
のように記述します。
注意点:最初方法のルート ディレクトリ置かれたマニフェスト ファイルが優先されます。