「Gz:inethelp」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{AutoLISP}} ; 構文 : (gz:inethelp ''domain' ''path'') ; 機能 : domein で指定した ウェブサイト中にある、path の URLを OS の標準ブラウザで…」)
 
編集の要約なし
32行目: 32行目:
(setq lang "/hc/en-us" section "/article/") ; 英語用のページを表示
(setq lang "/hc/en-us" section "/article/") ; 英語用のページを表示
(gz:inethelp "https://gztools.zendesk.com" (strcat lang section "360029031492"))
(gz:inethelp "https://gztools.zendesk.com" (strcat lang section "360029031492"))
; Google 検索したりとか
(gz:inethelp "https://www.google.com/search?q=" "ギズモツール"))


</pre>
</pre>

2021年8月7日 (土) 08:19時点における版

構文
(gz:inethelp domain' path)


機能
domein で指定した ウェブサイト中にある、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=" "ギズモツール"))


関連事項