create a new page, using Extensions/OnlineUpdate as a template.
Front page
Search
掲示板
Reload
Help
Browse Log
掲示板の使い方
OOo 掲示板3
OOo 掲示板2
OOo 掲示板
掲示板
雑談掲示板
New
List of pages
Recent changes
Backup
簡単ヘルプ
整形ルール
Start:
*オンラインアップデート [#r6406c0a]
OpenOffice.org の拡張機能に更新を確認する URL を記載して...
2.4 からは OOo 本体の更新確認時に拡張機能の更新確認も行わ...
http://extensions.services.openoffice.org/ に登録された拡...
この設定は program/version.ini または versionrc にありま...
#contents
**準備 [#b8ccd8c0]
オンラインアップデートを拡張機能に付け加えるのに必要なも...
-[[description.xml>Extensions/description]]
--[[拡張機能 ID>Extensions/description#j18a3abf]]
--[[バージョン>Extensions/description#f039ed3e]]
description.xml ファイルに拡張機能 ID の設定を行っておき...
**更新情報の記載 [#va5e8ccf]
拡張機能に [[description.xml>Extensions/description]] フ...
<update-information>
<src xlink:href="http://localhost/MRI.update.xml"/>
</update-information>
拡張機能マネージャがこの href に置いた xml ファイルに更新...
src はミラーなどがある場合には複数記載できます。
http プロトコル以外に file でも動作しました。他はテスト環...
**参照情報 [#s40d1ae1]
拡張機能マネージャが上記の update-information を探しに行...
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-download>
<src xlink:href="http://localhost/extension3.oxt"/>
</update-download>
</description>
|項目|説明|h
|version|新しいバージョン指定|
|identifier|拡張機能の ID|
|update-download|指定バージョン、ID の拡張機能ファイルの...
**ブラウザでのアップデート [#v6eaeee0]
コマーシャルな拡張機能や更新時にユーザーに情報を確認して...
update-download の替わりに update-website を利用します。
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-website>
<src xlink:href="http://localhost/update.html" lang="...
<src xlink:href="http://localhost/update.html" lang="...
</update-website>
</description>
src は言語別に指定ができます。
**パブリッシャー [#lf3b789e]
オンラインアップデート時に拡張機能の製作元へのリンクを表...
publisher を使用します。
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-website>
<src xlink:href="http://localhost/update.html" lang="...
</update-website>
<publisher>
<name xlink:href="http://localhost/" lang="en">Publish...
</publisher>
</description>
同様に言語ごとに指定できます。
**リリースノート [#h8d7bd27]
オンらいアップデート時に新しいバージョンの更新情報へのリ...
release-notes を追加します。
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-website>
<src xlink:href="http://localhost/update.html" lang="...
</update-website>
<publisher>
<name xlink:href="http://localhost/" lang="en">Publish...
</publisher>
<release-notes>
<src xlink:href="http://localhost/" lang="en" />
</release-notes>
</description>
**複数の拡張機能のオンラインアップデート [#if4e780d]
コマーシャルなどで多数の更新情報を管理する場合には atom f...
作成してみたので注意点などを含めて書いておきます。
まず、拡張機能に入れておく description.xml ファイルです。...
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/des...
xmlns:dep="http://openoffice.org/extensions/description/...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="2.0.0" />
<identifier value="hoge.example" />
<update-information>
<src xlink:href="http://localhost/feed.xml"/>
</update-information>
</description>
参照される feed.xml ファイルは次のようになります。ここで...
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-U...
<title>Extensions Update Feed</title>
<link rel="alternate" type="text/html" href="http://loc...
<updated>2006-11-06T18:30:02Z</updated>
<author>
<name>Publisher</name>
<uri>http://localhost</uri>
<email>publisher@hogehonyo.ne.jp</email>
</author>
<id></id>
<entry>
<title>hoge new version</title>
<link rel="alternate" type="text/html" href="http://l...
<id></id>
<category term="hoge.example" label="Extension of hog...
<updated>2006-11-06T18:30:02Z</updated>
<summary>Click here to go to the download page.</summ...
<content type="application/xml" src="http://localhost...
</entry>
</feed>
拡張機能が複数あるときには entry 要素を複数個記述します。...
さらに、この entry から参照される example.update.xml ファ...
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example"/>
<update-website>
<src xlink:href="http://localhost/" lang="en"/>
</update-website>
<release-notes>
<src xlink:href="http://localhost/" lang="en"/>
</release-notes>
</description>
**メモ [#b62c2451]
PukiWiki でページに xxx.update.xml ファイルおよび新しいバ...
拡張機能マネージャによるアップデートでは、更新が無ければ ...
End:
*オンラインアップデート [#r6406c0a]
OpenOffice.org の拡張機能に更新を確認する URL を記載して...
2.4 からは OOo 本体の更新確認時に拡張機能の更新確認も行わ...
http://extensions.services.openoffice.org/ に登録された拡...
この設定は program/version.ini または versionrc にありま...
#contents
**準備 [#b8ccd8c0]
オンラインアップデートを拡張機能に付け加えるのに必要なも...
-[[description.xml>Extensions/description]]
--[[拡張機能 ID>Extensions/description#j18a3abf]]
--[[バージョン>Extensions/description#f039ed3e]]
description.xml ファイルに拡張機能 ID の設定を行っておき...
**更新情報の記載 [#va5e8ccf]
拡張機能に [[description.xml>Extensions/description]] フ...
<update-information>
<src xlink:href="http://localhost/MRI.update.xml"/>
</update-information>
拡張機能マネージャがこの href に置いた xml ファイルに更新...
src はミラーなどがある場合には複数記載できます。
http プロトコル以外に file でも動作しました。他はテスト環...
**参照情報 [#s40d1ae1]
拡張機能マネージャが上記の update-information を探しに行...
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-download>
<src xlink:href="http://localhost/extension3.oxt"/>
</update-download>
</description>
|項目|説明|h
|version|新しいバージョン指定|
|identifier|拡張機能の ID|
|update-download|指定バージョン、ID の拡張機能ファイルの...
**ブラウザでのアップデート [#v6eaeee0]
コマーシャルな拡張機能や更新時にユーザーに情報を確認して...
update-download の替わりに update-website を利用します。
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-website>
<src xlink:href="http://localhost/update.html" lang="...
<src xlink:href="http://localhost/update.html" lang="...
</update-website>
</description>
src は言語別に指定ができます。
**パブリッシャー [#lf3b789e]
オンラインアップデート時に拡張機能の製作元へのリンクを表...
publisher を使用します。
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-website>
<src xlink:href="http://localhost/update.html" lang="...
</update-website>
<publisher>
<name xlink:href="http://localhost/" lang="en">Publish...
</publisher>
</description>
同様に言語ごとに指定できます。
**リリースノート [#h8d7bd27]
オンらいアップデート時に新しいバージョンの更新情報へのリ...
release-notes を追加します。
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example" />
<update-website>
<src xlink:href="http://localhost/update.html" lang="...
</update-website>
<publisher>
<name xlink:href="http://localhost/" lang="en">Publish...
</publisher>
<release-notes>
<src xlink:href="http://localhost/" lang="en" />
</release-notes>
</description>
**複数の拡張機能のオンラインアップデート [#if4e780d]
コマーシャルなどで多数の更新情報を管理する場合には atom f...
作成してみたので注意点などを含めて書いておきます。
まず、拡張機能に入れておく description.xml ファイルです。...
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/des...
xmlns:dep="http://openoffice.org/extensions/description/...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="2.0.0" />
<identifier value="hoge.example" />
<update-information>
<src xlink:href="http://localhost/feed.xml"/>
</update-information>
</description>
参照される feed.xml ファイルは次のようになります。ここで...
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-U...
<title>Extensions Update Feed</title>
<link rel="alternate" type="text/html" href="http://loc...
<updated>2006-11-06T18:30:02Z</updated>
<author>
<name>Publisher</name>
<uri>http://localhost</uri>
<email>publisher@hogehonyo.ne.jp</email>
</author>
<id></id>
<entry>
<title>hoge new version</title>
<link rel="alternate" type="text/html" href="http://l...
<id></id>
<category term="hoge.example" label="Extension of hog...
<updated>2006-11-06T18:30:02Z</updated>
<summary>Click here to go to the download page.</summ...
<content type="application/xml" src="http://localhost...
</entry>
</feed>
拡張機能が複数あるときには entry 要素を複数個記述します。...
さらに、この entry から参照される example.update.xml ファ...
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/upd...
xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="3.0.0" />
<identifier value="hoge.example"/>
<update-website>
<src xlink:href="http://localhost/" lang="en"/>
</update-website>
<release-notes>
<src xlink:href="http://localhost/" lang="en"/>
</release-notes>
</description>
**メモ [#b62c2451]
PukiWiki でページに xxx.update.xml ファイルおよび新しいバ...
拡張機能マネージャによるアップデートでは、更新が無ければ ...
Page: