Gz:inethelp

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(gz:inethelp domain' path)


機能
domain で指定した ウェブサイト中にある、path の URLを OS の標準ブラウザで開く


引数
  • domain:ヘルプサイトのドメイン(末尾の / は不要)
  • path :ヘルプサイト中にあるドメイン以降の URL を指定(先頭の / は不要)


戻り値
nil


  • memo

インターネットに接続できる環境になっている前提の機能です。 path 引数の拡張子の補完はありません。


サンプル
;  "https://gztools.zendesk.com/hc/ja/articles/360029031492" の URL を開く場合
(gz:inethelp "https://gztools.zendesk.com" "hc/ja/articles/360029031492")

; 言語ごとに表示ページを変えたりとか。
(setq lang "/hc/ja" section "/article/") ; 日本語用のページを表示
(setq lang "/hc/en-us" section "/article/") ; 英語用のページを表示
(gz:inethelp "https://gztools.zendesk.com" (strcat lang section "360029031492"))

; Google 検索したりとか
(gz:inethelp "https://www.google.com/search?q=" "ギズモツール"))


関連事項