| Google | google_apps_openid_100 | 2010-07-06 16:53 | /  ■ 機能
Google Apps を認証局にするためのプログラムです。
■ インストール
ホストされたドメイン ( 例: exsample.com ) の
ドキュメント・ルート直下に設置します。
■ 動作概要
(1) IdP Discovery
下記のアクセスすると
http://exsample.com/.well-known/host-meta
下記にリダイレクトする
https://www.google.com/accounts/o8/.well-known/host-meta?hd=exsample.com
(2) User Discovery
下記のアクセスすると
http://exsample.com/openid?id=1234
下記にリダイレクトする
https://www.google.com/accounts/o8/user-xrds?uri=http%3a%2f%2fexsample.com%2fopenid%3fid%3d1234
■ 同封されたファイル
.htaccess
redirect.php
■ 参考
Discovering OpenID Endpoints for Hosted Domains
http://groups.google.com/group/google-federated-login-api/web/openid-discovery-for-hosted-domains
|
| JavaScript | overlib_image_js_010 | 2008-01-12 02:39 | / 
This is JavaScript library
popup the image, when move the mouse over the text or the image.
using overLIB
http://www.bosrup.com/web/overlib/
* usage *
define JavaScript file
-----
<script type="text/javascript" src="overlib.js"></script>
<script type="text/javascript" src="overlib_image.js"></script>
-----
prepare div tag for showing popup
-----
<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>
-----
describe the popup image in following
-----
<a href="java script:void(0);" onmouseover="return overlib_image_popup('image.jpg');" onmouseout="return nd();">here</a>
-----
* using overLIB in XOOPS *
The width becomes long extraordinarily.
becuase width is defined as following in XOOPS's style sheet
-----
table {width: 100%; margin: 5; padding: 5; font-size: small}
-----
Therefore, I modified as following.
-----
function ol_content_simple(text) {
var cpIsMultiple = /,/.test(o3_cellpad);
var txt = '<table width="'+o3_width+ '" ...
-----
-----
// added style attiribute
var txt = '<table style="width:auto;" width="'+o3_width+
-----
* enclosed files *
- overlib.js ( modified for XOOPS )
- overlib_image.js
JavaScript ライブラリ
マウスを乗せると、画像がポップアップする
overLIB を利用しています
http://www.bosrup.com/web/overlib/
● 使用方法
JavaScript ファイルを呼ぶ
-----
<script type="text/javascript" src="overlib.js"></script>
<script type="text/javascript" src="overlib_image.js"></script>
-----
表示用の div タグを用意する
-----
<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>
-----
ポップアップさせる画像を下記のように記述する
-----
<a href="java script:void(0);" onmouseover="return overlib_image_popup('image.jpg');" onmouseout="return nd();">here</a>
-----
● overLIB を XOOPS で使用する場合
横幅が異常に長くなります。
これは、XOOPS のスタイルシートでは 下記のように width が設定されているためです。
-----
table {width: 100%; margin: 5; padding: 5; font-size: small}
-----
そこで、次のように修正しました。
-----
function ol_content_simple(text) {
var cpIsMultiple = /,/.test(o3_cellpad);
var txt = '<table width="'+o3_width+ '" ...
-----
↓
-----
// style 属性を追加
var txt = '<table style="width:auto;" width="'+o3_width+
-----
● 同封したファイル
- overlib.js ( XOOPS用に修正したもの )
- overlib_image.js
|
| NetCommons | googlemap_2400 | 2012-05-15 12:48 | /  グーグル地図を表示するモジュール
■ 特徴
1.1つのページに複数枚の地図が表示できます。
2.吹き出しにHTMLが使用できます。
見本の例:
マーカーをクリックすると、「国立情報学研究所」のロゴが表示されます。
ロゴをクリックすると、「国立情報学研究所」のサイトが開きます。
3.場所(緯度・軽度)の設定が容易です
グーグルマップをドラック&ズームすることで簡単に設定できます
● インストール
モジュール管理の「未インストールモジュール」より「インストール」を実行する。
● 見本
見本として「国立情報学研究所」が設定されています。
(1) タブメニューの「一覧表示」を選択する
(2)「見本: 国立情報学研究所」の丸印をチェックする
(3) 右上の「編集終了」をクリックする
(4) 表示されないときは、リロードする
● 新規作成
1. 住所は分かっているが、場所が分からないときは、
「住所」を入力して「検索する」をクリックする。
「検索結果」に候補が表示されます。
2. 場所(緯度・経度)の設定
(1) グーグルマップをドラック&ズームすることで、目的の場所を選択する
(2) 「緯度・経度・ズームを取得する」をクリックする
(3)「緯度」「経度」「ズーム」欄に値が設定される
3. 「地図名称」欄
「地図名称」を入力する
4. 「横幅」「高さ」欄
地図を表示する大きさを設定します
5. 「マーカーの情報」欄
マーカーをクリックすると表示される情報です。
この欄は任意です。
HTML が用意できます。
見本を参考にしてください。
6.「決定」をクリックする
● ノウハウ
1. グーグル地図の左下のある「Googleロゴ」をクリックすると、
「Google マップ」が開きます。
===============================
2012-05-01: Version 2.4.4.0
===============================
- Google Maps API V3 対応
- 住所検索を追加した
===============================
2011-06-22: Version 2.3.2.0
===============================
- MySQL 5.5 対策
TYPE=MYISAM -> ENGINE=MYISAM
===============================
2010-05-12: Version 2.3.0.0
===============================
- バグ対策
NetCommons 2.3.0.0 にて APIキー が表示されない
===============================
2009-01-01: Version 2.1.0.1
===============================
- 初版
|
| PHP | googleplus_login_googleapiclient_100 | 2011-12-15 11:22 | /  ■ 機能
Google Plus によるログイン認証や、Google Plus の Activity を表示するにライブラリです。
■ 使用上の注意
(1) Google Plus アプリケーションの登録とキー
WEBサイトごとに登録したキーが必要です。
下記からキーを取得してください。
Google Plus アプリケーションの登録
https://code.google.com/apis/console/
■ Google API ライブラリ
https://developers.google.com/+/downloads
□ 下記のライブラリが必要です。
バージョンは 2011年12月 時点のもの。
- Google APIs Client Library for PHP
これらは同封されています。
□ 下記のファイルを修正しています。
src/io/apiREST.php
修正内容の詳細
http://linux.ohwada.jp/modules/smartsection/item.php?itemid=526
|
| SmartSection | smartsection_220 | 2012-03-31 22:59 | /  This package includes 2 modules.
- SmartSection 2.20
- SmartObject 1.10
*** SmartSection 2.20 ***
- upgrade from 2.14
- Improved : Migrating to PHP 5.3
http://www.php.net/manual/en/migration53.deprecated.php
(1) ereg
(2) Assigning the return value of new by reference is now deprecated.
- Improved : Migrating to MySQL 5.5
(1) TYPE=MyISAM -> ENGINE=MyISAM
- Added : Japanaese language pack
- Improved : SmartSection 2.14 patch for XOOPS Cube Legacy ( Impresscms fourm )
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=2513&post_id=23643
(1) change "preferences" and "modules update" in admin memu.
- Improved : SmartSection 2.14 patch for upload multibyte filename
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=2514&post_id=23646
(1) I will attempt to change that the user can use Japanese or multibyte langugae for the upload file name.
- Improved : SmartSection 2.14 patch for Email button ( Impresscms fourm )
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=2515&post_id=23657
(1) mojibake (character garble) when use Email button
- Fixed : SmartSection 2.14 bugs and patches ( Impresscms fourm )
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=2512&post_id=23641
(1) enable "Print" and "PDF"
(2) Parse error and Notice in print
(3) wrong style in print template file
(4) Invalid argument when guest view
(5) Undefined variable in admin's category
(6) Missing argument when save file
(7) many Notice when "Disable comments"
(8) keyword "abc" match "abccccc"
(9) cannot show keyword in Japanese and multibyte language
- Fixed : undefined constant and index in addfile.php
*** SmartObject 1.10 ***
- upgrade from 1.0.1
- Improved : Migrating to PHP 5.3
http://www.php.net/manual/en/migration53.deprecated.php
(1) ereg
(2) Assigning the return value of new by reference is now deprecated.
- Improved : Migrating to MySQL 5.5
(1) TYPE=MyISAM -> ENGINE=MyISAM
- Added : Japanaese language pack
- Added : Japanaese UTF-8 (ja_uft8) in fpdf
- Improved : SmartObject 1.0.1 patch for XOOPS Cube Legacy ( Impresscms fourm )
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=2509&post_id=23627
(1) change "preferences" and "modules update" in admin memu.
- Fixed : SmartObject 1.0.1 bugs and patchs ( Impresscms fourm )
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=2506&post_id=23622
(1) not read other language file in xoops_version.php
(2) undifined table in xoops_version.php
(3) undefined constant in module manager
(4) Undefined variable in admin's link
- Fixed : SmartObject 1.0.1 bug and patch for PDF ( Impresscms fourm )
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=2510&post_id=23635
(1) not show the image
(2) Fatal error in specifing the image which doesn't exist
(3) undefined constant SRC
(4) undedined _MD_POSTEDON
(5) mojibake (character garble) in Japanese
|
| blankpaper | blankpaper_021 | 2007-07-15 22:11 | /  本モジュールは、白紙のように何も表示しない。
ブロックを表示するための下地として使用する。
1. 多言語
(1) 日本語 UTF-8 ファイルを追加した
|
| captcha | captcha-020 | 2012-04-01 05:48 | /  This module is library for CAPTCHA.
CAPTCHA, Completely Automated Public Turing test to tell Computers and Humans Apart,
is one of technique for anti-spam.
Changes
1. Migrating to PHP 5.3
(1) Assigning the return value of new by reference is now deprecated.
|
| hack,patch | module_textsanitizer_php-2013jp | 2005-10-24 21:02 | /  |
| hack_patch | raxerch_091_hack | 2009-08-09 19:23 | /  http://xoops.taquino.net/ にて配布されている
「楽天検索」モジュールのハック版です。
● 主な変更
1. shop.php
特定のショップを対象に、新着商品の一覧を表示する
2. blogparts.php
特定のショップを対象に、ランダムに商品を表示するブログパーツ
cache ディレクトリを書込み可にすること
● 参考
楽天ウェブサービス
http://webservice.rakuten.co.jp/
(1) デベロッパID(developerId) を取得すること
アフィリエイトID(affiliateId) は無くともよい
(2) ショップコード(shopCode) により特定のショップを指定することが可能です。
(3) 全ての商品の一覧を取得することは出来ない。
検索キーワード(keyword) か ジャンルID(genreId) か カタログコード(catalogCode) を指定すること。
(4) 検索される対象は題名だけです。説明文は対象にならない。
(5) 取得できる画像は mediumImageUrl(128x128) か smallImageUrl(64x64) です。
原寸の画像は取得できない。
(6) ショップコード(shopCode) を指定すると、応答が遅いことがある。
インデックス検索が効かないのかも。
● 謝辞
楽天APIの仕様や使い方に関して参考にしました。
http://xoops.taquino.net/
|
| happy_linux | happy_linux_180 | 2012-04-11 21:34 | /  This module is the library collection for modules distributing in Happy Linux
* Changes *
1. Changed the followings with the update of Weblinks module
(1) Changed pagenavi, page_frame, object and basic_object class
2. Bugfix
(1) Some error in api/rss_parser.php
3. Langauge pack
(1) Added Russian ( CP1251 & UTF-8 )
Files in language directory and extra directory.
Special thanks, Anthony xoops-org.ru ,
|
| happy_search | happy_search_060 | 2008-07-20 12:04 | / 
This module search in this web site and in Google.
This is integrated xoogle module and suin's search module.
* changes *
1. show thumbnail image in album module
supported modules
- myalbum (require happy_search plugin)
- webphoto
2. added plugin
(1) myalbum 2.88
=====
サイト内とGoogleを検索するモジュールです。
suinさんの searchモジュールと xoogleモジュールを 統合したものです。
● 変更内容
1. アルバム・モジュールは、サムネイル画像を表示する
対応モジュール
- myalbum (happy_search プラグイン 要)
- webphoto
2. プラグインの追加
(1) myalbum 2.88
|
| japanese translation | news_144_japanese | 2006-02-03 20:35 | /  News version1.4x 言語ファイル
http://xoops.sourceforge.jp/wiki/xoops2/index.php?cmd=read&page=DEV%2Fnews%2F1.4%A4%CE%B8%C0%B8%EC%A5%D5%A5%A1%A5%A4%A5%EB
|
| liaise | liaise-130 | 2012-04-01 05:56 | /  This is hack version for Liaise 1.26
Changes
1. Support XCL 2.2
$moduleperm_handler is NOT Global variable.
2. Support PHP 5.3
(1) Assigning the return value of new by reference is now deprecated.
3. Support MySQL 5.5
(1) TYPE=MyISAM -> ENGINE=MyISAM |
| rssc | rssc_130 | 2012-04-11 21:37 | /  * Changes *
1. Added "Select url" in admin page
Admin can choice the original site url or single_feed.php of RSSC
in the hyperlink of a title and the link of a RSS output.
http://linux.ohwada.jp/modules/newbb/viewtopic.php?topic_id=1273&forum=9
2. Some changes with change of Webmap3 module.
3. Bugfix
(1) Wrong icon is displayed, NOT set icon.
4. Langauge pack
(1) Added Russian ( CP1251 & UTF-8 )
Files in language directory and extra directory.
Special thanks, Anthony xoops-org.ru .
● DB table structure
(1) link table
Changed following fields, from varchar to text.
url, rdf_url, rss_url, atom_url
(2) feed テーブル
Changed following fields, from varchar to text.
site_link, entry_id, guid, author_uri, enclosure_url,
media_content_url, media_thumbnail_url
|
| rssc headline | rssc_headline_120 | 2011-12-30 22:12 | /  This module has same feature as XoopsHeadline module.
* Changes *
1. Migrating to PHP 5.3
Deprecated features in PHP 5.3.x
http://www.php.net/manual/en/migration53.deprecated.php
(1) Assigning the return value of new by reference is now deprecated.
1. Migrating to MySQL 5.5
(1) TYPE=MyISAM -> ENGINE=MyISAM
(2) BLOB/TEXT can't have a default value
|
| theme | theme_xoops4u_20061101 | 2006-11-07 08:27 | /  * 主な変更内容 *
1. theme.html
(1) RDF を追加した
(2) xoopscube.jp に変更した
2. style.css
(1) xoopsCode など追加した
|
| timeline | timeline_020 | 2011-12-29 13:04 | /  This module is the timeline using MIT Timeline
* Changes *
1. Migrating to PHP 5.3
Deprecated features in PHP 5.3.x
http://www.php.net/manual/en/migration53.deprecated.php
(1) Assigning the return value of new by reference is now deprecated.
2. add Monet's life
3. supoort before 1970 (unixtime)
|
| weblinks | weblinks_210 | 2012-04-11 21:38 | /  * Changes *
1. Supprt Google Maps API V3
http://linux.ohwada.jp/modules/newbb/viewtopic.php?topic_id=1271&forum=5
1.1 Require WEBMAP3 module
1,2 The admin can set the icon of a marker in eahc category and each link.
http://linux.ohwada.jp/modules/newbb/viewtopic.php?forum=5&topic_id=1150
The rule which determines the icon to display
(1) Use it if set the icon in the link.
(2) Use it if set the icon in the category which belongs.
(3) Use it if set the icon in the parent category.
Search parent categories to the top.
(4) Use either when the link belongs to two or more categories.
1.3 The admin can set favorite icon.
This is feature of WEBMAP3 module.
http://linux.ohwada.jp/modules/newbb/viewtopic.php?forum=5&topic_id=848
2. Added "Select url" in admin page
Admin can choice the original site url or singlelink.php of Weblinks
in the hyperlink of a title .
http://linux.ohwada.jp/modules/newbb/viewtopic.php?forum=5&topic_id=1198
3. Expand the number of URL characters from 255 bytes to 64 K bytes.
http://linux.ohwada.jp/modules/newbb/viewtopic.php?forum=5&topic_id=1279
4. Addeed following in bulk registration.
(1) Register the comments by form entry
(2) Register RSS URL from URL of registered link automatically.
(3) Register latitude and longitude of registered link semiautomatically.
(4) Describe \2c instead of comma.
(5) Describe \n instead of new-line in textarea1, 2.
4. Langauge pack
(1) Added Russian ( CP1251 & UTF-8 )
Files in language directory and extra directory.
Special thanks, Anthony xoops-org.ru .
* DB table structure *
1. link, modify table
(1) added fields
- gm_icon : Google Maps Icon
(2) modify attribute varchar to text
- url
2. category table
(1) added fields
- gm_icon : Google Maps Icon
- gm_location : memo of location
|
| webmap | webmap_020 | 2011-12-30 22:24 | /  * Main changes *
1. Migrating to PHP 5.3
Deprecated features in PHP 5.3.x
http://www.php.net/manual/en/migration53.deprecated.php
(1) Assigning the return value of new by reference is now deprecated.
2. Migrating to MySQL 5.5
(1) TYPE=MyISAM -> ENGINE=MyISAM
3. replece icon_1828_white.png to transparent type
http://linux.ohwada.jp/modules/newbb/viewtopic.php?forum=9&topic_id=988
|
| webmap3 | webmap3_110 | 2012-04-11 21:35 | /  1. API
(1) geocoding
Added API which search Latitude and Longitude from address using Google Geocoding API .
(2) get_location
Added API which get Latitude and Longitude using Google Map
2. JavaScript
(1) Show the marker in center when the values of latitude and longitude are already set up.
(2) Bugfix: dont work in IE9
3. Block display
(1) Added the height of map and the timeout.
|
| webphoto | webphoto_260 | 2011-12-29 13:02 | /  This is the album module which manages photos and videos.
* Changes *
1. timeline
(1) supoort before 1970 (unixtime)
http://linux.ohwada.jp/modules/newbb/viewtopic.php?topic_id=1186&forum=13
(2) add century and day to unit
(3) show timeline in category
(4) When move to a large time from a category, the information on a category is succeeded.
2. map
(1) When move to a large map from a category, the information on a category is succeeded.
* Update *
(1) When you unzip the zip file, there are two directories html and xoops_trust_path.
Please copy and overwrite in the directory which XOOPS correspond
(2) Execute the module update in the admin cp
(3) Execute "File Valid Check" of "Update" in webphoto's admin control,
and cofirm whether or not necessary files are set.
|
| whatsnew | whatsnew_260 | 2011-12-31 18:40 | /  1. main
(1) Migrating to PHP 5.3
Deprecated features in PHP 5.3.x
- ereg
(2) Migrating to MySQL 5.5
- TYPE=MyISAM -> ENGINE=MyISAM
(3) bug fix: about whatsnew module
http://xoopscube.jp/forum/6704 |
| xlang | xlang-020 | 2008-12-26 19:41 | /  XOOPS Language Translation Support
This module support to translate the language files.
This create the bilingual table of two language English and Foreign language,
like French Arabian Japanse Chinese Korean and others
* Changes *
1. support D3 modules
(1) If there are language files in XOOPS_TRUST_PATH,
those files are read.
(2) support prefix of language file
You want to make language file like the following.
modinfo.php
----
define($constpref."xxx","yyy");
----
you describe option file like the following.
exsample of options/webphoto/filter.php
-----
function xlang_filter_webphoto_modinfo_php_key( $str )
{
$key = '"_MI_WEBPHOTO_' ;
$val = '$constpref."' ;
$str = str_replace( $key, $val, $str );
return $str;
}
-----
|
| xoops facebook | facebook_030 | 2011-05-08 21:38 | /  v0.30
(1) アンイストール時に全ての関連付けを削除する |
| xoops google | googleplus_010 | 2011-12-15 12:24 | / 
■ 機能
GooglePlus のフィードを表示するモジュールです。
■ 使用上の注意
(1) 外部認証モジュールの GooglePlus 認証プラグインと一緒に使います。
(2) GooglePlus モジュールを先にインストールしてください。
インストール時に XOOPS config テーブルの属性を変更します。
conf_name, conf_title, conf_desc の文字列を255文字に拡張します。
(3) GooglePlusアプリケーションの登録とキー
WEBサイトごとに登録したキーが必要です。
下記からキーを取得してください。
GooglePlusアプリケーションの登録
https://code.google.com/apis/console/
(4) アプリの許可
GooglePlusにログインすると、「許可のリクエスト」の画面が表示されます。
詳しくは index_jp.html をご覧ください
■ Google API ライブラリ
https://developers.google.com/+/downloads
□ 下記のライブラリが必要です。
バージョンは 2011年12月 時点のもの。
- Google APIs Client Library for PHP
これらは同封されています。
|
| xoops twitter | twitter_040 | 2011-05-08 21:29 | /  v0.40
(1) 管理画面にユーザ管理を追加した
(2) アンイストール時に全ての関連付けを削除する |
| xoops4u | xoops4u_2016jp_20061107 | 2006-11-07 19:29 | /  パッケージの内容
XOOPS 本体
XOOPS 2.0.16a JP
* contact
* mydownloads
* mylinks
* newbb
* news
* sections
* system
* xoopsfaq
* xoopsheadline
* xoopsmembers
* xoopspartners
* xoopspoll
アドバンス
* myAlbum-P v2.87c UPDATE
* piCal v0.88a UPDATE
* weblinks v0.97
* TinyD v2.25 UPDATE
* テーマ xoops4u 20061101 UPDATE
オプション
* avaman v0.21 NEW
* blockadmin v0.33 UPDATE
* bluesBB v1.03
* bulk v0.20
* Bulletin v1.06 NEW
* happy_linux v0.32 NEW
* Liaise v1.26
* Liaise 言語パック
* newbb v2.0.2
* newbb 日本語言語パック
* newbb アイコン 丸ゴシック
* newbb アイコン 角ゴシック
* newbb パッチ
* news v1.44
* news 日本語言語パック
* news パッチ
* Protector v2.57 UPDATE
* rssc v0.40 UPDATE
* search v2.0 UPDATE
* sitemap v1.28 UPDATE
* smartfaq v1.04
* smartfaq 日本語言語パック
* smartsection v2.1 RC2 UPDATE
* smartsection 日本語言語パック UPDATE
* telafrenid v1.02
* telafrenid_k 2.0.12JP
* tplsadmin v1.01 NEW
* theme channger v2.6
* waiting v0.94b
* weblinks v1.13 NEW
* Whats New v2.12 UPDATE
* wordpress v0.5.0 RC final
* xhld v2.99
* xhnewbb v1.30 UPDATE
* XOOPS Gallery v1.2.52
* XP-Weather v1.3a(J2.3) UPDATE
ノンフリー
* Yomi-Search v0.86 UPDATE
* テーマ集 OCEAN-NET
パッチ
* sys_header.php 2.0.16JP UPDATE
* sys_module.textsanitizer.php 2.0.16JP UPDATE
|