diff --git a/.claude/skills/nabledge-1.4/docs/README.md b/.claude/skills/nabledge-1.4/docs/README.md index e66249321..423d3e369 100644 --- a/.claude/skills/nabledge-1.4/docs/README.md +++ b/.claude/skills/nabledge-1.4/docs/README.md @@ -1,6 +1,6 @@ # Nablarch 6 ドキュメント -456 ページ +455 ページ ## about @@ -122,7 +122,6 @@ - [データベースコネクション名とトランザクション名](component/libraries/libraries-04_TransactionConnectionName.md) - [トランザクションタイムアウト機能](component/libraries/libraries-04_TransactionTimeout.md) - [ファイルダウンロード](component/libraries/libraries-05_FileDownload.md) -- [メッセージングログの出力](component/libraries/libraries-05_MessagingLog.md) - [開閉局](component/libraries/libraries-05_ServiceAvailability.md) - [静的データのキャッシュ](component/libraries/libraries-05_StaticDataCache.md) - [ファイルアップロード](component/libraries/libraries-06_FileUpload.md) diff --git a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-04_Permission.md b/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-04_Permission.md index f73b21253..3ab41e85a 100644 --- a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-04_Permission.md +++ b/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-04_Permission.md @@ -193,7 +193,7 @@ BasicPermissionFactoryクラスは初期化が必要なため :ref:`repository_i
keywords -認可チェック, PermissionCheckHandler, ハンドラ, 認可処理, BasicPermissionFactory, WebFrontController, RequestHandlerEntry, GroupTableSchema, SystemAccountTableSchema, GroupSystemAccountTableSchema, PermissionUnitTableSchema, PermissionUnitRequestTableSchema, GroupAuthorityTableSchema, SystemAccountAuthorityTableSchema, BasicBusinessDateProvider, SimpleDbTransactionManager, BasicApplicationInitializer, permissionFactory, ignoreRequestIds, dbManager, groupTableSchema, systemAccountTableSchema, groupSystemAccountTableSchema, permissionUnitTableSchema, permissionUnitRequestTableSchema, groupAuthorityTableSchema, systemAccountAuthorityTableSchema, businessDateProvider, tableName, groupIdColumnName, userIdColumnName, userIdLockedColumnName, failedCountColumnName, effectiveDateFromColumnName, effectiveDateToColumnName, permissionUnitIdColumnName, requestIdColumnName, 認可チェック設定, スキーマ情報設定, BasicPermissionFactory設定, PermissionCheckHandler設定 +認可チェック, PermissionCheckHandler, ハンドラ, 認可処理, BasicPermissionFactory, WebFrontController, RequestHandlerEntry, GroupTableSchema, SystemAccountTableSchema, GroupSystemAccountTableSchema, PermissionUnitTableSchema, PermissionUnitRequestTableSchema, GroupAuthorityTableSchema, SystemAccountAuthorityTableSchema, BasicBusinessDateProvider, SimpleDbTransactionManager, BasicApplicationInitializer, BusinessDateProvider, Initializable, permissionFactory, ignoreRequestIds, dbManager, groupTableSchema, systemAccountTableSchema, groupSystemAccountTableSchema, permissionUnitTableSchema, permissionUnitRequestTableSchema, groupAuthorityTableSchema, systemAccountAuthorityTableSchema, businessDateProvider, tableName, groupIdColumnName, userIdColumnName, userIdLockedColumnName, failedCountColumnName, effectiveDateFromColumnName, effectiveDateToColumnName, permissionUnitIdColumnName, requestIdColumnName, 認可チェック設定, スキーマ情報設定, BasicPermissionFactory設定, PermissionCheckHandler設定
@@ -250,7 +250,7 @@ BasicPermissionFactoryクラスは初期化が必要なため :ref:`repository_i > **注意**: 下記のコードはフレームワークが行う処理であり、通常のアプリケーションでは実装する必要がない。 -PermissionCheckHandlerにより、スレッドローカルにPermissionが保持されている。`nablarch.common.permission.PermissionUtil`からPermissionを取得し、リクエストIDを指定して認可判定を行う。 +PermissionCheckHandlerにより、スレッドローカルにPermissionが保持されている。PermissionUtilからPermissionを取得し、リクエストIDを指定して認可判定を行う。 ```java // PermissionUtilからPermissionを取得する @@ -284,7 +284,17 @@ if (permission.permit("リクエストID")) { - グループに認可単位を紐付け → グループ権限 - ユーザに認可単位を直接紐付け → ユーザ権限 -> **注意**: グループ権限とユーザ権限が異なる場合は、双方の権限に紐づく認可単位が足し合わされる。 +グループ権限とユーザ権限の例: + +| ユーザ | 説明 | +|---|---| +| Aさん | 人事部グループに紐づいているので、社員登録・社員削除・社員検索・社員情報変更を使用できる。 | +| Bさん | 社員グループに紐づいているので、社員検索・社員情報変更を使用できる。 | +| Cさん | パートナーグループに紐づいているので、社員情報変更のみ使用できる。 | +| Xさん | 部長グループと社員グループに紐づいているので、社員登録・社員削除・社員検索・社員情報変更を使用できる。 | +| Yさん | 社員グループに紐づいているので、社員検索・社員情報変更を使用できる。さらにDさんは、社員登録認可単位に直接紐づいているので、社員登録も使用できる。 | + +> **注意**: Yさんのようにグループ権限とユーザ権限が異なる場合は、双方の権限に紐づく認可単位が足し合わされる。 > **注意**: 通常はグループ権限を登録しユーザにグループを割り当てることで権限設定を行う。ユーザ権限はイレギュラーな権限付与に対応するために使用する。 @@ -304,12 +314,22 @@ if (permission.permit("リクエストID")) { | `nablarch.common.permission.Permission` | 認可インタフェース。認可判定の実現方法毎に実装クラスを作成する | | `nablarch.common.permission.PermissionFactory` | Permission生成インタフェース。認可情報の取得先毎に実装クラスを作成する | -**実装クラス**: +**Permissionの実装クラス**: | クラス名 | 概要 | |---|---| | `nablarch.common.permission.BasicPermission` | 保持しているリクエストIDを使用して認可を行うPermissionの基本実装クラス | + +**PermissionFactoryの実装クラス**: + +| クラス名 | 概要 | +|---|---| | `nablarch.common.permission.BasicPermissionFactory` | BasicPermissionを生成するPermissionFactoryの基本実装クラス。DBのユーザ・グループ毎の認可単位テーブル構造からユーザに紐付く認可情報を取得する | + +**その他のクラス**: + +| クラス名 | 概要 | +|---|---| | `nablarch.common.handler.PermissionCheckHandler` | 認可判定を行うハンドラ | | `nablarch.common.permission.PermissionUtil` | 権限管理に使用するユーティリティ | @@ -395,6 +415,6 @@ PermissionCheckHandler, PermissionUtil, ignoreRequestIdsSetting, ThreadContextHa
keywords -テーブル定義, グループ, グループID, システムアカウント, ユーザID, ユーザIDロック, グループシステムアカウント, 認可単位, 認可単位ID, 認可単位リクエスト, リクエストID, グループ権限, システムアカウント権限, BasicPermissionFactory +テーブル定義, グループ, グループID, システムアカウント, ユーザID, ユーザIDロック, 有効日, グループシステムアカウント, 認可単位, 認可単位ID, 認可単位リクエスト, リクエストID, グループ権限, システムアカウント権限, BasicPermissionFactory
diff --git a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-05_MessagingLog.md b/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-05_MessagingLog.md deleted file mode 100644 index b96ff4625..000000000 --- a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-05_MessagingLog.md +++ /dev/null @@ -1,299 +0,0 @@ -# メッセージングログの出力 - -## メッセージングログの出力 - -## 出力方針 - -ログレベル: INFO、ロガー名: MESSAGINGとしてアプリケーションログへ出力する。 - -log.propertiesの設定例: -```bash -writerNames=appFile - -writer.appFile.className=nablarch.core.log.basic.FileLogWriter -writer.appFile.filePath=/var/log/app/app.log -writer.appFile.encoding=UTF-8 -writer.appFile.maxFileSize=10000 -writer.appFile.formatter.className=nablarch.core.log.basic.BasicLogFormatter -writer.appFile.formatter.format=<アプリケーションログ用のフォーマット> - -availableLoggersNamesOrder=MESSAGING,ROO - -loggers.ROO.nameRegex=.* -loggers.ROO.level=INFO -loggers.ROO.writerNames=appFile - -loggers.MESSAGING.nameRegex=MESSAGING -loggers.MESSAGING.level=INFO -loggers.MESSAGING.writerNames=appFile -``` - -## 出力項目 - -| 項目名 | 説明 | -|---|---| -| 出力日時 | ログ出力時のシステム日時 | -| 起動プロセスID | アプリケーションを起動したプロセス名。実行環境の特定に使用する | -| 処理方式区分 | 処理方式の特定に使用する | -| リクエストID | 処理を一意に識別するID | -| 実行時ID | 処理の実行を一意に識別するID | -| ユーザID | ログインユーザのユーザID | -| スレッド名 | 処理を実行したスレッド名 | -| メッセージID | メッセージに設定されているメッセージID | -| 送信宛先 | メッセージに設定されている送信宛先 | -| 関連メッセージID | メッセージに設定されている関連メッセージID | -| 応答宛先 | メッセージに設定されている応答宛先 | -| 有効期間 | メッセージに設定されている有効期間 | -| メッセージヘッダ | メッセージに設定されているヘッダ | -| メッセージボディ | メッセージボディ部のダンプ。個人情報・機密情報はマスクして出力(マスク設定が必要) | -| メッセージボディのヘキサダンプ | メッセージボディ部のヘキサダンプ。マスク対象部分はマスク文字列のヘキサダンプを出力(マスク設定が必要) | -| メッセージボディのバイト長 | メッセージボディ部のバイト長 | - -個別項目(スレッド名〜メッセージボディのバイト長)以外の共通項目は :ref:`Log_BasicLogFormatter` で指定する。共通項目と個別項目を組み合わせたフォーマットは :ref:`AppLog_Format` を参照。 - -## 出力に使用するクラス - -![メッセージングログクラス図](../../../knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_ClassDiagram.jpg) - -| クラス名 | 概要 | -|---|---| -| `nablarch.fw.messaging.MessagingContext` | MOMメッセージ送受信処理で要求/応答メッセージの相互変換と送受信を行う。実際の送受信メッセージ内容をログ出力する | -| `nablarch.fw.messaging.handler.HttpMessagingRequestParsingHandler` | HTTPリクエストを解析して要求メッセージへ変換するハンドラ。受信メッセージ内容をログ出力する | -| `nablarch.fw.messaging.handler.HttpMessagingResponseBuildingHandler` | 応答メッセージをHTTPレスポンスへ変換するハンドラ。送信メッセージ内容をログ出力する | -| `nablarch.fw.messaging.realtime.http.client.HttpMessagingClient` | 要求メッセージからHTTPリクエストへの変換およびHTTPレスポンスの応答メッセージへの変換を行う。送受信メッセージ内容をログ出力する | -| `nablarch.fw.messaging.logging.MessagingLogUtil` | メッセージング処理中のログ出力内容に関連した処理を行う | -| `nablarch.fw.messaging.logging.MessagingLogFormatter` | メッセージングログの個別項目をフォーマットする | - -各クラスはMessagingLogUtilを使用してメッセージングログを整形し、Loggerを使用してログ出力を行う。 - -処理シーケンス: -- MOM同期応答メッセージ受信: ![MOM受信シーケンス図](../../../knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_incoming.jpg) - - MOM応答不要メッセージ受信処理では、MOM受信ログの出力および業務アクションの呼び出しまでの処理が行われる(シーケンス図省略) -- MOM同期応答メッセージ送信: ![MOM送信シーケンス図](../../../knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_outgoing.jpg) - - MOM応答不要メッセージ送信処理では、MOM送信ログの出力および要求キューメッセージの送信までの処理が行われる(シーケンス図省略) -- HTTPメッセージ受信: ![HTTP受信シーケンス図](../../../knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_incoming.jpg) -- HTTPメッセージ送信: ![HTTP送信シーケンス図](../../../knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_outgoing.jpg) - -## 設定方法 - -MessagingLogUtilはapp-log.propertiesを読み込みMessagingLogFormatterオブジェクトを生成して個別項目のフォーマット処理を委譲する。プロパティファイルのパス指定や実行時設定変更は :ref:`AppLog_Config` を参照。 - -app-log.propertiesの設定例: -```bash -messagingLogFormatter.className=nablarch.fw.messaging.logging.MessagingLogFormatter -messagingLogFormatter.maskingChar=# -messagingLogFormatter.maskingPatterns=(.+?),(.+?) - -messagingLogFormatter.sentMessageFormat=@@@@ SENT MESSAGE @@@@\n\tthread_name = [$threadName$]\n\tmessage_id = [$messageId$]\n\tdestination = [$destination$]\n\tcorrelation_id = [$correlationId$]\n\treply_to = [$replyTo$]\n\ttime_to_live = [$timeToLive$]\n\tmessage_body = [$messageBody$] -messagingLogFormatter.receivedMessageFormat=@@@@ RECEIVED MESSAGE @@@@\n\tthread_name = [$threadName$]\n\tmessage_id = [$messageId$]\n\tdestination = [$destination$]\n\tcorrelation_id = [$correlationId$]\n\treply_to = [$replyTo$]\n\tmessage_body = [$messageBody$] -messagingLogFormatter.httpSentMessageFormat=@@@@ HTTP SENT MESSAGE @@@@\n\tthread_name = [$threadName$]\n\tmessage_id = [$messageId$]\n\tdestination = [$destination$]\n\tcorrelation_id = [$correlationId$]\n\tmessage_header = [$messageHeader$]\n\tmessage_body = [$messageBody$] -messagingLogFormatter.httpReceivedMessageFormat=@@@@ HTTP RECEIVED MESSAGE @@@@\n\tthread_name = [$threadName$]\n\tmessage_id = [$messageId$]\n\tdestination = [$destination$]\n\tcorrelation_id = [$correlationId$]\n\tmessage_header = [$messageHeader$]\n\tmessage_body = [$messageBody$] -``` - -| プロパティ名 | 説明 | -|---|---| -| messagingLogFormatter.className | MessagingLogFormatterのクラス名。差し替える場合に指定 | -| messagingLogFormatter.maskingPatterns | メッセージ本文のマスク対象文字列を正規表現で指定。最初のキャプチャ部分(括弧で囲まれた部分)がマスク対象。複数指定はカンマ区切り。Pattern.CASE_INSENSITIVEでコンパイルされる | -| messagingLogFormatter.maskingChar | マスクに使用する文字。デフォルトは'*' | -| messagingLogFormatter.sentMessageFormat | MOM送信メッセージのログ出力フォーマット | -| messagingLogFormatter.receivedMessageFormat | MOM受信メッセージのログ出力フォーマット | -| messagingLogFormatter.httpSentMessageFormat | HTTP送信メッセージのログ出力フォーマット | -| messagingLogFormatter.httpReceivedMessageFormat | HTTP受信メッセージのログ出力フォーマット | - -## 出力例 - -cnoタグ内容をマスクするHTTPメッセージ受信処理の例。 - -app-log.propertiesの設定例: -```bash -messagingLogFormatter.maskingChar=# -messagingLogFormatter.maskingPatterns=(.*?) -messagingLogFormatter.httpSentMessageFormat=@@@@ SENT MESSAGE @@@@\n\tthread_name = [$threadName$]\n\tmessage_id = [$messageId$]\n\tdestination = [$destination$]\n\tcorrelation_id = [$correlationId$]\n\tmessage_header = [$messageHeader$]\n\tmessage_length = [$messageBodyLength$]\n\tmessage_body = [$messageBody$]\n\tmessage_bodyhex= [$messageBodyHex$] -messagingLogFormatter.httpReceivedMessageFormat=@@@@ RECEIVED MESSAGE @@@@\n\tthread_name = [$threadName$]\n\tmessage_id = [$messageId$]\n\tdestination = [$destination$]\n\tcorrelation_id = [$correlationId$]\n\tmessage_header = [$messageHeader$]\n\tmessage_length = [$messageBodyLength$]\n\tmessage_body = [$messageBody$]\n\tmessage_bodyhex= [$messageBodyHex$] -``` - -log.propertiesの設定例: -```bash -writerNames=appFile - -writer.appFile.className=nablarch.core.log.basic.FileLogWriter -writer.appFile.filePath=./app.log -writer.appFile.encoding=UTF-8 -writer.appFile.maxFileSize=10000 -writer.appFile.formatter.className=nablarch.core.log.basic.BasicLogFormatter -writer.appFile.formatter.format=$date$ -$logLevel$- $loggerName$ [$executionId$] boot_proc = [$bootProcess$] proc_sys = [$processingSystem$] req_id = [$requestId$] usr_id = [$userId$] $message$$information$$stackTrace$ - -availableLoggersNamesOrder=MESSAGING - -loggers.MESSAGING.nameRegex=MESSAGING -loggers.MESSAGING.level=INFO -loggers.MESSAGING.writerNames=appFile -``` - -出力例(cnoタグの内容はmaskingCharで指定した文字にマスクされ、ヘキサダンプ部分もマスク文字列のヘキサダンプが出力される): -``` -2014-06-27 11:07:51.314 -INFO- MESSAGING [null] boot_proc = [] proc_sys = [] req_id = [RM11AC0102] usr_id = [unitTest] @@@@ HTTP RECEIVED MESSAGE @@@@ - thread_name = [main] - message_id = [1403834871251] - destination = [null] - correlation_id = [null] - message_header = [{x-message-id=1403834871251, MessageId=1403834871251, ReplyTo=/action/RM11AC0102}] - message_length = [216] - message_body = [<_nbctlhdr>unitTest0nablarchナブラーク****************] - message_bodyhex= [3C3F786D6C...(マスク文字列のヘキサダンプ)] -2014-06-27 11:07:51.329 -INFO- MESSAGING [null] boot_proc = [] proc_sys = [] req_id = [RM11AC0102] usr_id = [unitTest] @@@@ HTTP SENT MESSAGE @@@@ - thread_name = [main] - message_id = [null] - destination = [/action/RM11AC0102] - correlation_id = [1403834871251] - message_header = [{CorrelationId=1403834871251, Destination=/action/RM11AC0102}] - message_length = [145] - message_body = [<_nbctlhdr>200success] - message_bodyhex= [3C3F786D6C...(ヘキサダンプ)] -``` - -
-keywords - -MessagingLogUtil, MessagingLogFormatter, MessagingContext, HttpMessagingRequestParsingHandler, HttpMessagingResponseBuildingHandler, HttpMessagingClient, messagingLogFormatter.maskingPatterns, messagingLogFormatter.maskingChar, messagingLogFormatter.sentMessageFormat, messagingLogFormatter.receivedMessageFormat, messagingLogFormatter.httpSentMessageFormat, messagingLogFormatter.httpReceivedMessageFormat, messagingLogFormatter.className, メッセージングログ設定, メッセージボディマスク, MOMメッセージング, HTTPメッセージング, 個人情報マスク, MOM応答不要 - -
- -## MOM送信メッセージのログ出力に使用するフォーマット - -## プレースホルダ一覧 - -| 項目名 | プレースホルダ | -|---|---| -| スレッド名 | $threadName$ | -| メッセージID | $messageId$ | -| 送信宛先 | $destination$ | -| 関連メッセージID | $correlationId$ | -| 応答宛先 | $replyTo$ | -| 有効期間 | $timeToLive$ | -| メッセージボディの内容 | $messageBody$ | -| メッセージボディのヘキサダンプ | $messageBodyHex$ | -| メッセージボディのバイト長 | $messageBodyLength$ | - -## デフォルトフォーマット - -```bash -@@@@ SENT MESSAGE @@@@ - \n\tthread_name = [$threadName$] - \n\tmessage_id = [$messageId$] - \n\tdestination = [$destination$] - \n\tcorrelation_id = [$correlationId$] - \n\treply_to = [$replyTo$] - \n\ttime_to_live = [$timeToLive$] - \n\tmessage_body = [$messageBody$] -``` - -
-keywords - -$threadName$, $messageId$, $destination$, $correlationId$, $replyTo$, $timeToLive$, $messageBody$, $messageBodyHex$, $messageBodyLength$, MOM送信メッセージフォーマット, sentMessageFormat, SENT MESSAGE - -
- -## MOM受信メッセージのログ出力に使用するフォーマット - -## プレースホルダ一覧 - -| 項目名 | プレースホルダ | -|---|---| -| スレッド名 | $threadName$ | -| メッセージID | $messageId$ | -| 送信宛先 | $destination$ | -| 関連メッセージID | $correlationId$ | -| 応答宛先 | $replyTo$ | -| 有効期間 | $timeToLive$ | -| メッセージボディの内容 | $messageBody$ | -| メッセージボディのヘキサダンプ | $messageBodyHex$ | -| メッセージボディのバイト長 | $messageBodyLength$ | - -## デフォルトフォーマット - -```bash -@@@@ RECEIVED MESSAGE @@@@ - \n\tthread_name = [$threadName$] - \n\tmessage_id = [$messageId$] - \n\tdestination = [$destination$] - \n\tcorrelation_id = [$correlationId$] - \n\treply_to = [$replyTo$] - \n\tmessage_body = [$messageBody$] -``` - -
-keywords - -$threadName$, $messageId$, $destination$, $correlationId$, $replyTo$, $timeToLive$, $messageBody$, $messageBodyHex$, $messageBodyLength$, MOM受信メッセージフォーマット, receivedMessageFormat, RECEIVED MESSAGE - -
- -## HTTP送信メッセージのログ出力に使用するフォーマット - -## プレースホルダ一覧 - -| 項目名 | プレースホルダ | -|---|---| -| スレッド名 | $threadName$ | -| メッセージID | $messageId$ | -| 送信先 | $destination$ | -| 関連メッセージID | $correlationId$ | -| メッセージボディの内容 | $messageBody$ | -| メッセージボディのヘキサダンプ | $messageBodyHex$ | -| メッセージボディのバイト長 | $messageBodyLength$ | -| メッセージのヘッダ | $messageHeader$ | - -## デフォルトフォーマット - -```bash -@@@@ HTTP SENT MESSAGE @@@@ - \n\tthread_name = [$threadName$] - \n\tmessage_id = [$messageId$] - \n\tdestination = [$destination$] - \n\tcorrelation_id = [$correlationId$] - \n\tmessage_header = [$messageHeader$] - \n\tmessage_body = [$messageBody$] -``` - -
-keywords - -$threadName$, $messageId$, $destination$, $correlationId$, $messageBody$, $messageBodyHex$, $messageBodyLength$, $messageHeader$, HTTP送信メッセージフォーマット, httpSentMessageFormat, HTTP SENT MESSAGE - -
- -## HTTP受信メッセージのログ出力に使用するフォーマット - -## プレースホルダ一覧 - -| 項目名 | プレースホルダ | -|---|---| -| スレッド名 | $threadName$ | -| メッセージID | $messageId$ | -| 送信先 | $destination$ | -| 関連メッセージID | $correlationId$ | -| メッセージボディの内容 | $messageBody$ | -| メッセージボディのヘキサダンプ | $messageBodyHex$ | -| メッセージボディのバイト長 | $messageBodyLength$ | -| メッセージのヘッダ | $messageHeader$ | - -## デフォルトフォーマット - -```bash -@@@@ HTTP RECEIVED MESSAGE @@@@ - \n\tthread_name = [$threadName$] - \n\tmessage_id = [$messageId$] - \n\tdestination = [$destination$] - \n\tcorrelation_id = [$correlationId$] - \n\tmessage_header = [$messageHeader$] - \n\tmessage_body = [$messageBody$] -``` - -
-keywords - -$threadName$, $messageId$, $destination$, $correlationId$, $messageBody$, $messageBodyHex$, $messageBodyLength$, $messageHeader$, HTTP受信メッセージフォーマット, httpReceivedMessageFormat, HTTP RECEIVED MESSAGE - -
diff --git a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-07_TagReference.md b/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-07_TagReference.md index 2d77ed22b..75c3d2f19 100644 --- a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-07_TagReference.md +++ b/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-07_TagReference.md @@ -81,8 +81,8 @@ Nablarch WebViewが提供するカスタムタグの一覧。 | shape | | | XHTMLのshape属性 | | coords | | | XHTMLのcoords属性 | | secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse | -| popupWindowName | | | ポップアップのウィンドウ名。window.open関数の第2引数(JavaScript)に指定する | -| popupOption | | | ポップアップのオプション情報。window.open関数の第3引数(JavaScript)に指定する | +| popupWindowName | | | ポップアップのウィンドウ名。新しいウィンドウを開く際にwindwo.open関数の第2引数(JavaScript)に指定する | +| popupOption | | | ポップアップのオプション情報。新しいウィンドウを開く際にwindwo.open関数の第3引数(JavaScript)に指定する | | displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) | ## codeCheckboxesタグ @@ -106,7 +106,7 @@ Nablarch WebViewが提供するカスタムタグの一覧。
keywords -formタグ, textタグ, textareaタグ, passwordタグ, radioButtonタグ, checkboxタグ, selectタグ, submitタグ, カスタムタグ, WebView, サブミット制御, 二重サブミット防止, コード値表示, ポップアップ, ダウンロード, 確認画面, 入力画面, compositeKeyCheckbox, name, valueObject, keyNames, namePrefix, errorCss, nameAlias, 複合キーチェックボックス, 複合キー, popupLink, ポップアップリンク, popupWindowName, popupOption, displayMethod, secure, uri, codeCheckboxes, コードチェックボックス複数, コードID, labelPattern, listFormat, codeId, pattern, optionColumnName, autofocus, disabled, onchange +formタグ, textタグ, textareaタグ, passwordタグ, radioButtonタグ, checkboxタグ, selectタグ, submitタグ, compositeKeyRadioButtonタグ, CompositeKeyRadioButtonTag, fileタグ, FileTag, hiddenタグ, HiddenTag, plainHiddenタグ, PlainHiddenTag, radiobuttonsタグ, RadioButtonsTag, checkboxesタグ, CheckboxesTag, buttonタグ, ButtonTag, submitLinkタグ, SubmitLinkTag, popupSubmitタグ, PopupSubmitTag, popupButtonタグ, PopupButtonTag, popupLinkタグ, PopupLinkTag, downloadSubmitタグ, DownloadSubmitTag, downloadButtonタグ, DownloadButtonTag, downloadLinkタグ, DownloadLinkTag, paramタグ, ParamTag, changeParamNameタグ, ChangeParamNameTag, aタグ, ATag, imgタグ, ImgTag, linkタグ, LinkTag, scriptタグ, ScriptTag, errorsタグ, ErrorsTag, errorタグ, ErrorTag, noCacheタグ, NoCacheTag, codeSelectタグ, CodeSelectTag, codeRadioButtonsタグ, CodeRadioButtonsTag, codeCheckboxesタグ, CodeCheckboxesTag, codeCheckboxタグ, CodeCheckboxTag, codeタグ, CodeTag, messageタグ, MessageTag, writeタグ, WriteTag, prettyPrintタグ, PrettyPrintTag, rawWriteタグ, RawWriteTag, setタグ, SetTag, includeタグ, IncludeTag, includeParamタグ, IncludeParamTag, confirmationPageタグ, ConfirmationPageTag, ignoreConfirmationタグ, IgnoreConfirmationTag, forInputPageタグ, ForInputPageTag, forConfirmationPageタグ, ForConfirmationPageTag, カスタムタグ, WebView, サブミット制御, 二重サブミット防止, コード値表示, ポップアップ, ダウンロード, 確認画面, 入力画面, compositeKeyCheckbox, name, valueObject, keyNames, namePrefix, autofocus, label, disabled, onchange, errorCss, nameAlias, 複合キーチェックボックス, 複合キー, popupLink, ポップアップリンク, popupWindowName, popupOption, displayMethod, secure, uri, shape, coords, codeCheckboxes, コードチェックボックス複数, コードID, labelPattern, listFormat, codeId, pattern, optionColumnName
@@ -190,7 +190,7 @@ formタグ, textタグ, textareaタグ, passwordタグ, radioButtonタグ, check
keywords -共通属性, id, cssClass, style, title, lang, xmlLang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, HTMLタグ共通属性, GenericAttributesTag, compositeKeyRadioButton, name, valueObject, keyNames, namePrefix, errorCss, nameAlias, 複合キーラジオボタン, カスタムタグ, 複合キー, downloadSubmit, ダウンロード送信, allowDoubleSubmission, 二重サブミット, displayMethod, secure, uri, codeCheckbox, コードチェックボックス単体, offCodeValue, コード値チェックボックス, codeId, labelPattern, value, autofocus, optionColumnName, disabled, onchange +共通属性, id, cssClass, style, title, lang, xmlLang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, HTMLタグ共通属性, GenericAttributesTag, compositeKeyRadioButton, name, valueObject, keyNames, namePrefix, autofocus, label, disabled, onchange, errorCss, nameAlias, 複合キーラジオボタン, カスタムタグ, 複合キー, downloadSubmit, ダウンロード送信, allowDoubleSubmission, 二重サブミット, displayMethod, secure, uri, type, value, src, alt, usemap, align, codeCheckbox, コードチェックボックス単体, offCodeValue, コード値チェックボックス, codeId, labelPattern, optionColumnName
@@ -252,7 +252,7 @@ formタグ, textタグ, textareaタグ, passwordタグ, radioButtonタグ, check
keywords -accesskey, tabindex, onfocus, onblur, フォーカス属性, FocusAttributesTag, file, name, disabled, readonly, accept, multiple, errorCss, nameAlias, ファイルアップロード, カスタムタグ, downloadButton, ダウンロードボタン, allowDoubleSubmission, 二重サブミット, displayMethod, secure, uri, code, コード値表示, コードリスト表示, codeId, pattern, labelPattern, listFormat, optionColumnName +accesskey, tabindex, onfocus, onblur, フォーカス属性, FocusAttributesTag, file, name, disabled, readonly, size, maxlength, onselect, onchange, accept, autofocus, multiple, errorCss, nameAlias, ファイルアップロード, カスタムタグ, downloadButton, ダウンロードボタン, allowDoubleSubmission, 二重サブミット, displayMethod, secure, uri, value, type, code, コード値表示, コードリスト表示, codeId, pattern, labelPattern, listFormat, optionColumnName
@@ -306,7 +306,7 @@ HTMLタグの出力を行わず、ウィンドウスコープに値を出力す | 属性 | 必須 | デフォルト値 | 説明 | |---|---|---|---| | messageId | ○ | | メッセージID。 | -| option0~option9 | | | メッセージフォーマットに使用するオプション引数(インデックス0~9)。最大10個まで指定可能。 | +| option0~option9 | | | メッセージフォーマットに使用するインデックスが0~9のオプション引数。最大10個まで指定可能。 | | language | | スレッドコンテキストの言語 | メッセージの言語。 | | var | | | リクエストスコープに格納する変数名。指定した場合はメッセージを出力せずリクエストスコープに設定する。この場合はHTMLエスケープとHTMLフォーマットを行わない。 | | htmlEscape | | true | HTMLエスケープするか否か(true/false)。 | @@ -315,7 +315,7 @@ HTMLタグの出力を行わず、ウィンドウスコープに値を出力す
keywords -name, action, method, enctype, onsubmit, onreset, accept, acceptCharset, target, autocomplete, windowScopePrefixes, useToken, secure, preventPostResubmit, formタグ, POST再送信防止, トークン, 不正画面遷移, ウィンドウスコープ, WebView_FormTag, hidden, disabled, 隠しフィールド, HTMLタグ非出力, カスタムタグ, downloadLink, ダウンロードリンク, allowDoubleSubmission, 二重サブミット, displayMethod, uri, message, メッセージ表示, メッセージID, HTMLエスケープ, messageId, htmlEscape, withHtmlFormat, var, language +name, action, method, enctype, onsubmit, onreset, accept, acceptCharset, target, autocomplete, windowScopePrefixes, useToken, secure, preventPostResubmit, formタグ, POST再送信防止, トークン, 不正画面遷移, ウィンドウスコープ, WebView_FormTag, hidden, disabled, 隠しフィールド, HTMLタグ非出力, カスタムタグ, downloadLink, ダウンロードリンク, allowDoubleSubmission, 二重サブミット, displayMethod, uri, shape, coords, message, メッセージ表示, メッセージID, HTMLエスケープ, messageId, option0~option9, htmlEscape, withHtmlFormat, var, language
@@ -385,7 +385,7 @@ HTMLのinputタグ(type=text)を出力するカスタムタグ(:ref:`WebView_T valueFormat="yyyymmdd{yyyy/MM/dd}" ``` -- **yyyymm**: 年月フォーマット。値はyyyyMM形式の文字列。使用方法はyyyymmddと同様。 +- **yyyymm**: 年月フォーマット。値はyyyyMM形式またはパターン形式の文字列を指定する。使用方法は、yyyymmddと同様。 - **dateTime**: 日時フォーマット(**writeタグのみで使用可能**)。値はjava.util.Date型。パターンはjava.text.SimpleDateFormat構文。ThreadContextのタイムゾーンを使用。区切り文字"|"でパターンにタイムゾーンを直接指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定と区切り文字変更可。 ``` @@ -404,7 +404,7 @@ HTMLのinputタグ(type=text)を出力するカスタムタグ(:ref:`WebView_T
keywords -name, disabled, readonly, size, maxlength, errorCss, nameAlias, valueFormat, yyyymmdd, yyyymm, decimal, textタグ, 入力データ復元, 日付フォーマット, 数値フォーマット, ExtendedValidation_yyyymmddConvertor, ExtendedValidation_yyyymmConvertor, WebView_TextTag, WebView_CustomTagConfig, BigDecimalConvertor, IntegerConvertor, LongConvertor, plainHidden, 隠しフィールド, カスタムタグ, param, paramName, サブミットパラメータ, パラメータ名, write, 値表示, dateTime, withHtmlFormat +name, disabled, readonly, size, maxlength, errorCss, nameAlias, valueFormat, yyyymmdd, yyyymm, decimal, textタグ, 入力データ復元, 日付フォーマット, 数値フォーマット, ExtendedValidation_yyyymmddConvertor, ExtendedValidation_yyyymmConvertor, WebView_TextTag, WebView_CustomTagConfig, BigDecimalConvertor, IntegerConvertor, LongConvertor, plainHidden, 隠しフィールド, カスタムタグ, param, paramName, サブミットパラメータ, パラメータ名, value, write, 値表示, dateTime, withHtmlFormat
@@ -468,7 +468,7 @@ HTMLのtextareaタグを出力するカスタムタグ(:ref:`WebView_TextareaT
keywords -name, rows, cols, disabled, readonly, errorCss, nameAlias, textareaタグ, 入力データ復元, WebView_TextareaTag, select, listName, elementLabelProperty, elementValueProperty, elementLabelPattern, listFormat, withNoneOption, noneOptionLabel, セレクトボックス, プルダウン, カスタムタグ, changeParamName, パラメータ名変更, paramName, inputName, prettyPrint, 整形表示 +name, rows, cols, disabled, readonly, errorCss, nameAlias, textareaタグ, 入力データ復元, WebView_TextareaTag, select, listName, elementLabelProperty, elementValueProperty, size, multiple, tabindex, onfocus, onblur, onchange, autofocus, elementLabelPattern, listFormat, withNoneOption, noneOptionLabel, セレクトボックス, プルダウン, カスタムタグ, changeParamName, パラメータ名変更, paramName, inputName, prettyPrint, 整形表示
@@ -548,7 +548,7 @@ HTMLのinputタグ(type=password)を出力するカスタムタグ(:ref:`WebVi
keywords -name, restoreValue, replacement, errorCss, nameAlias, passwordタグ, パスワード, 置換文字, 確認画面, WebView_PasswordTag, radioButtons, listName, elementLabelProperty, elementValueProperty, elementLabelPattern, listFormat, ラジオボタン, カスタムタグ, id属性指定不可, aタグ, アンカー, href, hreflang, secure, target, rawWrite, HTMLエスケープなし出力, 生データ表示, setタグ, var, scope, bySingleValue, value +name, restoreValue, replacement, errorCss, nameAlias, passwordタグ, パスワード, 置換文字, 確認画面, WebView_PasswordTag, radioButtons, listName, elementLabelProperty, elementValueProperty, disabled, onchange, autofocus, elementLabelPattern, listFormat, ラジオボタン, カスタムタグ, id属性指定不可, aタグ, アンカー, href, hreflang, secure, target, charset, type, rel, rev, shape, coords, rawWrite, HTMLエスケープなし出力, 生データ表示, setタグ, var, scope, bySingleValue, value
@@ -590,7 +590,7 @@ HTMLのinputタグ(type=radio)を出力するカスタムタグ(:ref:`WebView_ | 属性名 | 必須 | デフォルト値 | 説明 | |---|---|---|---| | :ref:`WebView_GenericAttributesTag` | | | | -| src | ○ | | XHTMLのsrc属性。:ref:`WebView_SpecifyUri` を参照 | +| src | ○ | | XHTMLのcharsrc属性。:ref:`WebView_SpecifyUri` を参照 | | alt | ○ | | XHTMLのalt属性 | | name | | | XHTMLのname属性 | | longdesc | | | XHTMLのlongdesc属性 | @@ -613,7 +613,7 @@ HTMLのinputタグ(type=radio)を出力するカスタムタグ(:ref:`WebView_
keywords -name, value, label, errorCss, nameAlias, radioButtonタグ, ラジオボタン, 入力データ復元, WebView_RadioButtonTag, checkboxes, listName, elementLabelProperty, elementValueProperty, elementLabelPattern, listFormat, チェックボックス, カスタムタグ, id属性指定不可, imgタグ, 画像, src, alt, secure, usemap, include, ファイルインクルード, path +name, value, label, errorCss, nameAlias, radioButtonタグ, ラジオボタン, 入力データ復元, WebView_RadioButtonTag, checkboxes, listName, elementLabelProperty, elementValueProperty, disabled, onchange, autofocus, elementLabelPattern, listFormat, チェックボックス, カスタムタグ, id属性指定不可, imgタグ, 画像, src, alt, secure, usemap, longdesc, height, width, ismap, align, border, hspace, vspace, include, ファイルインクルード, path
@@ -681,7 +681,7 @@ HTMLのinputタグ(type=checkbox)を出力するカスタムタグ(:ref:`WebVi
keywords -name, value, label, useOffValue, offLabel, offValue, errorCss, nameAlias, checkboxタグ, チェックボックス, 入力データ復元, WebView_CheckboxTag, submit, type, uri, allowDoubleSubmission, secure, displayMethod, src, alt, usemap, align, 二重サブミット, 認可判定, 開閉局判定, 画像ボタン, カスタムタグ, linkタグ, リンク, href, media, rel, includeParam, インクルードパラメータ, paramName +name, value, label, useOffValue, offLabel, offValue, errorCss, nameAlias, checkboxタグ, チェックボックス, 入力データ復元, WebView_CheckboxTag, submit, type, uri, allowDoubleSubmission, secure, displayMethod, src, alt, usemap, align, 二重サブミット, 認可判定, 開閉局判定, 画像ボタン, カスタムタグ, linkタグ, リンク, href, media, rel, charset, hreflang, rev, target, includeParam, インクルードパラメータ, paramName
@@ -725,7 +725,7 @@ name, value, label, useOffValue, offLabel, offValue, errorCss, nameAlias, checkb
keywords -CompositeKeyCheckboxTag, WebView_CompositeKeyCheckboxTag, 複合キー, チェックボックス, 複数チェックボックス, checkboxesタグ, 入力データ復元, button, uri, allowDoubleSubmission, secure, displayMethod, ボタン, 二重サブミット, 認可判定, カスタムタグ, scriptタグ, スクリプト, src, xmlSpace, defer, confirmationPage, 確認画面, フォワード先, path +CompositeKeyCheckboxTag, WebView_CompositeKeyCheckboxTag, 複合キー, チェックボックス, 複数チェックボックス, checkboxesタグ, 入力データ復元, button, name, value, type, disabled, autofocus, uri, allowDoubleSubmission, secure, displayMethod, ボタン, 二重サブミット, 認可判定, カスタムタグ, scriptタグ, スクリプト, src, xmlSpace, defer, id, charset, language, confirmationPage, 確認画面, フォワード先, path
@@ -751,7 +751,7 @@ CompositeKeyCheckboxTag, WebView_CompositeKeyCheckboxTag, 複合キー, チェ | infoCss | | nablarch_info | 情報レベルのメッセージに使用するCSSクラス名 | | warnCss | | nablarch_warn | 警告レベルのメッセージに使用するCSSクラス名 | | errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 | -| filter | | all | リストに含めるメッセージのフィルタ条件。all(全てのメッセージを表示)/ global(ValidationResultMessageのプロパティ名が入っているメッセージを取り除いて出力) | +| filter | | all | リストに含めるメッセージのフィルタ条件。all(全てのメッセージを表示)/ global(入力項目に対応しないメッセージのみを表示。ValidationResultMessageのプロパティ名が入っているメッセージを取り除いて出力) | ## ignoreConfirmationタグ @@ -760,7 +760,7 @@ CompositeKeyCheckboxTag, WebView_CompositeKeyCheckboxTag, 複合キー, チェ
keywords -submitLink, uri, allowDoubleSubmission, secure, displayMethod, shape, coords, リンクサブミット, 二重サブミット, カスタムタグ, errors, エラー表示, cssClass, filter, nablarch_errors, ValidationResultMessage, global, infoCss, warnCss, ignoreConfirmation, 確認画面無視, 入力確認フロー +submitLink, name, uri, allowDoubleSubmission, secure, displayMethod, shape, coords, リンクサブミット, 二重サブミット, カスタムタグ, errors, エラー表示, cssClass, filter, nablarch_errors, ValidationResultMessage, global, infoCss, warnCss, errorCss, nablarch_error, nablarch_info, nablarch_warn, ignoreConfirmation, 確認画面無視, 入力確認フロー
@@ -800,7 +800,7 @@ submitLink, uri, allowDoubleSubmission, secure, displayMethod, shape, coords,
keywords -popupSubmit, type, uri, popupWindowName, popupOption, secure, displayMethod, src, alt, usemap, align, ポップアップ, サブミット, 画像ボタン, カスタムタグ, error, エラーメッセージ, messageFormat, errorCss, nablarch_error, forInputPage, 入力画面条件表示, 入力画面専用 +popupSubmit, name, disabled, value, autofocus, type, uri, popupWindowName, popupOption, secure, displayMethod, src, alt, usemap, align, ポップアップ, サブミット, 画像ボタン, カスタムタグ, error, エラーメッセージ, messageFormat, errorCss, nablarch_error, forInputPage, 入力画面条件表示, 入力画面専用
@@ -832,7 +832,7 @@ popupSubmit, type, uri, popupWindowName, popupOption, secure, displayMethod, src
keywords -popupButton, uri, popupWindowName, popupOption, secure, displayMethod, ポップアップ, ボタン, カスタムタグ, noCache, キャッシュ無効化, forConfirmationPage, 確認画面条件表示, 確認画面専用 +popupButton, name, value, type, disabled, autofocus, uri, popupWindowName, popupOption, secure, displayMethod, ポップアップ, ボタン, カスタムタグ, noCache, キャッシュ無効化, forConfirmationPage, 確認画面条件表示, 確認画面専用
diff --git a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-thread_context.md b/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-thread_context.md index 8849a57f0..cb5ba4bb2 100644 --- a/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-thread_context.md +++ b/.claude/skills/nabledge-1.4/docs/component/libraries/libraries-thread_context.md @@ -5,6 +5,8 @@ スレッドコンテキストはスレッドローカル変数上の変数スコープ。ユーザIDやリクエストIDなど、実行コンテキスト経由での引き回しが難しいパラメータを格納する。 - 多くの値は[../handler/ThreadContextHandler](../handlers/handlers-ThreadContextHandler.md)によって設定される +- それ以外ハンドラでも、スレッドコンテキストに変数を設定するものが存在する +- 業務アクションハンドラから任意の変数を設定することも可能 - 子スレッドを起動した場合、親スレッドの値が暗黙的に引き継がれる - 子スレッドで値を変更する場合は、明示的に子スレッドで値を設定すること @@ -12,9 +14,9 @@ ## LanguageAttribute -| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 | -|---|---|---|---|---| -| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 | +| プロパティ名 | 必須 | デフォルト値 | 説明 | +|---|---|---|---| +| defaultLanguage | | システムデフォルトロケール | デフォルト言語 | ## HttpLanguageAttribute @@ -27,10 +29,10 @@ ``` -| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 | -|---|---|---|---|---| -| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 | -| supportedLanguages | String | ○ | | サポート対象言語 | +| プロパティ名 | 必須 | デフォルト値 | 説明 | +|---|---|---|---| +| defaultLanguage | | システムデフォルトロケール | デフォルト言語 | +| supportedLanguages | ○ | | サポート対象言語 | ## LanguageAttributeInHttpCookie @@ -46,15 +48,15 @@ ``` -| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 | -|---|---|---|---|---| -| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 | -| supportedLanguages | String | ○ | | サポート対象言語 | -| cookieName | String | | nablarch_language | 言語を保持するクッキー名 | -| cookiePath | String | | コンテキストパス | クッキーのURIパス階層 | -| cookieDomain | String | | リクエストURLのドメイン名 | クッキーのドメイン階層 | -| cookieMaxAge | int | | ブラウザ終了まで | クッキーの最長存続期間(秒) | -| cookieSecure | boolean | | false(secure属性なし) | クッキーのsecure属性 | +| プロパティ名 | 必須 | デフォルト値 | 説明 | +|---|---|---|---| +| defaultLanguage | | システムデフォルトロケール | デフォルト言語 | +| supportedLanguages | ○ | | サポート対象言語 | +| cookieName | | nablarch_language | 言語を保持するクッキー名 | +| cookiePath | | コンテキストパス | クッキーのURIパス階層 | +| cookieDomain | | リクエストURLのドメイン名 | クッキーのドメイン階層 | +| cookieMaxAge | | ブラウザ終了まで | クッキーの最長存続期間(秒) | +| cookieSecure | | (secure属性なし) | クッキーのsecure属性 | `LanguageAttributeInHttpUtil.keepLanguage(request, context, language)`を呼び出すと、クッキーとスレッドコンテキストの両方に言語が設定される。指定された言語がサポート対象外の場合は設定されない。 @@ -101,11 +103,11 @@ public class I18nHandler implements HttpRequestHandler { ``` -| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 | -|---|---|---|---|---| -| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 | -| supportedLanguages | String | ○ | | サポート対象言語 | -| sessionKey | String | | LanguageAttributeのgetKeyメソッドの戻り値 | 言語が格納されるセッション上のキー名 | +| プロパティ名 | 必須 | デフォルト値 | 説明 | +|---|---|---|---| +| defaultLanguage | | システムデフォルトロケール | デフォルト言語 | +| supportedLanguages | ○ | | サポート対象言語 | +| sessionKey | | LanguageAttributeのgetKeyメソッドの戻り値 | 言語が格納されるセッション上のキー名 | ログイン処理でユーザに紐づく言語をHTTPセッションに設定する実装例: @@ -120,7 +122,7 @@ public HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context)
keywords -ThreadContextHandler, ThreadContextAttribute, スレッドコンテキスト, 子スレッドへの値の引き継ぎ, LanguageAttribute, HttpLanguageAttribute, LanguageAttributeInHttpCookie, LanguageAttributeInHttpSession, LanguageAttributeInHttpUtil, defaultLanguage, supportedLanguages, cookieName, cookiePath, cookieDomain, cookieMaxAge, cookieSecure, sessionKey, 言語設定, 多言語対応, スレッドコンテキスト言語 +ThreadContextHandler, ThreadContextAttribute, スレッドコンテキスト, 子スレッドへの値の引き継ぎ, LanguageAttribute, HttpLanguageAttribute, LanguageAttributeInHttpCookie, LanguageAttributeInHttpSession, LanguageAttributeInHttpUtil, I18nHandler, defaultLanguage, supportedLanguages, cookieName, cookiePath, cookieDomain, cookieMaxAge, cookieSecure, sessionKey, 言語設定, 多言語対応, スレッドコンテキスト言語
@@ -132,9 +134,9 @@ ThreadContextHandler, ThreadContextAttribute, スレッドコンテキスト, ## TimeZoneAttribute -| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 | -|---|---|---|---|---| -| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン | +| プロパティ名 | 必須 | デフォルト値 | 説明 | +|---|---|---|---| +| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン | ## TimeZoneAttributeInHttpCookie @@ -150,15 +152,15 @@ ThreadContextHandler, ThreadContextAttribute, スレッドコンテキスト, ``` -| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 | -|---|---|---|---|---| -| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン | -| supportedTimeZones | String | ○ | | サポート対象タイムゾーン | -| cookieName | String | | nablarch_timeZone | タイムゾーンを保持するクッキー名 | -| cookiePath | String | | コンテキストパス | クッキーのURIパス階層 | -| cookieDomain | String | | リクエストURLのドメイン名 | クッキーのドメイン階層 | -| cookieMaxAge | int | | ブラウザ終了まで | クッキーの最長存続期間(秒) | -| cookieSecure | boolean | | false(secure属性なし) | クッキーのsecure属性 | +| プロパティ名 | 必須 | デフォルト値 | 説明 | +|---|---|---|---| +| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン | +| supportedTimeZones | ○ | | サポート対象タイムゾーン | +| cookieName | | nablarch_timeZone | タイムゾーンを保持するクッキー名 | +| cookiePath | | コンテキストパス | クッキーのURIパス階層 | +| cookieDomain | | リクエストURLのドメイン名 | クッキーのドメイン階層 | +| cookieMaxAge | | ブラウザ終了まで | クッキーの最長存続期間(秒) | +| cookieSecure | | (secure属性なし) | クッキーのsecure属性 | `TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone)`を呼び出すと、クッキーとスレッドコンテキストの両方にタイムゾーンが設定される。指定されたタイムゾーンがサポート対象外の場合は設定されない。 @@ -205,11 +207,11 @@ public class I18nHandler implements HttpRequestHandler { ``` -| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 | -|---|---|---|---|---| -| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン | -| supportedTimeZones | String | ○ | | サポート対象タイムゾーン | -| sessionKey | String | | TimeZoneAttributeのgetKeyメソッドの戻り値 | タイムゾーンが格納されるセッション上のキー名 | +| プロパティ名 | 必須 | デフォルト値 | 説明 | +|---|---|---|---| +| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン | +| supportedTimeZones | ○ | | サポート対象タイムゾーン | +| sessionKey | | TimeZoneAttributeのgetKeyメソッドの戻り値 | タイムゾーンが格納されるセッション上のキー名 | ログイン処理でユーザに紐づくタイムゾーンをHTTPセッションに設定する実装例: @@ -224,7 +226,7 @@ public HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context)
keywords -ThreadContextAttribute, スレッドコンテキスト属性, インタフェース定義, TimeZoneAttribute, TimeZoneAttributeInHttpCookie, TimeZoneAttributeInHttpSession, TimeZoneAttributeInHttpUtil, defaultTimeZone, supportedTimeZones, cookieName, cookiePath, cookieDomain, cookieMaxAge, cookieSecure, sessionKey, タイムゾーン設定, 国際化対応, スレッドコンテキストタイムゾーン +ThreadContextAttribute, スレッドコンテキスト属性, インタフェース定義, TimeZoneAttribute, TimeZoneAttributeInHttpCookie, TimeZoneAttributeInHttpSession, TimeZoneAttributeInHttpUtil, I18nHandler, defaultTimeZone, supportedTimeZones, cookieName, cookiePath, cookieDomain, cookieMaxAge, cookieSecure, sessionKey, タイムゾーン設定, 国際化対応, スレッドコンテキストタイムゾーン
@@ -297,25 +299,16 @@ UserIdAttribute, sessionKey, anonymousId, ユーザID設定, 未ログインユ -## RequestIdAttributeの設定 +## RequestIdAttribute / InternalRequestIdAttributeの設定 RequestIdAttributeには設定値は存在しない。 -
-keywords - -RequestIdAttribute, リクエストID設定, 設定プロパティ - -
- -## InternalRequestIdAttributeの設定 - InternalRequestIdAttributeには設定値は存在しない。
keywords -InternalRequestIdAttribute, 内部リクエストID設定, 設定プロパティ +RequestIdAttribute, InternalRequestIdAttribute, リクエストID設定, 内部リクエストID設定, 設定プロパティ
@@ -355,7 +348,7 @@ ThreadContextHandlerは、リクエスト毎にスレッドコンテキストの
keywords -ThreadContextHandler, RequestIdAttribute, InternalRequestIdAttribute, UserIdAttribute, LanguageAttribute, TimeZoneAttribute, ExecutionIdAttribute, 言語切り替え, タイムゾーン切り替え, 国際化 +ThreadContextHandler, RequestIdAttribute, InternalRequestIdAttribute, UserIdAttribute, LanguageAttribute, TimeZoneAttribute, ExecutionIdAttribute, ForwardingHandler, FwHeaderReader, 言語切り替え, タイムゾーン切り替え, 国際化
@@ -421,6 +414,36 @@ TimeZoneAttribute, TimeZoneAttributeInHttpCookie, TimeZoneAttributeInHttpSession +## TimeZoneAttribute選択基準 + +TimeZoneAttributeクラスは、スレッドコンテキストに設定するタイムゾーンを取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。 + +## TimeZoneAttributeおよびサブクラスの説明 + +| クラス名 | 説明 | +|---|---| +| TimeZoneAttribute | リポジトリの設定で指定されたタイムゾーンをスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトタイムゾーンが使用される | +| TimeZoneAttributeInHttpCookie | クッキーを使用したタイムゾーンの保持を行う。サポート対象のタイムゾーンが取得できない場合は親クラスのTimeZoneAttributeに委譲 | +| TimeZoneAttributeInHttpSession | HTTPセッションを使用したタイムゾーンの保持を行う。タイムゾーンの保持にHTTPセッションを使用することを除き、具体的な処理はTimeZoneAttributeInHttpCookieと同じ | +| TimeZoneAttributeInHttpUtil | TimeZoneAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択したタイムゾーンを保持する処理(タイムゾーン選択処理やログイン処理でのクッキー/HTTPセッションへのタイムゾーン設定)を提供するユーティリティクラス。リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを"timeZoneAttribute"という名前で登録する必要がある | + +## 選択基準 + +| クラス名 | タイムゾーンの選択 | タイムゾーンの保存 | 説明 | +|---|---|---|---| +| TimeZoneAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。タイムゾーンは常に固定となる。アプリ実装不要 | +| TimeZoneAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリがタイムゾーン選択画面を提供。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。選択タイムゾーンをクッキーに設定する処理はTimeZoneAttributeInHttpUtilが提供 | +| TimeZoneAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリがタイムゾーン選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じタイムゾーンが適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づくタイムゾーンの取得処理(HTTPセッションへのタイムゾーン設定はTimeZoneAttributeInHttpUtilが提供)、②ユーザにタイムゾーンを選択させる画面処理(選択タイムゾーンのHTTPセッション設定はTimeZoneAttributeInHttpUtilが提供)、③選択されたタイムゾーンをユーザに紐付けてデータベースに保存する処理 | + +TimeZoneAttributeInHttpUtilを使用する場合、リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを"timeZoneAttribute"という名前で登録すること。 + +
+keywords + +TimeZoneAttribute, TimeZoneAttributeInHttpCookie, TimeZoneAttributeInHttpSession, TimeZoneAttributeInHttpSupport, TimeZoneAttributeInHttpUtil, タイムゾーン選択, 国際化, タイムゾーン切り替え, ログイン時タイムゾーン取得 + +
+ ## 設定例 基本的な属性を設定する場合の設定記述例: diff --git a/.claude/skills/nabledge-1.4/docs/development-tools/toolbox/toolbox-01_DefInfoGenerator.md b/.claude/skills/nabledge-1.4/docs/development-tools/toolbox/toolbox-01_DefInfoGenerator.md index 9add71cc5..a7da69e8f 100644 --- a/.claude/skills/nabledge-1.4/docs/development-tools/toolbox/toolbox-01_DefInfoGenerator.md +++ b/.claude/skills/nabledge-1.4/docs/development-tools/toolbox/toolbox-01_DefInfoGenerator.md @@ -521,10 +521,12 @@ define(function(){ return {"": "" 定義データをJSON形式で出力する際の仕様。エスケープ処理の規則は「エスケープ処理」セクションを参照。設計書ごとにキャメル変換などは行わず、Apache POIで取得した値をそのまま出力する。 +そのため、セルの書式が数値型の場合に整数を指定しても自動的に".0"が付与される。整数をそのまま取得したい場合、当該セルの書式を標準や文字列にすること。 +
keywords -コード設計書読込設定, CodeDefinitionFileLoader, nablarch.tool.definitioninfogenerator.loader.poi.CodeDefinitionFileLoader, codeDefinitionLoader, XlsColumnDefs, codeDesignColumnDefs, codeId, codeName, codeValue, PATTERN01, 定義データ出力仕様, エスケープ処理, JSON出力仕様, Apache POI, キャメル変換 +コード設計書読込設定, CodeDefinitionFileLoader, nablarch.tool.definitioninfogenerator.loader.poi.CodeDefinitionFileLoader, codeDefinitionLoader, XlsColumnDefs, codeDesignColumnDefs, codeId, codeName, codeValue, PATTERN01, 定義データ出力仕様, エスケープ処理, JSON出力仕様, Apache POI, キャメル変換, 数値型セル書式, .0付与
@@ -541,7 +543,7 @@ define(function(){ return {"": "" - `\n`(改行LF) - `\r`(改行CR) -> **注意**: `\r` と `\n` は除去される(エスケープ後の文字列から削除)。 +> **注意**: `\r` と `\n` は除去される。
keywords diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_ClassDiagram.jpg b/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_ClassDiagram.jpg deleted file mode 100644 index 5ff88d5c3..000000000 Binary files a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_ClassDiagram.jpg and /dev/null differ diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_incoming.jpg b/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_incoming.jpg deleted file mode 100644 index b5af311d9..000000000 Binary files a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_incoming.jpg and /dev/null differ diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_outgoing.jpg b/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_outgoing.jpg deleted file mode 100644 index 6b2841bf0..000000000 Binary files a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_outgoing.jpg and /dev/null differ diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_incoming.jpg b/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_incoming.jpg deleted file mode 100644 index 2cbe1039f..000000000 Binary files a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_incoming.jpg and /dev/null differ diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_outgoing.jpg b/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_outgoing.jpg deleted file mode 100644 index 68122a3fe..000000000 Binary files a/.claude/skills/nabledge-1.4/knowledge/component/libraries/assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_outgoing.jpg and /dev/null differ diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-04_Permission.json b/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-04_Permission.json index a9a16d258..db4d7aa9b 100644 --- a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-04_Permission.json +++ b/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-04_Permission.json @@ -24,6 +24,8 @@ "BasicBusinessDateProvider", "SimpleDbTransactionManager", "BasicApplicationInitializer", + "BusinessDateProvider", + "Initializable", "permissionFactory", "ignoreRequestIds", "dbManager", @@ -129,6 +131,7 @@ "システムアカウント", "ユーザID", "ユーザIDロック", + "有効日", "グループシステムアカウント", "認可単位", "認可単位ID", @@ -143,9 +146,9 @@ "sections": { "s1": "リクエストに対して認可チェックを行う機能。ハンドラとして使用される(詳細は [../../handler/PermissionCheckHandler](../handlers/handlers-PermissionCheckHandler.json))。\n\n> **注意**: 通常アーキテクトが本機能を使用して認可処理を局所化するため、アプリケーションプログラマは本機能を直接使用しない。\n\n**クラス**: `nablarch.common.handler.PermissionCheckHandler`, `nablarch.common.permission.BasicPermissionFactory`\n\nDIコンテナの機能を使用して、PermissionCheckHandlerとBasicPermissionFactoryの設定を行い使用する。\n\n### PermissionCheckHandlerの設定\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| permissionFactory | ○ | Permissionを生成するPermissionFactory |\n| ignoreRequestIds | | 認可判定を行わないリクエストID(カンマ区切りで複数指定可) |\n\n### BasicPermissionFactoryの設定\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| dbManager | ○ | DBトランザクション制御。`nablarch.core.db.transaction.SimpleDbTransactionManager`インスタンスを指定。詳細は [../01_Core/04_DbAccessSpec](libraries-04_DbAccessSpec.json) 参照 |\n| groupTableSchema | ○ | グループテーブルのスキーマ情報。GroupTableSchemaクラスのインスタンス |\n| systemAccountTableSchema | ○ | システムアカウントテーブルのスキーマ情報。SystemAccountTableSchemaクラスのインスタンス |\n| groupSystemAccountTableSchema | ○ | グループシステムアカウントテーブルのスキーマ情報。GroupSystemAccountTableSchemaクラスのインスタンス |\n| permissionUnitTableSchema | ○ | 認可単位テーブルのスキーマ情報。PermissionUnitTableSchemaクラスのインスタンス |\n| permissionUnitRequestTableSchema | ○ | 認可単位リクエストテーブルのスキーマ情報。PermissionUnitRequestTableSchemaクラスのインスタンス |\n| groupAuthorityTableSchema | ○ | グループ権限テーブルのスキーマ情報。GroupAuthorityTableSchemaクラスのインスタンス |\n| systemAccountAuthorityTableSchema | ○ | システムアカウント権限テーブルのスキーマ情報。SystemAccountAuthorityTableSchemaクラスのインスタンス |\n| businessDateProvider | ○ | 業務日付取得(有効日From/Toチェックに使用)。`nablarch.core.date.BusinessDateProvider`実装クラスを指定。詳細は :ref:`BusinessDateProvider-label` 参照 |\n\nXML設定例:\n\n```xml\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n```\n\n### スキーマクラスのプロパティ\n\n**GroupTableSchema** (`nablarch.common.permission.schema.GroupTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| groupIdColumnName | ○ | グループIDカラムの名前 |\n\n**SystemAccountTableSchema** (`nablarch.common.permission.schema.SystemAccountTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| userIdColumnName | ○ | ユーザIDカラムの名前 |\n| userIdLockedColumnName | ○ | ユーザIDロックカラムの名前 |\n| failedCountColumnName | ○ | 認証失敗回数カラムの名前 |\n| effectiveDateFromColumnName | ○ | 有効日(From)カラムの名前 |\n| effectiveDateToColumnName | ○ | 有効日(To)カラムの名前 |\n\n**GroupSystemAccountTableSchema** (`nablarch.common.permission.schema.GroupSystemAccountTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| groupIdColumnName | ○ | グループIDカラムの名前 |\n| userIdColumnName | ○ | ユーザIDカラムの名前 |\n| effectiveDateFromColumnName | ○ | 有効日(From)カラムの名前 |\n| effectiveDateToColumnName | ○ | 有効日(To)カラムの名前 |\n\n**PermissionUnitTableSchema** (`nablarch.common.permission.schema.PermissionUnitTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n\n**PermissionUnitRequestTableSchema** (`nablarch.common.permission.schema.PermissionUnitRequestTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n| requestIdColumnName | ○ | リクエストIDカラムの名前 |\n\n**GroupAuthorityTableSchema** (`nablarch.common.permission.schema.GroupAuthorityTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| groupIdColumnName | ○ | グループIDカラムの名前 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n\n**SystemAccountAuthorityTableSchema** (`nablarch.common.permission.schema.SystemAccountAuthorityTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| userIdColumnName | ○ | ユーザIDカラムの名前 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n\n### 初期化設定\n\nBasicPermissionFactoryクラスは初期化が必要なため :ref:`repository_initialize` に従いInitializableインタフェースを実装している。permissionFactoryが初期化されるよう下記の設定を行うこと。\n\n```xml\n\n \n \n \n \n \n\n```", "s2": "### グループ単位とユーザ単位を併用した権限設定\n\nグループに権限を設定し、ユーザにグループを割り当てることでグループ単位の権限管理が可能。さらにユーザに直接権限を設定することでイレギュラーな権限付与にも対応可能。\n\n### 自由度の高いテーブル定義\n\nテーブル名・カラム名を自由に設定可能。カラムのデータ型もJavaの型に変換可能であれば任意のデータ型を使用できる。プロジェクトの命名規約に従ったテーブル定義が作成できる。\n\nログイン処理など、一部の処理のみ認可判定の対象から除外したい場合は、PermissionCheckHandlerの設定でignoreRequestIdsプロパティを指定する。\n\nリクエストIDがRW11AA0101とRW11AA0102を認可判定の対象から除外する場合の設定例:\n\n```xml\n\n\n \n \n\n```", - "s3": "### 実装済み\n\n- 機能(任意のリクエストのかたまり)単位で認可判定の設定を行うことができる\n- ユーザに対してグループを設定でき、グループ単位で認可判定の設定を行うことができる\n- リクエストIDを設定し、特定のリクエストIDを認可判定の対象から除外できる\n- ユーザに有効日(From/To)を設定できる\n- ユーザとグループの関連に有効日(From/To)を設定できる\n- 認可判定の結果に応じて画面項目(メニューやボタンなど)の表示・非表示を切り替えることができる\n\n### 未実装\n\n- 本機能で使用するマスタデータをメンテナンスできる\n- 本機能で使用するマスタの初期データを一括登録できる\n- 認証機能によりユーザIDがロックされているユーザの認可判定を失敗にできる\n\n### 未検討\n\n- データへのアクセスを制限できる\n- 機能単位の権限に有効日(From/To)を設定できる\n\n> **注意**: 下記のコードはフレームワークが行う処理であり、通常のアプリケーションでは実装する必要がない。\n\nPermissionCheckHandlerにより、スレッドローカルにPermissionが保持されている。`nablarch.common.permission.PermissionUtil`からPermissionを取得し、リクエストIDを指定して認可判定を行う。\n\n```java\n// PermissionUtilからPermissionを取得する\nPermission permission = PermissionUtil.getPermission();\n\n// リクエストIDを指定して認可判定を行う。\nif (permission.permit(\"リクエストID\")) {\n\n // 認可に成功した場合の処理\n\n} else {\n\n // 認可に失敗した場合の処理\n\n}\n```", - "s4": "リクエストIDを使用して認可判定を行う。リクエストIDの体系はアプリケーション毎に設計する。\n\n**認可単位**: ユーザが機能として認識する最小単位の概念。認可単位には認可を実現するために必要なリクエスト(Webアプリであれば画面のイベント)が複数紐付く。\n\n- グループに認可単位を紐付け → グループ権限\n- ユーザに認可単位を直接紐付け → ユーザ権限\n\n> **注意**: グループ権限とユーザ権限が異なる場合は、双方の権限に紐づく認可単位が足し合わされる。\n\n> **注意**: 通常はグループ権限を登録しユーザにグループを割り当てることで権限設定を行う。ユーザ権限はイレギュラーな権限付与に対応するために使用する。", - "s5": "**インタフェース**:\n\n| インタフェース名 | 概要 |\n|---|---|\n| `nablarch.common.permission.Permission` | 認可インタフェース。認可判定の実現方法毎に実装クラスを作成する |\n| `nablarch.common.permission.PermissionFactory` | Permission生成インタフェース。認可情報の取得先毎に実装クラスを作成する |\n\n**実装クラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.permission.BasicPermission` | 保持しているリクエストIDを使用して認可を行うPermissionの基本実装クラス |\n| `nablarch.common.permission.BasicPermissionFactory` | BasicPermissionを生成するPermissionFactoryの基本実装クラス。DBのユーザ・グループ毎の認可単位テーブル構造からユーザに紐付く認可情報を取得する |\n| `nablarch.common.handler.PermissionCheckHandler` | 認可判定を行うハンドラ |\n| `nablarch.common.permission.PermissionUtil` | 権限管理に使用するユーティリティ |", + "s3": "### 実装済み\n\n- 機能(任意のリクエストのかたまり)単位で認可判定の設定を行うことができる\n- ユーザに対してグループを設定でき、グループ単位で認可判定の設定を行うことができる\n- リクエストIDを設定し、特定のリクエストIDを認可判定の対象から除外できる\n- ユーザに有効日(From/To)を設定できる\n- ユーザとグループの関連に有効日(From/To)を設定できる\n- 認可判定の結果に応じて画面項目(メニューやボタンなど)の表示・非表示を切り替えることができる\n\n### 未実装\n\n- 本機能で使用するマスタデータをメンテナンスできる\n- 本機能で使用するマスタの初期データを一括登録できる\n- 認証機能によりユーザIDがロックされているユーザの認可判定を失敗にできる\n\n### 未検討\n\n- データへのアクセスを制限できる\n- 機能単位の権限に有効日(From/To)を設定できる\n\n> **注意**: 下記のコードはフレームワークが行う処理であり、通常のアプリケーションでは実装する必要がない。\n\nPermissionCheckHandlerにより、スレッドローカルにPermissionが保持されている。PermissionUtilからPermissionを取得し、リクエストIDを指定して認可判定を行う。\n\n```java\n// PermissionUtilからPermissionを取得する\nPermission permission = PermissionUtil.getPermission();\n\n// リクエストIDを指定して認可判定を行う。\nif (permission.permit(\"リクエストID\")) {\n\n // 認可に成功した場合の処理\n\n} else {\n\n // 認可に失敗した場合の処理\n\n}\n```", + "s4": "リクエストIDを使用して認可判定を行う。リクエストIDの体系はアプリケーション毎に設計する。\n\n**認可単位**: ユーザが機能として認識する最小単位の概念。認可単位には認可を実現するために必要なリクエスト(Webアプリであれば画面のイベント)が複数紐付く。\n\n- グループに認可単位を紐付け → グループ権限\n- ユーザに認可単位を直接紐付け → ユーザ権限\n\nグループ権限とユーザ権限の例:\n\n| ユーザ | 説明 |\n|---|---|\n| Aさん | 人事部グループに紐づいているので、社員登録・社員削除・社員検索・社員情報変更を使用できる。 |\n| Bさん | 社員グループに紐づいているので、社員検索・社員情報変更を使用できる。 |\n| Cさん | パートナーグループに紐づいているので、社員情報変更のみ使用できる。 |\n| Xさん | 部長グループと社員グループに紐づいているので、社員登録・社員削除・社員検索・社員情報変更を使用できる。 |\n| Yさん | 社員グループに紐づいているので、社員検索・社員情報変更を使用できる。さらにDさんは、社員登録認可単位に直接紐づいているので、社員登録も使用できる。 |\n\n> **注意**: Yさんのようにグループ権限とユーザ権限が異なる場合は、双方の権限に紐づく認可単位が足し合わされる。\n\n> **注意**: 通常はグループ権限を登録しユーザにグループを割り当てることで権限設定を行う。ユーザ権限はイレギュラーな権限付与に対応するために使用する。", + "s5": "**インタフェース**:\n\n| インタフェース名 | 概要 |\n|---|---|\n| `nablarch.common.permission.Permission` | 認可インタフェース。認可判定の実現方法毎に実装クラスを作成する |\n| `nablarch.common.permission.PermissionFactory` | Permission生成インタフェース。認可情報の取得先毎に実装クラスを作成する |\n\n**Permissionの実装クラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.permission.BasicPermission` | 保持しているリクエストIDを使用して認可を行うPermissionの基本実装クラス |\n\n**PermissionFactoryの実装クラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.permission.BasicPermissionFactory` | BasicPermissionを生成するPermissionFactoryの基本実装クラス。DBのユーザ・グループ毎の認可単位テーブル構造からユーザに紐付く認可情報を取得する |\n\n**その他のクラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.handler.PermissionCheckHandler` | 認可判定を行うハンドラ |\n| `nablarch.common.permission.PermissionUtil` | 権限管理に使用するユーティリティ |", "s6": "1. PermissionCheckHandlerは、リクエスト毎にユーザに紐付くPermissionを取得し、認可判定後にPermissionをスレッドローカルに格納する\n2. 個別アプリケーションで認可判定が必要な場合は、PermissionUtilからPermissionを取得して認可判定を行う\n3. 認証機能によりユーザIDがロックされている場合は認可失敗となる\n4. 認可判定の対象リクエストのチェックには、設定で指定されたリクエストIDを使用して行う(:ref:`ignoreRequestIdsSetting` 参照)\n5. ユーザIDとリクエストIDはPermissionCheckHandlerより先に処理するハンドラでThreadContextに設定する(:ref:`ThreadContextHandler` が行う)", "s7": "テーブル名・カラム名はBasicPermissionFactoryの設定で指定するため任意の名前を使用できる。DBの型もJavaの型に変換可能であれば任意の型を使用できる。\n\n> **注意**: システムアカウントテーブルは認証機能と同じテーブルを使用することを想定しているため、認証機能で使用するデータ項目(パスワード等)が含まれる。\n\n**グループ**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| グループID | java.lang.String | ユニークキー |\n\n**システムアカウント**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| ユーザID | java.lang.String | ユニークキー |\n| ユーザIDロック | boolean | |\n| 有効日(From) | java.lang.String | 書式 yyyyMMdd。指定しない場合は\"19000101\" |\n| 有効日(To) | java.lang.String | 書式 yyyyMMdd。指定しない場合は\"99991231\" |\n\n**グループシステムアカウント**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| グループID | java.lang.String | ユニークキー |\n| ユーザID | java.lang.String | ユニークキー |\n| 有効日(From) | java.lang.String | ユニークキー。書式 yyyyMMdd。指定しない場合は\"19000101\" |\n| 有効日(To) | java.lang.String | 書式 yyyyMMdd。指定しない場合は\"99991231\" |\n\n**認可単位**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| 認可単位ID | java.lang.String | ユニークキー |\n\n**認可単位リクエスト**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| 認可単位ID | java.lang.String | ユニークキー |\n| リクエストID | java.lang.String | ユニークキー |\n\n**グループ権限**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| グループID | java.lang.String | ユニークキー |\n| 認可単位ID | java.lang.String | ユニークキー |\n\n**システムアカウント権限**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| ユーザID | java.lang.String | ユニークキー |\n| 認可単位ID | java.lang.String | ユニークキー |" } diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-05_MessagingLog.json b/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-05_MessagingLog.json deleted file mode 100644 index 30e3d4874..000000000 --- a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-05_MessagingLog.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "id": "libraries-05_MessagingLog", - "title": "メッセージングログの出力", - "official_doc_urls": [], - "index": [ - { - "id": "s1", - "title": "メッセージングログの出力", - "hints": [ - "MessagingLogUtil", - "MessagingLogFormatter", - "MessagingContext", - "HttpMessagingRequestParsingHandler", - "HttpMessagingResponseBuildingHandler", - "HttpMessagingClient", - "messagingLogFormatter.maskingPatterns", - "messagingLogFormatter.maskingChar", - "messagingLogFormatter.sentMessageFormat", - "messagingLogFormatter.receivedMessageFormat", - "messagingLogFormatter.httpSentMessageFormat", - "messagingLogFormatter.httpReceivedMessageFormat", - "messagingLogFormatter.className", - "メッセージングログ設定", - "メッセージボディマスク", - "MOMメッセージング", - "HTTPメッセージング", - "個人情報マスク", - "MOM応答不要" - ] - }, - { - "id": "s2", - "title": "MOM送信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$replyTo$", - "$timeToLive$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "MOM送信メッセージフォーマット", - "sentMessageFormat", - "SENT MESSAGE" - ] - }, - { - "id": "s3", - "title": "MOM受信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$replyTo$", - "$timeToLive$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "MOM受信メッセージフォーマット", - "receivedMessageFormat", - "RECEIVED MESSAGE" - ] - }, - { - "id": "s4", - "title": "HTTP送信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "$messageHeader$", - "HTTP送信メッセージフォーマット", - "httpSentMessageFormat", - "HTTP SENT MESSAGE" - ] - }, - { - "id": "s5", - "title": "HTTP受信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "$messageHeader$", - "HTTP受信メッセージフォーマット", - "httpReceivedMessageFormat", - "HTTP RECEIVED MESSAGE" - ] - } - ], - "sections": { - "s1": "## 出力方針\n\nログレベル: INFO、ロガー名: MESSAGINGとしてアプリケーションログへ出力する。\n\nlog.propertiesの設定例:\n```bash\nwriterNames=appFile\n\nwriter.appFile.className=nablarch.core.log.basic.FileLogWriter\nwriter.appFile.filePath=/var/log/app/app.log\nwriter.appFile.encoding=UTF-8\nwriter.appFile.maxFileSize=10000\nwriter.appFile.formatter.className=nablarch.core.log.basic.BasicLogFormatter\nwriter.appFile.formatter.format=<アプリケーションログ用のフォーマット>\n\navailableLoggersNamesOrder=MESSAGING,ROO\n\nloggers.ROO.nameRegex=.*\nloggers.ROO.level=INFO\nloggers.ROO.writerNames=appFile\n\nloggers.MESSAGING.nameRegex=MESSAGING\nloggers.MESSAGING.level=INFO\nloggers.MESSAGING.writerNames=appFile\n```\n\n## 出力項目\n\n| 項目名 | 説明 |\n|---|---|\n| 出力日時 | ログ出力時のシステム日時 |\n| 起動プロセスID | アプリケーションを起動したプロセス名。実行環境の特定に使用する |\n| 処理方式区分 | 処理方式の特定に使用する |\n| リクエストID | 処理を一意に識別するID |\n| 実行時ID | 処理の実行を一意に識別するID |\n| ユーザID | ログインユーザのユーザID |\n| スレッド名 | 処理を実行したスレッド名 |\n| メッセージID | メッセージに設定されているメッセージID |\n| 送信宛先 | メッセージに設定されている送信宛先 |\n| 関連メッセージID | メッセージに設定されている関連メッセージID |\n| 応答宛先 | メッセージに設定されている応答宛先 |\n| 有効期間 | メッセージに設定されている有効期間 |\n| メッセージヘッダ | メッセージに設定されているヘッダ |\n| メッセージボディ | メッセージボディ部のダンプ。個人情報・機密情報はマスクして出力(マスク設定が必要) |\n| メッセージボディのヘキサダンプ | メッセージボディ部のヘキサダンプ。マスク対象部分はマスク文字列のヘキサダンプを出力(マスク設定が必要) |\n| メッセージボディのバイト長 | メッセージボディ部のバイト長 |\n\n個別項目(スレッド名〜メッセージボディのバイト長)以外の共通項目は :ref:`Log_BasicLogFormatter` で指定する。共通項目と個別項目を組み合わせたフォーマットは :ref:`AppLog_Format` を参照。\n\n## 出力に使用するクラス\n\n![メッセージングログクラス図](assets/libraries-05_MessagingLog/Log_MessagingLog_ClassDiagram.jpg)\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.fw.messaging.MessagingContext` | MOMメッセージ送受信処理で要求/応答メッセージの相互変換と送受信を行う。実際の送受信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.handler.HttpMessagingRequestParsingHandler` | HTTPリクエストを解析して要求メッセージへ変換するハンドラ。受信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.handler.HttpMessagingResponseBuildingHandler` | 応答メッセージをHTTPレスポンスへ変換するハンドラ。送信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.realtime.http.client.HttpMessagingClient` | 要求メッセージからHTTPリクエストへの変換およびHTTPレスポンスの応答メッセージへの変換を行う。送受信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.logging.MessagingLogUtil` | メッセージング処理中のログ出力内容に関連した処理を行う |\n| `nablarch.fw.messaging.logging.MessagingLogFormatter` | メッセージングログの個別項目をフォーマットする |\n\n各クラスはMessagingLogUtilを使用してメッセージングログを整形し、Loggerを使用してログ出力を行う。\n\n処理シーケンス:\n- MOM同期応答メッセージ受信: ![MOM受信シーケンス図](assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_incoming.jpg)\n - MOM応答不要メッセージ受信処理では、MOM受信ログの出力および業務アクションの呼び出しまでの処理が行われる(シーケンス図省略)\n- MOM同期応答メッセージ送信: ![MOM送信シーケンス図](assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_mom_outgoing.jpg)\n - MOM応答不要メッセージ送信処理では、MOM送信ログの出力および要求キューメッセージの送信までの処理が行われる(シーケンス図省略)\n- HTTPメッセージ受信: ![HTTP受信シーケンス図](assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_incoming.jpg)\n- HTTPメッセージ送信: ![HTTP送信シーケンス図](assets/libraries-05_MessagingLog/Log_MessagingLog_SequenceDiagram_http_outgoing.jpg)\n\n## 設定方法\n\nMessagingLogUtilはapp-log.propertiesを読み込みMessagingLogFormatterオブジェクトを生成して個別項目のフォーマット処理を委譲する。プロパティファイルのパス指定や実行時設定変更は :ref:`AppLog_Config` を参照。\n\napp-log.propertiesの設定例:\n```bash\nmessagingLogFormatter.className=nablarch.fw.messaging.logging.MessagingLogFormatter\nmessagingLogFormatter.maskingChar=#\nmessagingLogFormatter.maskingPatterns=(.+?),(.+?)\n\nmessagingLogFormatter.sentMessageFormat=@@@@ SENT MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\treply_to = [$replyTo$]\\n\\ttime_to_live = [$timeToLive$]\\n\\tmessage_body = [$messageBody$]\nmessagingLogFormatter.receivedMessageFormat=@@@@ RECEIVED MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\treply_to = [$replyTo$]\\n\\tmessage_body = [$messageBody$]\nmessagingLogFormatter.httpSentMessageFormat=@@@@ HTTP SENT MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_body = [$messageBody$]\nmessagingLogFormatter.httpReceivedMessageFormat=@@@@ HTTP RECEIVED MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_body = [$messageBody$]\n```\n\n| プロパティ名 | 説明 |\n|---|---|\n| messagingLogFormatter.className | MessagingLogFormatterのクラス名。差し替える場合に指定 |\n| messagingLogFormatter.maskingPatterns | メッセージ本文のマスク対象文字列を正規表現で指定。最初のキャプチャ部分(括弧で囲まれた部分)がマスク対象。複数指定はカンマ区切り。Pattern.CASE_INSENSITIVEでコンパイルされる |\n| messagingLogFormatter.maskingChar | マスクに使用する文字。デフォルトは'*' |\n| messagingLogFormatter.sentMessageFormat | MOM送信メッセージのログ出力フォーマット |\n| messagingLogFormatter.receivedMessageFormat | MOM受信メッセージのログ出力フォーマット |\n| messagingLogFormatter.httpSentMessageFormat | HTTP送信メッセージのログ出力フォーマット |\n| messagingLogFormatter.httpReceivedMessageFormat | HTTP受信メッセージのログ出力フォーマット |\n\n## 出力例\n\ncnoタグ内容をマスクするHTTPメッセージ受信処理の例。\n\napp-log.propertiesの設定例:\n```bash\nmessagingLogFormatter.maskingChar=#\nmessagingLogFormatter.maskingPatterns=(.*?)\nmessagingLogFormatter.httpSentMessageFormat=@@@@ SENT MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_length = [$messageBodyLength$]\\n\\tmessage_body = [$messageBody$]\\n\\tmessage_bodyhex= [$messageBodyHex$]\nmessagingLogFormatter.httpReceivedMessageFormat=@@@@ RECEIVED MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_length = [$messageBodyLength$]\\n\\tmessage_body = [$messageBody$]\\n\\tmessage_bodyhex= [$messageBodyHex$]\n```\n\nlog.propertiesの設定例:\n```bash\nwriterNames=appFile\n\nwriter.appFile.className=nablarch.core.log.basic.FileLogWriter\nwriter.appFile.filePath=./app.log\nwriter.appFile.encoding=UTF-8\nwriter.appFile.maxFileSize=10000\nwriter.appFile.formatter.className=nablarch.core.log.basic.BasicLogFormatter\nwriter.appFile.formatter.format=$date$ -$logLevel$- $loggerName$ [$executionId$] boot_proc = [$bootProcess$] proc_sys = [$processingSystem$] req_id = [$requestId$] usr_id = [$userId$] $message$$information$$stackTrace$\n\navailableLoggersNamesOrder=MESSAGING\n\nloggers.MESSAGING.nameRegex=MESSAGING\nloggers.MESSAGING.level=INFO\nloggers.MESSAGING.writerNames=appFile\n```\n\n出力例(cnoタグの内容はmaskingCharで指定した文字にマスクされ、ヘキサダンプ部分もマスク文字列のヘキサダンプが出力される):\n```\n2014-06-27 11:07:51.314 -INFO- MESSAGING [null] boot_proc = [] proc_sys = [] req_id = [RM11AC0102] usr_id = [unitTest] @@@@ HTTP RECEIVED MESSAGE @@@@\n thread_name = [main]\n message_id = [1403834871251]\n destination = [null]\n correlation_id = [null]\n message_header = [{x-message-id=1403834871251, MessageId=1403834871251, ReplyTo=/action/RM11AC0102}]\n message_length = [216]\n message_body = [<_nbctlhdr>unitTest0nablarchナブラーク****************]\n message_bodyhex= [3C3F786D6C...(マスク文字列のヘキサダンプ)]\n2014-06-27 11:07:51.329 -INFO- MESSAGING [null] boot_proc = [] proc_sys = [] req_id = [RM11AC0102] usr_id = [unitTest] @@@@ HTTP SENT MESSAGE @@@@\n thread_name = [main]\n message_id = [null]\n destination = [/action/RM11AC0102]\n correlation_id = [1403834871251]\n message_header = [{CorrelationId=1403834871251, Destination=/action/RM11AC0102}]\n message_length = [145]\n message_body = [<_nbctlhdr>200success]\n message_bodyhex= [3C3F786D6C...(ヘキサダンプ)]\n```", - "s2": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信宛先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| 応答宛先 | $replyTo$ |\n| 有効期間 | $timeToLive$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ SENT MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\treply_to = [$replyTo$]\n \\n\\ttime_to_live = [$timeToLive$]\n \\n\\tmessage_body = [$messageBody$]\n```", - "s3": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信宛先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| 応答宛先 | $replyTo$ |\n| 有効期間 | $timeToLive$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ RECEIVED MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\treply_to = [$replyTo$]\n \\n\\tmessage_body = [$messageBody$]\n```", - "s4": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n| メッセージのヘッダ | $messageHeader$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ HTTP SENT MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\tmessage_header = [$messageHeader$]\n \\n\\tmessage_body = [$messageBody$]\n```", - "s5": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n| メッセージのヘッダ | $messageHeader$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ HTTP RECEIVED MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\tmessage_header = [$messageHeader$]\n \\n\\tmessage_body = [$messageBody$]\n```" - } -} \ No newline at end of file diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-07_TagReference.json b/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-07_TagReference.json index 4050f7b21..4dd668115 100644 --- a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-07_TagReference.json +++ b/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-07_TagReference.json @@ -15,6 +15,84 @@ "checkboxタグ", "selectタグ", "submitタグ", + "compositeKeyRadioButtonタグ", + "CompositeKeyRadioButtonTag", + "fileタグ", + "FileTag", + "hiddenタグ", + "HiddenTag", + "plainHiddenタグ", + "PlainHiddenTag", + "radiobuttonsタグ", + "RadioButtonsTag", + "checkboxesタグ", + "CheckboxesTag", + "buttonタグ", + "ButtonTag", + "submitLinkタグ", + "SubmitLinkTag", + "popupSubmitタグ", + "PopupSubmitTag", + "popupButtonタグ", + "PopupButtonTag", + "popupLinkタグ", + "PopupLinkTag", + "downloadSubmitタグ", + "DownloadSubmitTag", + "downloadButtonタグ", + "DownloadButtonTag", + "downloadLinkタグ", + "DownloadLinkTag", + "paramタグ", + "ParamTag", + "changeParamNameタグ", + "ChangeParamNameTag", + "aタグ", + "ATag", + "imgタグ", + "ImgTag", + "linkタグ", + "LinkTag", + "scriptタグ", + "ScriptTag", + "errorsタグ", + "ErrorsTag", + "errorタグ", + "ErrorTag", + "noCacheタグ", + "NoCacheTag", + "codeSelectタグ", + "CodeSelectTag", + "codeRadioButtonsタグ", + "CodeRadioButtonsTag", + "codeCheckboxesタグ", + "CodeCheckboxesTag", + "codeCheckboxタグ", + "CodeCheckboxTag", + "codeタグ", + "CodeTag", + "messageタグ", + "MessageTag", + "writeタグ", + "WriteTag", + "prettyPrintタグ", + "PrettyPrintTag", + "rawWriteタグ", + "RawWriteTag", + "setタグ", + "SetTag", + "includeタグ", + "IncludeTag", + "includeParamタグ", + "IncludeParamTag", + "confirmationPageタグ", + "ConfirmationPageTag", + "ignoreConfirmationタグ", + "IgnoreConfirmationTag", + "forInputPageタグ", + "ForInputPageTag", + "forConfirmationPageタグ", + "ForConfirmationPageTag", "カスタムタグ", "WebView", "サブミット制御", @@ -29,6 +107,10 @@ "valueObject", "keyNames", "namePrefix", + "autofocus", + "label", + "disabled", + "onchange", "errorCss", "nameAlias", "複合キーチェックボックス", @@ -40,6 +122,8 @@ "displayMethod", "secure", "uri", + "shape", + "coords", "codeCheckboxes", "コードチェックボックス複数", "コードID", @@ -47,10 +131,7 @@ "listFormat", "codeId", "pattern", - "optionColumnName", - "autofocus", - "disabled", - "onchange" + "optionColumnName" ] }, { @@ -82,6 +163,10 @@ "valueObject", "keyNames", "namePrefix", + "autofocus", + "label", + "disabled", + "onchange", "errorCss", "nameAlias", "複合キーラジオボタン", @@ -94,17 +179,19 @@ "displayMethod", "secure", "uri", + "type", + "value", + "src", + "alt", + "usemap", + "align", "codeCheckbox", "コードチェックボックス単体", "offCodeValue", "コード値チェックボックス", "codeId", "labelPattern", - "value", - "autofocus", - "optionColumnName", - "disabled", - "onchange" + "optionColumnName" ] }, { @@ -121,7 +208,12 @@ "name", "disabled", "readonly", + "size", + "maxlength", + "onselect", + "onchange", "accept", + "autofocus", "multiple", "errorCss", "nameAlias", @@ -134,6 +226,8 @@ "displayMethod", "secure", "uri", + "value", + "type", "code", "コード値表示", "コードリスト表示", @@ -179,11 +273,14 @@ "二重サブミット", "displayMethod", "uri", + "shape", + "coords", "message", "メッセージ表示", "メッセージID", "HTMLエスケープ", "messageId", + "option0~option9", "htmlEscape", "withHtmlFormat", "var", @@ -223,6 +320,7 @@ "paramName", "サブミットパラメータ", "パラメータ名", + "value", "write", "値表示", "dateTime", @@ -247,6 +345,13 @@ "listName", "elementLabelProperty", "elementValueProperty", + "size", + "multiple", + "tabindex", + "onfocus", + "onblur", + "onchange", + "autofocus", "elementLabelPattern", "listFormat", "withNoneOption", @@ -280,6 +385,9 @@ "listName", "elementLabelProperty", "elementValueProperty", + "disabled", + "onchange", + "autofocus", "elementLabelPattern", "listFormat", "ラジオボタン", @@ -291,6 +399,12 @@ "hreflang", "secure", "target", + "charset", + "type", + "rel", + "rev", + "shape", + "coords", "rawWrite", "HTMLエスケープなし出力", "生データ表示", @@ -318,6 +432,9 @@ "listName", "elementLabelProperty", "elementValueProperty", + "disabled", + "onchange", + "autofocus", "elementLabelPattern", "listFormat", "チェックボックス", @@ -329,6 +446,14 @@ "alt", "secure", "usemap", + "longdesc", + "height", + "width", + "ismap", + "align", + "border", + "hspace", + "vspace", "include", "ファイルインクルード", "path" @@ -370,6 +495,10 @@ "href", "media", "rel", + "charset", + "hreflang", + "rev", + "target", "includeParam", "インクルードパラメータ", "paramName" @@ -387,6 +516,11 @@ "checkboxesタグ", "入力データ復元", "button", + "name", + "value", + "type", + "disabled", + "autofocus", "uri", "allowDoubleSubmission", "secure", @@ -400,6 +534,9 @@ "src", "xmlSpace", "defer", + "id", + "charset", + "language", "confirmationPage", "確認画面", "フォワード先", @@ -411,6 +548,7 @@ "title": "submitLinkタグ", "hints": [ "submitLink", + "name", "uri", "allowDoubleSubmission", "secure", @@ -429,6 +567,10 @@ "global", "infoCss", "warnCss", + "errorCss", + "nablarch_error", + "nablarch_info", + "nablarch_warn", "ignoreConfirmation", "確認画面無視", "入力確認フロー" @@ -439,6 +581,10 @@ "title": "popupSubmitタグ", "hints": [ "popupSubmit", + "name", + "disabled", + "value", + "autofocus", "type", "uri", "popupWindowName", @@ -468,6 +614,11 @@ "title": "popupButtonタグ", "hints": [ "popupButton", + "name", + "value", + "type", + "disabled", + "autofocus", "uri", "popupWindowName", "popupOption", @@ -527,17 +678,17 @@ } ], "sections": { - "s1": "Nablarch WebViewが提供するカスタムタグの一覧。\n\n| タグ | 機能 |\n|---|---|\n| :ref:`WebView_FormTag` | HTMLのformタグ出力。サブミット制御(ボタンとアクションの紐付け、二重サブミット防止)。不正画面遷移チェック |\n| :ref:`WebView_TextTag` | HTMLのinputタグ(type=text)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_TextareaTag` | HTMLのtextareaタグ出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_PasswordTag` | HTMLのinputタグ(type=password)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_RadioButtonTag` | HTMLのinputタグ(type=radio)出力。入力データ復元。HTMLエスケープ。radiobuttonsタグで表示できないレイアウト時に使用 |\n| :ref:`WebView_CheckboxTag` | HTMLのinputタグ(type=checkbox)出力。入力データ復元。HTMLエスケープ。checkboxesタグで表示できないレイアウト時に使用 |\n| :ref:`WebView_CompositeKeyRadioButtonTag` | 複数のHTMLのinputタグ(type=radio)出力。入力データ復元。HTMLエスケープ。radioButtonタグで実現できない複合キー使用時に使用 |\n| :ref:`WebView_CompositeKeyCheckboxTag` | 複数のHTMLのinputタグ(type=checkbox)出力。入力データ復元。HTMLエスケープ。checkboxesタグで実現できない複合キー使用時に使用 |\n| :ref:`WebView_FileTag` | HTMLのinputタグ(type=file)出力。HTMLエスケープ |\n| :ref:`WebView_HiddenTag` | HTMLタグの出力を行わず、ウィンドウスコープに値を出力 |\n| :ref:`WebView_PlainHiddenTag` | HTMLのinputタグ(type=hidden)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_SelectTag` | HTMLのselectタグとoptionタグ出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_RadioButtonsTag` | 複数のHTMLのinputタグ(type=radio)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_CheckboxesTag` | 複数のHTMLのinputタグ(type=checkbox)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_SubmitTag` | HTMLのinputタグ(type=submit,image,button)出力。サブミット制御(ボタンとアクションの紐付け、二重サブミット防止) |\n| :ref:`WebView_ButtonTag` | HTMLのbuttonタグ出力。サブミット制御(ボタンとアクションの紐付け、二重サブミット防止) |\n| :ref:`WebView_SubmitLinkTag` | HTMLのaタグ出力。サブミット制御(リンクとアクションの紐付け、二重サブミット防止) |\n| :ref:`WebView_PopupSubmitTag` | HTMLのinputタグ(type=submit,image,button)出力。新しいウィンドウをオープンしてサブミット。複数ウィンドウ立ち上げ時に使用 |\n| :ref:`WebView_PopupButtonTag` | HTMLのbuttonタグ出力。新しいウィンドウをオープンしてサブミット。複数ウィンドウ立ち上げ時に使用 |\n| :ref:`WebView_PopupLinkTag` | HTMLのaタグ出力。新しいウィンドウをオープンしてサブミット。複数ウィンドウ立ち上げ時に使用 |\n| :ref:`WebView_DownloadSubmitTag` | HTMLのinputタグ(type=submit,image,button)出力。ダウンロード用サブミット |\n| :ref:`WebView_DownloadButtonTag` | HTMLのbuttonタグ出力。ダウンロード用サブミット |\n| :ref:`WebView_DownloadLinkTag` | HTMLのaタグ出力。ダウンロード用サブミット |\n| :ref:`WebView_ParamTag` | サブミット時に追加するパラメータを指定 |\n| :ref:`WebView_ChangeParamNameTag` | ポップアップ用のサブミット時にパラメータ名を変更 |\n| :ref:`WebView_ATag` | HTMLのaタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_ImgTag` | HTMLのimgタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_LinkTag` | HTMLのlinkタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_ScriptTag` | HTMLのscriptタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_ErrorsTag` | エラーメッセージの複数件表示。画面上部に一覧で表示する場合に使用 |\n| :ref:`WebView_ErrorTag` | エラーメッセージの個別表示。エラーの原因となった入力項目の近くに個別表示する場合に使用 |\n| :ref:`WebView_NoCacheTag` | ブラウザのキャッシュを防止するmetaタグの出力及びレスポンスヘッダの設定 |\n| :ref:`WebView_CodeSelectTag` | コード値の選択表示(selectタグ使用) |\n| :ref:`WebView_CodeRadioButtonsTag` | コード値の選択表示(inputタグ type=radio使用) |\n| :ref:`WebView_CodeCheckboxesTag` | コード値の選択表示(inputタグ type=checkbox使用) |\n| :ref:`WebView_CodeCheckboxTag` | コード値の単一入力項目表示(inputタグ type=checkbox使用) |\n| :ref:`WebView_CodeTag` | 一覧表示や参照画面でコード値を出力 |\n| :ref:`WebView_MessageTag` | 言語に応じたメッセージを出力 |\n| :ref:`WebView_WriteTag` | 一覧表示や参照画面でオブジェクトから値を出力 |\n| :ref:`WebView_PrettyPrintTag` | 修飾系のHTML(``タグなど)をエスケープせずにオブジェクトの値を出力 |\n| :ref:`WebView_RawWriteTag` | HTMLエスケープをせずにオブジェクトの値を直接出力 |\n| :ref:`WebView_SetTag` | リクエストスコープの変数に値を設定 |\n| :ref:`WebView_IncludeTag` | インクルード先のパスを言語対応のパスに変換してからインクルード |\n| :ref:`WebView_IncludeParamTag` | インクルード時に追加するパラメータを指定 |\n| :ref:`WebView_ConfirmationPageTag` | JSPが確認画面であることを示す。入力画面へのパスを指定することで入力画面と確認画面を共通化 |\n| :ref:`WebView_IgnoreConfirmationTag` | JSPの画面状態が確認画面である場合に確認画面の画面状態を部分的に無効化。このタグで囲まれた範囲の入力項目は常に入力画面用の出力を行う |\n| :ref:`WebView_ForInputPageTag` | 入力画面と確認画面を共通化したJSPにおいて、入力画面のみボディを評価 |\n| :ref:`WebView_ForConfirmationPageTag` | 入力画面と確認画面を共通化したJSPにおいて、確認画面のみボディを評価 |\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| valueObject | ○ | | XHTMLのvalue属性の代わりに使用するオブジェクト。keyNamesで指定したプロパティを持つ必要がある |\n| keyNames | ○ | | 複合キーのキー名。カンマ区切りで指定 |\n| namePrefix | ○ | | リクエストパラメータに展開する際に使用するプレフィクス |\n| autofocus | | | HTML5のautofocus属性 |\n| label | | | チェックありの場合に使用するラベル。入力画面で表示される |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## popupLinkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| popupWindowName | | | ポップアップのウィンドウ名。window.open関数の第2引数(JavaScript)に指定する |\n| popupOption | | | ポップアップのオプション情報。window.open関数の第3引数(JavaScript)に指定する |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## codeCheckboxesタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | id属性は指定不可。 |\n| :ref:`WebView_FocusAttributesTag` | | | accesskey属性は指定不可。 |\n| name | ○ | | XHTMLのname属性。 |\n| codeId | ○ | | コードID。 |\n| disabled | | | XHTMLのdisabled属性。 |\n| onchange | | | XHTMLのonchange属性。 |\n| autofocus | | | HTML5のautofocus属性。選択肢のうち、先頭要素のみautofocus属性を出力する。 |\n| pattern | | 指定なし | 使用するパターンのカラム名。 |\n| optionColumnName | | | 取得するオプション名称のカラム名。 |\n| labelPattern | | \"$NAME$\" | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)、$SHORTNAME$(略称)、$OPTIONALNAME$(オプション名称、optionColumnName必須)、$VALUE$(コード値)。 |\n| listFormat | | br | リスト表示フォーマット。br/div/span/ul/ol/sp のいずれかを指定。 |\n| errorCss | | \"nablarch_error\" | エラーレベルのメッセージに使用するCSSクラス名。 |\n| nameAlias | | | name属性のエイリアス。複数指定はカンマ区切り。 |", + "s1": "Nablarch WebViewが提供するカスタムタグの一覧。\n\n| タグ | 機能 |\n|---|---|\n| :ref:`WebView_FormTag` | HTMLのformタグ出力。サブミット制御(ボタンとアクションの紐付け、二重サブミット防止)。不正画面遷移チェック |\n| :ref:`WebView_TextTag` | HTMLのinputタグ(type=text)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_TextareaTag` | HTMLのtextareaタグ出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_PasswordTag` | HTMLのinputタグ(type=password)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_RadioButtonTag` | HTMLのinputタグ(type=radio)出力。入力データ復元。HTMLエスケープ。radiobuttonsタグで表示できないレイアウト時に使用 |\n| :ref:`WebView_CheckboxTag` | HTMLのinputタグ(type=checkbox)出力。入力データ復元。HTMLエスケープ。checkboxesタグで表示できないレイアウト時に使用 |\n| :ref:`WebView_CompositeKeyRadioButtonTag` | 複数のHTMLのinputタグ(type=radio)出力。入力データ復元。HTMLエスケープ。radioButtonタグで実現できない複合キー使用時に使用 |\n| :ref:`WebView_CompositeKeyCheckboxTag` | 複数のHTMLのinputタグ(type=checkbox)出力。入力データ復元。HTMLエスケープ。checkboxesタグで実現できない複合キー使用時に使用 |\n| :ref:`WebView_FileTag` | HTMLのinputタグ(type=file)出力。HTMLエスケープ |\n| :ref:`WebView_HiddenTag` | HTMLタグの出力を行わず、ウィンドウスコープに値を出力 |\n| :ref:`WebView_PlainHiddenTag` | HTMLのinputタグ(type=hidden)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_SelectTag` | HTMLのselectタグとoptionタグ出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_RadioButtonsTag` | 複数のHTMLのinputタグ(type=radio)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_CheckboxesTag` | 複数のHTMLのinputタグ(type=checkbox)出力。入力データ復元。HTMLエスケープ |\n| :ref:`WebView_SubmitTag` | HTMLのinputタグ(type=submit,image,button)出力。サブミット制御(ボタンとアクションの紐付け、二重サブミット防止) |\n| :ref:`WebView_ButtonTag` | HTMLのbuttonタグ出力。サブミット制御(ボタンとアクションの紐付け、二重サブミット防止) |\n| :ref:`WebView_SubmitLinkTag` | HTMLのaタグ出力。サブミット制御(リンクとアクションの紐付け、二重サブミット防止) |\n| :ref:`WebView_PopupSubmitTag` | HTMLのinputタグ(type=submit,image,button)出力。新しいウィンドウをオープンしてサブミット。複数ウィンドウ立ち上げ時に使用 |\n| :ref:`WebView_PopupButtonTag` | HTMLのbuttonタグ出力。新しいウィンドウをオープンしてサブミット。複数ウィンドウ立ち上げ時に使用 |\n| :ref:`WebView_PopupLinkTag` | HTMLのaタグ出力。新しいウィンドウをオープンしてサブミット。複数ウィンドウ立ち上げ時に使用 |\n| :ref:`WebView_DownloadSubmitTag` | HTMLのinputタグ(type=submit,image,button)出力。ダウンロード用サブミット |\n| :ref:`WebView_DownloadButtonTag` | HTMLのbuttonタグ出力。ダウンロード用サブミット |\n| :ref:`WebView_DownloadLinkTag` | HTMLのaタグ出力。ダウンロード用サブミット |\n| :ref:`WebView_ParamTag` | サブミット時に追加するパラメータを指定 |\n| :ref:`WebView_ChangeParamNameTag` | ポップアップ用のサブミット時にパラメータ名を変更 |\n| :ref:`WebView_ATag` | HTMLのaタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_ImgTag` | HTMLのimgタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_LinkTag` | HTMLのlinkタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_ScriptTag` | HTMLのscriptタグ出力。コンテキストパスの付加とURLリライト |\n| :ref:`WebView_ErrorsTag` | エラーメッセージの複数件表示。画面上部に一覧で表示する場合に使用 |\n| :ref:`WebView_ErrorTag` | エラーメッセージの個別表示。エラーの原因となった入力項目の近くに個別表示する場合に使用 |\n| :ref:`WebView_NoCacheTag` | ブラウザのキャッシュを防止するmetaタグの出力及びレスポンスヘッダの設定 |\n| :ref:`WebView_CodeSelectTag` | コード値の選択表示(selectタグ使用) |\n| :ref:`WebView_CodeRadioButtonsTag` | コード値の選択表示(inputタグ type=radio使用) |\n| :ref:`WebView_CodeCheckboxesTag` | コード値の選択表示(inputタグ type=checkbox使用) |\n| :ref:`WebView_CodeCheckboxTag` | コード値の単一入力項目表示(inputタグ type=checkbox使用) |\n| :ref:`WebView_CodeTag` | 一覧表示や参照画面でコード値を出力 |\n| :ref:`WebView_MessageTag` | 言語に応じたメッセージを出力 |\n| :ref:`WebView_WriteTag` | 一覧表示や参照画面でオブジェクトから値を出力 |\n| :ref:`WebView_PrettyPrintTag` | 修飾系のHTML(``タグなど)をエスケープせずにオブジェクトの値を出力 |\n| :ref:`WebView_RawWriteTag` | HTMLエスケープをせずにオブジェクトの値を直接出力 |\n| :ref:`WebView_SetTag` | リクエストスコープの変数に値を設定 |\n| :ref:`WebView_IncludeTag` | インクルード先のパスを言語対応のパスに変換してからインクルード |\n| :ref:`WebView_IncludeParamTag` | インクルード時に追加するパラメータを指定 |\n| :ref:`WebView_ConfirmationPageTag` | JSPが確認画面であることを示す。入力画面へのパスを指定することで入力画面と確認画面を共通化 |\n| :ref:`WebView_IgnoreConfirmationTag` | JSPの画面状態が確認画面である場合に確認画面の画面状態を部分的に無効化。このタグで囲まれた範囲の入力項目は常に入力画面用の出力を行う |\n| :ref:`WebView_ForInputPageTag` | 入力画面と確認画面を共通化したJSPにおいて、入力画面のみボディを評価 |\n| :ref:`WebView_ForConfirmationPageTag` | 入力画面と確認画面を共通化したJSPにおいて、確認画面のみボディを評価 |\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| valueObject | ○ | | XHTMLのvalue属性の代わりに使用するオブジェクト。keyNamesで指定したプロパティを持つ必要がある |\n| keyNames | ○ | | 複合キーのキー名。カンマ区切りで指定 |\n| namePrefix | ○ | | リクエストパラメータに展開する際に使用するプレフィクス |\n| autofocus | | | HTML5のautofocus属性 |\n| label | | | チェックありの場合に使用するラベル。入力画面で表示される |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## popupLinkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| popupWindowName | | | ポップアップのウィンドウ名。新しいウィンドウを開く際にwindwo.open関数の第2引数(JavaScript)に指定する |\n| popupOption | | | ポップアップのオプション情報。新しいウィンドウを開く際にwindwo.open関数の第3引数(JavaScript)に指定する |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## codeCheckboxesタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | id属性は指定不可。 |\n| :ref:`WebView_FocusAttributesTag` | | | accesskey属性は指定不可。 |\n| name | ○ | | XHTMLのname属性。 |\n| codeId | ○ | | コードID。 |\n| disabled | | | XHTMLのdisabled属性。 |\n| onchange | | | XHTMLのonchange属性。 |\n| autofocus | | | HTML5のautofocus属性。選択肢のうち、先頭要素のみautofocus属性を出力する。 |\n| pattern | | 指定なし | 使用するパターンのカラム名。 |\n| optionColumnName | | | 取得するオプション名称のカラム名。 |\n| labelPattern | | \"$NAME$\" | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)、$SHORTNAME$(略称)、$OPTIONALNAME$(オプション名称、optionColumnName必須)、$VALUE$(コード値)。 |\n| listFormat | | br | リスト表示フォーマット。br/div/span/ul/ol/sp のいずれかを指定。 |\n| errorCss | | \"nablarch_error\" | エラーレベルのメッセージに使用するCSSクラス名。 |\n| nameAlias | | | name属性のエイリアス。複数指定はカンマ区切り。 |", "s2": "全てのHTMLカスタムタグで使用可能な共通属性(:ref:`WebView_GenericAttributesTag`)。\n\n| 属性 | 説明 |\n|---|---|\n| id | XHTMLのid属性 |\n| cssClass | XHTMLのclass属性 |\n| style | XHTMLのstyle属性 |\n| title | XHTMLのtitle属性 |\n| lang | XHTMLのlang属性 |\n| xmlLang | XHTMLのxml:lang属性 |\n| dir | XHTMLのdir属性 |\n| onclick | XHTMLのonclick属性 |\n| ondblclick | XHTMLのondblclick属性 |\n| onmousedown | XHTMLのonmousedown属性 |\n| onmouseup | XHTMLのonmouseup属性 |\n| onmouseover | XHTMLのonmouseover属性 |\n| onmousemove | XHTMLのonmousemove属性 |\n| onmouseout | XHTMLのonmouseout属性 |\n| onkeypress | XHTMLのonkeypress属性 |\n| onkeydown | XHTMLのonkeydown属性 |\n| onkeyup | XHTMLのonkeyup属性 |\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| valueObject | ○ | | XHTMLのvalue属性の代わりに使用するオブジェクト。keyNamesで指定したプロパティを持つ必要がある |\n| keyNames | ○ | | 複合キーのキー名。カンマ区切りで指定 |\n| namePrefix | ○ | | リクエストパラメータに展開する際に使用するプレフィクス |\n| autofocus | | | HTML5のautofocus属性 |\n| label | | | チェックありの場合に使用するラベル。入力画面で表示される |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## downloadSubmitタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| type | ○ | | XHTMLのtype属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| disabled | | | XHTMLのdisabled属性 |\n| value | | | XHTMLのvalue属性 |\n| src | | | XHTMLのsrc属性 |\n| alt | | | XHTMLのalt属性 |\n| usemap | | | XHTMLのusemap属性 |\n| align | | | XHTMLのalign属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| allowDoubleSubmission | | true | 二重サブミットを許可するか否か。許可する場合はtrue、許可しない場合はfalse |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## codeCheckboxタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | ○ | | XHTMLのname属性。 |\n| value | | \"1\" | XHTMLのvalue属性。チェックありの場合に使用するコード値。 |\n| autofocus | | | HTML5のautofocus属性。 |\n| codeId | ○ | | コードID。 |\n| optionColumnName | | | 取得するオプション名称のカラム名。 |\n| labelPattern | | \"$NAME$\" | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)、$SHORTNAME$(略称)、$OPTIONALNAME$(オプション名称、optionColumnName必須)、$VALUE$(コード値)。 |\n| offCodeValue | | | チェックなしの場合に使用するコード値。未指定時はcodeId属性の値からチェックなしコード値を検索。検索結果が2件かつ1件がvalue属性値の場合、残り1件を使用。見つからない場合はデフォルト値\"0\"を使用。 |\n| disabled | | | XHTMLのdisabled属性。 |\n| onchange | | | XHTMLのonchange属性。 |\n| errorCss | | \"nablarch_error\" | エラーレベルのメッセージに使用するCSSクラス名。 |\n| nameAlias | | | name属性のエイリアス。複数指定はカンマ区切り。 |", "s3": "フォーカスを取得可能なHTMLカスタムタグで使用可能な共通属性(:ref:`WebView_FocusAttributesTag`)。\n\n| 属性 | 説明 |\n|---|---|\n| accesskey | XHTMLのaccesskey属性 |\n| tabindex | XHTMLのtabindex属性 |\n| onfocus | XHTMLのonfocus属性 |\n| onblur | XHTMLのonblur属性 |\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| readonly | | | XHTMLのreadonly属性 |\n| size | | | XHTMLのsize属性 |\n| maxlength | | | XHTMLのmaxlength属性 |\n| onselect | | | XHTMLのonselect属性 |\n| onchange | | | XHTMLのonchange属性 |\n| accept | | | XHTMLのaccept属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| multiple | | | HTML5のmultiple属性 |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## downloadButtonタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| value | | | XHTMLのvalue属性 |\n| type | | | XHTMLのtype属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| allowDoubleSubmission | | true | 二重サブミットを許可するか否か。許可する場合はtrue、許可しない場合はfalse |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## codeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | 表示対象のコード値を変数スコープから取得する名前。省略時はcodeId属性とpattern属性で絞り込んだコードの一覧を表示する。 |\n| codeId | ○ | | コードID。 |\n| pattern | | 指定なし | 使用するパターンのカラム名。 |\n| optionColumnName | | | 取得するオプション名称のカラム名。 |\n| labelPattern | | \"$NAME$\" | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)、$SHORTNAME$(略称)、$OPTIONALNAME$(オプション名称、optionColumnName必須)、$VALUE$(コード値)。 |\n| listFormat | | br | リスト表示フォーマット。br/div/span/ul/ol/sp のいずれかを指定。 |", - "s4": "HTMLのformタグを出力するカスタムタグ(:ref:`WebView_FormTag`)の属性一覧。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| name | | | XHTMLのname属性 |\n| action | | | XHTMLのaction属性 |\n| method | | post | XHTMLのmethod属性 |\n| enctype | | | XHTMLのenctype属性 |\n| onsubmit | | | XHTMLのonsubmit属性 |\n| onreset | | | XHTMLのonreset属性 |\n| accept | | | XHTMLのaccept属性 |\n| acceptCharset | | | XHTMLのaccept-charset属性 |\n| target | | | XHTMLのtarget属性 |\n| autocomplete | | | HTML5のautocomplete属性 |\n| windowScopePrefixes | | | ウィンドウスコープ変数のプレフィックス(カンマ区切りで複数指定可)。指定されたプレフィックスにマッチするリクエストパラメータをhiddenタグとして出力 |\n| useToken | | false | トークンを設定するか否か(true=設定)。confirmationPageタグが指定された場合はデフォルトがtrueになる |\n| secure | | | URIをhttpsにするか否か(true=https) |\n| preventPostResubmit | | false | POST再送信防止機能を使用するか否か(true=使用) |\n\nHTMLタグの出力を行わず、ウィンドウスコープに値を出力する。\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n\n## downloadLinkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| allowDoubleSubmission | | true | 二重サブミットを許可するか否か。許可する場合はtrue、許可しない場合はfalse |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## messageタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| messageId | ○ | | メッセージID。 |\n| option0~option9 | | | メッセージフォーマットに使用するオプション引数(インデックス0~9)。最大10個まで指定可能。 |\n| language | | スレッドコンテキストの言語 | メッセージの言語。 |\n| var | | | リクエストスコープに格納する変数名。指定した場合はメッセージを出力せずリクエストスコープに設定する。この場合はHTMLエスケープとHTMLフォーマットを行わない。 |\n| htmlEscape | | true | HTMLエスケープするか否か(true/false)。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。htmlEscape=trueの場合のみ有効。 |", - "s5": "HTMLのinputタグ(type=text)を出力するカスタムタグ(:ref:`WebView_TextTag`)の属性一覧。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| :ref:`WebView_FocusAttributesTag` | | | フォーカス属性参照 |\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| readonly | | | XHTMLのreadonly属性 |\n| size | | | XHTMLのsize属性 |\n| maxlength | | | XHTMLのmaxlength属性 |\n| onselect | | | XHTMLのonselect属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autocomplete | | | HTML5のautocomplete属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| placeholder | | | HTML5のplaceholder属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス(カンマ区切りで複数指定可) |\n| valueFormat | | | 出力時のフォーマット。`データタイプ{パターン}` 形式で指定 |\n\n**valueFormatのデータタイプ:**\n\n- **yyyymmdd**: 年月日フォーマット。値はyyyyMMdd形式またはパターン形式の文字列。パターン文字にはy(年)・M(月)・d(日)のみ指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターンを設定可能。\n - 例: `valueFormat=\"yyyymmdd\"` / `valueFormat=\"yyyymmdd{yyyy/MM/dd}\"`\n > **注意**: 入力画面にもフォーマットした値が出力される。入力された年月日をアクションで取得する場合は :ref:`ExtendedValidation_yyyymmddConvertor` を使用する。textタグとコンバータが連携し、valueFormat属性に指定されたパターンを使用した値変換と入力精査を行う。\n\n- **yyyymm**: 年月フォーマット。使用方法はyyyymmddと同様。\n > **注意**: コンバータには :ref:`ExtendedValidation_yyyymmConvertor` を使用する。\n\n- **decimal**: 10進数フォーマット。値はjava.lang.Number型または数字の文字列。文字列の場合は言語に対応する1000の区切り文字を取り除いた後にフォーマットされる。パターンはjava.text.DecimalFormat形式。ThreadContextに設定された言語を使用して出力。区切り文字\"|\"でパターンに直接言語を指定可能。:ref:`WebView_CustomTagConfig` で区切り文字の変更可能。\n - 例: `valueFormat=\"decimal{###,###,###.000}\"` / `valueFormat=\"decimal{###,###,###.000|ja}\"`\n > **注意**: 入力画面にもフォーマットした値が出力される。入力された数値をアクションで取得する場合は数値コンバータ(BigDecimalConvertor、IntegerConvertor、LongConvertor)を使用する。textタグと数値コンバータが連携し、valueFormat属性に指定された言語に対応する値変換と入力精査を行う。\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n\n## paramタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| paramName | ○ | | サブミット時に使用するパラメータの名前 |\n| name | | | 値を取得するための名前。name属性とvalue属性のどちらか一方を指定する |\n| value | | | 値。直接値を指定する場合に使用する。name属性とvalue属性のどちらか一方を指定する |\n\n## writeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。HTMLエスケープをする場合のみ有効。 |\n| valueFormat | | | 出力時のフォーマット。`データタイプ{パターン}`形式で指定。 |\n\n**valueFormatのデータタイプ**:\n\n- **yyyymmdd**: 年月日フォーマット。値はyyyyMMdd形式またはパターン形式の文字列。パターン文字はy(年)、M(月)、d(日)のみ指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定可。\n ```\n valueFormat=\"yyyymmdd\"\n valueFormat=\"yyyymmdd{yyyy/MM/dd}\"\n ```\n\n- **yyyymm**: 年月フォーマット。値はyyyyMM形式の文字列。使用方法はyyyymmddと同様。\n\n- **dateTime**: 日時フォーマット(**writeタグのみで使用可能**)。値はjava.util.Date型。パターンはjava.text.SimpleDateFormat構文。ThreadContextのタイムゾーンを使用。区切り文字\"|\"でパターンにタイムゾーンを直接指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定と区切り文字変更可。\n ```\n valueFormat=\"datetime\"\n valueFormat=\"datetime{|Asia/Tokyo}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss|Asia/Tokyo}\"\n ```\n\n- **decimal**: 10進数フォーマット。値はjava.lang.Number型または数字の文字列。文字列の場合、言語に対応する1000区切り文字を除去後にフォーマット。パターンはjava.text.DecimalFormat構文。ThreadContextの言語を使用。区切り文字\"|\"でパターンに言語を直接指定可能。:ref:`WebView_CustomTagConfig` で区切り文字変更可。\n ```\n valueFormat=\"decimal{###,###,###.000}\"\n valueFormat=\"decimal{###,###,###.000|ja}\"\n ```", + "s4": "HTMLのformタグを出力するカスタムタグ(:ref:`WebView_FormTag`)の属性一覧。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| name | | | XHTMLのname属性 |\n| action | | | XHTMLのaction属性 |\n| method | | post | XHTMLのmethod属性 |\n| enctype | | | XHTMLのenctype属性 |\n| onsubmit | | | XHTMLのonsubmit属性 |\n| onreset | | | XHTMLのonreset属性 |\n| accept | | | XHTMLのaccept属性 |\n| acceptCharset | | | XHTMLのaccept-charset属性 |\n| target | | | XHTMLのtarget属性 |\n| autocomplete | | | HTML5のautocomplete属性 |\n| windowScopePrefixes | | | ウィンドウスコープ変数のプレフィックス(カンマ区切りで複数指定可)。指定されたプレフィックスにマッチするリクエストパラメータをhiddenタグとして出力 |\n| useToken | | false | トークンを設定するか否か(true=設定)。confirmationPageタグが指定された場合はデフォルトがtrueになる |\n| secure | | | URIをhttpsにするか否か(true=https) |\n| preventPostResubmit | | false | POST再送信防止機能を使用するか否か(true=使用) |\n\nHTMLタグの出力を行わず、ウィンドウスコープに値を出力する。\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n\n## downloadLinkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| allowDoubleSubmission | | true | 二重サブミットを許可するか否か。許可する場合はtrue、許可しない場合はfalse |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## messageタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| messageId | ○ | | メッセージID。 |\n| option0~option9 | | | メッセージフォーマットに使用するインデックスが0~9のオプション引数。最大10個まで指定可能。 |\n| language | | スレッドコンテキストの言語 | メッセージの言語。 |\n| var | | | リクエストスコープに格納する変数名。指定した場合はメッセージを出力せずリクエストスコープに設定する。この場合はHTMLエスケープとHTMLフォーマットを行わない。 |\n| htmlEscape | | true | HTMLエスケープするか否か(true/false)。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。htmlEscape=trueの場合のみ有効。 |", + "s5": "HTMLのinputタグ(type=text)を出力するカスタムタグ(:ref:`WebView_TextTag`)の属性一覧。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| :ref:`WebView_FocusAttributesTag` | | | フォーカス属性参照 |\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| readonly | | | XHTMLのreadonly属性 |\n| size | | | XHTMLのsize属性 |\n| maxlength | | | XHTMLのmaxlength属性 |\n| onselect | | | XHTMLのonselect属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autocomplete | | | HTML5のautocomplete属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| placeholder | | | HTML5のplaceholder属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス(カンマ区切りで複数指定可) |\n| valueFormat | | | 出力時のフォーマット。`データタイプ{パターン}` 形式で指定 |\n\n**valueFormatのデータタイプ:**\n\n- **yyyymmdd**: 年月日フォーマット。値はyyyyMMdd形式またはパターン形式の文字列。パターン文字にはy(年)・M(月)・d(日)のみ指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターンを設定可能。\n - 例: `valueFormat=\"yyyymmdd\"` / `valueFormat=\"yyyymmdd{yyyy/MM/dd}\"`\n > **注意**: 入力画面にもフォーマットした値が出力される。入力された年月日をアクションで取得する場合は :ref:`ExtendedValidation_yyyymmddConvertor` を使用する。textタグとコンバータが連携し、valueFormat属性に指定されたパターンを使用した値変換と入力精査を行う。\n\n- **yyyymm**: 年月フォーマット。使用方法はyyyymmddと同様。\n > **注意**: コンバータには :ref:`ExtendedValidation_yyyymmConvertor` を使用する。\n\n- **decimal**: 10進数フォーマット。値はjava.lang.Number型または数字の文字列。文字列の場合は言語に対応する1000の区切り文字を取り除いた後にフォーマットされる。パターンはjava.text.DecimalFormat形式。ThreadContextに設定された言語を使用して出力。区切り文字\"|\"でパターンに直接言語を指定可能。:ref:`WebView_CustomTagConfig` で区切り文字の変更可能。\n - 例: `valueFormat=\"decimal{###,###,###.000}\"` / `valueFormat=\"decimal{###,###,###.000|ja}\"`\n > **注意**: 入力画面にもフォーマットした値が出力される。入力された数値をアクションで取得する場合は数値コンバータ(BigDecimalConvertor、IntegerConvertor、LongConvertor)を使用する。textタグと数値コンバータが連携し、valueFormat属性に指定された言語に対応する値変換と入力精査を行う。\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n\n## paramタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| paramName | ○ | | サブミット時に使用するパラメータの名前 |\n| name | | | 値を取得するための名前。name属性とvalue属性のどちらか一方を指定する |\n| value | | | 値。直接値を指定する場合に使用する。name属性とvalue属性のどちらか一方を指定する |\n\n## writeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。HTMLエスケープをする場合のみ有効。 |\n| valueFormat | | | 出力時のフォーマット。`データタイプ{パターン}`形式で指定。 |\n\n**valueFormatのデータタイプ**:\n\n- **yyyymmdd**: 年月日フォーマット。値はyyyyMMdd形式またはパターン形式の文字列。パターン文字はy(年)、M(月)、d(日)のみ指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定可。\n ```\n valueFormat=\"yyyymmdd\"\n valueFormat=\"yyyymmdd{yyyy/MM/dd}\"\n ```\n\n- **yyyymm**: 年月フォーマット。値はyyyyMM形式またはパターン形式の文字列を指定する。使用方法は、yyyymmddと同様。\n\n- **dateTime**: 日時フォーマット(**writeタグのみで使用可能**)。値はjava.util.Date型。パターンはjava.text.SimpleDateFormat構文。ThreadContextのタイムゾーンを使用。区切り文字\"|\"でパターンにタイムゾーンを直接指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定と区切り文字変更可。\n ```\n valueFormat=\"datetime\"\n valueFormat=\"datetime{|Asia/Tokyo}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss|Asia/Tokyo}\"\n ```\n\n- **decimal**: 10進数フォーマット。値はjava.lang.Number型または数字の文字列。文字列の場合、言語に対応する1000区切り文字を除去後にフォーマット。パターンはjava.text.DecimalFormat構文。ThreadContextの言語を使用。区切り文字\"|\"でパターンに言語を直接指定可能。:ref:`WebView_CustomTagConfig` で区切り文字変更可。\n ```\n valueFormat=\"decimal{###,###,###.000}\"\n valueFormat=\"decimal{###,###,###.000|ja}\"\n ```", "s6": "HTMLのtextareaタグを出力するカスタムタグ(:ref:`WebView_TextareaTag`)の属性一覧。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| :ref:`WebView_FocusAttributesTag` | | | フォーカス属性参照 |\n| name | ○ | | XHTMLのname属性 |\n| rows | ○ | | XHTMLのrows属性 |\n| cols | ○ | | XHTMLのcols属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| readonly | | | XHTMLのreadonly属性 |\n| onselect | | | XHTMLのonselect属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| placeholder | | | HTML5のplaceholder属性 |\n| maxlength | | | HTML5のmaxlength属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス(カンマ区切りで複数指定可) |\n\n共通属性: :ref:`WebView_GenericAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| listName | ○ | | 選択項目のリストの属性名 |\n| elementLabelProperty | ○ | | リスト要素からラベルを取得するためのプロパティ名 |\n| elementValueProperty | ○ | | リスト要素から値を取得するためのプロパティ名 |\n| size | | | XHTMLのsize属性 |\n| multiple | | | XHTMLのmultiple属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| tabindex | | | XHTMLのtabindex属性 |\n| onfocus | | | XHTMLのonfocus属性 |\n| onblur | | | XHTMLのonblur属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| elementLabelPattern | | `$LABEL$` | ラベルを整形するためのパターン。プレースホルダ: `$LABEL$`(ラベル)、`$VALUE$`(値)。例: `$VALUE$ - $LABEL$` → `G001 - グループ1` |\n| listFormat | | `br` | リスト表示フォーマット: br / div / span / ul / ol / sp(スペース区切り) |\n| withNoneOption | | `false` | trueの場合、リスト先頭に選択なしオプションを追加 |\n| noneOptionLabel | | `\"\"` | withNoneOptionがtrueの場合のみ有効。選択なしオプションのラベル |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## changeParamNameタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| paramName | ○ | | サブミット時に使用するパラメータの名前 |\n| inputName | ○ | | 変更元となる元画面のinput要素のname属性 |\n\n## prettyPrintタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |", "s7": "HTMLのinputタグ(type=password)を出力するカスタムタグ(:ref:`WebView_PasswordTag`)の属性一覧。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| :ref:`WebView_FocusAttributesTag` | | | フォーカス属性参照 |\n| name | ○ | | XHTMLのname属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| readonly | | | XHTMLのreadonly属性 |\n| size | | | XHTMLのsize属性 |\n| maxlength | | | XHTMLのmaxlength属性 |\n| onselect | | | XHTMLのonselect属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autocomplete | | | HTML5のautocomplete属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| placeholder | | | HTML5のplaceholder属性 |\n| restoreValue | | false | 入力画面の再表示時に入力データを復元するか否か(true=復元) |\n| replacement | | * | 確認画面用出力時に使用する置換文字 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス(カンマ区切りで複数指定可) |\n\n> **注意**: :ref:`WebView_GenericAttributesTag` のid属性は指定不可。:ref:`WebView_FocusAttributesTag` のaccesskey属性は指定不可。\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| listName | ○ | | 選択項目のリストの属性名 |\n| elementLabelProperty | ○ | | リスト要素からラベルを取得するためのプロパティ名 |\n| elementValueProperty | ○ | | リスト要素から値を取得するためのプロパティ名 |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性。先頭要素のみautofocus属性を出力する |\n| elementLabelPattern | | `$LABEL$` | ラベルを整形するためのパターン。プレースホルダ: `$LABEL$`(ラベル)、`$VALUE$`(値) |\n| listFormat | | `br` | リスト表示フォーマット: br / div / span / ul / ol / sp(スペース区切り) |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## aタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| charset | | | XHTMLのcharset属性 |\n| type | | | XHTMLのtype属性 |\n| name | | | XHTMLのname属性 |\n| href | | | XHTMLのhref属性。:ref:`WebView_SpecifyUri` を参照 |\n| hreflang | | | XHTMLのhreflang属性 |\n| rel | | | XHTMLのrel属性 |\n| rev | | | XHTMLのrev属性 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| target | | | XHTMLのtarget属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n\n## rawWriteタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |\n\n### setタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| var | ○ | | リクエストスコープに格納する変数名。 |\n| name | | | 値を取得するための名前。name属性とvalue属性のどちらか一方を指定する。 |\n| value | | | 値。直接値を指定する場合に使用する。name属性とvalue属性のどちらか一方を指定する。 |\n| scope | | リクエストスコープ | 変数を格納するスコープ。page(ページスコープ)またはrequest(リクエストスコープ)。 |\n| bySingleValue | | true | name属性に対応する値を単一値として取得するか否か。 |", - "s8": "HTMLのinputタグ(type=radio)を出力するカスタムタグ(:ref:`WebView_RadioButtonTag`)の属性一覧。radiobuttonsタグで表示できないレイアウト時に使用する。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| :ref:`WebView_FocusAttributesTag` | | | フォーカス属性参照 |\n| name | ○ | | XHTMLのname属性 |\n| value | ○ | | XHTMLのvalue属性 |\n| label | ○ | | ラベル |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス(カンマ区切りで複数指定可) |\n\n> **注意**: :ref:`WebView_GenericAttributesTag` のid属性は指定不可。:ref:`WebView_FocusAttributesTag` のaccesskey属性は指定不可。\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| listName | ○ | | 選択項目のリストの属性名 |\n| elementLabelProperty | ○ | | リスト要素からラベルを取得するためのプロパティ名 |\n| elementValueProperty | ○ | | リスト要素から値を取得するためのプロパティ名 |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性。先頭要素のみautofocus属性を出力する |\n| elementLabelPattern | | `$LABEL$` | ラベルを整形するためのパターン。プレースホルダ: `$LABEL$`(ラベル)、`$VALUE$`(値) |\n| listFormat | | `br` | リスト表示フォーマット: br / div / span / ul / ol / sp(スペース区切り) |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## imgタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| src | ○ | | XHTMLのsrc属性。:ref:`WebView_SpecifyUri` を参照 |\n| alt | ○ | | XHTMLのalt属性 |\n| name | | | XHTMLのname属性 |\n| longdesc | | | XHTMLのlongdesc属性 |\n| height | | | XHTMLのheight属性 |\n| width | | | XHTMLのwidth属性 |\n| usemap | | | XHTMLのusemap属性 |\n| ismap | | | XHTMLのismap属性 |\n| align | | | XHTMLのalign属性 |\n| border | | | XHTMLのborder属性 |\n| hspace | | | XHTMLのhspace属性 |\n| vspace | | | XHTMLのvspace属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n\n## includeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| path | ○ | | インクルード先のパス。 |", + "s8": "HTMLのinputタグ(type=radio)を出力するカスタムタグ(:ref:`WebView_RadioButtonTag`)の属性一覧。radiobuttonsタグで表示できないレイアウト時に使用する。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| :ref:`WebView_FocusAttributesTag` | | | フォーカス属性参照 |\n| name | ○ | | XHTMLのname属性 |\n| value | ○ | | XHTMLのvalue属性 |\n| label | ○ | | ラベル |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス(カンマ区切りで複数指定可) |\n\n> **注意**: :ref:`WebView_GenericAttributesTag` のid属性は指定不可。:ref:`WebView_FocusAttributesTag` のaccesskey属性は指定不可。\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | XHTMLのname属性 |\n| listName | ○ | | 選択項目のリストの属性名 |\n| elementLabelProperty | ○ | | リスト要素からラベルを取得するためのプロパティ名 |\n| elementValueProperty | ○ | | リスト要素から値を取得するためのプロパティ名 |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性。先頭要素のみautofocus属性を出力する |\n| elementLabelPattern | | `$LABEL$` | ラベルを整形するためのパターン。プレースホルダ: `$LABEL$`(ラベル)、`$VALUE$`(値) |\n| listFormat | | `br` | リスト表示フォーマット: br / div / span / ul / ol / sp(スペース区切り) |\n| errorCss | | `nablarch_error` | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |\n\n## imgタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| src | ○ | | XHTMLのcharsrc属性。:ref:`WebView_SpecifyUri` を参照 |\n| alt | ○ | | XHTMLのalt属性 |\n| name | | | XHTMLのname属性 |\n| longdesc | | | XHTMLのlongdesc属性 |\n| height | | | XHTMLのheight属性 |\n| width | | | XHTMLのwidth属性 |\n| usemap | | | XHTMLのusemap属性 |\n| ismap | | | XHTMLのismap属性 |\n| align | | | XHTMLのalign属性 |\n| border | | | XHTMLのborder属性 |\n| hspace | | | XHTMLのhspace属性 |\n| vspace | | | XHTMLのvspace属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n\n## includeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| path | ○ | | インクルード先のパス。 |", "s9": "HTMLのinputタグ(type=checkbox)を出力するカスタムタグ(:ref:`WebView_CheckboxTag`)の属性一覧。checkboxesタグで表示できないレイアウト時に使用する。\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | 共通属性参照 |\n| :ref:`WebView_FocusAttributesTag` | | | フォーカス属性参照 |\n| name | ○ | | XHTMLのname属性 |\n| value | | 1 | チェックありの場合に使用する値 |\n| autofocus | | | HTML5のautofocus属性 |\n| label | | | チェックありの場合に使用するラベル(入力画面で表示) |\n| useOffValue | | true | チェックなしの値設定を使用するか否か |\n| offLabel | | | チェックなしの場合に使用するラベル |\n| offValue | | 0 | チェックなしの場合に使用する値 |\n| disabled | | | XHTMLのdisabled属性 |\n| onchange | | | XHTMLのonchange属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス(カンマ区切りで複数指定可) |\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | XHTMLのname属性 |\n| type | ○ | | XHTMLのtype属性 |\n| uri | ○ | | URI(:ref:`WebView_SpecifyUri` 参照) |\n| disabled | | | XHTMLのdisabled属性 |\n| value | | | XHTMLのvalue属性 |\n| src | | | XHTMLのsrc属性 |\n| alt | | | XHTMLのalt属性 |\n| usemap | | | XHTMLのusemap属性 |\n| align | | | XHTMLのalign属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| allowDoubleSubmission | | `true` | 二重サブミットを許可するか否か(true: 許可 / false: 不許可) |\n| secure | | | URIをhttpsにするか否か(true: https / false: http) |\n| displayMethod | | | 認可判定・開閉局判定に基づく表示制御: NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## linkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| charset | | | XHTMLのcharset属性 |\n| href | | | XHTMLのhref属性。:ref:`WebView_SpecifyUri` を参照 |\n| hreflang | | | XHTMLのhreflang属性 |\n| type | | | XHTMLのtype属性 |\n| rel | | | XHTMLのrel属性 |\n| rev | | | XHTMLのrev属性 |\n| media | | | XHTMLのmedia属性 |\n| target | | | XHTMLのtarget属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n\n## includeParamタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| paramName | ○ | | インクルード時に使用するパラメータの名前。 |\n| name | | | 値を取得するための名前。name属性とvalue属性のどちらか一方を指定する。 |\n| value | | | 値。直接値を指定する場合に使用する。name属性とvalue属性のどちらか一方を指定する。 |", "s10": "複数のHTMLのinputタグ(type=checkbox)を出力するカスタムタグ(:ref:`WebView_CompositeKeyCheckboxTag`)。checkboxesタグで実現できない複合キーを使用する際に使用する。入力データ復元およびHTMLエスケープをサポートする。\n\n共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI(:ref:`WebView_SpecifyUri` 参照) |\n| value | | | XHTMLのvalue属性 |\n| type | | | XHTMLのtype属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| allowDoubleSubmission | | `true` | 二重サブミットを許可するか否か(true: 許可 / false: 不許可) |\n| secure | | | URIをhttpsにするか否か(true: https / false: http) |\n| displayMethod | | | 認可判定・開閉局判定に基づく表示制御: NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## scriptタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| type | ○ | | XHTMLのtype属性 |\n| id | | | XHTMLのid属性 |\n| charset | | | XHTMLのcharset属性 |\n| language | | | XHTMLのlanguage属性 |\n| src | | | XHTMLのsrc属性。:ref:`WebView_SpecifyUri` を参照 |\n| defer | | | XHTMLのdefer属性 |\n| xmlSpace | | | XHTMLのxml:space属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n\n## confirmationPageタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| path | | | フォワード先(入力画面)のパス。 |", - "s11": "共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI(:ref:`WebView_SpecifyUri` 参照) |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| allowDoubleSubmission | | `true` | 二重サブミットを許可するか否か(true: 許可 / false: 不許可) |\n| secure | | | URIをhttpsにするか否か(true: https / false: http) |\n| displayMethod | | | 認可判定・開閉局判定に基づく表示制御: NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## errorsタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| cssClass | | nablarch_errors | リスト表示においてulタグに使用するCSSクラス名 |\n| infoCss | | nablarch_info | 情報レベルのメッセージに使用するCSSクラス名 |\n| warnCss | | nablarch_warn | 警告レベルのメッセージに使用するCSSクラス名 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| filter | | all | リストに含めるメッセージのフィルタ条件。all(全てのメッセージを表示)/ global(ValidationResultMessageのプロパティ名が入っているメッセージを取り除いて出力) |\n\n## ignoreConfirmationタグ\n\n属性なし。", + "s11": "共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI(:ref:`WebView_SpecifyUri` 参照) |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| allowDoubleSubmission | | `true` | 二重サブミットを許可するか否か(true: 許可 / false: 不許可) |\n| secure | | | URIをhttpsにするか否か(true: https / false: http) |\n| displayMethod | | | 認可判定・開閉局判定に基づく表示制御: NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## errorsタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| cssClass | | nablarch_errors | リスト表示においてulタグに使用するCSSクラス名 |\n| infoCss | | nablarch_info | 情報レベルのメッセージに使用するCSSクラス名 |\n| warnCss | | nablarch_warn | 警告レベルのメッセージに使用するCSSクラス名 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| filter | | all | リストに含めるメッセージのフィルタ条件。all(全てのメッセージを表示)/ global(入力項目に対応しないメッセージのみを表示。ValidationResultMessageのプロパティ名が入っているメッセージを取り除いて出力) |\n\n## ignoreConfirmationタグ\n\n属性なし。", "s12": "共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | XHTMLのname属性 |\n| type | ○ | | XHTMLのtype属性 |\n| uri | ○ | | URI(:ref:`WebView_SpecifyUri` 参照) |\n| disabled | | | XHTMLのdisabled属性 |\n| value | | | XHTMLのvalue属性 |\n| src | | | XHTMLのsrc属性 |\n| alt | | | XHTMLのalt属性 |\n| usemap | | | XHTMLのusemap属性 |\n| align | | | XHTMLのalign属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| secure | | | URIをhttpsにするか否か(true: https / false: http) |\n| popupWindowName | | | ポップアップのウィンドウ名(window.open第2引数) |\n| popupOption | | | ポップアップのオプション情報(window.open第3引数) |\n| displayMethod | | | 認可判定・開閉局判定に基づく表示制御: NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## errorタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | エラーメッセージを表示する入力項目のname属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| messageFormat | | div | メッセージ表示時に使用するフォーマット。div(divタグ)/ span(spanタグ) |\n\n## forInputPageタグ\n\n属性なし。", "s13": "共通属性: :ref:`WebView_GenericAttributesTag`, :ref:`WebView_FocusAttributesTag`\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI(:ref:`WebView_SpecifyUri` 参照) |\n| value | | | XHTMLのvalue属性 |\n| type | | | XHTMLのtype属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| secure | | | URIをhttpsにするか否か(true: https / false: http) |\n| popupWindowName | | | ポップアップのウィンドウ名(window.open第2引数) |\n| popupOption | | | ポップアップのオプション情報(window.open第3引数) |\n| displayMethod | | | 認可判定・開閉局判定に基づく表示制御: NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |\n\n## noCacheタグ\n\n属性なし。\n\n## forConfirmationPageタグ\n\n属性なし。", "s14": "## codeSelectタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| name | ○ | | XHTMLのname属性 |\n| codeId | ○ | | コードID |\n| size | | | XHTMLのsize属性 |\n| multiple | | | XHTMLのmultiple属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| tabindex | | | XHTMLのtabindex属性 |\n| onfocus | | | XHTMLのonfocus属性 |\n| onblur | | | XHTMLのonblur属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| pattern | | 指定なし | 使用するパターンのカラム名 |\n| optionColumnName | | | 取得するオプション名称のカラム名 |\n| labelPattern | | $NAME$ | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)/ $SHORTNAME$(略称)/ $OPTIONALNAME$(オプション名称、使用時はoptionColumnName必須)/ $VALUE$(コード値) |\n| listFormat | | br | リスト表示時のフォーマット。br / div / span / ul / ol / sp(スペース区切り) |\n| withNoneOption | | false | リスト先頭に選択なしのオプションを追加するか否か |\n| noneOptionLabel | | \"\" | withNoneOptionがtrueの場合に使用する選択なしオプションのラベル |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |", diff --git a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-thread_context.json b/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-thread_context.json index 4be82dcdb..a7eb8a5f7 100644 --- a/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-thread_context.json +++ b/.claude/skills/nabledge-1.4/knowledge/component/libraries/libraries-thread_context.json @@ -16,6 +16,7 @@ "LanguageAttributeInHttpCookie", "LanguageAttributeInHttpSession", "LanguageAttributeInHttpUtil", + "I18nHandler", "defaultLanguage", "supportedLanguages", "cookieName", @@ -40,6 +41,7 @@ "TimeZoneAttributeInHttpCookie", "TimeZoneAttributeInHttpSession", "TimeZoneAttributeInHttpUtil", + "I18nHandler", "defaultTimeZone", "supportedTimeZones", "cookieName", @@ -101,24 +103,17 @@ }, { "id": "s6", - "title": "RequestIdAttributeの設定", + "title": "RequestIdAttribute / InternalRequestIdAttributeの設定", "hints": [ "RequestIdAttribute", - "リクエストID設定", - "設定プロパティ" - ] - }, - { - "id": "s7", - "title": "InternalRequestIdAttributeの設定", - "hints": [ "InternalRequestIdAttribute", + "リクエストID設定", "内部リクエストID設定", "設定プロパティ" ] }, { - "id": "s8", + "id": "s7", "title": "使用方法", "hints": [ "ThreadContextHandler", @@ -128,13 +123,15 @@ "LanguageAttribute", "TimeZoneAttribute", "ExecutionIdAttribute", + "ForwardingHandler", + "FwHeaderReader", "言語切り替え", "タイムゾーン切り替え", "国際化" ] }, { - "id": "s9", + "id": "s8", "title": "LanguageAttribute選択基準", "hints": [ "LanguageAttribute", @@ -149,6 +146,21 @@ "ログイン時言語取得" ] }, + { + "id": "s9", + "title": "TimeZoneAttribute選択基準", + "hints": [ + "TimeZoneAttribute", + "TimeZoneAttributeInHttpCookie", + "TimeZoneAttributeInHttpSession", + "TimeZoneAttributeInHttpSupport", + "TimeZoneAttributeInHttpUtil", + "タイムゾーン選択", + "国際化", + "タイムゾーン切り替え", + "ログイン時タイムゾーン取得" + ] + }, { "id": "s10", "title": "TimeZoneAttribute選択基準", @@ -181,15 +193,15 @@ } ], "sections": { - "s1": "スレッドコンテキストはスレッドローカル変数上の変数スコープ。ユーザIDやリクエストIDなど、実行コンテキスト経由での引き回しが難しいパラメータを格納する。\n\n- 多くの値は[../handler/ThreadContextHandler](../handlers/handlers-ThreadContextHandler.json)によって設定される\n- 子スレッドを起動した場合、親スレッドの値が暗黙的に引き継がれる\n- 子スレッドで値を変更する場合は、明示的に子スレッドで値を設定すること\n\n![クラス図](assets/libraries-thread_context/thread_context.jpg)\n\n## LanguageAttribute\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n\n## HttpLanguageAttribute\n\n**クラス**: `nablarch.common.web.handler.threadcontext.HttpLanguageAttribute`\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | String | ○ | | サポート対象言語 |\n\n## LanguageAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpCookie`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | String | ○ | | サポート対象言語 |\n| cookieName | String | | nablarch_language | 言語を保持するクッキー名 |\n| cookiePath | String | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | String | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | int | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | boolean | | false(secure属性なし) | クッキーのsecure属性 |\n\n`LanguageAttributeInHttpUtil.keepLanguage(request, context, language)`を呼び出すと、クッキーとスレッドコンテキストの両方に言語が設定される。指定された言語がサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramで言語選択リンク):\n\n```jsp\n\n 英語\n \n\n\n 日本語\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String language = getLanguage(request, \"user.language\");\n if (StringUtil.hasValue(language)) {\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## LanguageAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSession`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | String | ○ | | サポート対象言語 |\n| sessionKey | String | | LanguageAttributeのgetKeyメソッドの戻り値 | 言語が格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づく言語をHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String language = // DBから取得\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", - "s2": "| クラス・インタフェース名 | 概要 |\n|---|---|\n| `nablarch.common.handler.threadcontext.ThreadContextAttribute` | スレッドコンテキストに属性を設定するインタフェース。実装クラスはコンテキストから属性値を取得する責務を持つ。 |\n\n## TimeZoneAttribute\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n\n## TimeZoneAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpCookie`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | String | ○ | | サポート対象タイムゾーン |\n| cookieName | String | | nablarch_timeZone | タイムゾーンを保持するクッキー名 |\n| cookiePath | String | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | String | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | int | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | boolean | | false(secure属性なし) | クッキーのsecure属性 |\n\n`TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone)`を呼び出すと、クッキーとスレッドコンテキストの両方にタイムゾーンが設定される。指定されたタイムゾーンがサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramでタイムゾーン選択リンク):\n\n```jsp\n\n ニューヨーク\n \n\n\n 東京\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String timeZone = getTimeZone(request, \"user.timeZone\");\n if (StringUtil.hasValue(timeZone)) {\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## TimeZoneAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSession`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | String | ○ | | サポート対象タイムゾーン |\n| sessionKey | String | | TimeZoneAttributeのgetKeyメソッドの戻り値 | タイムゾーンが格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づくタイムゾーンをHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String timeZone = // DBから取得\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", + "s1": "スレッドコンテキストはスレッドローカル変数上の変数スコープ。ユーザIDやリクエストIDなど、実行コンテキスト経由での引き回しが難しいパラメータを格納する。\n\n- 多くの値は[../handler/ThreadContextHandler](../handlers/handlers-ThreadContextHandler.json)によって設定される\n- それ以外ハンドラでも、スレッドコンテキストに変数を設定するものが存在する\n- 業務アクションハンドラから任意の変数を設定することも可能\n- 子スレッドを起動した場合、親スレッドの値が暗黙的に引き継がれる\n- 子スレッドで値を変更する場合は、明示的に子スレッドで値を設定すること\n\n![クラス図](assets/libraries-thread_context/thread_context.jpg)\n\n## LanguageAttribute\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n\n## HttpLanguageAttribute\n\n**クラス**: `nablarch.common.web.handler.threadcontext.HttpLanguageAttribute`\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | ○ | | サポート対象言語 |\n\n## LanguageAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpCookie`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | ○ | | サポート対象言語 |\n| cookieName | | nablarch_language | 言語を保持するクッキー名 |\n| cookiePath | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | | (secure属性なし) | クッキーのsecure属性 |\n\n`LanguageAttributeInHttpUtil.keepLanguage(request, context, language)`を呼び出すと、クッキーとスレッドコンテキストの両方に言語が設定される。指定された言語がサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramで言語選択リンク):\n\n```jsp\n\n 英語\n \n\n\n 日本語\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String language = getLanguage(request, \"user.language\");\n if (StringUtil.hasValue(language)) {\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## LanguageAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSession`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | ○ | | サポート対象言語 |\n| sessionKey | | LanguageAttributeのgetKeyメソッドの戻り値 | 言語が格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づく言語をHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String language = // DBから取得\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", + "s2": "| クラス・インタフェース名 | 概要 |\n|---|---|\n| `nablarch.common.handler.threadcontext.ThreadContextAttribute` | スレッドコンテキストに属性を設定するインタフェース。実装クラスはコンテキストから属性値を取得する責務を持つ。 |\n\n## TimeZoneAttribute\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n\n## TimeZoneAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpCookie`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | ○ | | サポート対象タイムゾーン |\n| cookieName | | nablarch_timeZone | タイムゾーンを保持するクッキー名 |\n| cookiePath | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | | (secure属性なし) | クッキーのsecure属性 |\n\n`TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone)`を呼び出すと、クッキーとスレッドコンテキストの両方にタイムゾーンが設定される。指定されたタイムゾーンがサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramでタイムゾーン選択リンク):\n\n```jsp\n\n ニューヨーク\n \n\n\n 東京\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String timeZone = getTimeZone(request, \"user.timeZone\");\n if (StringUtil.hasValue(timeZone)) {\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## TimeZoneAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSession`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | ○ | | サポート対象タイムゾーン |\n| sessionKey | | TimeZoneAttributeのgetKeyメソッドの戻り値 | タイムゾーンが格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づくタイムゾーンをHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String timeZone = // DBから取得\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", "s3": "## コアクラス\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.handler.threadcontext.ThreadContextHandler` | スレッドコンテキストを初期化するハンドラ |\n| `nablarch.common.handler.threadcontext.RequestIdAttribute` | [リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json)をスレッドコンテキストに設定するThreadContextAttribute |\n| `nablarch.common.handler.threadcontext.InternalRequestIdAttribute` | [内部リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json)をリクエストIDと同じ値に初期設定する |\n| `nablarch.common.handler.threadcontext.UserIdAttribute` | ログインユーザのユーザIDをスレッドコンテキストに設定するThreadContextAttribute。未ログイン時は未認証ユーザIDを設定 |\n| `nablarch.common.handler.threadcontext.LanguageAttribute` | 言語をスレッドコンテキストに設定するThreadContextAttribute |\n| `nablarch.common.handler.threadcontext.TimeZoneAttribute` | タイムゾーンをスレッドコンテキストに設定するThreadContextAttribute |\n| `nablarch.common.handler.threadcontext.ExecutionIdAttribute` | [実行時ID](libraries-01_Log.json)をスレッドコンテキストに設定するThreadContextAttribute |\n\n## LanguageAttributeのサブクラスとユーティリティ\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.web.handler.threadcontext.HttpLanguageAttribute` | HTTPヘッダ(Accept-Language)から言語を取得するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSupport` | HTTP上で言語の選択と保持を行うThreadContextAttributeの実装をサポートするクラス |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpCookie` | クッキーを使用して言語を保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSession` | HTTPセッションを使用して言語を保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpUtil` | HTTP上で選択された言語を保持する処理を提供するユーティリティクラス |\n\n## TimeZoneAttributeのサブクラスとユーティリティ\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSupport` | HTTP上で選択されたタイムゾーンの保持を行うThreadContextAttributeの実装をサポートするクラス |\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpCookie` | クッキーを使用してタイムゾーンを保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSession` | HTTPセッションを使用してタイムゾーンを保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpUtil` | HTTP上で選択されたタイムゾーンを保持する処理を提供するユーティリティクラス |\n\nExecutionIdAttributeには設定値は存在しない。", "s4": "| プロパティ名 | 設定内容 |\n|---|---|\n| attributes | ThreadContextAttributeインタフェースを実装したクラスのリストを設定する |", "s5": "| プロパティ名 | 設定内容 |\n|---|---|\n| sessionKey | セッションからユーザIDを取得する際のキーを設定する。設定しなかった場合、\"USER_ID\"がキーとして使用される |\n| anonymousId | 未ログインユーザに対して設定するユーザIDを設定する。設定しなかった場合、未ログインユーザのユーザIDは設定されない |", - "s6": "RequestIdAttributeには設定値は存在しない。", - "s7": "InternalRequestIdAttributeには設定値は存在しない。", - "s8": "ThreadContextHandlerは、リクエスト毎にスレッドコンテキストの初期化を行う。実際にスレッドコンテキストに設定する値を取得する責務は、ThreadContextAttributeインタフェース実装クラスが持つ。\n\n## フレームワークが提供するThreadContextAttribute実装クラス\n\n- [リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json)\n- [内部リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json)\n- ユーザID\n- 言語\n- タイムゾーン\n- [実行時ID](libraries-01_Log.json)\n\n## ThreadContextHandler以外での属性更新\n\n| 属性 | 更新状況 |\n|---|---|\n| [リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json) | [../architectural_pattern/messaging](../../processing-pattern/mom-messaging/mom-messaging-messaging.json) のみ、[../reader/FwHeaderReader](../readers/readers-FwHeaderReader.json) によって更新 |\n| [内部リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json) | Web GUIでは内部フォワード時に[../handler/ForwardingHandler](../handlers/handlers-ForwardingHandler.json)で更新。メッセージングでは[../reader/FwHeaderReader](../readers/readers-FwHeaderReader.json)で更新 |\n| ユーザID | [../architectural_pattern/messaging](../../processing-pattern/mom-messaging/mom-messaging-messaging.json) のみ、[../reader/FwHeaderReader](../readers/readers-FwHeaderReader.json) によって更新 |\n\n## 各属性クラスの仕様\n\n**RequestIdAttribute**: URLの最後の\"/\"から\".\"の間の文字列をリクエストIDとする。\n\n**InternalRequestIdAttribute**: リクエストIDと同じ値に初期設定する。\n\n**UserIdAttribute**: HttpセッションからユーザIDを取得してスレッドコンテキストに設定する。取得できない場合は未ログインを示す特別なユーザIDを設定する。認証処理ではセッションにユーザIDを設定しておく必要がある。\n\n> **注意**: HttpセッションからユーザIDを取得するキーと未ログインユーザIDはプロパティで変更可能。\n\n**ExecutionIdAttribute**: 実行時IDをスレッドコンテキストに設定する。詳細は[execution_id](libraries-01_Log.json)参照。", - "s9": "LanguageAttributeクラスは、スレッドコンテキストに設定する言語を取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## LanguageAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| LanguageAttribute | リポジトリの設定で指定された言語をスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトロケールが使用される |\n| HttpLanguageAttribute | HTTPヘッダ(Accept-Language)から取得した言語をスレッドコンテキストに設定する。サポート対象の言語が取得できない場合は親クラスのLanguageAttributeに委譲 |\n| LanguageAttributeInHttpCookie | クッキーを使用した言語の保持を行う。サポート対象の言語が取得できない場合は親クラスのHttpLanguageAttributeに委譲 |\n| LanguageAttributeInHttpSession | HTTPセッションを使用した言語の保持を行う。言語の保持にHTTPセッションを使用することを除き、具体的な処理はLanguageAttributeInHttpCookieと同じ |\n| LanguageAttributeInHttpUtil | LanguageAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択した言語を保持する処理(言語選択処理やログイン処理でのクッキー/HTTPセッションへの言語設定)を提供するユーティリティクラス。リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | 言語の選択 | 言語の保存 | 説明 |\n|---|---|---|---|\n| LanguageAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。言語は常に固定となる。アプリ実装不要 |\n| HttpLanguageAttribute | ブラウザの言語設定 | ブラウザの言語設定 | ブラウザ設定に応じて切り替え。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。アプリ実装不要 |\n| LanguageAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリが言語選択画面を提供。ログイン前でも有効。ブラウザ単位で保持。選択言語をクッキーに設定する処理はLanguageAttributeInHttpUtilが提供 |\n| LanguageAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリが言語選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じ言語が適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づく言語の取得処理(HTTPセッションへの言語設定はLanguageAttributeInHttpUtilが提供)、②ユーザに言語を選択させる画面処理(選択言語のHTTPセッション設定はLanguageAttributeInHttpUtilが提供)、③選択された言語をユーザに紐付けてデータベースに保存する処理 |\n\nLanguageAttributeInHttpUtilを使用する場合、リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録すること。", + "s6": "RequestIdAttributeには設定値は存在しない。\n\nInternalRequestIdAttributeには設定値は存在しない。", + "s7": "ThreadContextHandlerは、リクエスト毎にスレッドコンテキストの初期化を行う。実際にスレッドコンテキストに設定する値を取得する責務は、ThreadContextAttributeインタフェース実装クラスが持つ。\n\n## フレームワークが提供するThreadContextAttribute実装クラス\n\n- [リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json)\n- [内部リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json)\n- ユーザID\n- 言語\n- タイムゾーン\n- [実行時ID](libraries-01_Log.json)\n\n## ThreadContextHandler以外での属性更新\n\n| 属性 | 更新状況 |\n|---|---|\n| [リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json) | [../architectural_pattern/messaging](../../processing-pattern/mom-messaging/mom-messaging-messaging.json) のみ、[../reader/FwHeaderReader](../readers/readers-FwHeaderReader.json) によって更新 |\n| [内部リクエストID](../../about/about-nablarch/about-nablarch-concept-architectural_pattern.json) | Web GUIでは内部フォワード時に[../handler/ForwardingHandler](../handlers/handlers-ForwardingHandler.json)で更新。メッセージングでは[../reader/FwHeaderReader](../readers/readers-FwHeaderReader.json)で更新 |\n| ユーザID | [../architectural_pattern/messaging](../../processing-pattern/mom-messaging/mom-messaging-messaging.json) のみ、[../reader/FwHeaderReader](../readers/readers-FwHeaderReader.json) によって更新 |\n\n## 各属性クラスの仕様\n\n**RequestIdAttribute**: URLの最後の\"/\"から\".\"の間の文字列をリクエストIDとする。\n\n**InternalRequestIdAttribute**: リクエストIDと同じ値に初期設定する。\n\n**UserIdAttribute**: HttpセッションからユーザIDを取得してスレッドコンテキストに設定する。取得できない場合は未ログインを示す特別なユーザIDを設定する。認証処理ではセッションにユーザIDを設定しておく必要がある。\n\n> **注意**: HttpセッションからユーザIDを取得するキーと未ログインユーザIDはプロパティで変更可能。\n\n**ExecutionIdAttribute**: 実行時IDをスレッドコンテキストに設定する。詳細は[execution_id](libraries-01_Log.json)参照。", + "s8": "LanguageAttributeクラスは、スレッドコンテキストに設定する言語を取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## LanguageAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| LanguageAttribute | リポジトリの設定で指定された言語をスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトロケールが使用される |\n| HttpLanguageAttribute | HTTPヘッダ(Accept-Language)から取得した言語をスレッドコンテキストに設定する。サポート対象の言語が取得できない場合は親クラスのLanguageAttributeに委譲 |\n| LanguageAttributeInHttpCookie | クッキーを使用した言語の保持を行う。サポート対象の言語が取得できない場合は親クラスのHttpLanguageAttributeに委譲 |\n| LanguageAttributeInHttpSession | HTTPセッションを使用した言語の保持を行う。言語の保持にHTTPセッションを使用することを除き、具体的な処理はLanguageAttributeInHttpCookieと同じ |\n| LanguageAttributeInHttpUtil | LanguageAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択した言語を保持する処理(言語選択処理やログイン処理でのクッキー/HTTPセッションへの言語設定)を提供するユーティリティクラス。リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | 言語の選択 | 言語の保存 | 説明 |\n|---|---|---|---|\n| LanguageAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。言語は常に固定となる。アプリ実装不要 |\n| HttpLanguageAttribute | ブラウザの言語設定 | ブラウザの言語設定 | ブラウザ設定に応じて切り替え。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。アプリ実装不要 |\n| LanguageAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリが言語選択画面を提供。ログイン前でも有効。ブラウザ単位で保持。選択言語をクッキーに設定する処理はLanguageAttributeInHttpUtilが提供 |\n| LanguageAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリが言語選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じ言語が適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づく言語の取得処理(HTTPセッションへの言語設定はLanguageAttributeInHttpUtilが提供)、②ユーザに言語を選択させる画面処理(選択言語のHTTPセッション設定はLanguageAttributeInHttpUtilが提供)、③選択された言語をユーザに紐付けてデータベースに保存する処理 |\n\nLanguageAttributeInHttpUtilを使用する場合、リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録すること。", + "s9": "TimeZoneAttributeクラスは、スレッドコンテキストに設定するタイムゾーンを取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## TimeZoneAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| TimeZoneAttribute | リポジトリの設定で指定されたタイムゾーンをスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトタイムゾーンが使用される |\n| TimeZoneAttributeInHttpCookie | クッキーを使用したタイムゾーンの保持を行う。サポート対象のタイムゾーンが取得できない場合は親クラスのTimeZoneAttributeに委譲 |\n| TimeZoneAttributeInHttpSession | HTTPセッションを使用したタイムゾーンの保持を行う。タイムゾーンの保持にHTTPセッションを使用することを除き、具体的な処理はTimeZoneAttributeInHttpCookieと同じ |\n| TimeZoneAttributeInHttpUtil | TimeZoneAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択したタイムゾーンを保持する処理(タイムゾーン選択処理やログイン処理でのクッキー/HTTPセッションへのタイムゾーン設定)を提供するユーティリティクラス。リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | タイムゾーンの選択 | タイムゾーンの保存 | 説明 |\n|---|---|---|---|\n| TimeZoneAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。タイムゾーンは常に固定となる。アプリ実装不要 |\n| TimeZoneAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリがタイムゾーン選択画面を提供。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。選択タイムゾーンをクッキーに設定する処理はTimeZoneAttributeInHttpUtilが提供 |\n| TimeZoneAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリがタイムゾーン選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じタイムゾーンが適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づくタイムゾーンの取得処理(HTTPセッションへのタイムゾーン設定はTimeZoneAttributeInHttpUtilが提供)、②ユーザにタイムゾーンを選択させる画面処理(選択タイムゾーンのHTTPセッション設定はTimeZoneAttributeInHttpUtilが提供)、③選択されたタイムゾーンをユーザに紐付けてデータベースに保存する処理 |\n\nTimeZoneAttributeInHttpUtilを使用する場合、リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録すること。", "s10": "TimeZoneAttributeクラスは、スレッドコンテキストに設定するタイムゾーンを取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## TimeZoneAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| TimeZoneAttribute | リポジトリの設定で指定されたタイムゾーンをスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトタイムゾーンが使用される |\n| TimeZoneAttributeInHttpCookie | クッキーを使用したタイムゾーンの保持を行う。サポート対象のタイムゾーンが取得できない場合は親クラスのTimeZoneAttributeに委譲 |\n| TimeZoneAttributeInHttpSession | HTTPセッションを使用したタイムゾーンの保持を行う。タイムゾーンの保持にHTTPセッションを使用することを除き、具体的な処理はTimeZoneAttributeInHttpCookieと同じ |\n| TimeZoneAttributeInHttpUtil | TimeZoneAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択したタイムゾーンを保持する処理(タイムゾーン選択処理やログイン処理でのクッキー/HTTPセッションへのタイムゾーン設定)を提供するユーティリティクラス。リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | タイムゾーンの選択 | タイムゾーンの保存 | 説明 |\n|---|---|---|---|\n| TimeZoneAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。タイムゾーンは常に固定となる。アプリ実装不要 |\n| TimeZoneAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリがタイムゾーン選択画面を提供。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。選択タイムゾーンをクッキーに設定する処理はTimeZoneAttributeInHttpUtilが提供 |\n| TimeZoneAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリがタイムゾーン選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じタイムゾーンが適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づくタイムゾーンの取得処理(HTTPセッションへのタイムゾーン設定はTimeZoneAttributeInHttpUtilが提供)、②ユーザにタイムゾーンを選択させる画面処理(選択タイムゾーンのHTTPセッション設定はTimeZoneAttributeInHttpUtilが提供)、③選択されたタイムゾーンをユーザに紐付けてデータベースに保存する処理 |\n\nTimeZoneAttributeInHttpUtilを使用する場合、リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録すること。", "s11": "基本的な属性を設定する場合の設定記述例:\n\n```xml\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n```" } diff --git a/.claude/skills/nabledge-1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator.json b/.claude/skills/nabledge-1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator.json index b5b4f0f6e..f6fd8cf92 100644 --- a/.claude/skills/nabledge-1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator.json +++ b/.claude/skills/nabledge-1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator.json @@ -253,7 +253,9 @@ "エスケープ処理", "JSON出力仕様", "Apache POI", - "キャメル変換" + "キャメル変換", + "数値型セル書式", + ".0付与" ] }, { @@ -281,7 +283,7 @@ "s9": "## 入力ファイル読み取り設定\n\n設計書のレイアウトに以下の変更が生じた場合、コンポーネント定義ファイルを修正する。\n\n| 変更内容 | 修正対象プロパティ |\n|---|---|\n| 列の追加(読み取り対象カラムの位置がずれた場合) | `indexNamePairs` |\n| 行の追加(読み取り開始行がずれた場合) | `startRowIndex` |\n\n> **注意**: `excludedSheets` プロパティには取込対象外のシートを指定する。メッセージ設計書に言語シートを追加するなど、取込が不要なシートを追加した場合、`excludedSheets` プロパティの指定を追加すること。\n\n**ドメイン定義、精査処理定義、データタイプ定義**を読み取る設定は、メッセージ設計書(`DefinitionFileLoader`)と設定項目が同じであるため、それぞれのコンポーネント定義ファイルではメッセージ設計書の読込設定と同じクラスおよびプロパティ構成を使用する。\n\nコード設計情報の出力フォーマット。コード定義情報は、コードIDに対応する各セルの値を \"|\" で結合して出力する。キーに含まれる \".\" 以下の文字列(codeValue、sortOrderなど)は固定。\n\n```javascript\ndefine(function(){ return {\"\": \"\"\n\n// コードID情報\n, \"コードID\": [\"コード名称\", \"説明\"]\n\n// コード定義情報\n, \"コードID.codeValue\": [\"コード値\"]\n, \"コードID.sortOrder\": [\"ソート順\"]\n, \"コードID.codeValueName\": [\"名称\"]\n, \"コードID.SHORT_NAME\": [\"略称\"]\n, \"コードID.OPTIONAL_NAME01\": [\"オプション名称1\"]\n// OPTIONAL_NAME02〜09は省略\n, \"コードID.OPTIONAL_NAME10\": [\"オプション名称10\"]\n, \"コードID.PATTERN01\": [\"パターン1\"]\n// PATTERN02〜19は省略\n, \"コードID.PATTERN20\": [\"パターン20\"]\n\n};});\n```\n\n> **注意**: セルの書式が数値型の場合、整数を指定しても自動的に \".0\" が付与される。整数をそのまま取得したい場合は、セルの書式を標準または文字列にすること。", "s10": "## メッセージ設計書の読込設定\n\n```xml\n\n \n \n \n \n \n \n 表紙\n 変更履歴\n 目次\n en\n ch\n \n \n\n\n\n \n \n \n \n \n \n \n\n```\n\n外部インターフェース設計情報の出力フォーマット。階層構造型とそれ以外の設計書、どちらが入力の場合も同一フォーマットで出力する。入力設計書に存在しない項目は空文字で出力。\n\n親要素名の設定ルール:\n- 非階層構造型レコード: レコードタイプ名\n- 階層構造型レコード: オブジェクト定義行(項目IDが `[]` で囲まれた行)の項目IDから `[` と `]` を除去した値\n\n```javascript\ndefine(function(){ return {\"\": \"\"\n\n// 外部インターフェース仕様情報\n, \"ファイルIDまたは電文ID\": [\"相手先\", \"入出力取引ID/名称\"]\n\n// データレイアウト情報(プロパティ定義行のみ出力)\n, \"ファイルIDまたは電文ID.親要素名.項目ID\": [\"項目名\", \"ドメイン名\", \"データタイプ\", \"デフォルト値\", \"備考\", \"必須\", \"Byte\", \"開始位置\", \"パディング\", \"小数点位置\", \"フォーマット仕様\", \"寄せ字\", \"属性\", \"多重度\"]\n\n};});\n```", "s11": "## テーブル定義書の読込設定\n\n```xml\n\n \n \n \n \n \n \n \n \n \n \n \n \n 表紙\n 変更履歴\n 目次\n データ\n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n```\n\n自動生成ツールの出力に関する仕様を定義するセクション。各設計書のJSONフォーマット(出力形式)と定義データ出力時のエスケープ処理規則(定義データの出力仕様)を含む。", - "s12": "## コード設計書の読込設定\n\n```xml\n\n \n \n \n \n \n \n \n codeValue\n sortOrder\n codeValueName\n SHORT_NAME\n OPTIONAL_NAME01\n OPTIONAL_NAME02\n OPTIONAL_NAME03\n OPTIONAL_NAME04\n OPTIONAL_NAME05\n OPTIONAL_NAME06\n OPTIONAL_NAME07\n OPTIONAL_NAME08\n OPTIONAL_NAME09\n OPTIONAL_NAME10\n PATTERN01\n PATTERN02\n PATTERN03\n PATTERN04\n PATTERN05\n PATTERN06\n PATTERN07\n PATTERN08\n PATTERN09\n PATTERN10\n PATTERN11\n PATTERN12\n PATTERN13\n PATTERN14\n PATTERN15\n PATTERN16\n PATTERN17\n PATTERN18\n PATTERN19\n PATTERN20\n \n \n \n \n \n 表紙\n 変更履歴\n 目次\n en\n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n```\n\n定義データをJSON形式で出力する際の仕様。エスケープ処理の規則は「エスケープ処理」セクションを参照。設計書ごとにキャメル変換などは行わず、Apache POIで取得した値をそのまま出力する。", - "s13": "定義データをJSON形式で出力する際、以下の文字をエスケープ処理する:\n\n- `\\`(バックスラッシュ)\n- `\"`(ダブルクォート)\n- `/`(スラッシュ)\n- `\\b`(バックスペース)\n- `\\f`(フォームフィード)\n- `\\t`(タブ)\n- `\\n`(改行LF)\n- `\\r`(改行CR)\n\n> **注意**: `\\r` と `\\n` は除去される(エスケープ後の文字列から削除)。" + "s12": "## コード設計書の読込設定\n\n```xml\n\n \n \n \n \n \n \n \n codeValue\n sortOrder\n codeValueName\n SHORT_NAME\n OPTIONAL_NAME01\n OPTIONAL_NAME02\n OPTIONAL_NAME03\n OPTIONAL_NAME04\n OPTIONAL_NAME05\n OPTIONAL_NAME06\n OPTIONAL_NAME07\n OPTIONAL_NAME08\n OPTIONAL_NAME09\n OPTIONAL_NAME10\n PATTERN01\n PATTERN02\n PATTERN03\n PATTERN04\n PATTERN05\n PATTERN06\n PATTERN07\n PATTERN08\n PATTERN09\n PATTERN10\n PATTERN11\n PATTERN12\n PATTERN13\n PATTERN14\n PATTERN15\n PATTERN16\n PATTERN17\n PATTERN18\n PATTERN19\n PATTERN20\n \n \n \n \n \n 表紙\n 変更履歴\n 目次\n en\n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n```\n\n定義データをJSON形式で出力する際の仕様。エスケープ処理の規則は「エスケープ処理」セクションを参照。設計書ごとにキャメル変換などは行わず、Apache POIで取得した値をそのまま出力する。\n\nそのため、セルの書式が数値型の場合に整数を指定しても自動的に\".0\"が付与される。整数をそのまま取得したい場合、当該セルの書式を標準や文字列にすること。", + "s13": "定義データをJSON形式で出力する際、以下の文字をエスケープ処理する:\n\n- `\\`(バックスラッシュ)\n- `\"`(ダブルクォート)\n- `/`(スラッシュ)\n- `\\b`(バックスペース)\n- `\\f`(フォームフィード)\n- `\\t`(タブ)\n- `\\n`(改行LF)\n- `\\r`(改行CR)\n\n> **注意**: `\\r` と `\\n` は除去される。" } } \ No newline at end of file diff --git a/.claude/skills/nabledge-1.4/knowledge/index.toon b/.claude/skills/nabledge-1.4/knowledge/index.toon index abb8b2bc8..07f6aa6b5 100644 --- a/.claude/skills/nabledge-1.4/knowledge/index.toon +++ b/.claude/skills/nabledge-1.4/knowledge/index.toon @@ -102,7 +102,7 @@ files[406,]{title,type,category,processing_patterns,path}: データベースコネクション名とトランザクション名, component, libraries, , component/libraries/libraries-04_TransactionConnectionName.json トランザクションタイムアウト機能, component, libraries, , component/libraries/libraries-04_TransactionTimeout.json ファイルダウンロード, component, libraries, , component/libraries/libraries-05_FileDownload.json - メッセージングログの出力, component, libraries, , component/libraries/libraries-05_MessagingLog.json + libraries-05_MessagingLog, component, libraries, , not yet created 開閉局, component, libraries, , component/libraries/libraries-05_ServiceAvailability.json 静的データのキャッシュ, component, libraries, , component/libraries/libraries-05_StaticDataCache.json ファイルアップロード, component, libraries, , component/libraries/libraries-06_FileUpload.json diff --git a/.pr/00274/notes.md b/.pr/00274/notes.md new file mode 100644 index 000000000..02d8b9d25 --- /dev/null +++ b/.pr/00274/notes.md @@ -0,0 +1,166 @@ +# Notes + +## 2026-03-31 + +### Bugs fixed today + +#### Bug 1: Round 3 (Final Verification) runs on all files instead of targets (`run.py`) + +`_run_final_verification()` に `effective_target` が渡されていなかった。 +Phase C/D ともに全ファイルを対象にしていた。 +→ `target_ids` パラメータを追加し、Phase C/D 両方に渡すよう修正。コミット `2885a33f`。 + +#### Bug 2: diff guard が `index`-only な修正を誤って拒否する (`phase_e_fix.py`) + +`hints_missing` findingの場合、Phase E は `index[sN].hints` を修正するが +`sections` は変わらない。diff guard の「変更なし」チェックが `sections` しか +見ていなかったため、正しい修正を拒否していた。 +→ `index` エントリの変更も確認するよう修正。コミット `2885a33f`。 + +### 残課題: Phase D false positive による diff guard エラー + +**症状**: `libraries-04_Permission--s10` が Round 2 で diff guard エラー + +**再現の流れ**: +1. Round 1: Phase D が `hints_missing` (BusinessDateProvider, Initializable) を検出 → Phase E が修正 → `[FIXED]` +2. Round 2: Phase D が同じ hints_missing を**また報告**(すでに hints 配列に存在するのに) +3. Phase E: 修正不要と判断して何も変更しない → diff guard が「変更なし」として拒否 + +**確認済み**: Round 2 終了時点のキャッシュに `BusinessDateProvider`, `Initializable` は +すでに存在している。Phase D の誤検知(false positive)が根本原因。 + +**次のアクション**: +- Phase D が Round 1 で修正済みの hints を Round 2 で再検知する原因を調査 +- Phase D の findingsロジック(content_check.md プロンプトまたは検証ロジック)を修正 +- `libraries-07_TagReference--s1` も Round 3 で 2 findings 残存しており関連する可能性あり + +## 2026-04-03 + +### Investigation Result: Phase D False Positive Root Cause (Confirmed) + +**The issue is NOT a false positive — it's a prompt compliance failure.** + +**R1 State**: +- Hints array (38 items): Contains `businessDateProvider` (lowercase) but NOT `BusinessDateProvider` (PascalCase) +- Phase D detection: Correctly identifies `BusinessDateProvider` as missing → findings reported + +**R2 State**: +- Hints array (40 items): Now contains BOTH `businessDateProvider` AND `BusinessDateProvider` ✅ +- Prior round findings: Passed to Phase D with R1 findings (BusinessDateProvider + Initializable missing) +- Phase D instruction in prompt: "If a location was clean in the previous round and the knowledge file content at that location has not changed, do not report a new finding for it now." + +**Problem Identified**: +- Phase D prompt correctly receives prior_round_findings (JSON with BusinessDateProvider missing) +- BUT: Phase D ignores the guidance and re-reports the same finding in R2 findings +- Likely cause: LLM disregards the "do not report findings that were in prior_round_findings" instruction + - The current phrasing uses negative framing ("do NOT report") + - LLM may interpret this as "check if content changed" rather than "skip if already reported" + +**Actual cache state**: +- R1 cache after fix: index[0].hints includes BusinessDateProvider, Initializable +- R2 cache read: Same hints array (no change to cache) +- R2 Phase D input: Receives the updated cache with BusinessDateProvider present +- R2 findings: Still reports BusinessDateProvider as missing (false positive) + +**Why diff guard fails**: +1. R2 Phase D: "BusinessDateProvider is missing" (false) +2. R2 Phase E: Receives finding, has nothing to fix (already in index) +3. Phase E diff guard: "No changes in allowed sections" → rejects with error + +### Root Cause Determination + +**The root cause is: Phase D prompt fails to exclude findings that appear in prior_round_findings** + +This is NOT a cache merge issue or a finding format issue — it's a **prompt compliance issue**. + +The prompt says "do NOT report" but should explicitly say: +- "For each finding in prior_round_findings, skip re-reporting it unless the knowledge file content at that location has CHANGED" +- Need to identify locations from prior_round_findings and actively exclude them from new findings + +### Remediation Tasks Required + +1. **Explicit exclusion rule in Phase D prompt** (content_check.md) + - Current phrasing: Negative ("do NOT") + - Required phrasing: Positive list of locations to skip + - Add: "Extract all (location, category) pairs from prior_round_findings. Skip any finding whose (location, category) matches a prior finding UNLESS the section content has demonstrably changed." + +2. **Content change detection** (optional, but important) + - Current check: "knowledge file content at that location has not changed" + - Need to clarify: What counts as a change? + - For hints_missing: The hints array changing should NOT count as "content change" if the original section text is unchanged + - For section_count issues: Section structure changing = content changed + +3. **Add test case to verify fix** + - Scenario: hints_missing in R1 → fixed in cache → R2 should not re-report + - Verify: phase_d_content_check.py correctly skips prior findings + +## 2026-04-07 + +### 根本原因(事実ベース) + +テスト実行 20260331T171824 でエラーが発生: `libraries-04_Permission--s10` + +**事実1: prior_round_findings は正しく渡されている** +- R2 Phase D プロンプトに Prior Round Findings セクション (Line 413-419) が存在 +- BusinessDateProvider, Initializable のfindingsが含まれている + +**事実2: プロンプト指示は明確** +- "Do NOT report new findings for locations that were not flagged before" +- "If a location was clean and content has not changed, do not report" + +**事実3: 同じ findings が再報告されている(Prompt Compliance Failure)** +- R1 findings: hints_missing (BusinessDateProvider), hints_missing (Initializable) +- R2 findings: 全く同じfindings が再報告 +- LLM が prior_round_findings 指示を無視している + +**事実4: 知識ファイルは修正済み** +- R2 Phase E の出力JSON (line 25-26): + - 'BusinessDateProvider' ✅ hints に含まれている + - 'Initializable' ✅ hints に含まれている +- つまり R1 Phase E で修正が成功していた + +**事実5: ソースファイル(RST)は変わっていない** +- source_evidence に記録されたテキスト内容は R1 → R2 で同じ +- ソース側での追加・削除・変更がない + +### 発生メカニズム + +``` +R1 Phase D: findings を報告 (hints_missing 2件) + ↓ (prior_round_findings に記録される) +R2 Phase D: 同じfindings を再報告 ← ❌ LLM が指示を無視 + ↓ (Phase E が「修正が必要」と判定) +R2 Phase E: hints を修正しようとするが、実際のキャッシュは既に修正済み + ↓ +diff guard が「変更がない」と検出 → ERROR: Diff guard: no changes in allowed sections + ↓ +キャッシュは修正済み状態で更新されない +R3 Phase D: 既に修正済みなので clean +``` + +### あるべき姿 + +R2 Phase D で: +1. prior_round_findings に (hints_missing, sections.s1/.../index[0].hints) が存在 +2. 知識ファイル内容がR1から変わっていない +3. ソースファイル(RST)も変わっていない +4. → findings をスキップ(報告しない) +5. 結果: R2 Phase D findings = 空(clean) + +### 対応案 + +content_check.md の prior_round_findings ロジックを強化: + +1. **コンテンツ変更の定義を明確化** + - 「ソース変更」= RST に行が追加・削除・変更されること + - 「知識ファイル更新」≠ ソース変更(hints 追加等は修正によるもの) + - ソースが変わらない → prior_round_findings は完全スキップ + +2. **prior_round_findings チェックの明示化** + - location + category で完全一致するfindings を明示的にリスト化 + - 一致したら必ずスキップ(条件なし) + +3. **具体例を追加** + - 「前回のR1: hints_missing で BusinessDateProvider を報告」 + - 「今回のR2: ソースRST を見直す → BusinessDateProvider 関連の行は変わっていない」 + - 「判断: 知識ファイルは修正済み、ソース変わらず → 報告しない」 diff --git a/.pr/00274/review-by-software-engineer.md b/.pr/00274/review-by-software-engineer.md new file mode 100644 index 000000000..153b6e3bb --- /dev/null +++ b/.pr/00274/review-by-software-engineer.md @@ -0,0 +1,77 @@ +--- +# Expert Review: Software Engineer + +**Date**: 2026-03-31 +**Reviewer**: AI Agent as Software Engineer +**Files Reviewed**: 7 files + +## Overall Assessment + +**Rating**: 4/5 +**Summary**: Well-targeted, focused change that addresses a real reliability problem with deterministic post-hoc enforcement. Implementation is generally solid with good test coverage. + +## Key Issues + +### Medium Priority + +1. **Comment on new-section handling in `_apply_diff_guard` was ambiguous** + - Description: "Remove any new sections added by the LLM that are not in scope" did not clarify that in-scope new sections are intentionally preserved + - Suggestion: Clarify comment to mention both cases + - Decision: Implement Now + - Reasoning: Trivial, improves maintainability + +2. **Silent `except Exception` in `check_one` discarded errors without logging** + - Description: Phase D swallowed all LLM call exceptions without logging, making debugging difficult. Phase E already logs errors. + - Suggestion: `except Exception as e: self.logger.error(f"check_one failed for {file_id}: {e}")` + - Decision: Implement Now + - Reasoning: Consistency with Phase E, important for observability + +3. **`_extract_allowed_sections` early-exit lacked explanatory comment** + - Description: The `break` on `no_knowledge_content_invalid` could mislead future maintainers + - Suggestion: Add comment explaining full-rebuild bypass + - Decision: Implement Now + - Reasoning: Documentation only, trivial + +### Low Priority + +4. **Redundant `write_json` import alias in test_severity_flip.py** + - Description: `from common import write_json as wj` inside test body when module-level import exists + - Suggestion: Use module-level `write_json` directly + - Decision: Implement Now + - Reasoning: Trivial cleanup + +5. **Non-zero returncode path in `fix_one` was implicit** + - Description: The fallthrough after `if result.returncode == 0` was a bare `return {"status": "error"}` without context + - Suggestion: Add explicit error message + - Decision: Implement Now + - Reasoning: Improves debuggability + +6. **D-1 stability rule placement was ambiguous (between V2 and V3)** + - Description: Reader could interpret it as a V2-only rule; it applies to all V1–V5 checks + - Suggestion: Move to a top-level "General Rules" section before the checklist + - Decision: Implement Now + - Reasoning: Clear improvement to prompt readability + +## Positive Aspects + +- Deterministic enforcement: diff guard applied post-LLM, not reliant on LLM following instructions +- Full-rebuild bypass correctly gated to `no_knowledge_content_invalid` only +- Unit tests cover both functions in isolation, integration tests verify wiring +- E2E test adaptation is minimal and correct +- Module-level functions (`_extract_allowed_sections`, `_apply_diff_guard`) are independently testable +- Prompt rules (E-2, E-5, E-3) are precise and actionable with concrete decision rules + +## Recommendations + +- Consider a Phase D post-processor that freezes severity from round 1 forward (unless section content changed) to make D-1 deterministic rather than instructional +- Consider a distinct `"status": "no_change"` for the empty-fix case to help callers decide whether to retry + +## Files Reviewed + +- `scripts/phase_e_fix.py` (source code) +- `scripts/phase_d_content_check.py` (source code) +- `prompts/fix.md` (prompt) +- `prompts/content_check.md` (prompt) +- `tests/ut/test_diff_guard.py` (tests) +- `tests/ut/test_severity_flip.py` (tests) +- `tests/e2e/test_e2e.py` (tests) diff --git a/tools/knowledge-creator/.cache/v1.4/catalog.json b/tools/knowledge-creator/.cache/v1.4/catalog.json index c23fee1a6..d91414bed 100644 --- a/tools/knowledge-creator/.cache/v1.4/catalog.json +++ b/tools/knowledge-creator/.cache/v1.4/catalog.json @@ -11741,242 +11741,140 @@ ] }, { - "source_path": ".lw/nab-official/v1.4/document/tool/08_DefInfoGenerator/01_DefInfoGenerator.rst", + "source_path": ".lw/nab-official/v1.4/document/tool/01_JspGenerator/02_SetUpJspGeneratorTool.rst", "format": "rst", - "filename": "01_DefInfoGenerator.rst", + "filename": "02_SetUpJspGeneratorTool.rst", "type": "development-tools", "category": "toolbox", - "id": "toolbox-01_DefInfoGenerator--s1", - "base_name": "toolbox-01_DefInfoGenerator", - "output_path": "development-tools/toolbox/toolbox-01_DefInfoGenerator--s1.json", - "assets_dir": "development-tools/toolbox/assets/toolbox-01_DefInfoGenerator--s1/", + "id": "toolbox-02_SetUpJspGeneratorTool--s1", + "base_name": "toolbox-02_SetUpJspGeneratorTool", + "output_path": "development-tools/toolbox/toolbox-02_SetUpJspGeneratorTool--s1.json", + "assets_dir": "development-tools/toolbox/assets/toolbox-02_SetUpJspGeneratorTool--s1/", "section_range": { "start_line": 0, - "end_line": 363, + "end_line": 97, "sections": [ - "**出力ファイル毎の設定ファイル**", - "**共通の設定ファイル**", - "", - "環境設定ファイル", - "入力となる設計書に関する設定", - "ファイル生成に関する設定", - "", - "コンポーネント定義ファイル", - "入力ファイル読み取り設定", - "メッセージ設計書の読込設定", - "テーブル定義書の読込設定", - "コード設計書の読込設定" + "設定画面起動", + "外部プログラム選択", + "起動用バッチファイル選択", + "HTMLファイルからの起動方法", + "作成したファイルの表示" ], "section_ids": [ "s1", "s2", "s3", "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12" + "s5" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 2, - "original_id": "toolbox-01_DefInfoGenerator", - "group_line_count": 363 + "total_parts": 1, + "original_id": "toolbox-02_SetUpJspGeneratorTool", + "group_line_count": 97 }, "section_map": [ { "section_id": "s1", - "heading": "**出力ファイル毎の設定ファイル**", + "heading": "設定画面起動", "rst_labels": [] }, { "section_id": "s2", - "heading": "**共通の設定ファイル**", + "heading": "外部プログラム選択", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "起動用バッチファイル選択", "rst_labels": [] }, { "section_id": "s4", - "heading": "環境設定ファイル", + "heading": "HTMLファイルからの起動方法", "rst_labels": [] }, { "section_id": "s5", - "heading": "入力となる設計書に関する設定", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "ファイル生成に関する設定", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "コンポーネント定義ファイル", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "入力ファイル読み取り設定", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "メッセージ設計書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "テーブル定義書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "コード設計書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "外部インターフェース設計書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "出力形式", - "rst_labels": [] - }, - { - "section_id": "s16", - "heading": "メッセージ設計", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "ドメイン定義", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "精査処理定義", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "データタイプ定義", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "テーブル定義", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "コード設計", - "rst_labels": [] - }, - { - "section_id": "s22", - "heading": "外部インターフェース設計", - "rst_labels": [] - }, - { - "section_id": "s23", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "定義データの出力仕様", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "エスケープ処理", + "heading": "作成したファイルの表示", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/tool/08_DefInfoGenerator/01_DefInfoGenerator.rst", + "source_path": ".lw/nab-official/v1.4/document/tool/01_JspGenerator/01_JspGenerator.rst", "format": "rst", - "filename": "01_DefInfoGenerator.rst", + "filename": "01_JspGenerator.rst", "type": "development-tools", "category": "toolbox", - "id": "toolbox-01_DefInfoGenerator--s13", - "base_name": "toolbox-01_DefInfoGenerator", - "output_path": "development-tools/toolbox/toolbox-01_DefInfoGenerator--s13.json", - "assets_dir": "development-tools/toolbox/assets/toolbox-01_DefInfoGenerator--s13/", + "id": "toolbox-01_JspGenerator", + "base_name": "toolbox-01_JspGenerator", + "output_path": "development-tools/toolbox/toolbox-01_JspGenerator.json", + "assets_dir": "development-tools/toolbox/assets/toolbox-01_JspGenerator/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/tool/07_AuthGenerator/01_AuthGenerator.rst", + "format": "rst", + "filename": "01_AuthGenerator.rst", + "type": "development-tools", + "category": "toolbox", + "id": "toolbox-01_AuthGenerator--s1", + "base_name": "toolbox-01_AuthGenerator", + "output_path": "development-tools/toolbox/toolbox-01_AuthGenerator--s1.json", + "assets_dir": "development-tools/toolbox/assets/toolbox-01_AuthGenerator--s1/", "section_range": { - "start_line": 363, - "end_line": 664, + "start_line": 0, + "end_line": 329, "sections": [ - "外部インターフェース設計書の読込設定", "", - "出力形式", - "メッセージ設計", - "ドメイン定義", - "精査処理定義", - "データタイプ定義", - "テーブル定義", - "コード設計", - "外部インターフェース設計", + "ツール利用の流れ", "", - "定義データの出力仕様", - "エスケープ処理" + "コンポーネント定義ファイル", + "", + "環境設定ファイル", + "", + "通常のテーブル", + "", + "関連テーブル", + "PERMISSION_UNIT_REQUEST", + "認可データ作成シート編集", + "コンポーネント定義ファイル編集" ], "section_ids": [ - "s13", - "s14", - "s15", - "s16", - "s17", - "s18", - "s19", - "s20", - "s21", - "s22", - "s23", - "s24", - "s25" + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "toolbox-01_DefInfoGenerator", - "group_line_count": 301 + "part": 1, + "total_parts": 1, + "original_id": "toolbox-01_AuthGenerator", + "group_line_count": 329 }, "section_map": [ { "section_id": "s1", - "heading": "**出力ファイル毎の設定ファイル**", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "**共通の設定ファイル**", + "heading": "ツール利用の流れ", "rst_labels": [] }, { @@ -11986,17 +11884,17 @@ }, { "section_id": "s4", - "heading": "環境設定ファイル", + "heading": "コンポーネント定義ファイル", "rst_labels": [] }, { "section_id": "s5", - "heading": "入力となる設計書に関する設定", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "ファイル生成に関する設定", + "heading": "環境設定ファイル", "rst_labels": [] }, { @@ -12006,271 +11904,17 @@ }, { "section_id": "s8", - "heading": "コンポーネント定義ファイル", + "heading": "通常のテーブル", "rst_labels": [] }, { "section_id": "s9", - "heading": "入力ファイル読み取り設定", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "メッセージ設計書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "テーブル定義書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "コード設計書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "外部インターフェース設計書の読込設定", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "出力形式", - "rst_labels": [] - }, - { - "section_id": "s16", - "heading": "メッセージ設計", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "ドメイン定義", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "精査処理定義", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "データタイプ定義", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "テーブル定義", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "コード設計", - "rst_labels": [] - }, - { - "section_id": "s22", - "heading": "外部インターフェース設計", - "rst_labels": [] - }, - { - "section_id": "s23", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "定義データの出力仕様", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "エスケープ処理", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/tool/01_JspGenerator/02_SetUpJspGeneratorTool.rst", - "format": "rst", - "filename": "02_SetUpJspGeneratorTool.rst", - "type": "development-tools", - "category": "toolbox", - "id": "toolbox-02_SetUpJspGeneratorTool--s1", - "base_name": "toolbox-02_SetUpJspGeneratorTool", - "output_path": "development-tools/toolbox/toolbox-02_SetUpJspGeneratorTool--s1.json", - "assets_dir": "development-tools/toolbox/assets/toolbox-02_SetUpJspGeneratorTool--s1/", - "section_range": { - "start_line": 0, - "end_line": 97, - "sections": [ - "設定画面起動", - "外部プログラム選択", - "起動用バッチファイル選択", - "HTMLファイルからの起動方法", - "作成したファイルの表示" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "toolbox-02_SetUpJspGeneratorTool", - "group_line_count": 97 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "設定画面起動", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "外部プログラム選択", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "起動用バッチファイル選択", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "HTMLファイルからの起動方法", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "作成したファイルの表示", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/tool/01_JspGenerator/01_JspGenerator.rst", - "format": "rst", - "filename": "01_JspGenerator.rst", - "type": "development-tools", - "category": "toolbox", - "id": "toolbox-01_JspGenerator", - "base_name": "toolbox-01_JspGenerator", - "output_path": "development-tools/toolbox/toolbox-01_JspGenerator.json", - "assets_dir": "development-tools/toolbox/assets/toolbox-01_JspGenerator/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/tool/07_AuthGenerator/01_AuthGenerator.rst", - "format": "rst", - "filename": "01_AuthGenerator.rst", - "type": "development-tools", - "category": "toolbox", - "id": "toolbox-01_AuthGenerator--s1", - "base_name": "toolbox-01_AuthGenerator", - "output_path": "development-tools/toolbox/toolbox-01_AuthGenerator--s1.json", - "assets_dir": "development-tools/toolbox/assets/toolbox-01_AuthGenerator--s1/", - "section_range": { - "start_line": 0, - "end_line": 329, - "sections": [ - "", - "ツール利用の流れ", - "", - "コンポーネント定義ファイル", - "", - "環境設定ファイル", - "", - "通常のテーブル", - "", - "関連テーブル", - "PERMISSION_UNIT_REQUEST", - "認可データ作成シート編集", - "コンポーネント定義ファイル編集" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "toolbox-01_AuthGenerator", - "group_line_count": 329 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "ツール利用の流れ", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "コンポーネント定義ファイル", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "環境設定ファイル", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "通常のテーブル", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "関連テーブル", + "heading": "関連テーブル", "rst_labels": [] }, { @@ -17218,187 +16862,7 @@ ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/04_Permission.rst", - "format": "rst", - "filename": "04_Permission.rst", - "type": "component", - "category": "libraries", - "id": "libraries-04_Permission--s1", - "base_name": "libraries-04_Permission", - "output_path": "component/libraries/libraries-04_Permission--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_Permission--s1/", - "section_range": { - "start_line": 0, - "end_line": 265, - "sections": [ - "", - "概要", - "", - "特徴", - "", - "要求", - "", - "構成", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-04_Permission", - "group_line_count": 265 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [ - "permission" - ] - }, - { - "section_id": "s2", - "heading": "概要", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "特徴", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "要求", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "構成", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "使用方法", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/04_Permission.rst", - "format": "rst", - "filename": "04_Permission.rst", - "type": "component", - "category": "libraries", - "id": "libraries-04_Permission--s10", - "base_name": "libraries-04_Permission", - "output_path": "component/libraries/libraries-04_Permission--s10.json", - "assets_dir": "component/libraries/assets/libraries-04_Permission--s10/", - "section_range": { - "start_line": 265, - "end_line": 563, - "sections": [ - "使用方法" - ], - "section_ids": [ - "s10" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-04_Permission", - "group_line_count": 298 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [ - "permission" - ] - }, - { - "section_id": "s2", - "heading": "概要", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "特徴", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "要求", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "構成", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "使用方法", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_HowToSettingCustomTag.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_HowToSettingCustomTag.rst", "format": "rst", "filename": "07_HowToSettingCustomTag.rst", "type": "component", @@ -18508,29 +17972,34 @@ ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTag.rst", "format": "rst", - "filename": "07_TagReference.rst", + "filename": "07_FormTag.rst", "type": "component", "category": "libraries", - "id": "libraries-07_TagReference--s1", - "base_name": "libraries-07_TagReference", - "output_path": "component/libraries/libraries-07_TagReference--s1.json", - "assets_dir": "component/libraries/assets/libraries-07_TagReference--s1/", + "id": "libraries-07_FormTag--s1", + "base_name": "libraries-07_FormTag", + "output_path": "component/libraries/libraries-07_FormTag--s1.json", + "assets_dir": "component/libraries/assets/libraries-07_FormTag--s1/", "section_range": { "start_line": 0, - "end_line": 400, + "end_line": 379, "sections": [ "", - "カスタムタグ一覧", - "全てのHTMLタグ", - "フォーカスを取得可能なHTMLタグ", - "formタグ", - "textタグ", - "textareaタグ", - "passwordタグ", - "radioButtonタグ", - "checkboxタグ" + "エンティティのプロパティにアクセスする場合の実装例", + "", + "Listのプロパティにアクセスする場合の実装例", + "", + "windowScopePrefixes属性の使用方法", + "", + "複数画面に跨る画面遷移時のwindowScopePrefixes属性の指定方法", + "", + "アクションの実装方法", + "", + "hiddenタグの暗号化機能の処理イメージ", + "", + "hiddenタグの暗号化機能の設定", + "" ], "section_ids": [ "s1", @@ -18542,15 +18011,20 @@ "s7", "s8", "s9", - "s10" + "s10", + "s11", + "s12", + "s13", + "s14", + "s15" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 4, - "original_id": "libraries-07_TagReference", - "group_line_count": 400 + "total_parts": 2, + "original_id": "libraries-07_FormTag", + "group_line_count": 379 }, "section_map": [ { @@ -18560,290 +18034,146 @@ }, { "section_id": "s2", - "heading": "カスタムタグ一覧", + "heading": "エンティティのプロパティにアクセスする場合の実装例", "rst_labels": [] }, { "section_id": "s3", - "heading": "全てのHTMLタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "フォーカスを取得可能なHTMLタグ", + "heading": "Listのプロパティにアクセスする場合の実装例", "rst_labels": [] }, { "section_id": "s5", - "heading": "formタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "textタグ", + "heading": "windowScopePrefixes属性の使用方法", "rst_labels": [] }, { "section_id": "s7", - "heading": "textareaタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "passwordタグ", + "heading": "複数画面に跨る画面遷移時のwindowScopePrefixes属性の指定方法", "rst_labels": [] }, { "section_id": "s9", - "heading": "radioButtonタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "checkboxタグ", + "heading": "アクションの実装方法", "rst_labels": [] }, { "section_id": "s11", - "heading": "compositeKeyCheckboxタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "compositeKeyRadioButtonタグ", + "heading": "hiddenタグの暗号化機能の処理イメージ", "rst_labels": [] }, { "section_id": "s13", - "heading": "fileタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "hiddenタグ", + "heading": "hiddenタグの暗号化機能の設定", "rst_labels": [] }, { "section_id": "s15", - "heading": "plainHiddenタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s16", - "heading": "selectタグ", + "heading": "hiddenの暗号化処理", "rst_labels": [] }, { "section_id": "s17", - "heading": "radioButtonsタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s18", - "heading": "checkboxesタグ", + "heading": "hiddenの復号処理", "rst_labels": [] }, { "section_id": "s19", - "heading": "submitタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s20", - "heading": "buttonタグ", + "heading": "textタグの出力例", "rst_labels": [] }, { "section_id": "s21", - "heading": "submitLinkタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s22", - "heading": "popupSubmitタグ", + "heading": "passwordタグの出力例", "rst_labels": [] }, { "section_id": "s23", - "heading": "popupButtonタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s24", - "heading": "popupLinkタグ", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "downloadSubmitタグ", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "downloadButtonタグ", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "downloadLinkタグ", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "paramタグ", - "rst_labels": [] - }, - { - "section_id": "s29", - "heading": "changeParamNameタグ", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "aタグ", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "imgタグ", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "linkタグ", - "rst_labels": [] - }, - { - "section_id": "s33", - "heading": "scriptタグ", - "rst_labels": [] - }, - { - "section_id": "s34", - "heading": "errorsタグ", - "rst_labels": [] - }, - { - "section_id": "s35", - "heading": "errorタグ", - "rst_labels": [] - }, - { - "section_id": "s36", - "heading": "noCacheタグ", - "rst_labels": [] - }, - { - "section_id": "s37", - "heading": "codeSelectタグ", - "rst_labels": [] - }, - { - "section_id": "s38", - "heading": "codeRadioButtonsタグ", - "rst_labels": [] - }, - { - "section_id": "s39", - "heading": "codeCheckboxesタグ", - "rst_labels": [] - }, - { - "section_id": "s40", - "heading": "codeCheckboxタグ", - "rst_labels": [] - }, - { - "section_id": "s41", - "heading": "codeタグ", - "rst_labels": [] - }, - { - "section_id": "s42", - "heading": "messageタグ", - "rst_labels": [] - }, - { - "section_id": "s43", - "heading": "writeタグ", - "rst_labels": [] - }, - { - "section_id": "s44", - "heading": "prettyPrintタグ", - "rst_labels": [] - }, - { - "section_id": "s45", - "heading": "rawWriteタグ", - "rst_labels": [] - }, - { - "section_id": "s46", - "heading": "includeタグ", - "rst_labels": [] - }, - { - "section_id": "s47", - "heading": "includeParamタグ", - "rst_labels": [] - }, - { - "section_id": "s48", - "heading": "confirmationPageタグ", - "rst_labels": [] - }, - { - "section_id": "s49", - "heading": "ignoreConfirmationタグ", - "rst_labels": [] - }, - { - "section_id": "s50", - "heading": "forInputPageタグ", - "rst_labels": [] - }, - { - "section_id": "s51", - "heading": "forConfirmationPageタグ", + "heading": "selectタグの出力例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTag.rst", "format": "rst", - "filename": "07_TagReference.rst", + "filename": "07_FormTag.rst", "type": "component", "category": "libraries", - "id": "libraries-07_TagReference--s11", - "base_name": "libraries-07_TagReference", - "output_path": "component/libraries/libraries-07_TagReference--s11.json", - "assets_dir": "component/libraries/assets/libraries-07_TagReference--s11/", + "id": "libraries-07_FormTag--s16", + "base_name": "libraries-07_FormTag", + "output_path": "component/libraries/libraries-07_FormTag--s16.json", + "assets_dir": "component/libraries/assets/libraries-07_FormTag--s16/", "section_range": { - "start_line": 400, - "end_line": 794, + "start_line": 379, + "end_line": 566, "sections": [ - "compositeKeyCheckboxタグ", - "compositeKeyRadioButtonタグ", - "fileタグ", - "hiddenタグ", - "plainHiddenタグ", - "selectタグ", - "radioButtonsタグ", - "checkboxesタグ", - "submitタグ", - "buttonタグ", - "submitLinkタグ", - "popupSubmitタグ", - "popupButtonタグ" + "hiddenの暗号化処理", + "", + "hiddenの復号処理", + "", + "textタグの出力例", + "", + "passwordタグの出力例", + "", + "selectタグの出力例" ], "section_ids": [ - "s11", - "s12", - "s13", - "s14", - "s15", "s16", "s17", "s18", @@ -18851,15 +18181,16 @@ "s20", "s21", "s22", - "s23" + "s23", + "s24" ] }, "split_info": { "is_split": true, "part": 2, - "total_parts": 4, - "original_id": "libraries-07_TagReference", - "group_line_count": 394 + "total_parts": 2, + "original_id": "libraries-07_FormTag", + "group_line_count": 187 }, "section_map": [ { @@ -18869,619 +18200,697 @@ }, { "section_id": "s2", - "heading": "カスタムタグ一覧", + "heading": "エンティティのプロパティにアクセスする場合の実装例", "rst_labels": [] }, { "section_id": "s3", - "heading": "全てのHTMLタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "フォーカスを取得可能なHTMLタグ", + "heading": "Listのプロパティにアクセスする場合の実装例", "rst_labels": [] }, { "section_id": "s5", - "heading": "formタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "textタグ", + "heading": "windowScopePrefixes属性の使用方法", "rst_labels": [] }, { "section_id": "s7", - "heading": "textareaタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "passwordタグ", + "heading": "複数画面に跨る画面遷移時のwindowScopePrefixes属性の指定方法", "rst_labels": [] }, { "section_id": "s9", - "heading": "radioButtonタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "checkboxタグ", + "heading": "アクションの実装方法", "rst_labels": [] }, { "section_id": "s11", - "heading": "compositeKeyCheckboxタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "compositeKeyRadioButtonタグ", + "heading": "hiddenタグの暗号化機能の処理イメージ", "rst_labels": [] }, { "section_id": "s13", - "heading": "fileタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "hiddenタグ", + "heading": "hiddenタグの暗号化機能の設定", "rst_labels": [] }, { "section_id": "s15", - "heading": "plainHiddenタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s16", - "heading": "selectタグ", + "heading": "hiddenの暗号化処理", "rst_labels": [] }, { "section_id": "s17", - "heading": "radioButtonsタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s18", - "heading": "checkboxesタグ", + "heading": "hiddenの復号処理", "rst_labels": [] }, { "section_id": "s19", - "heading": "submitタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s20", - "heading": "buttonタグ", + "heading": "textタグの出力例", "rst_labels": [] }, { "section_id": "s21", - "heading": "submitLinkタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s22", - "heading": "popupSubmitタグ", + "heading": "passwordタグの出力例", "rst_labels": [] }, { "section_id": "s23", - "heading": "popupButtonタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s24", - "heading": "popupLinkタグ", + "heading": "selectタグの出力例", "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "downloadSubmitタグ", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "downloadButtonタグ", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "downloadLinkタグ", - "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FacilitateTag.rst", + "format": "rst", + "filename": "07_FacilitateTag.rst", + "type": "component", + "category": "libraries", + "id": "libraries-07_FacilitateTag--s1", + "base_name": "libraries-07_FacilitateTag", + "output_path": "component/libraries/libraries-07_FacilitateTag--s1.json", + "assets_dir": "component/libraries/assets/libraries-07_FacilitateTag--s1/", + "section_range": { + "start_line": 0, + "end_line": 117, + "sections": [ + "", + "入力画面と確認画面の表示切り替え", + "", + "確認画面での入力項目の表示" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-07_FacilitateTag", + "group_line_count": 117 + }, + "section_map": [ { - "section_id": "s28", - "heading": "paramタグ", + "section_id": "s1", + "heading": "", "rst_labels": [] }, { - "section_id": "s29", - "heading": "changeParamNameタグ", + "section_id": "s2", + "heading": "入力画面と確認画面の表示切り替え", "rst_labels": [] }, { - "section_id": "s30", - "heading": "aタグ", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s31", - "heading": "imgタグ", + "section_id": "s4", + "heading": "確認画面での入力項目の表示", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_BasicRules.rst", + "format": "rst", + "filename": "07_BasicRules.rst", + "type": "component", + "category": "libraries", + "id": "libraries-07_BasicRules--s1", + "base_name": "libraries-07_BasicRules", + "output_path": "component/libraries/libraries-07_BasicRules--s1.json", + "assets_dir": "component/libraries/assets/libraries-07_BasicRules--s1/", + "section_range": { + "start_line": 0, + "end_line": 260, + "sections": [ + "", + "HTMLエスケープ", + "", + "改行、半角スペース変換", + "", + "HTMLエスケープせずに値を出力する方法" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-07_BasicRules", + "group_line_count": 260 + }, + "section_map": [ { - "section_id": "s32", - "heading": "linkタグ", + "section_id": "s1", + "heading": "", "rst_labels": [] }, { - "section_id": "s33", - "heading": "scriptタグ", + "section_id": "s2", + "heading": "HTMLエスケープ", "rst_labels": [] }, { - "section_id": "s34", - "heading": "errorsタグ", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s35", - "heading": "errorタグ", + "section_id": "s4", + "heading": "改行、半角スペース変換", "rst_labels": [] }, { - "section_id": "s36", - "heading": "noCacheタグ", + "section_id": "s5", + "heading": "", "rst_labels": [] }, { - "section_id": "s37", - "heading": "codeSelectタグ", + "section_id": "s6", + "heading": "HTMLエスケープせずに値を出力する方法", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_OtherTag.rst", + "format": "rst", + "filename": "07_OtherTag.rst", + "type": "component", + "category": "libraries", + "id": "libraries-07_OtherTag", + "base_name": "libraries-07_OtherTag", + "output_path": "component/libraries/libraries-07_OtherTag.json", + "assets_dir": "component/libraries/assets/libraries-07_OtherTag/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTagList.rst", + "format": "rst", + "filename": "07_FormTagList.rst", + "type": "component", + "category": "libraries", + "id": "libraries-07_FormTagList--s1", + "base_name": "libraries-07_FormTagList", + "output_path": "component/libraries/libraries-07_FormTagList--s1.json", + "assets_dir": "component/libraries/assets/libraries-07_FormTagList--s1/", + "section_range": { + "start_line": 0, + "end_line": 383, + "sections": [ + "", + "passwordタグ", + "", + "radioButtonタグ", + "", + "checkboxタグ", + "", + "compositeKeyRadioButtonタグ、compositeKeyCheckboxタグ", + "", + "List型変数に対応するカスタムタグの共通属性", + "" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "libraries-07_FormTagList", + "group_line_count": 383 + }, + "section_map": [ { - "section_id": "s38", - "heading": "codeRadioButtonsタグ", - "rst_labels": [] + "section_id": "s1", + "heading": "", + "rst_labels": [ + "form_input" + ] }, { - "section_id": "s39", - "heading": "codeCheckboxesタグ", + "section_id": "s2", + "heading": "passwordタグ", "rst_labels": [] }, { - "section_id": "s40", - "heading": "codeCheckboxタグ", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s41", - "heading": "codeタグ", + "section_id": "s4", + "heading": "radioButtonタグ", "rst_labels": [] }, { - "section_id": "s42", - "heading": "messageタグ", + "section_id": "s5", + "heading": "", "rst_labels": [] }, { - "section_id": "s43", - "heading": "writeタグ", + "section_id": "s6", + "heading": "checkboxタグ", "rst_labels": [] }, { - "section_id": "s44", - "heading": "prettyPrintタグ", + "section_id": "s7", + "heading": "", "rst_labels": [] }, { - "section_id": "s45", - "heading": "rawWriteタグ", + "section_id": "s8", + "heading": "compositeKeyRadioButtonタグ、compositeKeyCheckboxタグ", "rst_labels": [] }, { - "section_id": "s46", - "heading": "includeタグ", + "section_id": "s9", + "heading": "", "rst_labels": [] }, { - "section_id": "s47", - "heading": "includeParamタグ", + "section_id": "s10", + "heading": "List型変数に対応するカスタムタグの共通属性", "rst_labels": [] }, { - "section_id": "s48", - "heading": "confirmationPageタグ", + "section_id": "s11", + "heading": "", "rst_labels": [] }, { - "section_id": "s49", - "heading": "ignoreConfirmationタグ", + "section_id": "s12", + "heading": "radioButtonsタグ、checkboxesタグ", "rst_labels": [] }, { - "section_id": "s50", - "heading": "forInputPageタグ", + "section_id": "s13", + "heading": "", "rst_labels": [] }, { - "section_id": "s51", - "heading": "forConfirmationPageタグ", + "section_id": "s14", + "heading": "selectタグ", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTagList.rst", "format": "rst", - "filename": "07_TagReference.rst", + "filename": "07_FormTagList.rst", "type": "component", "category": "libraries", - "id": "libraries-07_TagReference--s24", - "base_name": "libraries-07_TagReference", - "output_path": "component/libraries/libraries-07_TagReference--s24.json", - "assets_dir": "component/libraries/assets/libraries-07_TagReference--s24/", + "id": "libraries-07_FormTagList--s12", + "base_name": "libraries-07_FormTagList", + "output_path": "component/libraries/libraries-07_FormTagList--s12.json", + "assets_dir": "component/libraries/assets/libraries-07_FormTagList--s12/", "section_range": { - "start_line": 794, - "end_line": 1175, + "start_line": 383, + "end_line": 467, "sections": [ - "popupLinkタグ", - "downloadSubmitタグ", - "downloadButtonタグ", - "downloadLinkタグ", - "paramタグ", - "changeParamNameタグ", - "aタグ", - "imgタグ", - "linkタグ", - "scriptタグ", - "errorsタグ", - "errorタグ", - "noCacheタグ", - "codeSelectタグ", - "codeRadioButtonsタグ" + "radioButtonsタグ、checkboxesタグ", + "", + "selectタグ" ], "section_ids": [ - "s24", - "s25", - "s26", - "s27", - "s28", - "s29", - "s30", - "s31", - "s32", - "s33", - "s34", - "s35", - "s36", - "s37", - "s38" + "s12", + "s13", + "s14" ] }, "split_info": { "is_split": true, - "part": 3, - "total_parts": 4, - "original_id": "libraries-07_TagReference", - "group_line_count": 381 + "part": 2, + "total_parts": 2, + "original_id": "libraries-07_FormTagList", + "group_line_count": 84 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "form_input" + ] }, { "section_id": "s2", - "heading": "カスタムタグ一覧", + "heading": "passwordタグ", "rst_labels": [] }, { "section_id": "s3", - "heading": "全てのHTMLタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "フォーカスを取得可能なHTMLタグ", + "heading": "radioButtonタグ", "rst_labels": [] }, { "section_id": "s5", - "heading": "formタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "textタグ", + "heading": "checkboxタグ", "rst_labels": [] }, { "section_id": "s7", - "heading": "textareaタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "passwordタグ", + "heading": "compositeKeyRadioButtonタグ、compositeKeyCheckboxタグ", "rst_labels": [] }, { "section_id": "s9", - "heading": "radioButtonタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "checkboxタグ", + "heading": "List型変数に対応するカスタムタグの共通属性", "rst_labels": [] }, { "section_id": "s11", - "heading": "compositeKeyCheckboxタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "compositeKeyRadioButtonタグ", + "heading": "radioButtonsタグ、checkboxesタグ", "rst_labels": [] }, { "section_id": "s13", - "heading": "fileタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "hiddenタグ", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "plainHiddenタグ", - "rst_labels": [] - }, - { - "section_id": "s16", "heading": "selectタグ", "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "radioButtonsタグ", - "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04_DbAccessSpec.rst", + "format": "rst", + "filename": "04_DbAccessSpec.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_DbAccessSpec--s1", + "base_name": "libraries-04_DbAccessSpec", + "output_path": "component/libraries/libraries-04_DbAccessSpec--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_DbAccessSpec--s1/", + "section_range": { + "start_line": 0, + "end_line": 333, + "sections": [ + "" + ], + "section_ids": [ + "s1" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "libraries-04_DbAccessSpec", + "group_line_count": 333 + }, + "section_map": [ { - "section_id": "s18", - "heading": "checkboxesタグ", - "rst_labels": [] + "section_id": "s1", + "heading": "", + "rst_labels": [ + "db-summary-label", + "db-feature-label", + "db-feature-2-label", + "db-feature-4-label", + "db-feature-5-label", + "db-feature-6-label", + "db-feature-7-label" + ] }, { - "section_id": "s19", - "heading": "submitタグ", - "rst_labels": [] + "section_id": "s2", + "heading": "注意点", + "rst_labels": [ + "db-sql-injection-label", + "sql-injection-logic" + ] }, { - "section_id": "s20", - "heading": "buttonタグ", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s21", - "heading": "submitLinkタグ", + "section_id": "s4", + "heading": "全体構造", "rst_labels": [] }, { - "section_id": "s22", - "heading": "popupSubmitタグ", + "section_id": "s5", + "heading": "", "rst_labels": [] }, { - "section_id": "s23", - "heading": "popupButtonタグ", + "section_id": "s6", + "heading": "各機能単位の構造", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04_DbAccessSpec.rst", + "format": "rst", + "filename": "04_DbAccessSpec.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_DbAccessSpec--s2", + "base_name": "libraries-04_DbAccessSpec", + "output_path": "component/libraries/libraries-04_DbAccessSpec--s2.json", + "assets_dir": "component/libraries/assets/libraries-04_DbAccessSpec--s2/", + "section_range": { + "start_line": 333, + "end_line": 479, + "sections": [ + "注意点", + "", + "全体構造", + "", + "各機能単位の構造" + ], + "section_ids": [ + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "libraries-04_DbAccessSpec", + "group_line_count": 146 + }, + "section_map": [ { - "section_id": "s24", - "heading": "popupLinkタグ", - "rst_labels": [] + "section_id": "s1", + "heading": "", + "rst_labels": [ + "db-summary-label", + "db-feature-label", + "db-feature-2-label", + "db-feature-4-label", + "db-feature-5-label", + "db-feature-6-label", + "db-feature-7-label" + ] }, { - "section_id": "s25", - "heading": "downloadSubmitタグ", - "rst_labels": [] + "section_id": "s2", + "heading": "注意点", + "rst_labels": [ + "db-sql-injection-label", + "sql-injection-logic" + ] }, { - "section_id": "s26", - "heading": "downloadButtonタグ", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s27", - "heading": "downloadLinkタグ", + "section_id": "s4", + "heading": "全体構造", "rst_labels": [] }, { - "section_id": "s28", - "heading": "paramタグ", + "section_id": "s5", + "heading": "", "rst_labels": [] }, { - "section_id": "s29", - "heading": "changeParamNameタグ", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "aタグ", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "imgタグ", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "linkタグ", - "rst_labels": [] - }, - { - "section_id": "s33", - "heading": "scriptタグ", - "rst_labels": [] - }, - { - "section_id": "s34", - "heading": "errorsタグ", - "rst_labels": [] - }, - { - "section_id": "s35", - "heading": "errorタグ", - "rst_labels": [] - }, - { - "section_id": "s36", - "heading": "noCacheタグ", - "rst_labels": [] - }, - { - "section_id": "s37", - "heading": "codeSelectタグ", - "rst_labels": [] - }, - { - "section_id": "s38", - "heading": "codeRadioButtonsタグ", - "rst_labels": [] - }, - { - "section_id": "s39", - "heading": "codeCheckboxesタグ", - "rst_labels": [] - }, - { - "section_id": "s40", - "heading": "codeCheckboxタグ", - "rst_labels": [] - }, - { - "section_id": "s41", - "heading": "codeタグ", - "rst_labels": [] - }, - { - "section_id": "s42", - "heading": "messageタグ", - "rst_labels": [] - }, - { - "section_id": "s43", - "heading": "writeタグ", - "rst_labels": [] - }, - { - "section_id": "s44", - "heading": "prettyPrintタグ", - "rst_labels": [] - }, - { - "section_id": "s45", - "heading": "rawWriteタグ", - "rst_labels": [] - }, - { - "section_id": "s46", - "heading": "includeタグ", - "rst_labels": [] - }, - { - "section_id": "s47", - "heading": "includeParamタグ", - "rst_labels": [] - }, - { - "section_id": "s48", - "heading": "confirmationPageタグ", - "rst_labels": [] - }, - { - "section_id": "s49", - "heading": "ignoreConfirmationタグ", - "rst_labels": [] - }, - { - "section_id": "s50", - "heading": "forInputPageタグ", - "rst_labels": [] - }, - { - "section_id": "s51", - "heading": "forConfirmationPageタグ", + "section_id": "s6", + "heading": "各機能単位の構造", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02_Repository.rst", "format": "rst", - "filename": "07_TagReference.rst", + "filename": "02_Repository.rst", "type": "component", "category": "libraries", - "id": "libraries-07_TagReference--s39", - "base_name": "libraries-07_TagReference", - "output_path": "component/libraries/libraries-07_TagReference--s39.json", - "assets_dir": "component/libraries/assets/libraries-07_TagReference--s39/", + "id": "libraries-02_Repository--s1", + "base_name": "libraries-02_Repository", + "output_path": "component/libraries/libraries-02_Repository--s1.json", + "assets_dir": "component/libraries/assets/libraries-02_Repository--s1/", "section_range": { - "start_line": 1175, - "end_line": 1505, + "start_line": 0, + "end_line": 209, "sections": [ - "codeCheckboxesタグ", - "codeCheckboxタグ", - "codeタグ", - "messageタグ", - "writeタグ", - "prettyPrintタグ", - "rawWriteタグ", - "includeタグ", - "includeParamタグ", - "confirmationPageタグ", - "ignoreConfirmationタグ", - "forInputPageタグ", - "forConfirmationPageタグ" + "", + "概要", + "", + "特徴", + "", + "要求", + "", + "構成", + "インタフェース定義", + "クラス定義", + "", + "リポジトリの設定方法と使用方法", + "", + "コンポーネント初期化機能", + "", + "ファクトリインジェクション", + "", + "設定の上書き" ], "section_ids": [ - "s39", - "s40", - "s41", - "s42", - "s43", - "s44", - "s45", - "s46", - "s47", - "s48", - "s49", - "s50", - "s51" + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16", + "s17", + "s18" ] }, "split_info": { "is_split": true, - "part": 4, - "total_parts": 4, - "original_id": "libraries-07_TagReference", - "group_line_count": 330 + "part": 1, + "total_parts": 1, + "original_id": "libraries-02_Repository", + "group_line_count": 209 }, "section_map": [ { @@ -19491,284 +18900,127 @@ }, { "section_id": "s2", - "heading": "カスタムタグ一覧", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "全てのHTMLタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "フォーカスを取得可能なHTMLタグ", - "rst_labels": [] + "heading": "特徴", + "rst_labels": [ + "initialize-label" + ] }, { "section_id": "s5", - "heading": "formタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "textタグ", + "heading": "要求", "rst_labels": [] }, { "section_id": "s7", - "heading": "textareaタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "passwordタグ", + "heading": "構成", "rst_labels": [] }, { "section_id": "s9", - "heading": "radioButtonタグ", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s10", - "heading": "checkboxタグ", + "heading": "クラス定義", "rst_labels": [] }, { "section_id": "s11", - "heading": "compositeKeyCheckboxタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "compositeKeyRadioButtonタグ", + "heading": "リポジトリの設定方法と使用方法", "rst_labels": [] }, { "section_id": "s13", - "heading": "fileタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "hiddenタグ", + "heading": "コンポーネント初期化機能", "rst_labels": [] }, { "section_id": "s15", - "heading": "plainHiddenタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s16", - "heading": "selectタグ", + "heading": "ファクトリインジェクション", "rst_labels": [] }, { "section_id": "s17", - "heading": "radioButtonsタグ", + "heading": "", "rst_labels": [] }, { "section_id": "s18", - "heading": "checkboxesタグ", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "submitタグ", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "buttonタグ", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "submitLinkタグ", - "rst_labels": [] - }, - { - "section_id": "s22", - "heading": "popupSubmitタグ", - "rst_labels": [] - }, - { - "section_id": "s23", - "heading": "popupButtonタグ", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "popupLinkタグ", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "downloadSubmitタグ", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "downloadButtonタグ", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "downloadLinkタグ", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "paramタグ", - "rst_labels": [] - }, - { - "section_id": "s29", - "heading": "changeParamNameタグ", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "aタグ", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "imgタグ", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "linkタグ", - "rst_labels": [] - }, - { - "section_id": "s33", - "heading": "scriptタグ", - "rst_labels": [] - }, - { - "section_id": "s34", - "heading": "errorsタグ", - "rst_labels": [] - }, - { - "section_id": "s35", - "heading": "errorタグ", - "rst_labels": [] - }, - { - "section_id": "s36", - "heading": "noCacheタグ", - "rst_labels": [] - }, - { - "section_id": "s37", - "heading": "codeSelectタグ", - "rst_labels": [] - }, - { - "section_id": "s38", - "heading": "codeRadioButtonsタグ", - "rst_labels": [] - }, - { - "section_id": "s39", - "heading": "codeCheckboxesタグ", - "rst_labels": [] - }, - { - "section_id": "s40", - "heading": "codeCheckboxタグ", - "rst_labels": [] - }, - { - "section_id": "s41", - "heading": "codeタグ", - "rst_labels": [] - }, - { - "section_id": "s42", - "heading": "messageタグ", - "rst_labels": [] - }, - { - "section_id": "s43", - "heading": "writeタグ", - "rst_labels": [] - }, - { - "section_id": "s44", - "heading": "prettyPrintタグ", - "rst_labels": [] - }, - { - "section_id": "s45", - "heading": "rawWriteタグ", - "rst_labels": [] - }, - { - "section_id": "s46", - "heading": "includeタグ", - "rst_labels": [] - }, - { - "section_id": "s47", - "heading": "includeParamタグ", - "rst_labels": [] - }, - { - "section_id": "s48", - "heading": "confirmationPageタグ", - "rst_labels": [] - }, - { - "section_id": "s49", - "heading": "ignoreConfirmationタグ", - "rst_labels": [] - }, - { - "section_id": "s50", - "heading": "forInputPageタグ", - "rst_labels": [] - }, - { - "section_id": "s51", - "heading": "forConfirmationPageタグ", + "heading": "設定の上書き", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTag.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/05_StaticDataCache.rst", "format": "rst", - "filename": "07_FormTag.rst", + "filename": "05_StaticDataCache.rst", "type": "component", "category": "libraries", - "id": "libraries-07_FormTag--s1", - "base_name": "libraries-07_FormTag", - "output_path": "component/libraries/libraries-07_FormTag--s1.json", - "assets_dir": "component/libraries/assets/libraries-07_FormTag--s1/", + "id": "libraries-05_StaticDataCache--s1", + "base_name": "libraries-05_StaticDataCache", + "output_path": "component/libraries/libraries-05_StaticDataCache--s1.json", + "assets_dir": "component/libraries/assets/libraries-05_StaticDataCache--s1/", "section_range": { "start_line": 0, - "end_line": 379, + "end_line": 383, "sections": [ "", - "エンティティのプロパティにアクセスする場合の実装例", + "概要", "", - "Listのプロパティにアクセスする場合の実装例", + "特徴", "", - "windowScopePrefixes属性の使用方法", + "要求", "", - "複数画面に跨る画面遷移時のwindowScopePrefixes属性の指定方法", + "構成", + "インタフェース定義", + "クラス定義", "", - "アクションの実装方法", + "キャッシュした静的データの取得", + "キャッシュされるデータを保持するクラス(ExampleData)", + "キャッシュしたデータを使用するクラス", "", - "hiddenタグの暗号化機能の処理イメージ", + "キャッシュにデータをロードする方法", "", - "hiddenタグの暗号化機能の設定", + "オンデマンドロードの使用方法", + "ExampleDataをロードするクラス", + "設定ファイル", "" ], "section_ids": [ @@ -19786,15 +19038,21 @@ "s12", "s13", "s14", - "s15" + "s15", + "s16", + "s17", + "s18", + "s19", + "s20", + "s21" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 2, - "original_id": "libraries-07_FormTag", - "group_line_count": 379 + "original_id": "libraries-05_StaticDataCache", + "group_line_count": 383 }, "section_map": [ { @@ -19804,7 +19062,7 @@ }, { "section_id": "s2", - "heading": "エンティティのプロパティにアクセスする場合の実装例", + "heading": "概要", "rst_labels": [] }, { @@ -19814,7 +19072,7 @@ }, { "section_id": "s4", - "heading": "Listのプロパティにアクセスする場合の実装例", + "heading": "特徴", "rst_labels": [] }, { @@ -19824,7 +19082,7 @@ }, { "section_id": "s6", - "heading": "windowScopePrefixes属性の使用方法", + "heading": "要求", "rst_labels": [] }, { @@ -19834,17 +19092,17 @@ }, { "section_id": "s8", - "heading": "複数画面に跨る画面遷移時のwindowScopePrefixes属性の指定方法", + "heading": "構成", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s10", - "heading": "アクションの実装方法", + "heading": "クラス定義", "rst_labels": [] }, { @@ -19854,17 +19112,17 @@ }, { "section_id": "s12", - "heading": "hiddenタグの暗号化機能の処理イメージ", + "heading": "キャッシュした静的データの取得", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "キャッシュされるデータを保持するクラス(ExampleData)", "rst_labels": [] }, { "section_id": "s14", - "heading": "hiddenタグの暗号化機能の設定", + "heading": "キャッシュしたデータを使用するクラス", "rst_labels": [] }, { @@ -19874,7 +19132,7 @@ }, { "section_id": "s16", - "heading": "hiddenの暗号化処理", + "heading": "キャッシュにデータをロードする方法", "rst_labels": [] }, { @@ -19884,17 +19142,17 @@ }, { "section_id": "s18", - "heading": "hiddenの復号処理", + "heading": "オンデマンドロードの使用方法", "rst_labels": [] }, { "section_id": "s19", - "heading": "", + "heading": "ExampleDataをロードするクラス", "rst_labels": [] }, { "section_id": "s20", - "heading": "textタグの出力例", + "heading": "設定ファイル", "rst_labels": [] }, { @@ -19904,63 +19162,72 @@ }, { "section_id": "s22", - "heading": "passwordタグの出力例", + "heading": "一括ロード", "rst_labels": [] }, { "section_id": "s23", - "heading": "", + "heading": "ExampleDataをロードするクラス", "rst_labels": [] }, { "section_id": "s24", - "heading": "selectタグの出力例", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "設定内容詳細", + "rst_labels": [] + }, + { + "section_id": "s26", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "静的データの再読み込み", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTag.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/05_StaticDataCache.rst", "format": "rst", - "filename": "07_FormTag.rst", + "filename": "05_StaticDataCache.rst", "type": "component", "category": "libraries", - "id": "libraries-07_FormTag--s16", - "base_name": "libraries-07_FormTag", - "output_path": "component/libraries/libraries-07_FormTag--s16.json", - "assets_dir": "component/libraries/assets/libraries-07_FormTag--s16/", + "id": "libraries-05_StaticDataCache--s22", + "base_name": "libraries-05_StaticDataCache", + "output_path": "component/libraries/libraries-05_StaticDataCache--s22.json", + "assets_dir": "component/libraries/assets/libraries-05_StaticDataCache--s22/", "section_range": { - "start_line": 379, - "end_line": 566, + "start_line": 383, + "end_line": 578, "sections": [ - "hiddenの暗号化処理", - "", - "hiddenの復号処理", + "一括ロード", + "ExampleDataをロードするクラス", "", - "textタグの出力例", + "設定内容詳細", "", - "passwordタグの出力例", - "", - "selectタグの出力例" + "静的データの再読み込み" ], "section_ids": [ - "s16", - "s17", - "s18", - "s19", - "s20", - "s21", "s22", "s23", - "s24" + "s24", + "s25", + "s26", + "s27" ] }, "split_info": { "is_split": true, "part": 2, "total_parts": 2, - "original_id": "libraries-07_FormTag", - "group_line_count": 187 + "original_id": "libraries-05_StaticDataCache", + "group_line_count": 195 }, "section_map": [ { @@ -19970,7 +19237,7 @@ }, { "section_id": "s2", - "heading": "エンティティのプロパティにアクセスする場合の実装例", + "heading": "概要", "rst_labels": [] }, { @@ -19980,7 +19247,7 @@ }, { "section_id": "s4", - "heading": "Listのプロパティにアクセスする場合の実装例", + "heading": "特徴", "rst_labels": [] }, { @@ -19990,7 +19257,7 @@ }, { "section_id": "s6", - "heading": "windowScopePrefixes属性の使用方法", + "heading": "要求", "rst_labels": [] }, { @@ -20000,17 +19267,17 @@ }, { "section_id": "s8", - "heading": "複数画面に跨る画面遷移時のwindowScopePrefixes属性の指定方法", + "heading": "構成", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s10", - "heading": "アクションの実装方法", + "heading": "クラス定義", "rst_labels": [] }, { @@ -20020,17 +19287,17 @@ }, { "section_id": "s12", - "heading": "hiddenタグの暗号化機能の処理イメージ", + "heading": "キャッシュした静的データの取得", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "キャッシュされるデータを保持するクラス(ExampleData)", "rst_labels": [] }, { "section_id": "s14", - "heading": "hiddenタグの暗号化機能の設定", + "heading": "キャッシュしたデータを使用するクラス", "rst_labels": [] }, { @@ -20040,7 +19307,7 @@ }, { "section_id": "s16", - "heading": "hiddenの暗号化処理", + "heading": "キャッシュにデータをロードする方法", "rst_labels": [] }, { @@ -20050,17 +19317,17 @@ }, { "section_id": "s18", - "heading": "hiddenの復号処理", + "heading": "オンデマンドロードの使用方法", "rst_labels": [] }, { "section_id": "s19", - "heading": "", + "heading": "ExampleDataをロードするクラス", "rst_labels": [] }, { "section_id": "s20", - "heading": "textタグの出力例", + "heading": "設定ファイル", "rst_labels": [] }, { @@ -20070,97 +19337,61 @@ }, { "section_id": "s22", - "heading": "passwordタグの出力例", + "heading": "一括ロード", "rst_labels": [] }, { "section_id": "s23", - "heading": "", + "heading": "ExampleDataをロードするクラス", "rst_labels": [] }, { "section_id": "s24", - "heading": "selectタグの出力例", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FacilitateTag.rst", - "format": "rst", - "filename": "07_FacilitateTag.rst", - "type": "component", - "category": "libraries", - "id": "libraries-07_FacilitateTag--s1", - "base_name": "libraries-07_FacilitateTag", - "output_path": "component/libraries/libraries-07_FacilitateTag--s1.json", - "assets_dir": "component/libraries/assets/libraries-07_FacilitateTag--s1/", - "section_range": { - "start_line": 0, - "end_line": 117, - "sections": [ - "", - "入力画面と確認画面の表示切り替え", - "", - "確認画面での入力項目の表示" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-07_FacilitateTag", - "group_line_count": 117 - }, - "section_map": [ - { - "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "入力画面と確認画面の表示切り替え", + "section_id": "s25", + "heading": "設定内容詳細", "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s26", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "確認画面での入力項目の表示", + "section_id": "s27", + "heading": "静的データの再読み込み", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_BasicRules.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/06_SystemTimeProvider.rst", "format": "rst", - "filename": "07_BasicRules.rst", + "filename": "06_SystemTimeProvider.rst", "type": "component", "category": "libraries", - "id": "libraries-07_BasicRules--s1", - "base_name": "libraries-07_BasicRules", - "output_path": "component/libraries/libraries-07_BasicRules--s1.json", - "assets_dir": "component/libraries/assets/libraries-07_BasicRules--s1/", + "id": "libraries-06_SystemTimeProvider--s1", + "base_name": "libraries-06_SystemTimeProvider", + "output_path": "component/libraries/libraries-06_SystemTimeProvider--s1.json", + "assets_dir": "component/libraries/assets/libraries-06_SystemTimeProvider--s1/", "section_range": { "start_line": 0, - "end_line": 260, + "end_line": 360, "sections": [ + "クラス図", + "SystemTimeUtilで提供される機能では不足している場合の対応方法", + "クラス図", + "テーブル定義", + "複数の業務日付の設定", + "設定ファイル", + "日付の上書き機能", + "業務日付のメンテナンス", + "BusinessDateUtilで提供される機能では不足している場合の対応方法", "", - "HTMLエスケープ", - "", - "改行、半角スペース変換", - "", - "HTMLエスケープせずに値を出力する方法" + "日付ユーティリティ" ], "section_ids": [ "s1", @@ -20168,86 +19399,107 @@ "s3", "s4", "s5", - "s6" + "s6", + "s7", + "s8", + "s9", + "s10", + "s11" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "libraries-07_BasicRules", - "group_line_count": 260 + "original_id": "libraries-06_SystemTimeProvider", + "group_line_count": 360 }, "section_map": [ { "section_id": "s1", - "heading": "", - "rst_labels": [] + "heading": "クラス図", + "rst_labels": [ + "system-date-time-feature" + ] }, { "section_id": "s2", - "heading": "HTMLエスケープ", + "heading": "SystemTimeUtilで提供される機能では不足している場合の対応方法", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "クラス図", "rst_labels": [] }, { "section_id": "s4", - "heading": "改行、半角スペース変換", - "rst_labels": [] + "heading": "テーブル定義", + "rst_labels": [ + "date_table" + ] }, { "section_id": "s5", - "heading": "", + "heading": "複数の業務日付の設定", "rst_labels": [] }, { "section_id": "s6", - "heading": "HTMLエスケープせずに値を出力する方法", + "heading": "設定ファイル", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "日付の上書き機能", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "業務日付のメンテナンス", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "BusinessDateUtilで提供される機能では不足している場合の対応方法", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "日付ユーティリティ", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_OtherTag.rst", - "format": "rst", - "filename": "07_OtherTag.rst", - "type": "component", - "category": "libraries", - "id": "libraries-07_OtherTag", - "base_name": "libraries-07_OtherTag", - "output_path": "component/libraries/libraries-07_OtherTag.json", - "assets_dir": "component/libraries/assets/libraries-07_OtherTag/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTagList.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/03_TransactionManager.rst", "format": "rst", - "filename": "07_FormTagList.rst", + "filename": "03_TransactionManager.rst", "type": "component", "category": "libraries", - "id": "libraries-07_FormTagList--s1", - "base_name": "libraries-07_FormTagList", - "output_path": "component/libraries/libraries-07_FormTagList--s1.json", - "assets_dir": "component/libraries/assets/libraries-07_FormTagList--s1/", + "id": "libraries-03_TransactionManager--s1", + "base_name": "libraries-03_TransactionManager", + "output_path": "component/libraries/libraries-03_TransactionManager--s1.json", + "assets_dir": "component/libraries/assets/libraries-03_TransactionManager--s1/", "section_range": { "start_line": 0, - "end_line": 383, + "end_line": 123, "sections": [ "", - "passwordタグ", + "概要", "", - "radioButtonタグ", + "特徴", "", - "checkboxタグ", + "要求", "", - "compositeKeyRadioButtonタグ、compositeKeyCheckboxタグ", + "構造", "", - "List型変数に対応するカスタムタグの共通属性", - "" + "使用例" ], "section_ids": [ "s1", @@ -20259,28 +19511,25 @@ "s7", "s8", "s9", - "s10", - "s11" + "s10" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 2, - "original_id": "libraries-07_FormTagList", - "group_line_count": 383 + "total_parts": 1, + "original_id": "libraries-03_TransactionManager", + "group_line_count": 123 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "form_input" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "passwordタグ", + "heading": "概要", "rst_labels": [] }, { @@ -20290,7 +19539,7 @@ }, { "section_id": "s4", - "heading": "radioButtonタグ", + "heading": "特徴", "rst_labels": [] }, { @@ -20300,7 +19549,7 @@ }, { "section_id": "s6", - "heading": "checkboxタグ", + "heading": "要求", "rst_labels": [] }, { @@ -20310,7 +19559,7 @@ }, { "section_id": "s8", - "heading": "compositeKeyRadioButtonタグ、compositeKeyCheckboxタグ", + "heading": "構造", "rst_labels": [] }, { @@ -20320,73 +19569,71 @@ }, { "section_id": "s10", - "heading": "List型変数に対応するカスタムタグの共通属性", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "radioButtonsタグ、checkboxesタグ", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "selectタグ", + "heading": "使用例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_FormTagList.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", "format": "rst", - "filename": "07_FormTagList.rst", + "filename": "01_Log.rst", "type": "component", "category": "libraries", - "id": "libraries-07_FormTagList--s12", - "base_name": "libraries-07_FormTagList", - "output_path": "component/libraries/libraries-07_FormTagList--s12.json", - "assets_dir": "component/libraries/assets/libraries-07_FormTagList--s12/", + "id": "libraries-01_Log--s1", + "base_name": "libraries-01_Log", + "output_path": "component/libraries/libraries-01_Log--s1.json", + "assets_dir": "component/libraries/assets/libraries-01_Log--s1/", "section_range": { - "start_line": 383, - "end_line": 467, + "start_line": 0, + "end_line": 398, "sections": [ - "radioButtonsタグ、checkboxesタグ", "", - "selectタグ" + "概要", + "", + "特徴", + "", + "要求", + "", + "ログ出力要求受付処理", + "", + "各クラスの責務", + "インタフェース定義", + "クラス定義" ], "section_ids": [ - "s12", - "s13", - "s14" + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-07_FormTagList", - "group_line_count": 84 + "part": 1, + "total_parts": 4, + "original_id": "libraries-01_Log", + "group_line_count": 398 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "form_input" + "logging" ] }, { "section_id": "s2", - "heading": "passwordタグ", + "heading": "概要", "rst_labels": [] }, { @@ -20396,7 +19643,7 @@ }, { "section_id": "s4", - "heading": "radioButtonタグ", + "heading": "特徴", "rst_labels": [] }, { @@ -20406,7 +19653,7 @@ }, { "section_id": "s6", - "heading": "checkboxタグ", + "heading": "要求", "rst_labels": [] }, { @@ -20416,7 +19663,7 @@ }, { "section_id": "s8", - "heading": "compositeKeyRadioButtonタグ、compositeKeyCheckboxタグ", + "heading": "ログ出力要求受付処理", "rst_labels": [] }, { @@ -20426,79 +19673,189 @@ }, { "section_id": "s10", - "heading": "List型変数に対応するカスタムタグの共通属性", + "heading": "各クラスの責務", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s12", - "heading": "radioButtonsタグ、checkboxesタグ", + "heading": "クラス定義", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "列挙型", "rst_labels": [] }, { "section_id": "s14", - "heading": "selectタグ", + "heading": "ロガー設定", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "ロガーのインスタンス構造", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "FileLogWriter", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "SynchronousFileLogWriter", + "rst_labels": [] + }, + { + "section_id": "s18", + "heading": "ログライタにおけるレベルに応じた出力制御", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "StandardOutputLogWriter", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "BasicLogFormatter", + "rst_labels": [ + "boot_process" + ] + }, + { + "section_id": "s21", + "heading": "起動プロセス", + "rst_labels": [ + "processing_system" + ] + }, + { + "section_id": "s22", + "heading": "処理方式", + "rst_labels": [ + "execution_id" + ] + }, + { + "section_id": "s23", + "heading": "実行時ID", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "BasicLogFormatterのフォーマット指定", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "BasicLogFormatterの出力例", + "rst_labels": [] + }, + { + "section_id": "s26", + "heading": "ログに出力するログレベルを表す文言の変更方法", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "ログライタのカスタマイズ方法", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "ログフォーマッタのカスタマイズ方法", + "rst_labels": [] + }, + { + "section_id": "s29", + "heading": "ログ出力項目の変更方法", + "rst_labels": [] + }, + { + "section_id": "s30", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s31", + "heading": "プロパティファイルの記述ルール", + "rst_labels": [] + }, + { + "section_id": "s32", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s33", + "heading": "各種ログの出力", + "rst_labels": [ + "fw_log_policy" + ] + }, + { + "section_id": "s34", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s35", + "heading": "フレームワークのログ出力方針", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04_DbAccessSpec.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", "format": "rst", - "filename": "04_DbAccessSpec.rst", + "filename": "01_Log.rst", "type": "component", "category": "libraries", - "id": "libraries-04_DbAccessSpec--s1", - "base_name": "libraries-04_DbAccessSpec", - "output_path": "component/libraries/libraries-04_DbAccessSpec--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_DbAccessSpec--s1/", + "id": "libraries-01_Log--s13", + "base_name": "libraries-01_Log", + "output_path": "component/libraries/libraries-01_Log--s13.json", + "assets_dir": "component/libraries/assets/libraries-01_Log--s13/", "section_range": { - "start_line": 0, - "end_line": 333, + "start_line": 398, + "end_line": 707, "sections": [ - "" + "列挙型", + "ロガー設定", + "ロガーのインスタンス構造", + "FileLogWriter" ], "section_ids": [ - "s1" + "s13", + "s14", + "s15", + "s16" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-04_DbAccessSpec", - "group_line_count": 333 + "part": 2, + "total_parts": 4, + "original_id": "libraries-01_Log", + "group_line_count": 309 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "db-summary-label", - "db-feature-label", - "db-feature-2-label", - "db-feature-4-label", - "db-feature-5-label", - "db-feature-6-label", - "db-feature-7-label" + "logging" ] }, { "section_id": "s2", - "heading": "注意点", - "rst_labels": [ - "db-sql-injection-label", - "sql-injection-logic" - ] + "heading": "概要", + "rst_labels": [] }, { "section_id": "s3", @@ -20507,7 +19864,7 @@ }, { "section_id": "s4", - "heading": "全体構造", + "heading": "特徴", "rst_labels": [] }, { @@ -20517,318 +19874,214 @@ }, { "section_id": "s6", - "heading": "各機能単位の構造", + "heading": "要求", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04_DbAccessSpec.rst", - "format": "rst", - "filename": "04_DbAccessSpec.rst", - "type": "component", - "category": "libraries", - "id": "libraries-04_DbAccessSpec--s2", - "base_name": "libraries-04_DbAccessSpec", - "output_path": "component/libraries/libraries-04_DbAccessSpec--s2.json", - "assets_dir": "component/libraries/assets/libraries-04_DbAccessSpec--s2/", - "section_range": { - "start_line": 333, - "end_line": 479, - "sections": [ - "注意点", - "", - "全体構造", - "", - "各機能単位の構造" - ], - "section_ids": [ - "s2", - "s3", - "s4", - "s5", - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-04_DbAccessSpec", - "group_line_count": 146 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s7", "heading": "", - "rst_labels": [ - "db-summary-label", - "db-feature-label", - "db-feature-2-label", - "db-feature-4-label", - "db-feature-5-label", - "db-feature-6-label", - "db-feature-7-label" - ] + "rst_labels": [] }, { - "section_id": "s2", - "heading": "注意点", - "rst_labels": [ - "db-sql-injection-label", - "sql-injection-logic" - ] + "section_id": "s8", + "heading": "ログ出力要求受付処理", + "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s9", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "全体構造", + "section_id": "s10", + "heading": "各クラスの責務", "rst_labels": [] }, { - "section_id": "s5", - "heading": "", + "section_id": "s11", + "heading": "インタフェース定義", "rst_labels": [] }, { - "section_id": "s6", - "heading": "各機能単位の構造", + "section_id": "s12", + "heading": "クラス定義", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02_Repository.rst", - "format": "rst", - "filename": "02_Repository.rst", - "type": "component", - "category": "libraries", - "id": "libraries-02_Repository--s1", - "base_name": "libraries-02_Repository", - "output_path": "component/libraries/libraries-02_Repository--s1.json", - "assets_dir": "component/libraries/assets/libraries-02_Repository--s1/", - "section_range": { - "start_line": 0, - "end_line": 209, - "sections": [ - "", - "概要", - "", - "特徴", - "", - "要求", - "", - "構成", - "インタフェース定義", - "クラス定義", - "", - "リポジトリの設定方法と使用方法", - "", - "コンポーネント初期化機能", - "", - "ファクトリインジェクション", - "", - "設定の上書き" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15", - "s16", - "s17", - "s18" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-02_Repository", - "group_line_count": 209 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s13", + "heading": "列挙型", "rst_labels": [] }, { - "section_id": "s2", - "heading": "概要", + "section_id": "s14", + "heading": "ロガー設定", "rst_labels": [] }, { - "section_id": "s3", - "heading": "", + "section_id": "s15", + "heading": "ロガーのインスタンス構造", "rst_labels": [] }, { - "section_id": "s4", - "heading": "特徴", + "section_id": "s16", + "heading": "FileLogWriter", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "SynchronousFileLogWriter", + "rst_labels": [] + }, + { + "section_id": "s18", + "heading": "ログライタにおけるレベルに応じた出力制御", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "StandardOutputLogWriter", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "BasicLogFormatter", "rst_labels": [ - "initialize-label" + "boot_process" ] }, { - "section_id": "s5", - "heading": "", - "rst_labels": [] + "section_id": "s21", + "heading": "起動プロセス", + "rst_labels": [ + "processing_system" + ] }, { - "section_id": "s6", - "heading": "要求", + "section_id": "s22", + "heading": "処理方式", + "rst_labels": [ + "execution_id" + ] + }, + { + "section_id": "s23", + "heading": "実行時ID", "rst_labels": [] }, { - "section_id": "s7", - "heading": "", + "section_id": "s24", + "heading": "BasicLogFormatterのフォーマット指定", "rst_labels": [] }, { - "section_id": "s8", - "heading": "構成", + "section_id": "s25", + "heading": "BasicLogFormatterの出力例", "rst_labels": [] }, { - "section_id": "s9", - "heading": "インタフェース定義", + "section_id": "s26", + "heading": "ログに出力するログレベルを表す文言の変更方法", "rst_labels": [] }, { - "section_id": "s10", - "heading": "クラス定義", + "section_id": "s27", + "heading": "ログライタのカスタマイズ方法", "rst_labels": [] }, { - "section_id": "s11", - "heading": "", + "section_id": "s28", + "heading": "ログフォーマッタのカスタマイズ方法", "rst_labels": [] }, { - "section_id": "s12", - "heading": "リポジトリの設定方法と使用方法", + "section_id": "s29", + "heading": "ログ出力項目の変更方法", "rst_labels": [] }, { - "section_id": "s13", + "section_id": "s30", "heading": "", "rst_labels": [] }, { - "section_id": "s14", - "heading": "コンポーネント初期化機能", + "section_id": "s31", + "heading": "プロパティファイルの記述ルール", "rst_labels": [] }, { - "section_id": "s15", + "section_id": "s32", "heading": "", "rst_labels": [] }, { - "section_id": "s16", - "heading": "ファクトリインジェクション", - "rst_labels": [] + "section_id": "s33", + "heading": "各種ログの出力", + "rst_labels": [ + "fw_log_policy" + ] }, { - "section_id": "s17", + "section_id": "s34", "heading": "", "rst_labels": [] }, { - "section_id": "s18", - "heading": "設定の上書き", + "section_id": "s35", + "heading": "フレームワークのログ出力方針", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/05_StaticDataCache.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", "format": "rst", - "filename": "05_StaticDataCache.rst", + "filename": "01_Log.rst", "type": "component", "category": "libraries", - "id": "libraries-05_StaticDataCache--s1", - "base_name": "libraries-05_StaticDataCache", - "output_path": "component/libraries/libraries-05_StaticDataCache--s1.json", - "assets_dir": "component/libraries/assets/libraries-05_StaticDataCache--s1/", + "id": "libraries-01_Log--s17", + "base_name": "libraries-01_Log", + "output_path": "component/libraries/libraries-01_Log--s17.json", + "assets_dir": "component/libraries/assets/libraries-01_Log--s17/", "section_range": { - "start_line": 0, - "end_line": 383, + "start_line": 707, + "end_line": 1095, "sections": [ - "", - "概要", - "", - "特徴", - "", - "要求", - "", - "構成", - "インタフェース定義", - "クラス定義", - "", - "キャッシュした静的データの取得", - "キャッシュされるデータを保持するクラス(ExampleData)", - "キャッシュしたデータを使用するクラス", - "", - "キャッシュにデータをロードする方法", - "", - "オンデマンドロードの使用方法", - "ExampleDataをロードするクラス", - "設定ファイル", - "" + "SynchronousFileLogWriter", + "ログライタにおけるレベルに応じた出力制御", + "StandardOutputLogWriter", + "BasicLogFormatter", + "起動プロセス", + "処理方式", + "実行時ID", + "BasicLogFormatterのフォーマット指定", + "BasicLogFormatterの出力例" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15", - "s16", "s17", "s18", "s19", "s20", - "s21" + "s21", + "s22", + "s23", + "s24", + "s25" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-05_StaticDataCache", - "group_line_count": 383 + "part": 3, + "total_parts": 4, + "original_id": "libraries-01_Log", + "group_line_count": 388 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "logging" + ] }, { "section_id": "s2", @@ -20862,148 +20115,206 @@ }, { "section_id": "s8", - "heading": "構成", + "heading": "ログ出力要求受付処理", "rst_labels": [] }, { "section_id": "s9", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "クラス定義", + "heading": "各クラスの責務", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s12", - "heading": "キャッシュした静的データの取得", + "heading": "クラス定義", "rst_labels": [] }, { "section_id": "s13", - "heading": "キャッシュされるデータを保持するクラス(ExampleData)", + "heading": "列挙型", "rst_labels": [] }, { "section_id": "s14", - "heading": "キャッシュしたデータを使用するクラス", + "heading": "ロガー設定", "rst_labels": [] }, { "section_id": "s15", - "heading": "", + "heading": "ロガーのインスタンス構造", "rst_labels": [] }, { "section_id": "s16", - "heading": "キャッシュにデータをロードする方法", + "heading": "FileLogWriter", "rst_labels": [] }, { "section_id": "s17", - "heading": "", + "heading": "SynchronousFileLogWriter", "rst_labels": [] }, { "section_id": "s18", - "heading": "オンデマンドロードの使用方法", + "heading": "ログライタにおけるレベルに応じた出力制御", "rst_labels": [] }, { "section_id": "s19", - "heading": "ExampleDataをロードするクラス", + "heading": "StandardOutputLogWriter", "rst_labels": [] }, { "section_id": "s20", - "heading": "設定ファイル", - "rst_labels": [] + "heading": "BasicLogFormatter", + "rst_labels": [ + "boot_process" + ] }, { "section_id": "s21", - "heading": "", - "rst_labels": [] + "heading": "起動プロセス", + "rst_labels": [ + "processing_system" + ] }, { "section_id": "s22", - "heading": "一括ロード", - "rst_labels": [] + "heading": "処理方式", + "rst_labels": [ + "execution_id" + ] }, { "section_id": "s23", - "heading": "ExampleDataをロードするクラス", + "heading": "実行時ID", "rst_labels": [] }, { "section_id": "s24", - "heading": "", + "heading": "BasicLogFormatterのフォーマット指定", "rst_labels": [] }, { "section_id": "s25", - "heading": "設定内容詳細", + "heading": "BasicLogFormatterの出力例", "rst_labels": [] }, { "section_id": "s26", - "heading": "", + "heading": "ログに出力するログレベルを表す文言の変更方法", "rst_labels": [] }, { "section_id": "s27", - "heading": "静的データの再読み込み", + "heading": "ログライタのカスタマイズ方法", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "ログフォーマッタのカスタマイズ方法", + "rst_labels": [] + }, + { + "section_id": "s29", + "heading": "ログ出力項目の変更方法", + "rst_labels": [] + }, + { + "section_id": "s30", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s31", + "heading": "プロパティファイルの記述ルール", + "rst_labels": [] + }, + { + "section_id": "s32", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s33", + "heading": "各種ログの出力", + "rst_labels": [ + "fw_log_policy" + ] + }, + { + "section_id": "s34", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s35", + "heading": "フレームワークのログ出力方針", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/05_StaticDataCache.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", "format": "rst", - "filename": "05_StaticDataCache.rst", + "filename": "01_Log.rst", "type": "component", "category": "libraries", - "id": "libraries-05_StaticDataCache--s22", - "base_name": "libraries-05_StaticDataCache", - "output_path": "component/libraries/libraries-05_StaticDataCache--s22.json", - "assets_dir": "component/libraries/assets/libraries-05_StaticDataCache--s22/", + "id": "libraries-01_Log--s26", + "base_name": "libraries-01_Log", + "output_path": "component/libraries/libraries-01_Log--s26.json", + "assets_dir": "component/libraries/assets/libraries-01_Log--s26/", "section_range": { - "start_line": 383, - "end_line": 578, + "start_line": 1095, + "end_line": 1495, "sections": [ - "一括ロード", - "ExampleDataをロードするクラス", + "ログに出力するログレベルを表す文言の変更方法", + "ログライタのカスタマイズ方法", + "ログフォーマッタのカスタマイズ方法", + "ログ出力項目の変更方法", "", - "設定内容詳細", + "プロパティファイルの記述ルール", "", - "静的データの再読み込み" + "各種ログの出力", + "", + "フレームワークのログ出力方針" ], "section_ids": [ - "s22", - "s23", - "s24", - "s25", "s26", - "s27" + "s27", + "s28", + "s29", + "s30", + "s31", + "s32", + "s33", + "s34", + "s35" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-05_StaticDataCache", - "group_line_count": 195 + "part": 4, + "total_parts": 4, + "original_id": "libraries-01_Log", + "group_line_count": 400 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "logging" + ] }, { "section_id": "s2", @@ -21037,239 +20348,185 @@ }, { "section_id": "s8", - "heading": "構成", + "heading": "ログ出力要求受付処理", "rst_labels": [] }, { "section_id": "s9", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "クラス定義", + "heading": "各クラスの責務", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s12", - "heading": "キャッシュした静的データの取得", + "heading": "クラス定義", "rst_labels": [] }, { "section_id": "s13", - "heading": "キャッシュされるデータを保持するクラス(ExampleData)", + "heading": "列挙型", "rst_labels": [] }, { "section_id": "s14", - "heading": "キャッシュしたデータを使用するクラス", + "heading": "ロガー設定", "rst_labels": [] }, { "section_id": "s15", - "heading": "", + "heading": "ロガーのインスタンス構造", "rst_labels": [] }, { "section_id": "s16", - "heading": "キャッシュにデータをロードする方法", + "heading": "FileLogWriter", "rst_labels": [] }, { "section_id": "s17", - "heading": "", + "heading": "SynchronousFileLogWriter", "rst_labels": [] }, { "section_id": "s18", - "heading": "オンデマンドロードの使用方法", + "heading": "ログライタにおけるレベルに応じた出力制御", "rst_labels": [] }, { "section_id": "s19", - "heading": "ExampleDataをロードするクラス", + "heading": "StandardOutputLogWriter", "rst_labels": [] }, { "section_id": "s20", - "heading": "設定ファイル", - "rst_labels": [] + "heading": "BasicLogFormatter", + "rst_labels": [ + "boot_process" + ] }, { "section_id": "s21", - "heading": "", - "rst_labels": [] + "heading": "起動プロセス", + "rst_labels": [ + "processing_system" + ] }, { "section_id": "s22", - "heading": "一括ロード", - "rst_labels": [] + "heading": "処理方式", + "rst_labels": [ + "execution_id" + ] }, { "section_id": "s23", - "heading": "ExampleDataをロードするクラス", + "heading": "実行時ID", "rst_labels": [] }, { "section_id": "s24", - "heading": "", + "heading": "BasicLogFormatterのフォーマット指定", "rst_labels": [] }, { "section_id": "s25", - "heading": "設定内容詳細", + "heading": "BasicLogFormatterの出力例", "rst_labels": [] }, { "section_id": "s26", - "heading": "", + "heading": "ログに出力するログレベルを表す文言の変更方法", "rst_labels": [] }, { "section_id": "s27", - "heading": "静的データの再読み込み", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/06_SystemTimeProvider.rst", - "format": "rst", - "filename": "06_SystemTimeProvider.rst", - "type": "component", - "category": "libraries", - "id": "libraries-06_SystemTimeProvider--s1", - "base_name": "libraries-06_SystemTimeProvider", - "output_path": "component/libraries/libraries-06_SystemTimeProvider--s1.json", - "assets_dir": "component/libraries/assets/libraries-06_SystemTimeProvider--s1/", - "section_range": { - "start_line": 0, - "end_line": 360, - "sections": [ - "クラス図", - "SystemTimeUtilで提供される機能では不足している場合の対応方法", - "クラス図", - "テーブル定義", - "複数の業務日付の設定", - "設定ファイル", - "日付の上書き機能", - "業務日付のメンテナンス", - "BusinessDateUtilで提供される機能では不足している場合の対応方法", - "", - "日付ユーティリティ" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-06_SystemTimeProvider", - "group_line_count": 360 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "クラス図", - "rst_labels": [ - "system-date-time-feature" - ] - }, - { - "section_id": "s2", - "heading": "SystemTimeUtilで提供される機能では不足している場合の対応方法", + "heading": "ログライタのカスタマイズ方法", "rst_labels": [] }, { - "section_id": "s3", - "heading": "クラス図", + "section_id": "s28", + "heading": "ログフォーマッタのカスタマイズ方法", "rst_labels": [] }, { - "section_id": "s4", - "heading": "テーブル定義", - "rst_labels": [ - "date_table" - ] - }, - { - "section_id": "s5", - "heading": "複数の業務日付の設定", + "section_id": "s29", + "heading": "ログ出力項目の変更方法", "rst_labels": [] }, { - "section_id": "s6", - "heading": "設定ファイル", + "section_id": "s30", + "heading": "", "rst_labels": [] }, { - "section_id": "s7", - "heading": "日付の上書き機能", + "section_id": "s31", + "heading": "プロパティファイルの記述ルール", "rst_labels": [] }, { - "section_id": "s8", - "heading": "業務日付のメンテナンス", + "section_id": "s32", + "heading": "", "rst_labels": [] }, { - "section_id": "s9", - "heading": "BusinessDateUtilで提供される機能では不足している場合の対応方法", - "rst_labels": [] + "section_id": "s33", + "heading": "各種ログの出力", + "rst_labels": [ + "fw_log_policy" + ] }, { - "section_id": "s10", + "section_id": "s34", "heading": "", "rst_labels": [] }, { - "section_id": "s11", - "heading": "日付ユーティリティ", + "section_id": "s35", + "heading": "フレームワークのログ出力方針", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/03_TransactionManager.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/07_Message.rst", "format": "rst", - "filename": "03_TransactionManager.rst", + "filename": "07_Message.rst", "type": "component", "category": "libraries", - "id": "libraries-03_TransactionManager--s1", - "base_name": "libraries-03_TransactionManager", - "output_path": "component/libraries/libraries-03_TransactionManager--s1.json", - "assets_dir": "component/libraries/assets/libraries-03_TransactionManager--s1/", + "id": "libraries-07_Message--s1", + "base_name": "libraries-07_Message", + "output_path": "component/libraries/libraries-07_Message--s1.json", + "assets_dir": "component/libraries/assets/libraries-07_Message--s1/", "section_range": { "start_line": 0, - "end_line": 123, + "end_line": 354, "sections": [ "", "概要", "", "特徴", + "メッセージテーブル", + "テーブル定義の例", "", - "要求", + "メッセージの取得", "", - "構造", + "メッセージのフォーマット", "", - "使用例" + "国際化", + "", + "オプションパラメータの国際化", + "", + "例外によるメッセージの通知", + "" ], "section_ids": [ "s1", @@ -21281,15 +20538,22 @@ "s7", "s8", "s9", - "s10" + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16", + "s17" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "libraries-03_TransactionManager", - "group_line_count": 123 + "total_parts": 2, + "original_id": "libraries-07_Message", + "group_line_count": 354 }, "section_map": [ { @@ -21314,12 +20578,12 @@ }, { "section_id": "s5", - "heading": "", + "heading": "メッセージテーブル", "rst_labels": [] }, { "section_id": "s6", - "heading": "要求", + "heading": "テーブル定義の例", "rst_labels": [] }, { @@ -21329,7 +20593,7 @@ }, { "section_id": "s8", - "heading": "構造", + "heading": "メッセージの取得", "rst_labels": [] }, { @@ -21339,288 +20603,104 @@ }, { "section_id": "s10", - "heading": "使用例", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", - "format": "rst", - "filename": "01_Log.rst", - "type": "component", - "category": "libraries", - "id": "libraries-01_Log--s1", - "base_name": "libraries-01_Log", - "output_path": "component/libraries/libraries-01_Log--s1.json", - "assets_dir": "component/libraries/assets/libraries-01_Log--s1/", - "section_range": { - "start_line": 0, - "end_line": 398, - "sections": [ - "", - "概要", - "", - "特徴", - "", - "要求", - "", - "ログ出力要求受付処理", - "", - "各クラスの責務", - "インタフェース定義", - "クラス定義" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 4, - "original_id": "libraries-01_Log", - "group_line_count": 398 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [ - "logging" - ] - }, - { - "section_id": "s2", - "heading": "概要", + "heading": "メッセージのフォーマット", "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s11", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "特徴", + "section_id": "s12", + "heading": "国際化", "rst_labels": [] }, { - "section_id": "s5", + "section_id": "s13", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "要求", + "section_id": "s14", + "heading": "オプションパラメータの国際化", "rst_labels": [] }, { - "section_id": "s7", + "section_id": "s15", "heading": "", "rst_labels": [] }, { - "section_id": "s8", - "heading": "ログ出力要求受付処理", + "section_id": "s16", + "heading": "例外によるメッセージの通知", "rst_labels": [] }, { - "section_id": "s9", + "section_id": "s17", "heading": "", "rst_labels": [] }, { - "section_id": "s10", - "heading": "各クラスの責務", + "section_id": "s18", + "heading": "設定の記述", "rst_labels": [] }, { - "section_id": "s11", - "heading": "インタフェース定義", + "section_id": "s19", + "heading": "nablarch.core.message.StringResourceHolder の設定", "rst_labels": [] }, { - "section_id": "s12", - "heading": "クラス定義", + "section_id": "s20", + "heading": "nablarch.core.cache.BasicStaticDataCache クラスの設定", "rst_labels": [] }, { - "section_id": "s13", - "heading": "列挙型", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "ロガー設定", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "ロガーのインスタンス構造", - "rst_labels": [] - }, - { - "section_id": "s16", - "heading": "FileLogWriter", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "SynchronousFileLogWriter", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "ログライタにおけるレベルに応じた出力制御", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "StandardOutputLogWriter", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "BasicLogFormatter", - "rst_labels": [ - "boot_process" - ] - }, - { - "section_id": "s21", - "heading": "起動プロセス", - "rst_labels": [ - "processing_system" - ] - }, - { - "section_id": "s22", - "heading": "処理方式", - "rst_labels": [ - "execution_id" - ] - }, - { - "section_id": "s23", - "heading": "実行時ID", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "BasicLogFormatterのフォーマット指定", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "BasicLogFormatterの出力例", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "ログに出力するログレベルを表す文言の変更方法", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "ログライタのカスタマイズ方法", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "ログフォーマッタのカスタマイズ方法", - "rst_labels": [] - }, - { - "section_id": "s29", - "heading": "ログ出力項目の変更方法", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "プロパティファイルの記述ルール", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s33", - "heading": "各種ログの出力", - "rst_labels": [ - "fw_log_policy" - ] - }, - { - "section_id": "s34", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s35", - "heading": "フレームワークのログ出力方針", + "section_id": "s21", + "heading": "nablarch.core.message.BasicStringResourceLoader クラスの設定", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/07_Message.rst", "format": "rst", - "filename": "01_Log.rst", + "filename": "07_Message.rst", "type": "component", "category": "libraries", - "id": "libraries-01_Log--s13", - "base_name": "libraries-01_Log", - "output_path": "component/libraries/libraries-01_Log--s13.json", - "assets_dir": "component/libraries/assets/libraries-01_Log--s13/", + "id": "libraries-07_Message--s18", + "base_name": "libraries-07_Message", + "output_path": "component/libraries/libraries-07_Message--s18.json", + "assets_dir": "component/libraries/assets/libraries-07_Message--s18/", "section_range": { - "start_line": 398, - "end_line": 707, + "start_line": 354, + "end_line": 434, "sections": [ - "列挙型", - "ロガー設定", - "ロガーのインスタンス構造", - "FileLogWriter" + "設定の記述", + "nablarch.core.message.StringResourceHolder の設定", + "nablarch.core.cache.BasicStaticDataCache クラスの設定", + "nablarch.core.message.BasicStringResourceLoader クラスの設定" ], "section_ids": [ - "s13", - "s14", - "s15", - "s16" + "s18", + "s19", + "s20", + "s21" ] }, "split_info": { "is_split": true, "part": 2, - "total_parts": 4, - "original_id": "libraries-01_Log", - "group_line_count": 309 + "total_parts": 2, + "original_id": "libraries-07_Message", + "group_line_count": 80 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "logging" - ] + "rst_labels": [] }, { "section_id": "s2", @@ -21639,12 +20719,12 @@ }, { "section_id": "s5", - "heading": "", + "heading": "メッセージテーブル", "rst_labels": [] }, { "section_id": "s6", - "heading": "要求", + "heading": "テーブル定義の例", "rst_labels": [] }, { @@ -21654,7 +20734,7 @@ }, { "section_id": "s8", - "heading": "ログ出力要求受付処理", + "heading": "メッセージの取得", "rst_labels": [] }, { @@ -21664,639 +20744,659 @@ }, { "section_id": "s10", - "heading": "各クラスの責務", + "heading": "メッセージのフォーマット", "rst_labels": [] }, { "section_id": "s11", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "クラス定義", + "heading": "国際化", "rst_labels": [] }, { "section_id": "s13", - "heading": "列挙型", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "ロガー設定", + "heading": "オプションパラメータの国際化", "rst_labels": [] }, { "section_id": "s15", - "heading": "ロガーのインスタンス構造", + "heading": "", "rst_labels": [] }, { "section_id": "s16", - "heading": "FileLogWriter", + "heading": "例外によるメッセージの通知", "rst_labels": [] }, { "section_id": "s17", - "heading": "SynchronousFileLogWriter", + "heading": "", "rst_labels": [] }, { "section_id": "s18", - "heading": "ログライタにおけるレベルに応じた出力制御", + "heading": "設定の記述", "rst_labels": [] }, { "section_id": "s19", - "heading": "StandardOutputLogWriter", + "heading": "nablarch.core.message.StringResourceHolder の設定", "rst_labels": [] }, { "section_id": "s20", - "heading": "BasicLogFormatter", - "rst_labels": [ - "boot_process" - ] + "heading": "nablarch.core.cache.BasicStaticDataCache クラスの設定", + "rst_labels": [] }, { "section_id": "s21", - "heading": "起動プロセス", - "rst_labels": [ - "processing_system" - ] - }, + "heading": "nablarch.core.message.BasicStringResourceLoader クラスの設定", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08_Validation.rst", + "format": "rst", + "filename": "08_Validation.rst", + "type": "component", + "category": "libraries", + "id": "libraries-08_Validation--s1", + "base_name": "libraries-08_Validation", + "output_path": "component/libraries/libraries-08_Validation--s1.json", + "assets_dir": "component/libraries/assets/libraries-08_Validation--s1/", + "section_range": { + "start_line": 0, + "end_line": 136, + "sections": [ + "", + "概要", + "", + "特徴", + "", + "要求" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-08_Validation", + "group_line_count": 136 + }, + "section_map": [ { - "section_id": "s22", - "heading": "処理方式", + "section_id": "s1", + "heading": "", "rst_labels": [ - "execution_id" + "validation-and-form", + "validation-abstract" ] }, { - "section_id": "s23", - "heading": "実行時ID", + "section_id": "s2", + "heading": "概要", "rst_labels": [] }, { - "section_id": "s24", - "heading": "BasicLogFormatterのフォーマット指定", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s25", - "heading": "BasicLogFormatterの出力例", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "ログに出力するログレベルを表す文言の変更方法", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "ログライタのカスタマイズ方法", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "ログフォーマッタのカスタマイズ方法", - "rst_labels": [] - }, - { - "section_id": "s29", - "heading": "ログ出力項目の変更方法", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "プロパティファイルの記述ルール", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "", + "section_id": "s4", + "heading": "特徴", "rst_labels": [] }, { - "section_id": "s33", - "heading": "各種ログの出力", - "rst_labels": [ - "fw_log_policy" - ] - }, - { - "section_id": "s34", + "section_id": "s5", "heading": "", "rst_labels": [] }, { - "section_id": "s35", - "heading": "フレームワークのログ出力方針", + "section_id": "s6", + "heading": "要求", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/02_SqlLog.rst", "format": "rst", - "filename": "01_Log.rst", + "filename": "02_SqlLog.rst", "type": "component", "category": "libraries", - "id": "libraries-01_Log--s17", - "base_name": "libraries-01_Log", - "output_path": "component/libraries/libraries-01_Log--s17.json", - "assets_dir": "component/libraries/assets/libraries-01_Log--s17/", + "id": "libraries-02_SqlLog--s1", + "base_name": "libraries-02_SqlLog", + "output_path": "component/libraries/libraries-02_SqlLog--s1.json", + "assets_dir": "component/libraries/assets/libraries-02_SqlLog--s1/", "section_range": { - "start_line": 707, - "end_line": 1095, + "start_line": 0, + "end_line": 387, "sections": [ - "SynchronousFileLogWriter", - "ログライタにおけるレベルに応じた出力制御", - "StandardOutputLogWriter", - "BasicLogFormatter", - "起動プロセス", - "処理方式", - "実行時ID", - "BasicLogFormatterのフォーマット指定", - "BasicLogFormatterの出力例" + "", + "SQLログの出力", + "SqlPStatement#retrieveメソッドの検索開始時", + "SqlPStatement#retrieveメソッドの検索終了時", + "SqlPStatement#executeメソッドの実行開始時", + "SqlPStatement#executeメソッドの実行終了時", + "SqlPStatement#executeQueryメソッドの検索開始時", + "SqlPStatement#executeQueryメソッドの検索終了時", + "SqlPStatement#executeUpdateメソッドの更新開始時", + "SqlPStatement#executeUpdateメソッドの更新終了時", + "SqlPStatement#executeBatchメソッドの更新開始時", + "SqlPStatement#executeBatchメソッドの更新終了時", + "SqlPStatement#retrieveメソッドの検索開始時", + "SqlPStatement#retrieveメソッドの検索終了時", + "SqlPStatement#executeメソッドの実行開始時", + "SqlPStatement#executeメソッドの実行終了時" ], "section_ids": [ - "s17", - "s18", - "s19", - "s20", - "s21", - "s22", - "s23", - "s24", - "s25" + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16" ] }, "split_info": { "is_split": true, - "part": 3, - "total_parts": 4, - "original_id": "libraries-01_Log", - "group_line_count": 388 + "part": 1, + "total_parts": 2, + "original_id": "libraries-02_SqlLog", + "group_line_count": 387 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "logging" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "SQLログの出力", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "SqlPStatement#retrieveメソッドの検索開始時", "rst_labels": [] }, { "section_id": "s4", - "heading": "特徴", + "heading": "SqlPStatement#retrieveメソッドの検索終了時", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "SqlPStatement#executeメソッドの実行開始時", "rst_labels": [] }, { "section_id": "s6", - "heading": "要求", + "heading": "SqlPStatement#executeメソッドの実行終了時", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "SqlPStatement#executeQueryメソッドの検索開始時", "rst_labels": [] }, { "section_id": "s8", - "heading": "ログ出力要求受付処理", + "heading": "SqlPStatement#executeQueryメソッドの検索終了時", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", "rst_labels": [] }, { "section_id": "s10", - "heading": "各クラスの責務", + "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", "rst_labels": [] }, { "section_id": "s11", - "heading": "インタフェース定義", + "heading": "SqlPStatement#executeBatchメソッドの更新開始時", "rst_labels": [] }, { "section_id": "s12", - "heading": "クラス定義", + "heading": "SqlPStatement#executeBatchメソッドの更新終了時", "rst_labels": [] }, { "section_id": "s13", - "heading": "列挙型", + "heading": "SqlPStatement#retrieveメソッドの検索開始時", "rst_labels": [] }, { "section_id": "s14", - "heading": "ロガー設定", + "heading": "SqlPStatement#retrieveメソッドの検索終了時", "rst_labels": [] }, { "section_id": "s15", - "heading": "ロガーのインスタンス構造", + "heading": "SqlPStatement#executeメソッドの実行開始時", "rst_labels": [] }, { "section_id": "s16", - "heading": "FileLogWriter", + "heading": "SqlPStatement#executeメソッドの実行終了時", "rst_labels": [] }, { "section_id": "s17", - "heading": "SynchronousFileLogWriter", + "heading": "SqlPStatement#executeQueryメソッドの検索開始時", "rst_labels": [] }, { "section_id": "s18", - "heading": "ログライタにおけるレベルに応じた出力制御", + "heading": "SqlPStatement#executeQueryメソッドの検索終了時", "rst_labels": [] }, { "section_id": "s19", - "heading": "StandardOutputLogWriter", + "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", "rst_labels": [] }, { "section_id": "s20", - "heading": "BasicLogFormatter", - "rst_labels": [ - "boot_process" - ] + "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", + "rst_labels": [] }, { "section_id": "s21", - "heading": "起動プロセス", - "rst_labels": [ - "processing_system" - ] + "heading": "SqlPStatement#executeBatchメソッドの更新開始時", + "rst_labels": [] }, { "section_id": "s22", - "heading": "処理方式", - "rst_labels": [ - "execution_id" - ] - }, - { - "section_id": "s23", - "heading": "実行時ID", + "heading": "SqlPStatement#executeBatchメソッドの更新終了時", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/02_SqlLog.rst", + "format": "rst", + "filename": "02_SqlLog.rst", + "type": "component", + "category": "libraries", + "id": "libraries-02_SqlLog--s17", + "base_name": "libraries-02_SqlLog", + "output_path": "component/libraries/libraries-02_SqlLog--s17.json", + "assets_dir": "component/libraries/assets/libraries-02_SqlLog--s17/", + "section_range": { + "start_line": 387, + "end_line": 558, + "sections": [ + "SqlPStatement#executeQueryメソッドの検索開始時", + "SqlPStatement#executeQueryメソッドの検索終了時", + "SqlPStatement#executeUpdateメソッドの更新開始時", + "SqlPStatement#executeUpdateメソッドの更新終了時", + "SqlPStatement#executeBatchメソッドの更新開始時", + "SqlPStatement#executeBatchメソッドの更新終了時" + ], + "section_ids": [ + "s17", + "s18", + "s19", + "s20", + "s21", + "s22" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "libraries-02_SqlLog", + "group_line_count": 171 + }, + "section_map": [ { - "section_id": "s24", - "heading": "BasicLogFormatterのフォーマット指定", + "section_id": "s1", + "heading": "", "rst_labels": [] }, { - "section_id": "s25", - "heading": "BasicLogFormatterの出力例", + "section_id": "s2", + "heading": "SQLログの出力", "rst_labels": [] }, { - "section_id": "s26", - "heading": "ログに出力するログレベルを表す文言の変更方法", + "section_id": "s3", + "heading": "SqlPStatement#retrieveメソッドの検索開始時", "rst_labels": [] }, { - "section_id": "s27", - "heading": "ログライタのカスタマイズ方法", + "section_id": "s4", + "heading": "SqlPStatement#retrieveメソッドの検索終了時", "rst_labels": [] }, { - "section_id": "s28", - "heading": "ログフォーマッタのカスタマイズ方法", + "section_id": "s5", + "heading": "SqlPStatement#executeメソッドの実行開始時", "rst_labels": [] }, { - "section_id": "s29", - "heading": "ログ出力項目の変更方法", + "section_id": "s6", + "heading": "SqlPStatement#executeメソッドの実行終了時", "rst_labels": [] }, { - "section_id": "s30", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "プロパティファイルの記述ルール", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s33", - "heading": "各種ログの出力", - "rst_labels": [ - "fw_log_policy" - ] - }, - { - "section_id": "s34", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s35", - "heading": "フレームワークのログ出力方針", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01_Log.rst", - "format": "rst", - "filename": "01_Log.rst", - "type": "component", - "category": "libraries", - "id": "libraries-01_Log--s26", - "base_name": "libraries-01_Log", - "output_path": "component/libraries/libraries-01_Log--s26.json", - "assets_dir": "component/libraries/assets/libraries-01_Log--s26/", - "section_range": { - "start_line": 1095, - "end_line": 1495, - "sections": [ - "ログに出力するログレベルを表す文言の変更方法", - "ログライタのカスタマイズ方法", - "ログフォーマッタのカスタマイズ方法", - "ログ出力項目の変更方法", - "", - "プロパティファイルの記述ルール", - "", - "各種ログの出力", - "", - "フレームワークのログ出力方針" - ], - "section_ids": [ - "s26", - "s27", - "s28", - "s29", - "s30", - "s31", - "s32", - "s33", - "s34", - "s35" - ] - }, - "split_info": { - "is_split": true, - "part": 4, - "total_parts": 4, - "original_id": "libraries-01_Log", - "group_line_count": 400 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [ - "logging" - ] - }, - { - "section_id": "s2", - "heading": "概要", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "特徴", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "要求", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", + "section_id": "s7", + "heading": "SqlPStatement#executeQueryメソッドの検索開始時", "rst_labels": [] }, { "section_id": "s8", - "heading": "ログ出力要求受付処理", + "heading": "SqlPStatement#executeQueryメソッドの検索終了時", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", "rst_labels": [] }, { "section_id": "s10", - "heading": "各クラスの責務", + "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", "rst_labels": [] }, { "section_id": "s11", - "heading": "インタフェース定義", + "heading": "SqlPStatement#executeBatchメソッドの更新開始時", "rst_labels": [] }, { "section_id": "s12", - "heading": "クラス定義", + "heading": "SqlPStatement#executeBatchメソッドの更新終了時", "rst_labels": [] }, { "section_id": "s13", - "heading": "列挙型", + "heading": "SqlPStatement#retrieveメソッドの検索開始時", "rst_labels": [] }, { "section_id": "s14", - "heading": "ロガー設定", + "heading": "SqlPStatement#retrieveメソッドの検索終了時", "rst_labels": [] }, { "section_id": "s15", - "heading": "ロガーのインスタンス構造", + "heading": "SqlPStatement#executeメソッドの実行開始時", "rst_labels": [] }, { "section_id": "s16", - "heading": "FileLogWriter", + "heading": "SqlPStatement#executeメソッドの実行終了時", "rst_labels": [] }, { "section_id": "s17", - "heading": "SynchronousFileLogWriter", + "heading": "SqlPStatement#executeQueryメソッドの検索開始時", "rst_labels": [] }, { "section_id": "s18", - "heading": "ログライタにおけるレベルに応じた出力制御", + "heading": "SqlPStatement#executeQueryメソッドの検索終了時", "rst_labels": [] }, { "section_id": "s19", - "heading": "StandardOutputLogWriter", + "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", "rst_labels": [] }, { "section_id": "s20", - "heading": "BasicLogFormatter", - "rst_labels": [ - "boot_process" - ] + "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", + "rst_labels": [] }, { "section_id": "s21", - "heading": "起動プロセス", - "rst_labels": [ - "processing_system" - ] + "heading": "SqlPStatement#executeBatchメソッドの更新開始時", + "rst_labels": [] }, { "section_id": "s22", - "heading": "処理方式", - "rst_labels": [ - "execution_id" - ] - }, + "heading": "SqlPStatement#executeBatchメソッドの更新終了時", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/03_PerformanceLog.rst", + "format": "rst", + "filename": "03_PerformanceLog.rst", + "type": "component", + "category": "libraries", + "id": "libraries-03_PerformanceLog--s1", + "base_name": "libraries-03_PerformanceLog", + "output_path": "component/libraries/libraries-03_PerformanceLog--s1.json", + "assets_dir": "component/libraries/assets/libraries-03_PerformanceLog--s1/", + "section_range": { + "start_line": 0, + "end_line": 197, + "sections": [ + "", + "パフォーマンスログの出力" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-03_PerformanceLog", + "group_line_count": 197 + }, + "section_map": [ { - "section_id": "s23", - "heading": "実行時ID", + "section_id": "s1", + "heading": "", "rst_labels": [] }, { - "section_id": "s24", - "heading": "BasicLogFormatterのフォーマット指定", + "section_id": "s2", + "heading": "パフォーマンスログの出力", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/04_HttpAccessLog.rst", + "format": "rst", + "filename": "04_HttpAccessLog.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_HttpAccessLog--s1", + "base_name": "libraries-04_HttpAccessLog", + "output_path": "component/libraries/libraries-04_HttpAccessLog--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_HttpAccessLog--s1/", + "section_range": { + "start_line": 0, + "end_line": 336, + "sections": [ + "", + "HTTPアクセスログの出力", + "リクエスト処理開始時のログ出力に使用するフォーマット", + "hiddenパラメータ復号後のログ出力に使用するフォーマット", + "ディスパッチ先クラス決定後のログ出力に使用するフォーマット" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "libraries-04_HttpAccessLog", + "group_line_count": 336 + }, + "section_map": [ { - "section_id": "s25", - "heading": "BasicLogFormatterの出力例", + "section_id": "s1", + "heading": "", "rst_labels": [] }, { - "section_id": "s26", - "heading": "ログに出力するログレベルを表す文言の変更方法", + "section_id": "s2", + "heading": "HTTPアクセスログの出力", "rst_labels": [] }, { - "section_id": "s27", - "heading": "ログライタのカスタマイズ方法", + "section_id": "s3", + "heading": "リクエスト処理開始時のログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s28", - "heading": "ログフォーマッタのカスタマイズ方法", + "section_id": "s4", + "heading": "hiddenパラメータ復号後のログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s29", - "heading": "ログ出力項目の変更方法", + "section_id": "s5", + "heading": "ディスパッチ先クラス決定後のログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s30", + "section_id": "s6", + "heading": "リクエスト処理終了時のログ出力に使用するフォーマット", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/04_HttpAccessLog.rst", + "format": "rst", + "filename": "04_HttpAccessLog.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_HttpAccessLog--s6", + "base_name": "libraries-04_HttpAccessLog", + "output_path": "component/libraries/libraries-04_HttpAccessLog--s6.json", + "assets_dir": "component/libraries/assets/libraries-04_HttpAccessLog--s6/", + "section_range": { + "start_line": 336, + "end_line": 441, + "sections": [ + "リクエスト処理終了時のログ出力に使用するフォーマット" + ], + "section_ids": [ + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "libraries-04_HttpAccessLog", + "group_line_count": 105 + }, + "section_map": [ + { + "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s31", - "heading": "プロパティファイルの記述ルール", + "section_id": "s2", + "heading": "HTTPアクセスログの出力", "rst_labels": [] }, { - "section_id": "s32", - "heading": "", + "section_id": "s3", + "heading": "リクエスト処理開始時のログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s33", - "heading": "各種ログの出力", - "rst_labels": [ - "fw_log_policy" - ] + "section_id": "s4", + "heading": "hiddenパラメータ復号後のログ出力に使用するフォーマット", + "rst_labels": [] }, { - "section_id": "s34", - "heading": "", + "section_id": "s5", + "heading": "ディスパッチ先クラス決定後のログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s35", - "heading": "フレームワークのログ出力方針", + "section_id": "s6", + "heading": "リクエスト処理終了時のログ出力に使用するフォーマット", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/07_Message.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_04_Repository_override.rst", "format": "rst", - "filename": "07_Message.rst", + "filename": "02_04_Repository_override.rst", "type": "component", "category": "libraries", - "id": "libraries-07_Message--s1", - "base_name": "libraries-07_Message", - "output_path": "component/libraries/libraries-07_Message--s1.json", - "assets_dir": "component/libraries/assets/libraries-07_Message--s1/", + "id": "libraries-02_04_Repository_override--s1", + "base_name": "libraries-02_04_Repository_override", + "output_path": "component/libraries/libraries-02_04_Repository_override--s1.json", + "assets_dir": "component/libraries/assets/libraries-02_04_Repository_override--s1/", "section_range": { "start_line": 0, - "end_line": 354, + "end_line": 397, "sections": [ - "", - "概要", - "", - "特徴", - "メッセージテーブル", - "テーブル定義の例", - "", - "メッセージの取得", - "", - "メッセージのフォーマット", - "", - "国際化", - "", - "オプションパラメータの国際化", - "", - "例外によるメッセージの通知", - "" + "環境設定ファイル(test1.conf)", + "環境設定ファイル(test2.conf)", + "コンポーネント設定ファイルを読み込む", + "設定値の取得例", + "使用するクラス", + "コンポーネント設定ファイルの例", + "設定したコンポーネントの取得例", + "読み込み元の設定ファイル", + "テスト用の設定ファイル(/opt/testconfig/testconfig.xml)", + "import-example1.xml", + "import-example2.xml", + "onefile-example.xml(import-example1.xml、import-example2.xmlと等価)", + "設定をロードする際の実装例(通常フレームワークのブートストラップ処理で行う)", + "環境設定ファイル(hello-system-property.config)", + "コンポーネント設定ファイル(hello-system-property.xml)", + "設定値のロードの実装例" ], "section_ids": [ "s1", @@ -22314,286 +21414,242 @@ "s13", "s14", "s15", - "s16", - "s17" + "s16" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 2, - "original_id": "libraries-07_Message", - "group_line_count": 354 + "original_id": "libraries-02_04_Repository_override", + "group_line_count": 397 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "環境設定ファイル(test1.conf)", "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "環境設定ファイル(test2.conf)", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "コンポーネント設定ファイルを読み込む", "rst_labels": [] }, { "section_id": "s4", - "heading": "特徴", + "heading": "設定値の取得例", "rst_labels": [] }, { "section_id": "s5", - "heading": "メッセージテーブル", + "heading": "使用するクラス", "rst_labels": [] }, { "section_id": "s6", - "heading": "テーブル定義の例", + "heading": "コンポーネント設定ファイルの例", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "設定したコンポーネントの取得例", "rst_labels": [] }, { "section_id": "s8", - "heading": "メッセージの取得", + "heading": "読み込み元の設定ファイル", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "テスト用の設定ファイル(/opt/testconfig/testconfig.xml)", "rst_labels": [] }, { "section_id": "s10", - "heading": "メッセージのフォーマット", + "heading": "import-example1.xml", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "import-example2.xml", "rst_labels": [] }, { "section_id": "s12", - "heading": "国際化", + "heading": "onefile-example.xml(import-example1.xml、import-example2.xmlと等価)", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "設定をロードする際の実装例(通常フレームワークのブートストラップ処理で行う)", "rst_labels": [] }, { "section_id": "s14", - "heading": "オプションパラメータの国際化", + "heading": "環境設定ファイル(hello-system-property.config)", "rst_labels": [] }, { "section_id": "s15", - "heading": "", + "heading": "コンポーネント設定ファイル(hello-system-property.xml)", "rst_labels": [] }, { "section_id": "s16", - "heading": "例外によるメッセージの通知", + "heading": "設定値のロードの実装例", "rst_labels": [] }, { "section_id": "s17", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "設定の記述", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "nablarch.core.message.StringResourceHolder の設定", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "nablarch.core.cache.BasicStaticDataCache クラスの設定", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "nablarch.core.message.BasicStringResourceLoader クラスの設定", + "heading": "設定したコンポーネントを取得する実装例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/07_Message.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_04_Repository_override.rst", "format": "rst", - "filename": "07_Message.rst", + "filename": "02_04_Repository_override.rst", "type": "component", "category": "libraries", - "id": "libraries-07_Message--s18", - "base_name": "libraries-07_Message", - "output_path": "component/libraries/libraries-07_Message--s18.json", - "assets_dir": "component/libraries/assets/libraries-07_Message--s18/", + "id": "libraries-02_04_Repository_override--s17", + "base_name": "libraries-02_04_Repository_override", + "output_path": "component/libraries/libraries-02_04_Repository_override--s17.json", + "assets_dir": "component/libraries/assets/libraries-02_04_Repository_override--s17/", "section_range": { - "start_line": 354, - "end_line": 434, + "start_line": 397, + "end_line": 412, "sections": [ - "設定の記述", - "nablarch.core.message.StringResourceHolder の設定", - "nablarch.core.cache.BasicStaticDataCache クラスの設定", - "nablarch.core.message.BasicStringResourceLoader クラスの設定" + "設定したコンポーネントを取得する実装例" ], "section_ids": [ - "s18", - "s19", - "s20", - "s21" + "s17" ] }, "split_info": { "is_split": true, "part": 2, "total_parts": 2, - "original_id": "libraries-07_Message", - "group_line_count": 80 + "original_id": "libraries-02_04_Repository_override", + "group_line_count": 15 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "環境設定ファイル(test1.conf)", "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "環境設定ファイル(test2.conf)", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "コンポーネント設定ファイルを読み込む", "rst_labels": [] }, { "section_id": "s4", - "heading": "特徴", + "heading": "設定値の取得例", "rst_labels": [] }, { "section_id": "s5", - "heading": "メッセージテーブル", + "heading": "使用するクラス", "rst_labels": [] }, { "section_id": "s6", - "heading": "テーブル定義の例", + "heading": "コンポーネント設定ファイルの例", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "設定したコンポーネントの取得例", "rst_labels": [] }, { "section_id": "s8", - "heading": "メッセージの取得", + "heading": "読み込み元の設定ファイル", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "テスト用の設定ファイル(/opt/testconfig/testconfig.xml)", "rst_labels": [] }, { "section_id": "s10", - "heading": "メッセージのフォーマット", + "heading": "import-example1.xml", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "import-example2.xml", "rst_labels": [] }, { "section_id": "s12", - "heading": "国際化", + "heading": "onefile-example.xml(import-example1.xml、import-example2.xmlと等価)", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "設定をロードする際の実装例(通常フレームワークのブートストラップ処理で行う)", "rst_labels": [] }, { "section_id": "s14", - "heading": "オプションパラメータの国際化", + "heading": "環境設定ファイル(hello-system-property.config)", "rst_labels": [] }, { "section_id": "s15", - "heading": "", + "heading": "コンポーネント設定ファイル(hello-system-property.xml)", "rst_labels": [] }, { "section_id": "s16", - "heading": "例外によるメッセージの通知", + "heading": "設定値のロードの実装例", "rst_labels": [] }, { "section_id": "s17", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "設定の記述", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "nablarch.core.message.StringResourceHolder の設定", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "nablarch.core.cache.BasicStaticDataCache クラスの設定", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "nablarch.core.message.BasicStringResourceLoader クラスの設定", + "heading": "設定したコンポーネントを取得する実装例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08_Validation.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", "format": "rst", - "filename": "08_Validation.rst", + "filename": "02_01_Repository_config.rst", "type": "component", "category": "libraries", - "id": "libraries-08_Validation--s1", - "base_name": "libraries-08_Validation", - "output_path": "component/libraries/libraries-08_Validation--s1.json", - "assets_dir": "component/libraries/assets/libraries-08_Validation--s1/", + "id": "libraries-02_01_Repository_config--s1", + "base_name": "libraries-02_01_Repository_config", + "output_path": "component/libraries/libraries-02_01_Repository_config--s1.json", + "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s1/", "section_range": { "start_line": 0, - "end_line": 136, + "end_line": 294, "sections": [ "", - "概要", + "設定ファイルの種類とフレームワークが行うリポジトリの初期化", "", - "特徴", + "環境設定ファイルからの読み込み", "", - "要求" + "リポジトリに保持するインスタンスの生成(DIコンテナ)", + "", + "DIコンテナを ObjectLoader として使用する", + "" ], "section_ids": [ "s1", @@ -22601,29 +21657,33 @@ "s3", "s4", "s5", - "s6" + "s6", + "s7", + "s8", + "s9" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "libraries-08_Validation", - "group_line_count": 136 + "total_parts": 4, + "original_id": "libraries-02_01_Repository_config", + "group_line_count": 294 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "validation-and-form", - "validation-abstract" + "repository_config" ] }, { "section_id": "s2", - "heading": "概要", - "rst_labels": [] + "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", + "rst_labels": [ + "repository_config_load" + ] }, { "section_id": "s3", @@ -22632,7 +21692,7 @@ }, { "section_id": "s4", - "heading": "特徴", + "heading": "環境設定ファイルからの読み込み", "rst_labels": [] }, { @@ -22642,853 +21702,796 @@ }, { "section_id": "s6", - "heading": "要求", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/05_MessagingLog.rst", - "format": "rst", - "filename": "05_MessagingLog.rst", - "type": "component", - "category": "libraries", - "id": "libraries-05_MessagingLog--s1", - "base_name": "libraries-05_MessagingLog", - "output_path": "component/libraries/libraries-05_MessagingLog--s1.json", - "assets_dir": "component/libraries/assets/libraries-05_MessagingLog--s1/", - "section_range": { - "start_line": 0, - "end_line": 396, - "sections": [ - "", - "メッセージングログの出力", - "MOM送信メッセージのログ出力に使用するフォーマット", - "MOM受信メッセージのログ出力に使用するフォーマット", - "HTTP送信メッセージのログ出力に使用するフォーマット", - "HTTP受信メッセージのログ出力に使用するフォーマット" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-05_MessagingLog", - "group_line_count": 396 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "メッセージングログの出力", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "MOM送信メッセージのログ出力に使用するフォーマット", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "MOM受信メッセージのログ出力に使用するフォーマット", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "HTTP送信メッセージのログ出力に使用するフォーマット", + "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", "rst_labels": [] }, { - "section_id": "s6", - "heading": "HTTP受信メッセージのログ出力に使用するフォーマット", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/02_SqlLog.rst", - "format": "rst", - "filename": "02_SqlLog.rst", - "type": "component", - "category": "libraries", - "id": "libraries-02_SqlLog--s1", - "base_name": "libraries-02_SqlLog", - "output_path": "component/libraries/libraries-02_SqlLog--s1.json", - "assets_dir": "component/libraries/assets/libraries-02_SqlLog--s1/", - "section_range": { - "start_line": 0, - "end_line": 387, - "sections": [ - "", - "SQLログの出力", - "SqlPStatement#retrieveメソッドの検索開始時", - "SqlPStatement#retrieveメソッドの検索終了時", - "SqlPStatement#executeメソッドの実行開始時", - "SqlPStatement#executeメソッドの実行終了時", - "SqlPStatement#executeQueryメソッドの検索開始時", - "SqlPStatement#executeQueryメソッドの検索終了時", - "SqlPStatement#executeUpdateメソッドの更新開始時", - "SqlPStatement#executeUpdateメソッドの更新終了時", - "SqlPStatement#executeBatchメソッドの更新開始時", - "SqlPStatement#executeBatchメソッドの更新終了時", - "SqlPStatement#retrieveメソッドの検索開始時", - "SqlPStatement#retrieveメソッドの検索終了時", - "SqlPStatement#executeメソッドの実行開始時", - "SqlPStatement#executeメソッドの実行終了時" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15", - "s16" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-02_SqlLog", - "group_line_count": 387 - }, - "section_map": [ - { - "section_id": "s1", + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "SQLログの出力", + "section_id": "s8", + "heading": "DIコンテナを ObjectLoader として使用する", "rst_labels": [] }, { - "section_id": "s3", - "heading": "SqlPStatement#retrieveメソッドの検索開始時", + "section_id": "s9", + "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "SqlPStatement#retrieveメソッドの検索終了時", + "section_id": "s10", + "heading": "property 要素の value 属性で設定できる型", "rst_labels": [] }, { - "section_id": "s5", - "heading": "SqlPStatement#executeメソッドの実行開始時", + "section_id": "s11", + "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "SqlPStatement#executeメソッドの実行終了時", + "section_id": "s12", + "heading": "List と Map をコンポーネントとして登録する", "rst_labels": [] }, { - "section_id": "s7", - "heading": "SqlPStatement#executeQueryメソッドの検索開始時", + "section_id": "s13", + "heading": "", "rst_labels": [] }, { - "section_id": "s8", - "heading": "SqlPStatement#executeQueryメソッドの検索終了時", + "section_id": "s14", + "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", "rst_labels": [] }, { - "section_id": "s9", - "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", + "section_id": "s15", + "heading": "", "rst_labels": [] }, { - "section_id": "s10", - "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", + "section_id": "s16", + "heading": "複数のコンポーネント設定ファイルの読み込み", "rst_labels": [] }, { - "section_id": "s11", - "heading": "SqlPStatement#executeBatchメソッドの更新開始時", + "section_id": "s17", + "heading": "", "rst_labels": [] }, { - "section_id": "s12", - "heading": "SqlPStatement#executeBatchメソッドの更新終了時", - "rst_labels": [] + "section_id": "s18", + "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", + "rst_labels": [ + "directory_config" + ] }, { - "section_id": "s13", - "heading": "SqlPStatement#retrieveメソッドの検索開始時", + "section_id": "s19", + "heading": "", "rst_labels": [] }, { - "section_id": "s14", - "heading": "SqlPStatement#retrieveメソッドの検索終了時", + "section_id": "s20", + "heading": "ディレクトリに配置された設定ファイルの読み込み", "rst_labels": [] }, { - "section_id": "s15", - "heading": "SqlPStatement#executeメソッドの実行開始時", + "section_id": "s21", + "heading": "", "rst_labels": [] }, { - "section_id": "s16", - "heading": "SqlPStatement#executeメソッドの実行終了時", + "section_id": "s22", + "heading": "自動インジェクション", "rst_labels": [] }, { - "section_id": "s17", - "heading": "SqlPStatement#executeQueryメソッドの検索開始時", + "section_id": "s23", + "heading": "", "rst_labels": [] }, { - "section_id": "s18", - "heading": "SqlPStatement#executeQueryメソッドの検索終了時", + "section_id": "s24", + "heading": "ネストするコンポーネントの設定", "rst_labels": [] }, { - "section_id": "s19", - "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", + "section_id": "s25", + "heading": "", "rst_labels": [] }, { - "section_id": "s20", - "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", + "section_id": "s26", + "heading": "環境設定ファイル記述ルール", "rst_labels": [] }, { - "section_id": "s21", - "heading": "SqlPStatement#executeBatchメソッドの更新開始時", + "section_id": "s27", + "heading": "", "rst_labels": [] }, { - "section_id": "s22", - "heading": "SqlPStatement#executeBatchメソッドの更新終了時", + "section_id": "s28", + "heading": "コンポーネント設定ファイル 要素 リファレンス", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/02_SqlLog.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", "format": "rst", - "filename": "02_SqlLog.rst", + "filename": "02_01_Repository_config.rst", "type": "component", "category": "libraries", - "id": "libraries-02_SqlLog--s17", - "base_name": "libraries-02_SqlLog", - "output_path": "component/libraries/libraries-02_SqlLog--s17.json", - "assets_dir": "component/libraries/assets/libraries-02_SqlLog--s17/", + "id": "libraries-02_01_Repository_config--s10", + "base_name": "libraries-02_01_Repository_config", + "output_path": "component/libraries/libraries-02_01_Repository_config--s10.json", + "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s10/", "section_range": { - "start_line": 387, - "end_line": 558, + "start_line": 294, + "end_line": 666, "sections": [ - "SqlPStatement#executeQueryメソッドの検索開始時", - "SqlPStatement#executeQueryメソッドの検索終了時", - "SqlPStatement#executeUpdateメソッドの更新開始時", - "SqlPStatement#executeUpdateメソッドの更新終了時", - "SqlPStatement#executeBatchメソッドの更新開始時", - "SqlPStatement#executeBatchメソッドの更新終了時" + "property 要素の value 属性で設定できる型", + "", + "List と Map をコンポーネントとして登録する", + "", + "コンポーネント設定ファイルからの環境設定ファイル読み込み", + "", + "複数のコンポーネント設定ファイルの読み込み", + "" ], "section_ids": [ - "s17", - "s18", - "s19", - "s20", - "s21", - "s22" + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16", + "s17" ] }, "split_info": { "is_split": true, "part": 2, - "total_parts": 2, - "original_id": "libraries-02_SqlLog", - "group_line_count": 171 + "total_parts": 4, + "original_id": "libraries-02_01_Repository_config", + "group_line_count": 372 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "repository_config" + ] }, { "section_id": "s2", - "heading": "SQLログの出力", - "rst_labels": [] + "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", + "rst_labels": [ + "repository_config_load" + ] }, { "section_id": "s3", - "heading": "SqlPStatement#retrieveメソッドの検索開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "SqlPStatement#retrieveメソッドの検索終了時", + "heading": "環境設定ファイルからの読み込み", "rst_labels": [] }, { "section_id": "s5", - "heading": "SqlPStatement#executeメソッドの実行開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "SqlPStatement#executeメソッドの実行終了時", + "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", "rst_labels": [] }, { "section_id": "s7", - "heading": "SqlPStatement#executeQueryメソッドの検索開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "SqlPStatement#executeQueryメソッドの検索終了時", + "heading": "DIコンテナを ObjectLoader として使用する", "rst_labels": [] }, { "section_id": "s9", - "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", + "heading": "property 要素の value 属性で設定できる型", "rst_labels": [] }, { "section_id": "s11", - "heading": "SqlPStatement#executeBatchメソッドの更新開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "SqlPStatement#executeBatchメソッドの更新終了時", + "heading": "List と Map をコンポーネントとして登録する", "rst_labels": [] }, { "section_id": "s13", - "heading": "SqlPStatement#retrieveメソッドの検索開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "SqlPStatement#retrieveメソッドの検索終了時", + "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", "rst_labels": [] }, { "section_id": "s15", - "heading": "SqlPStatement#executeメソッドの実行開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s16", - "heading": "SqlPStatement#executeメソッドの実行終了時", + "heading": "複数のコンポーネント設定ファイルの読み込み", "rst_labels": [] }, { "section_id": "s17", - "heading": "SqlPStatement#executeQueryメソッドの検索開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s18", - "heading": "SqlPStatement#executeQueryメソッドの検索終了時", - "rst_labels": [] + "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", + "rst_labels": [ + "directory_config" + ] }, { "section_id": "s19", - "heading": "SqlPStatement#executeUpdateメソッドの更新開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s20", - "heading": "SqlPStatement#executeUpdateメソッドの更新終了時", + "heading": "ディレクトリに配置された設定ファイルの読み込み", "rst_labels": [] }, { "section_id": "s21", - "heading": "SqlPStatement#executeBatchメソッドの更新開始時", + "heading": "", "rst_labels": [] }, { "section_id": "s22", - "heading": "SqlPStatement#executeBatchメソッドの更新終了時", + "heading": "自動インジェクション", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/03_PerformanceLog.rst", - "format": "rst", - "filename": "03_PerformanceLog.rst", - "type": "component", - "category": "libraries", - "id": "libraries-03_PerformanceLog--s1", - "base_name": "libraries-03_PerformanceLog", - "output_path": "component/libraries/libraries-03_PerformanceLog--s1.json", - "assets_dir": "component/libraries/assets/libraries-03_PerformanceLog--s1/", - "section_range": { - "start_line": 0, - "end_line": 197, - "sections": [ - "", - "パフォーマンスログの出力" - ], - "section_ids": [ - "s1", - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-03_PerformanceLog", - "group_line_count": 197 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s23", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "パフォーマンスログの出力", + "section_id": "s24", + "heading": "ネストするコンポーネントの設定", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s26", + "heading": "環境設定ファイル記述ルール", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "コンポーネント設定ファイル 要素 リファレンス", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/04_HttpAccessLog.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", "format": "rst", - "filename": "04_HttpAccessLog.rst", + "filename": "02_01_Repository_config.rst", "type": "component", "category": "libraries", - "id": "libraries-04_HttpAccessLog--s1", - "base_name": "libraries-04_HttpAccessLog", - "output_path": "component/libraries/libraries-04_HttpAccessLog--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_HttpAccessLog--s1/", + "id": "libraries-02_01_Repository_config--s18", + "base_name": "libraries-02_01_Repository_config", + "output_path": "component/libraries/libraries-02_01_Repository_config--s18.json", + "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s18/", "section_range": { - "start_line": 0, - "end_line": 336, + "start_line": 666, + "end_line": 999, "sections": [ + "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", "", - "HTTPアクセスログの出力", - "リクエスト処理開始時のログ出力に使用するフォーマット", - "hiddenパラメータ復号後のログ出力に使用するフォーマット", - "ディスパッチ先クラス決定後のログ出力に使用するフォーマット" + "ディレクトリに配置された設定ファイルの読み込み", + "", + "自動インジェクション", + "", + "ネストするコンポーネントの設定", + "", + "環境設定ファイル記述ルール", + "" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" + "s18", + "s19", + "s20", + "s21", + "s22", + "s23", + "s24", + "s25", + "s26", + "s27" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-04_HttpAccessLog", - "group_line_count": 336 + "part": 3, + "total_parts": 4, + "original_id": "libraries-02_01_Repository_config", + "group_line_count": 333 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "repository_config" + ] }, { "section_id": "s2", - "heading": "HTTPアクセスログの出力", - "rst_labels": [] + "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", + "rst_labels": [ + "repository_config_load" + ] }, { "section_id": "s3", - "heading": "リクエスト処理開始時のログ出力に使用するフォーマット", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "hiddenパラメータ復号後のログ出力に使用するフォーマット", + "heading": "環境設定ファイルからの読み込み", "rst_labels": [] }, { "section_id": "s5", - "heading": "ディスパッチ先クラス決定後のログ出力に使用するフォーマット", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "リクエスト処理終了時のログ出力に使用するフォーマット", + "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/04_HttpAccessLog.rst", - "format": "rst", - "filename": "04_HttpAccessLog.rst", - "type": "component", - "category": "libraries", - "id": "libraries-04_HttpAccessLog--s6", - "base_name": "libraries-04_HttpAccessLog", - "output_path": "component/libraries/libraries-04_HttpAccessLog--s6.json", - "assets_dir": "component/libraries/assets/libraries-04_HttpAccessLog--s6/", - "section_range": { - "start_line": 336, - "end_line": 441, - "sections": [ - "リクエスト処理終了時のログ出力に使用するフォーマット" - ], - "section_ids": [ - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-04_HttpAccessLog", - "group_line_count": 105 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "HTTPアクセスログの出力", + "section_id": "s8", + "heading": "DIコンテナを ObjectLoader として使用する", "rst_labels": [] }, { - "section_id": "s3", - "heading": "リクエスト処理開始時のログ出力に使用するフォーマット", + "section_id": "s9", + "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "hiddenパラメータ復号後のログ出力に使用するフォーマット", + "section_id": "s10", + "heading": "property 要素の value 属性で設定できる型", "rst_labels": [] }, { - "section_id": "s5", - "heading": "ディスパッチ先クラス決定後のログ出力に使用するフォーマット", + "section_id": "s11", + "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "リクエスト処理終了時のログ出力に使用するフォーマット", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_04_Repository_override.rst", - "format": "rst", - "filename": "02_04_Repository_override.rst", - "type": "component", - "category": "libraries", - "id": "libraries-02_04_Repository_override--s1", - "base_name": "libraries-02_04_Repository_override", - "output_path": "component/libraries/libraries-02_04_Repository_override--s1.json", - "assets_dir": "component/libraries/assets/libraries-02_04_Repository_override--s1/", - "section_range": { - "start_line": 0, - "end_line": 397, - "sections": [ - "環境設定ファイル(test1.conf)", - "環境設定ファイル(test2.conf)", - "コンポーネント設定ファイルを読み込む", - "設定値の取得例", - "使用するクラス", - "コンポーネント設定ファイルの例", - "設定したコンポーネントの取得例", - "読み込み元の設定ファイル", - "テスト用の設定ファイル(/opt/testconfig/testconfig.xml)", - "import-example1.xml", - "import-example2.xml", - "onefile-example.xml(import-example1.xml、import-example2.xmlと等価)", - "設定をロードする際の実装例(通常フレームワークのブートストラップ処理で行う)", - "環境設定ファイル(hello-system-property.config)", - "コンポーネント設定ファイル(hello-system-property.xml)", - "設定値のロードの実装例" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15", - "s16" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-02_04_Repository_override", - "group_line_count": 397 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "環境設定ファイル(test1.conf)", + "section_id": "s12", + "heading": "List と Map をコンポーネントとして登録する", "rst_labels": [] }, { - "section_id": "s2", - "heading": "環境設定ファイル(test2.conf)", + "section_id": "s13", + "heading": "", "rst_labels": [] }, { - "section_id": "s3", - "heading": "コンポーネント設定ファイルを読み込む", + "section_id": "s14", + "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", "rst_labels": [] }, { - "section_id": "s4", - "heading": "設定値の取得例", + "section_id": "s15", + "heading": "", "rst_labels": [] }, { - "section_id": "s5", - "heading": "使用するクラス", + "section_id": "s16", + "heading": "複数のコンポーネント設定ファイルの読み込み", "rst_labels": [] }, { - "section_id": "s6", - "heading": "コンポーネント設定ファイルの例", + "section_id": "s17", + "heading": "", "rst_labels": [] }, { - "section_id": "s7", - "heading": "設定したコンポーネントの取得例", - "rst_labels": [] + "section_id": "s18", + "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", + "rst_labels": [ + "directory_config" + ] }, { - "section_id": "s8", - "heading": "読み込み元の設定ファイル", + "section_id": "s19", + "heading": "", "rst_labels": [] }, { - "section_id": "s9", - "heading": "テスト用の設定ファイル(/opt/testconfig/testconfig.xml)", + "section_id": "s20", + "heading": "ディレクトリに配置された設定ファイルの読み込み", "rst_labels": [] }, { - "section_id": "s10", - "heading": "import-example1.xml", + "section_id": "s21", + "heading": "", "rst_labels": [] }, { - "section_id": "s11", - "heading": "import-example2.xml", + "section_id": "s22", + "heading": "自動インジェクション", "rst_labels": [] }, { - "section_id": "s12", - "heading": "onefile-example.xml(import-example1.xml、import-example2.xmlと等価)", + "section_id": "s23", + "heading": "", "rst_labels": [] }, { - "section_id": "s13", - "heading": "設定をロードする際の実装例(通常フレームワークのブートストラップ処理で行う)", + "section_id": "s24", + "heading": "ネストするコンポーネントの設定", "rst_labels": [] }, { - "section_id": "s14", - "heading": "環境設定ファイル(hello-system-property.config)", + "section_id": "s25", + "heading": "", "rst_labels": [] }, { - "section_id": "s15", - "heading": "コンポーネント設定ファイル(hello-system-property.xml)", + "section_id": "s26", + "heading": "環境設定ファイル記述ルール", "rst_labels": [] }, { - "section_id": "s16", - "heading": "設定値のロードの実装例", + "section_id": "s27", + "heading": "", "rst_labels": [] }, { - "section_id": "s17", - "heading": "設定したコンポーネントを取得する実装例", + "section_id": "s28", + "heading": "コンポーネント設定ファイル 要素 リファレンス", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_04_Repository_override.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", "format": "rst", - "filename": "02_04_Repository_override.rst", + "filename": "02_01_Repository_config.rst", "type": "component", "category": "libraries", - "id": "libraries-02_04_Repository_override--s17", - "base_name": "libraries-02_04_Repository_override", - "output_path": "component/libraries/libraries-02_04_Repository_override--s17.json", - "assets_dir": "component/libraries/assets/libraries-02_04_Repository_override--s17/", + "id": "libraries-02_01_Repository_config--s28", + "base_name": "libraries-02_01_Repository_config", + "output_path": "component/libraries/libraries-02_01_Repository_config--s28.json", + "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s28/", "section_range": { - "start_line": 397, - "end_line": 412, + "start_line": 999, + "end_line": 1263, "sections": [ - "設定したコンポーネントを取得する実装例" + "コンポーネント設定ファイル 要素 リファレンス" ], "section_ids": [ - "s17" + "s28" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-02_04_Repository_override", - "group_line_count": 15 + "part": 4, + "total_parts": 4, + "original_id": "libraries-02_01_Repository_config", + "group_line_count": 264 }, "section_map": [ { "section_id": "s1", - "heading": "環境設定ファイル(test1.conf)", - "rst_labels": [] + "heading": "", + "rst_labels": [ + "repository_config" + ] }, { "section_id": "s2", - "heading": "環境設定ファイル(test2.conf)", - "rst_labels": [] + "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", + "rst_labels": [ + "repository_config_load" + ] }, { "section_id": "s3", - "heading": "コンポーネント設定ファイルを読み込む", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "設定値の取得例", + "heading": "環境設定ファイルからの読み込み", "rst_labels": [] }, { "section_id": "s5", - "heading": "使用するクラス", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "コンポーネント設定ファイルの例", + "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", "rst_labels": [] }, { "section_id": "s7", - "heading": "設定したコンポーネントの取得例", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "読み込み元の設定ファイル", + "heading": "DIコンテナを ObjectLoader として使用する", "rst_labels": [] }, { "section_id": "s9", - "heading": "テスト用の設定ファイル(/opt/testconfig/testconfig.xml)", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "import-example1.xml", + "heading": "property 要素の value 属性で設定できる型", "rst_labels": [] }, { "section_id": "s11", - "heading": "import-example2.xml", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "onefile-example.xml(import-example1.xml、import-example2.xmlと等価)", + "heading": "List と Map をコンポーネントとして登録する", "rst_labels": [] }, { "section_id": "s13", - "heading": "設定をロードする際の実装例(通常フレームワークのブートストラップ処理で行う)", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "環境設定ファイル(hello-system-property.config)", + "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", "rst_labels": [] }, { "section_id": "s15", - "heading": "コンポーネント設定ファイル(hello-system-property.xml)", + "heading": "", "rst_labels": [] }, { "section_id": "s16", - "heading": "設定値のロードの実装例", + "heading": "複数のコンポーネント設定ファイルの読み込み", "rst_labels": [] }, { "section_id": "s17", - "heading": "設定したコンポーネントを取得する実装例", + "heading": "", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", - "format": "rst", - "filename": "02_01_Repository_config.rst", - "type": "component", - "category": "libraries", - "id": "libraries-02_01_Repository_config--s1", - "base_name": "libraries-02_01_Repository_config", - "output_path": "component/libraries/libraries-02_01_Repository_config--s1.json", - "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s1/", - "section_range": { - "start_line": 0, - "end_line": 294, - "sections": [ - "", - "設定ファイルの種類とフレームワークが行うリポジトリの初期化", - "", - "環境設定ファイルからの読み込み", - "", - "リポジトリに保持するインスタンスの生成(DIコンテナ)", - "", - "DIコンテナを ObjectLoader として使用する", + }, + { + "section_id": "s18", + "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", + "rst_labels": [ + "directory_config" + ] + }, + { + "section_id": "s19", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "ディレクトリに配置された設定ファイルの読み込み", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s22", + "heading": "自動インジェクション", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "ネストするコンポーネントの設定", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s26", + "heading": "環境設定ファイル記述ルール", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "コンポーネント設定ファイル 要素 リファレンス", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_02_Repository_initialize.rst", + "format": "rst", + "filename": "02_02_Repository_initialize.rst", + "type": "component", + "category": "libraries", + "id": "libraries-02_02_Repository_initialize", + "base_name": "libraries-02_02_Repository_initialize", + "output_path": "component/libraries/libraries-02_02_Repository_initialize.json", + "assets_dir": "component/libraries/assets/libraries-02_02_Repository_initialize/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_03_Repository_factory.rst", + "format": "rst", + "filename": "02_03_Repository_factory.rst", + "type": "component", + "category": "libraries", + "id": "libraries-02_03_Repository_factory", + "base_name": "libraries-02_03_Repository_factory", + "output_path": "component/libraries/libraries-02_03_Repository_factory.json", + "assets_dir": "component/libraries/assets/libraries-02_03_Repository_factory/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_TransactionConnectionName.rst", + "format": "rst", + "filename": "04_TransactionConnectionName.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_TransactionConnectionName--s1", + "base_name": "libraries-04_TransactionConnectionName", + "output_path": "component/libraries/libraries-04_TransactionConnectionName--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_TransactionConnectionName--s1/", + "section_range": { + "start_line": 0, + "end_line": 147, + "sections": [ + "", + "データベースコネクション名", + "", + "トランザクション名", + "実装コードで見るトランザクション制御" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-04_TransactionConnectionName", + "group_line_count": 147 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "データベースコネクション名", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "トランザクション名", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "実装コードで見るトランザクション制御", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_QueryCache.rst", + "format": "rst", + "filename": "04_QueryCache.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_QueryCache--s1", + "base_name": "libraries-04_QueryCache", + "output_path": "component/libraries/libraries-04_QueryCache--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_QueryCache--s1/", + "section_range": { + "start_line": 0, + "end_line": 329, + "sections": [ + "キャッシュ機能", + "有効期限", + "キャッシュ保存先", + "その他の要件", + "基本実装", + "", + "構成", + "全体図", + "有効期限付きキャッシュ", + "キャッシュしたSqlResultSetの保護", + "SqlPStatementの生成", + "キャッシュへのアクセス", "" ], "section_ids": [ @@ -23500,79 +22503,79 @@ "s6", "s7", "s8", - "s9" + "s9", + "s10", + "s11", + "s12", + "s13" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 4, - "original_id": "libraries-02_01_Repository_config", - "group_line_count": 294 + "total_parts": 2, + "original_id": "libraries-04_QueryCache", + "group_line_count": 329 }, "section_map": [ { "section_id": "s1", - "heading": "", - "rst_labels": [ - "repository_config" - ] + "heading": "キャッシュ機能", + "rst_labels": [] }, { "section_id": "s2", - "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", - "rst_labels": [ - "repository_config_load" - ] + "heading": "有効期限", + "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "キャッシュ保存先", "rst_labels": [] }, { "section_id": "s4", - "heading": "環境設定ファイルからの読み込み", + "heading": "その他の要件", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "基本実装", "rst_labels": [] }, { "section_id": "s6", - "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", + "heading": "", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "構成", "rst_labels": [] }, { "section_id": "s8", - "heading": "DIコンテナを ObjectLoader として使用する", + "heading": "全体図", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "有効期限付きキャッシュ", "rst_labels": [] }, { "section_id": "s10", - "heading": "property 要素の value 属性で設定できる型", + "heading": "キャッシュしたSqlResultSetの保護", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "SqlPStatementの生成", "rst_labels": [] }, { "section_id": "s12", - "heading": "List と Map をコンポーネントとして登録する", + "heading": "キャッシュへのアクセス", "rst_labels": [] }, { @@ -23582,7 +22585,7 @@ }, { "section_id": "s14", - "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", + "heading": "キャッシュ機能を有効にする設定方法", "rst_labels": [] }, { @@ -23592,7 +22595,7 @@ }, { "section_id": "s16", - "heading": "複数のコンポーネント設定ファイルの読み込み", + "heading": "キャッシュを明示的にクリアする方法", "rst_labels": [] }, { @@ -23602,10 +22605,8 @@ }, { "section_id": "s18", - "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", - "rst_labels": [ - "directory_config" - ] + "heading": "ログ出力", + "rst_labels": [] }, { "section_id": "s19", @@ -23614,7 +22615,7 @@ }, { "section_id": "s20", - "heading": "ディレクトリに配置された設定ファイルの読み込み", + "heading": "キャッシュ機能のチューニングについて", "rst_labels": [] }, { @@ -23624,145 +22625,113 @@ }, { "section_id": "s22", - "heading": "自動インジェクション", - "rst_labels": [] - }, - { - "section_id": "s23", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "ネストするコンポーネントの設定", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "環境設定ファイル記述ルール", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "コンポーネント設定ファイル 要素 リファレンス", + "heading": "制約事項", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_QueryCache.rst", "format": "rst", - "filename": "02_01_Repository_config.rst", + "filename": "04_QueryCache.rst", "type": "component", "category": "libraries", - "id": "libraries-02_01_Repository_config--s10", - "base_name": "libraries-02_01_Repository_config", - "output_path": "component/libraries/libraries-02_01_Repository_config--s10.json", - "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s10/", + "id": "libraries-04_QueryCache--s14", + "base_name": "libraries-04_QueryCache", + "output_path": "component/libraries/libraries-04_QueryCache--s14.json", + "assets_dir": "component/libraries/assets/libraries-04_QueryCache--s14/", "section_range": { - "start_line": 294, - "end_line": 666, + "start_line": 329, + "end_line": 597, "sections": [ - "property 要素の value 属性で設定できる型", + "キャッシュ機能を有効にする設定方法", "", - "List と Map をコンポーネントとして登録する", + "キャッシュを明示的にクリアする方法", "", - "コンポーネント設定ファイルからの環境設定ファイル読み込み", + "ログ出力", "", - "複数のコンポーネント設定ファイルの読み込み", - "" + "キャッシュ機能のチューニングについて", + "", + "制約事項" ], "section_ids": [ - "s10", - "s11", - "s12", - "s13", "s14", "s15", "s16", - "s17" + "s17", + "s18", + "s19", + "s20", + "s21", + "s22" ] }, "split_info": { "is_split": true, "part": 2, - "total_parts": 4, - "original_id": "libraries-02_01_Repository_config", - "group_line_count": 372 + "total_parts": 2, + "original_id": "libraries-04_QueryCache", + "group_line_count": 268 }, "section_map": [ { "section_id": "s1", - "heading": "", - "rst_labels": [ - "repository_config" - ] + "heading": "キャッシュ機能", + "rst_labels": [] }, { "section_id": "s2", - "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", - "rst_labels": [ - "repository_config_load" - ] + "heading": "有効期限", + "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "キャッシュ保存先", "rst_labels": [] }, { "section_id": "s4", - "heading": "環境設定ファイルからの読み込み", + "heading": "その他の要件", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "基本実装", "rst_labels": [] }, { "section_id": "s6", - "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", + "heading": "", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "構成", "rst_labels": [] }, { "section_id": "s8", - "heading": "DIコンテナを ObjectLoader として使用する", + "heading": "全体図", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "有効期限付きキャッシュ", "rst_labels": [] }, { "section_id": "s10", - "heading": "property 要素の value 属性で設定できる型", + "heading": "キャッシュしたSqlResultSetの保護", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "SqlPStatementの生成", "rst_labels": [] }, { "section_id": "s12", - "heading": "List と Map をコンポーネントとして登録する", + "heading": "キャッシュへのアクセス", "rst_labels": [] }, { @@ -23772,7 +22741,7 @@ }, { "section_id": "s14", - "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", + "heading": "キャッシュ機能を有効にする設定方法", "rst_labels": [] }, { @@ -23782,7 +22751,7 @@ }, { "section_id": "s16", - "heading": "複数のコンポーネント設定ファイルの読み込み", + "heading": "キャッシュを明示的にクリアする方法", "rst_labels": [] }, { @@ -23792,10 +22761,8 @@ }, { "section_id": "s18", - "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", - "rst_labels": [ - "directory_config" - ] + "heading": "ログ出力", + "rst_labels": [] }, { "section_id": "s19", @@ -23804,7 +22771,7 @@ }, { "section_id": "s20", - "heading": "ディレクトリに配置された設定ファイルの読み込み", + "heading": "キャッシュ機能のチューニングについて", "rst_labels": [] }, { @@ -23814,1042 +22781,993 @@ }, { "section_id": "s22", - "heading": "自動インジェクション", - "rst_labels": [] - }, - { - "section_id": "s23", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "ネストするコンポーネントの設定", + "heading": "制約事項", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_TransactionTimeout.rst", + "format": "rst", + "filename": "04_TransactionTimeout.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_TransactionTimeout--s1", + "base_name": "libraries-04_TransactionTimeout", + "output_path": "component/libraries/libraries-04_TransactionTimeout--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_TransactionTimeout--s1/", + "section_range": { + "start_line": 0, + "end_line": 145, + "sections": [ + "トランザクションタイムアウト機能", + "各処理の概要", + "クエリタイムアウト時の動作について", + "アプリケーションロジックでの処理遅延について" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-04_TransactionTimeout", + "group_line_count": 145 + }, + "section_map": [ { - "section_id": "s25", - "heading": "", + "section_id": "s1", + "heading": "トランザクションタイムアウト機能", "rst_labels": [] }, { - "section_id": "s26", - "heading": "環境設定ファイル記述ルール", + "section_id": "s2", + "heading": "各処理の概要", "rst_labels": [] }, { - "section_id": "s27", - "heading": "", + "section_id": "s3", + "heading": "クエリタイムアウト時の動作について", "rst_labels": [] }, { - "section_id": "s28", - "heading": "コンポーネント設定ファイル 要素 リファレンス", + "section_id": "s4", + "heading": "アプリケーションロジックでの処理遅延について", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Connection.rst", "format": "rst", - "filename": "02_01_Repository_config.rst", + "filename": "04_Connection.rst", "type": "component", "category": "libraries", - "id": "libraries-02_01_Repository_config--s18", - "base_name": "libraries-02_01_Repository_config", - "output_path": "component/libraries/libraries-02_01_Repository_config--s18.json", - "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s18/", + "id": "libraries-04_Connection--s1", + "base_name": "libraries-04_Connection", + "output_path": "component/libraries/libraries-04_Connection--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_Connection--s1/", "section_range": { - "start_line": 666, - "end_line": 999, + "start_line": 0, + "end_line": 282, "sections": [ - "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", - "", - "ディレクトリに配置された設定ファイルの読み込み", - "", - "自動インジェクション", - "", - "ネストするコンポーネントの設定", - "", - "環境設定ファイル記述ルール", - "" + "データベース接続部品の構造", + "各クラスの責務", + "nablarch.core.db.connectionパッケージ", + "処理シーケンス", + "Javaの実装例" ], "section_ids": [ - "s18", - "s19", - "s20", - "s21", - "s22", - "s23", - "s24", - "s25", - "s26", - "s27" + "s1", + "s2", + "s3", + "s4", + "s5" ] }, "split_info": { "is_split": true, - "part": 3, - "total_parts": 4, - "original_id": "libraries-02_01_Repository_config", - "group_line_count": 333 + "part": 1, + "total_parts": 2, + "original_id": "libraries-04_Connection", + "group_line_count": 282 }, "section_map": [ { "section_id": "s1", - "heading": "", - "rst_labels": [ - "repository_config" - ] + "heading": "データベース接続部品の構造", + "rst_labels": [] }, { "section_id": "s2", - "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", - "rst_labels": [ - "repository_config_load" - ] + "heading": "各クラスの責務", + "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "nablarch.core.db.connectionパッケージ", "rst_labels": [] }, { "section_id": "s4", - "heading": "環境設定ファイルからの読み込み", + "heading": "処理シーケンス", "rst_labels": [] }, { "section_id": "s5", - "heading": "", - "rst_labels": [] + "heading": "Javaの実装例", + "rst_labels": [ + "db-connection-config-label" + ] }, { "section_id": "s6", - "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", - "rst_labels": [] + "heading": "設定内容詳細", + "rst_labels": [ + "database-connection-config-from-jndi-label" + ] }, { "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "DIコンテナを ObjectLoader として使用する", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "", + "heading": "設定内容詳細", "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "property 要素の value 属性で設定できる型", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "List と Map をコンポーネントとして登録する", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "", - "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Connection.rst", + "format": "rst", + "filename": "04_Connection.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_Connection--s6", + "base_name": "libraries-04_Connection", + "output_path": "component/libraries/libraries-04_Connection--s6.json", + "assets_dir": "component/libraries/assets/libraries-04_Connection--s6/", + "section_range": { + "start_line": 282, + "end_line": 457, + "sections": [ + "設定内容詳細", + "設定内容詳細" + ], + "section_ids": [ + "s6", + "s7" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "libraries-04_Connection", + "group_line_count": 175 + }, + "section_map": [ { - "section_id": "s14", - "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", + "section_id": "s1", + "heading": "データベース接続部品の構造", "rst_labels": [] }, { - "section_id": "s15", - "heading": "", + "section_id": "s2", + "heading": "各クラスの責務", "rst_labels": [] }, { - "section_id": "s16", - "heading": "複数のコンポーネント設定ファイルの読み込み", + "section_id": "s3", + "heading": "nablarch.core.db.connectionパッケージ", "rst_labels": [] }, { - "section_id": "s17", - "heading": "", + "section_id": "s4", + "heading": "処理シーケンス", "rst_labels": [] }, { - "section_id": "s18", - "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", + "section_id": "s5", + "heading": "Javaの実装例", "rst_labels": [ - "directory_config" + "db-connection-config-label" ] }, { - "section_id": "s19", - "heading": "", - "rst_labels": [] + "section_id": "s6", + "heading": "設定内容詳細", + "rst_labels": [ + "database-connection-config-from-jndi-label" + ] }, { - "section_id": "s20", - "heading": "ディレクトリに配置された設定ファイルの読み込み", + "section_id": "s7", + "heading": "設定内容詳細", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Statement.rst", + "format": "rst", + "filename": "04_Statement.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_Statement--s1", + "base_name": "libraries-04_Statement", + "output_path": "component/libraries/libraries-04_Statement--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_Statement--s1/", + "section_range": { + "start_line": 0, + "end_line": 353, + "sections": [ + "", + "SQL文実行部品の構造とその使用方法", + "各クラスの責務", + "nablarch.core.db.statementパッケージ", + "簡易検索の場合の処理シーケンス", + "推奨するJavaの実装例(SQL文を外部ファイル化した場合)" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "libraries-04_Statement", + "group_line_count": 353 + }, + "section_map": [ { - "section_id": "s21", + "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "db-sqlstatement-label" + ] }, { - "section_id": "s22", - "heading": "自動インジェクション", + "section_id": "s2", + "heading": "SQL文実行部品の構造とその使用方法", "rst_labels": [] }, { - "section_id": "s23", - "heading": "", + "section_id": "s3", + "heading": "各クラスの責務", "rst_labels": [] }, { - "section_id": "s24", - "heading": "ネストするコンポーネントの設定", - "rst_labels": [] + "section_id": "s4", + "heading": "nablarch.core.db.statementパッケージ", + "rst_labels": [ + "sql-load-class-label", + "db-support-label" + ] }, { - "section_id": "s25", - "heading": "", - "rst_labels": [] + "section_id": "s5", + "heading": "簡易検索の場合の処理シーケンス", + "rst_labels": [ + "sql-gaibuka-label" + ] }, { - "section_id": "s26", - "heading": "環境設定ファイル記述ルール", + "section_id": "s6", + "heading": "推奨するJavaの実装例(SQL文を外部ファイル化した場合)", "rst_labels": [] }, { - "section_id": "s27", - "heading": "", + "section_id": "s7", + "heading": "Javaの実装例(SQL文指定の場合)", "rst_labels": [] }, { - "section_id": "s28", - "heading": "コンポーネント設定ファイル 要素 リファレンス", - "rst_labels": [] + "section_id": "s8", + "heading": "設定内容詳細", + "rst_labels": [ + "db-basic-sqlstatementexceptionfactory-label" + ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_01_Repository_config.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Statement.rst", "format": "rst", - "filename": "02_01_Repository_config.rst", + "filename": "04_Statement.rst", "type": "component", "category": "libraries", - "id": "libraries-02_01_Repository_config--s28", - "base_name": "libraries-02_01_Repository_config", - "output_path": "component/libraries/libraries-02_01_Repository_config--s28.json", - "assets_dir": "component/libraries/assets/libraries-02_01_Repository_config--s28/", + "id": "libraries-04_Statement--s7", + "base_name": "libraries-04_Statement", + "output_path": "component/libraries/libraries-04_Statement--s7.json", + "assets_dir": "component/libraries/assets/libraries-04_Statement--s7/", "section_range": { - "start_line": 999, - "end_line": 1263, + "start_line": 353, + "end_line": 541, "sections": [ - "コンポーネント設定ファイル 要素 リファレンス" + "Javaの実装例(SQL文指定の場合)", + "設定内容詳細" ], "section_ids": [ - "s28" + "s7", + "s8" ] }, "split_info": { "is_split": true, - "part": 4, - "total_parts": 4, - "original_id": "libraries-02_01_Repository_config", - "group_line_count": 264 + "part": 2, + "total_parts": 2, + "original_id": "libraries-04_Statement", + "group_line_count": 188 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "repository_config" + "db-sqlstatement-label" ] }, { "section_id": "s2", - "heading": "設定ファイルの種類とフレームワークが行うリポジトリの初期化", - "rst_labels": [ - "repository_config_load" - ] + "heading": "SQL文実行部品の構造とその使用方法", + "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "各クラスの責務", "rst_labels": [] }, { "section_id": "s4", - "heading": "環境設定ファイルからの読み込み", - "rst_labels": [] + "heading": "nablarch.core.db.statementパッケージ", + "rst_labels": [ + "sql-load-class-label", + "db-support-label" + ] }, { "section_id": "s5", - "heading": "", - "rst_labels": [] + "heading": "簡易検索の場合の処理シーケンス", + "rst_labels": [ + "sql-gaibuka-label" + ] }, { "section_id": "s6", - "heading": "リポジトリに保持するインスタンスの生成(DIコンテナ)", + "heading": "推奨するJavaの実装例(SQL文を外部ファイル化した場合)", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "Javaの実装例(SQL文指定の場合)", "rst_labels": [] }, { "section_id": "s8", - "heading": "DIコンテナを ObjectLoader として使用する", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "property 要素の value 属性で設定できる型", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "List と Map をコンポーネントとして登録する", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "コンポーネント設定ファイルからの環境設定ファイル読み込み", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s16", - "heading": "複数のコンポーネント設定ファイルの読み込み", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "環境設定ファイルに記述した値をコンポーネント設定ファイルで使用する", + "heading": "設定内容詳細", "rst_labels": [ - "directory_config" + "db-basic-sqlstatementexceptionfactory-label" ] - }, - { - "section_id": "s19", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "ディレクトリに配置された設定ファイルの読み込み", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s22", - "heading": "自動インジェクション", - "rst_labels": [] - }, - { - "section_id": "s23", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "ネストするコンポーネントの設定", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "環境設定ファイル記述ルール", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "コンポーネント設定ファイル 要素 リファレンス", - "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_02_Repository_initialize.rst", - "format": "rst", - "filename": "02_02_Repository_initialize.rst", - "type": "component", - "category": "libraries", - "id": "libraries-02_02_Repository_initialize", - "base_name": "libraries-02_02_Repository_initialize", - "output_path": "component/libraries/libraries-02_02_Repository_initialize.json", - "assets_dir": "component/libraries/assets/libraries-02_02_Repository_initialize/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/02/02_03_Repository_factory.rst", - "format": "rst", - "filename": "02_03_Repository_factory.rst", - "type": "component", - "category": "libraries", - "id": "libraries-02_03_Repository_factory", - "base_name": "libraries-02_03_Repository_factory", - "output_path": "component/libraries/libraries-02_03_Repository_factory.json", - "assets_dir": "component/libraries/assets/libraries-02_03_Repository_factory/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_TransactionConnectionName.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_ObjectSave.rst", "format": "rst", - "filename": "04_TransactionConnectionName.rst", + "filename": "04_ObjectSave.rst", "type": "component", "category": "libraries", - "id": "libraries-04_TransactionConnectionName--s1", - "base_name": "libraries-04_TransactionConnectionName", - "output_path": "component/libraries/libraries-04_TransactionConnectionName--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_TransactionConnectionName--s1/", + "id": "libraries-04_ObjectSave--s1", + "base_name": "libraries-04_ObjectSave", + "output_path": "component/libraries/libraries-04_ObjectSave--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_ObjectSave--s1/", "section_range": { "start_line": 0, - "end_line": 147, + "end_line": 66, "sections": [ "", - "データベースコネクション名", - "", - "トランザクション名", - "実装コードで見るトランザクション制御" + "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", + "インタフェース定義" ], "section_ids": [ "s1", "s2", - "s3", - "s4", - "s5" + "s3" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "libraries-04_TransactionConnectionName", - "group_line_count": 147 + "total_parts": 3, + "original_id": "libraries-04_ObjectSave", + "group_line_count": 66 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "db-object-store-label" + ] }, { "section_id": "s2", - "heading": "データベースコネクション名", + "heading": "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s4", - "heading": "トランザクション名", - "rst_labels": [] + "heading": "クラス定義", + "rst_labels": [ + "sql-parameter-parser-label", + "sql-convertor-label", + "db-object-save-class-label" + ] }, { "section_id": "s5", - "heading": "実装コードで見るトランザクション制御", + "heading": "処理シーケンス", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "Java実装例(Objectのフィールド値を登録する場合)", + "rst_labels": [ + "db-object-config-label" + ] + }, + { + "section_id": "s7", + "heading": "設定内容詳細", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_QueryCache.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_ObjectSave.rst", "format": "rst", - "filename": "04_QueryCache.rst", + "filename": "04_ObjectSave.rst", "type": "component", "category": "libraries", - "id": "libraries-04_QueryCache--s1", - "base_name": "libraries-04_QueryCache", - "output_path": "component/libraries/libraries-04_QueryCache--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_QueryCache--s1/", + "id": "libraries-04_ObjectSave--s4", + "base_name": "libraries-04_ObjectSave", + "output_path": "component/libraries/libraries-04_ObjectSave--s4.json", + "assets_dir": "component/libraries/assets/libraries-04_ObjectSave--s4/", "section_range": { - "start_line": 0, - "end_line": 329, + "start_line": 66, + "end_line": 474, "sections": [ - "キャッシュ機能", - "有効期限", - "キャッシュ保存先", - "その他の要件", - "基本実装", - "", - "構成", - "全体図", - "有効期限付きキャッシュ", - "キャッシュしたSqlResultSetの保護", - "SqlPStatementの生成", - "キャッシュへのアクセス", - "" + "クラス定義" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13" + "s4" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-04_QueryCache", - "group_line_count": 329 + "part": 2, + "total_parts": 3, + "original_id": "libraries-04_ObjectSave", + "group_line_count": 408 }, "section_map": [ { "section_id": "s1", - "heading": "キャッシュ機能", - "rst_labels": [] + "heading": "", + "rst_labels": [ + "db-object-store-label" + ] }, { "section_id": "s2", - "heading": "有効期限", + "heading": "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", "rst_labels": [] }, { "section_id": "s3", - "heading": "キャッシュ保存先", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s4", - "heading": "その他の要件", - "rst_labels": [] + "heading": "クラス定義", + "rst_labels": [ + "sql-parameter-parser-label", + "sql-convertor-label", + "db-object-save-class-label" + ] }, { "section_id": "s5", - "heading": "基本実装", + "heading": "処理シーケンス", "rst_labels": [] }, { "section_id": "s6", - "heading": "", - "rst_labels": [] + "heading": "Java実装例(Objectのフィールド値を登録する場合)", + "rst_labels": [ + "db-object-config-label" + ] }, { "section_id": "s7", - "heading": "構成", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "全体図", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "有効期限付きキャッシュ", + "heading": "設定内容詳細", "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "キャッシュしたSqlResultSetの保護", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "SqlPStatementの生成", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "キャッシュへのアクセス", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "キャッシュ機能を有効にする設定方法", - "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_ObjectSave.rst", + "format": "rst", + "filename": "04_ObjectSave.rst", + "type": "component", + "category": "libraries", + "id": "libraries-04_ObjectSave--s5", + "base_name": "libraries-04_ObjectSave", + "output_path": "component/libraries/libraries-04_ObjectSave--s5.json", + "assets_dir": "component/libraries/assets/libraries-04_ObjectSave--s5/", + "section_range": { + "start_line": 474, + "end_line": 852, + "sections": [ + "処理シーケンス", + "Java実装例(Objectのフィールド値を登録する場合)", + "設定内容詳細" + ], + "section_ids": [ + "s5", + "s6", + "s7" + ] + }, + "split_info": { + "is_split": true, + "part": 3, + "total_parts": 3, + "original_id": "libraries-04_ObjectSave", + "group_line_count": 378 + }, + "section_map": [ { - "section_id": "s15", + "section_id": "s1", "heading": "", - "rst_labels": [] - }, - { - "section_id": "s16", - "heading": "キャッシュを明示的にクリアする方法", - "rst_labels": [] + "rst_labels": [ + "db-object-store-label" + ] }, { - "section_id": "s17", - "heading": "", + "section_id": "s2", + "heading": "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", "rst_labels": [] }, { - "section_id": "s18", - "heading": "ログ出力", + "section_id": "s3", + "heading": "インタフェース定義", "rst_labels": [] }, { - "section_id": "s19", - "heading": "", - "rst_labels": [] + "section_id": "s4", + "heading": "クラス定義", + "rst_labels": [ + "sql-parameter-parser-label", + "sql-convertor-label", + "db-object-save-class-label" + ] }, { - "section_id": "s20", - "heading": "キャッシュ機能のチューニングについて", + "section_id": "s5", + "heading": "処理シーケンス", "rst_labels": [] }, { - "section_id": "s21", - "heading": "", - "rst_labels": [] + "section_id": "s6", + "heading": "Java実装例(Objectのフィールド値を登録する場合)", + "rst_labels": [ + "db-object-config-label" + ] }, { - "section_id": "s22", - "heading": "制約事項", + "section_id": "s7", + "heading": "設定内容詳細", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_QueryCache.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_03_validation_recursive.rst", "format": "rst", - "filename": "04_QueryCache.rst", + "filename": "08_03_validation_recursive.rst", "type": "component", "category": "libraries", - "id": "libraries-04_QueryCache--s14", - "base_name": "libraries-04_QueryCache", - "output_path": "component/libraries/libraries-04_QueryCache--s14.json", - "assets_dir": "component/libraries/assets/libraries-04_QueryCache--s14/", + "id": "libraries-08_03_validation_recursive--s1", + "base_name": "libraries-08_03_validation_recursive", + "output_path": "component/libraries/libraries-08_03_validation_recursive--s1.json", + "assets_dir": "component/libraries/assets/libraries-08_03_validation_recursive--s1/", "section_range": { - "start_line": 329, - "end_line": 597, + "start_line": 0, + "end_line": 352, "sections": [ - "キャッシュ機能を有効にする設定方法", - "", - "キャッシュを明示的にクリアする方法", "", - "ログ出力", + "複数の Form に対するバリデーション", "", - "キャッシュ機能のチューニングについて", + "Form の配列を入力する際のバリデーション", "", - "制約事項" + "可変配列長の Form 配列を入力する際の実装例", + "" ], "section_ids": [ - "s14", - "s15", - "s16", - "s17", - "s18", - "s19", - "s20", - "s21", - "s22" + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7" ] }, "split_info": { "is_split": true, - "part": 2, + "part": 1, "total_parts": 2, - "original_id": "libraries-04_QueryCache", - "group_line_count": 268 + "original_id": "libraries-08_03_validation_recursive", + "group_line_count": 352 }, "section_map": [ { "section_id": "s1", - "heading": "キャッシュ機能", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "有効期限", + "heading": "複数の Form に対するバリデーション", "rst_labels": [] }, { "section_id": "s3", - "heading": "キャッシュ保存先", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "その他の要件", + "heading": "Form の配列を入力する際のバリデーション", "rst_labels": [] }, { "section_id": "s5", - "heading": "基本実装", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "", + "heading": "可変配列長の Form 配列を入力する際の実装例", "rst_labels": [] }, { "section_id": "s7", - "heading": "構成", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "全体図", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "有効期限付きキャッシュ", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "キャッシュしたSqlResultSetの保護", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "SqlPStatementの生成", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "キャッシュへのアクセス", - "rst_labels": [] - }, - { - "section_id": "s13", "heading": "", "rst_labels": [] }, { - "section_id": "s14", - "heading": "キャッシュ機能を有効にする設定方法", + "section_id": "s8", + "heading": "画面入力用プロパティとデータベースアクセス用プロパティの変換", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_03_validation_recursive.rst", + "format": "rst", + "filename": "08_03_validation_recursive.rst", + "type": "component", + "category": "libraries", + "id": "libraries-08_03_validation_recursive--s8", + "base_name": "libraries-08_03_validation_recursive", + "output_path": "component/libraries/libraries-08_03_validation_recursive--s8.json", + "assets_dir": "component/libraries/assets/libraries-08_03_validation_recursive--s8/", + "section_range": { + "start_line": 352, + "end_line": 472, + "sections": [ + "画面入力用プロパティとデータベースアクセス用プロパティの変換" + ], + "section_ids": [ + "s8" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "libraries-08_03_validation_recursive", + "group_line_count": 120 + }, + "section_map": [ { - "section_id": "s15", + "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s16", - "heading": "キャッシュを明示的にクリアする方法", + "section_id": "s2", + "heading": "複数の Form に対するバリデーション", "rst_labels": [] }, { - "section_id": "s17", + "section_id": "s3", "heading": "", "rst_labels": [] }, { - "section_id": "s18", - "heading": "ログ出力", + "section_id": "s4", + "heading": "Form の配列を入力する際のバリデーション", "rst_labels": [] }, { - "section_id": "s19", + "section_id": "s5", "heading": "", "rst_labels": [] }, { - "section_id": "s20", - "heading": "キャッシュ機能のチューニングについて", + "section_id": "s6", + "heading": "可変配列長の Form 配列を入力する際の実装例", "rst_labels": [] }, { - "section_id": "s21", + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s22", - "heading": "制約事項", + "section_id": "s8", + "heading": "画面入力用プロパティとデータベースアクセス用プロパティの変換", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_TransactionTimeout.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_01_validation_architecture.rst", "format": "rst", - "filename": "04_TransactionTimeout.rst", + "filename": "08_01_validation_architecture.rst", "type": "component", "category": "libraries", - "id": "libraries-04_TransactionTimeout--s1", - "base_name": "libraries-04_TransactionTimeout", - "output_path": "component/libraries/libraries-04_TransactionTimeout--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_TransactionTimeout--s1/", + "id": "libraries-08_01_validation_architecture--s1", + "base_name": "libraries-08_01_validation_architecture", + "output_path": "component/libraries/libraries-08_01_validation_architecture--s1.json", + "assets_dir": "component/libraries/assets/libraries-08_01_validation_architecture--s1/", "section_range": { "start_line": 0, - "end_line": 145, + "end_line": 200, "sections": [ - "トランザクションタイムアウト機能", - "各処理の概要", - "クエリタイムアウト時の動作について", - "アプリケーションロジックでの処理遅延について" + "インタフェース定義", + "クラス定義", + "nablarch.core.validation.ValidationManager の設定" ], "section_ids": [ "s1", "s2", - "s3", - "s4" + "s3" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "libraries-04_TransactionTimeout", - "group_line_count": 145 + "original_id": "libraries-08_01_validation_architecture", + "group_line_count": 200 }, "section_map": [ { "section_id": "s1", - "heading": "トランザクションタイムアウト機能", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s2", - "heading": "各処理の概要", - "rst_labels": [] + "heading": "クラス定義", + "rst_labels": [ + "validation_sequence", + "validation_config" + ] }, { "section_id": "s3", - "heading": "クエリタイムアウト時の動作について", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "アプリケーションロジックでの処理遅延について", + "heading": "nablarch.core.validation.ValidationManager の設定", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Connection.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_05_custom_validator.rst", "format": "rst", - "filename": "04_Connection.rst", + "filename": "08_05_custom_validator.rst", "type": "component", "category": "libraries", - "id": "libraries-04_Connection--s1", - "base_name": "libraries-04_Connection", - "output_path": "component/libraries/libraries-04_Connection--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_Connection--s1/", + "id": "libraries-08_05_custom_validator--s1", + "base_name": "libraries-08_05_custom_validator", + "output_path": "component/libraries/libraries-08_05_custom_validator--s1.json", + "assets_dir": "component/libraries/assets/libraries-08_05_custom_validator--s1/", "section_range": { "start_line": 0, - "end_line": 282, + "end_line": 261, "sections": [ - "データベース接続部品の構造", - "各クラスの責務", - "nablarch.core.db.connectionパッケージ", - "処理シーケンス", - "Javaの実装例" + "アノテーションの作成", + "バリデータの作成", + "バリデータを設定ファイルに登録", + "バリデータを明示的に呼び出す場合" ], "section_ids": [ "s1", "s2", "s3", - "s4", - "s5" + "s4" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 2, - "original_id": "libraries-04_Connection", - "group_line_count": 282 + "total_parts": 1, + "original_id": "libraries-08_05_custom_validator", + "group_line_count": 261 }, "section_map": [ { "section_id": "s1", - "heading": "データベース接続部品の構造", + "heading": "アノテーションの作成", "rst_labels": [] }, { "section_id": "s2", - "heading": "各クラスの責務", + "heading": "バリデータの作成", "rst_labels": [] }, { "section_id": "s3", - "heading": "nablarch.core.db.connectionパッケージ", + "heading": "バリデータを設定ファイルに登録", "rst_labels": [] }, { "section_id": "s4", - "heading": "処理シーケンス", + "heading": "バリデータを明示的に呼び出す場合", "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "Javaの実装例", - "rst_labels": [ - "db-connection-config-label" - ] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_06_direct_call_of_validators.rst", + "format": "rst", + "filename": "08_06_direct_call_of_validators.rst", + "type": "component", + "category": "libraries", + "id": "libraries-08_06_direct_call_of_validators--s1", + "base_name": "libraries-08_06_direct_call_of_validators", + "output_path": "component/libraries/libraries-08_06_direct_call_of_validators--s1.json", + "assets_dir": "component/libraries/assets/libraries-08_06_direct_call_of_validators--s1/", + "section_range": { + "start_line": 0, + "end_line": 59, + "sections": [ + "", + "バリデータの明示的な呼び出し" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-08_06_direct_call_of_validators", + "group_line_count": 59 + }, + "section_map": [ { - "section_id": "s6", - "heading": "設定内容詳細", + "section_id": "s1", + "heading": "", "rst_labels": [ - "database-connection-config-from-jndi-label" + "direct_call_of_validators" ] }, { - "section_id": "s7", - "heading": "設定内容詳細", + "section_id": "s2", + "heading": "バリデータの明示的な呼び出し", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Connection.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_04_validation_form_inheritance.rst", "format": "rst", - "filename": "04_Connection.rst", + "filename": "08_04_validation_form_inheritance.rst", "type": "component", "category": "libraries", - "id": "libraries-04_Connection--s6", - "base_name": "libraries-04_Connection", - "output_path": "component/libraries/libraries-04_Connection--s6.json", - "assets_dir": "component/libraries/assets/libraries-04_Connection--s6/", + "id": "libraries-08_04_validation_form_inheritance--s1", + "base_name": "libraries-08_04_validation_form_inheritance", + "output_path": "component/libraries/libraries-08_04_validation_form_inheritance--s1.json", + "assets_dir": "component/libraries/assets/libraries-08_04_validation_form_inheritance--s1/", "section_range": { - "start_line": 282, - "end_line": 457, + "start_line": 0, + "end_line": 370, "sections": [ - "設定内容詳細", - "設定内容詳細" + "", + "Form の継承とバリデーション条件の継承", + "", + "国際化したプロパティの表示名称の取得方法" ], "section_ids": [ - "s6", - "s7" + "s1", + "s2", + "s3", + "s4" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-04_Connection", - "group_line_count": 175 + "part": 1, + "total_parts": 1, + "original_id": "libraries-08_04_validation_form_inheritance", + "group_line_count": 370 }, "section_map": [ { "section_id": "s1", - "heading": "データベース接続部品の構造", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "各クラスの責務", + "heading": "Form の継承とバリデーション条件の継承", "rst_labels": [] }, { "section_id": "s3", - "heading": "nablarch.core.db.connectionパッケージ", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "処理シーケンス", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "Javaの実装例", - "rst_labels": [ - "db-connection-config-label" - ] - }, - { - "section_id": "s6", - "heading": "設定内容詳細", - "rst_labels": [ - "database-connection-config-from-jndi-label" - ] - }, - { - "section_id": "s7", - "heading": "設定内容詳細", + "heading": "国際化したプロパティの表示名称の取得方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Statement.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_02_validation_usage.rst", "format": "rst", - "filename": "04_Statement.rst", + "filename": "08_02_validation_usage.rst", "type": "component", "category": "libraries", - "id": "libraries-04_Statement--s1", - "base_name": "libraries-04_Statement", - "output_path": "component/libraries/libraries-04_Statement--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_Statement--s1/", + "id": "libraries-08_02_validation_usage--s1", + "base_name": "libraries-08_02_validation_usage", + "output_path": "component/libraries/libraries-08_02_validation_usage--s1.json", + "assets_dir": "component/libraries/assets/libraries-08_02_validation_usage--s1/", "section_range": { "start_line": 0, - "end_line": 353, + "end_line": 389, "sections": [ "", - "SQL文実行部品の構造とその使用方法", - "各クラスの責務", - "nablarch.core.db.statementパッケージ", - "簡易検索の場合の処理シーケンス", - "推奨するJavaの実装例(SQL文を外部ファイル化した場合)" + "バリデーションの実行と入力値の変換", + "", + "Entity の使用", + "", + "バリデーション対象のプロパティ指定", + "" ], "section_ids": [ "s1", @@ -24857,397 +23775,516 @@ "s3", "s4", "s5", - "s6" + "s6", + "s7" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 2, - "original_id": "libraries-04_Statement", - "group_line_count": 353 + "original_id": "libraries-08_02_validation_usage", + "group_line_count": 389 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "db-sqlstatement-label" + "validation_and_convert" ] }, { "section_id": "s2", - "heading": "SQL文実行部品の構造とその使用方法", - "rst_labels": [] + "heading": "バリデーションの実行と入力値の変換", + "rst_labels": [ + "validation_form_example", + "entity-usage" + ] }, { "section_id": "s3", - "heading": "各クラスの責務", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "nablarch.core.db.statementパッケージ", + "heading": "Entity の使用", "rst_labels": [ - "sql-load-class-label", - "db-support-label" + "validation-prop" ] }, { "section_id": "s5", - "heading": "簡易検索の場合の処理シーケンス", - "rst_labels": [ - "sql-gaibuka-label" - ] + "heading": "", + "rst_labels": [] }, { "section_id": "s6", - "heading": "推奨するJavaの実装例(SQL文を外部ファイル化した場合)", + "heading": "バリデーション対象のプロパティ指定", "rst_labels": [] }, { "section_id": "s7", - "heading": "Javaの実装例(SQL文指定の場合)", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "設定内容詳細", + "heading": "1つのForm内の複数項目にまたがる入力チェック", "rst_labels": [ - "db-basic-sqlstatementexceptionfactory-label" + "convert_property" ] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "値の変換", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "入力値のトリム", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "SqlRowをインプットとして精査を行う例", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "プロパティに紐付くメッセージの作成", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_Statement.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_02_validation_usage.rst", "format": "rst", - "filename": "04_Statement.rst", + "filename": "08_02_validation_usage.rst", "type": "component", "category": "libraries", - "id": "libraries-04_Statement--s7", - "base_name": "libraries-04_Statement", - "output_path": "component/libraries/libraries-04_Statement--s7.json", - "assets_dir": "component/libraries/assets/libraries-04_Statement--s7/", + "id": "libraries-08_02_validation_usage--s8", + "base_name": "libraries-08_02_validation_usage", + "output_path": "component/libraries/libraries-08_02_validation_usage--s8.json", + "assets_dir": "component/libraries/assets/libraries-08_02_validation_usage--s8/", "section_range": { - "start_line": 353, - "end_line": 541, + "start_line": 389, + "end_line": 698, "sections": [ - "Javaの実装例(SQL文指定の場合)", - "設定内容詳細" + "1つのForm内の複数項目にまたがる入力チェック", + "", + "値の変換", + "", + "入力値のトリム", + "SqlRowをインプットとして精査を行う例", + "", + "プロパティに紐付くメッセージの作成" ], "section_ids": [ - "s7", - "s8" + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15" ] }, "split_info": { "is_split": true, "part": 2, "total_parts": 2, - "original_id": "libraries-04_Statement", - "group_line_count": 188 + "original_id": "libraries-08_02_validation_usage", + "group_line_count": 309 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "db-sqlstatement-label" + "validation_and_convert" ] }, { "section_id": "s2", - "heading": "SQL文実行部品の構造とその使用方法", - "rst_labels": [] + "heading": "バリデーションの実行と入力値の変換", + "rst_labels": [ + "validation_form_example", + "entity-usage" + ] }, { "section_id": "s3", - "heading": "各クラスの責務", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "nablarch.core.db.statementパッケージ", + "heading": "Entity の使用", "rst_labels": [ - "sql-load-class-label", - "db-support-label" + "validation-prop" ] }, { "section_id": "s5", - "heading": "簡易検索の場合の処理シーケンス", - "rst_labels": [ - "sql-gaibuka-label" - ] + "heading": "", + "rst_labels": [] }, { "section_id": "s6", - "heading": "推奨するJavaの実装例(SQL文を外部ファイル化した場合)", + "heading": "バリデーション対象のプロパティ指定", "rst_labels": [] }, { "section_id": "s7", - "heading": "Javaの実装例(SQL文指定の場合)", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "設定内容詳細", + "heading": "1つのForm内の複数項目にまたがる入力チェック", "rst_labels": [ - "db-basic-sqlstatementexceptionfactory-label" + "convert_property" ] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "値の変換", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "入力値のトリム", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "SqlRowをインプットとして精査を行う例", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "プロパティに紐付くメッセージの作成", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_ObjectSave.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/06_FileUpload.rst", "format": "rst", - "filename": "04_ObjectSave.rst", + "filename": "06_FileUpload.rst", "type": "component", "category": "libraries", - "id": "libraries-04_ObjectSave--s1", - "base_name": "libraries-04_ObjectSave", - "output_path": "component/libraries/libraries-04_ObjectSave--s1.json", - "assets_dir": "component/libraries/assets/libraries-04_ObjectSave--s1/", + "id": "libraries-06_FileUpload", + "base_name": "libraries-06_FileUpload", + "output_path": "component/libraries/libraries-06_FileUpload.json", + "assets_dir": "component/libraries/assets/libraries-06_FileUpload/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/05_FileDownload.rst", + "format": "rst", + "filename": "05_FileDownload.rst", + "type": "component", + "category": "libraries", + "id": "libraries-05_FileDownload--s1", + "base_name": "libraries-05_FileDownload", + "output_path": "component/libraries/libraries-05_FileDownload--s1.json", + "assets_dir": "component/libraries/assets/libraries-05_FileDownload--s1/", "section_range": { "start_line": 0, - "end_line": 66, + "end_line": 399, "sections": [ "", - "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", - "インタフェース定義" + "概要", + "", + "特徴", + "", + "要求", + "", + "構成", + "インタフェース定義", + "nablarch.fw.web.HttpResponseクラスのメソッド", + "", + "設定の記述", + "設定内容詳細", + "設定内容詳細" ], "section_ids": [ "s1", "s2", - "s3" + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 3, - "original_id": "libraries-04_ObjectSave", - "group_line_count": 66 + "total_parts": 2, + "original_id": "libraries-05_FileDownload", + "group_line_count": 399 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "db-object-store-label" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "クラス定義", - "rst_labels": [ - "sql-parameter-parser-label", - "sql-convertor-label", - "db-object-save-class-label" - ] + "heading": "特徴", + "rst_labels": [] }, { "section_id": "s5", - "heading": "処理シーケンス", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "Java実装例(Objectのフィールド値を登録する場合)", + "heading": "要求", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "構成", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "インタフェース定義", "rst_labels": [ - "db-object-config-label" + "default-interface-label" ] }, { - "section_id": "s7", + "section_id": "s10", + "heading": "nablarch.fw.web.HttpResponseクラスのメソッド", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "設定の記述", + "rst_labels": [] + }, + { + "section_id": "s13", "heading": "設定内容詳細", "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "設定内容詳細", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "使用例", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_ObjectSave.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/05_FileDownload.rst", "format": "rst", - "filename": "04_ObjectSave.rst", + "filename": "05_FileDownload.rst", "type": "component", "category": "libraries", - "id": "libraries-04_ObjectSave--s4", - "base_name": "libraries-04_ObjectSave", - "output_path": "component/libraries/libraries-04_ObjectSave--s4.json", - "assets_dir": "component/libraries/assets/libraries-04_ObjectSave--s4/", + "id": "libraries-05_FileDownload--s15", + "base_name": "libraries-05_FileDownload", + "output_path": "component/libraries/libraries-05_FileDownload--s15.json", + "assets_dir": "component/libraries/assets/libraries-05_FileDownload--s15/", "section_range": { - "start_line": 66, - "end_line": 474, + "start_line": 399, + "end_line": 428, "sections": [ - "クラス定義" + "", + "使用例" ], "section_ids": [ - "s4" + "s15", + "s16" ] }, "split_info": { "is_split": true, "part": 2, - "total_parts": 3, - "original_id": "libraries-04_ObjectSave", - "group_line_count": 408 + "total_parts": 2, + "original_id": "libraries-05_FileDownload", + "group_line_count": 29 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "db-object-store-label" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "クラス定義", - "rst_labels": [ - "sql-parameter-parser-label", - "sql-convertor-label", - "db-object-save-class-label" - ] + "heading": "特徴", + "rst_labels": [] }, { "section_id": "s5", - "heading": "処理シーケンス", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "Java実装例(Objectのフィールド値を登録する場合)", - "rst_labels": [ - "db-object-config-label" - ] + "heading": "要求", + "rst_labels": [] }, { "section_id": "s7", - "heading": "設定内容詳細", + "heading": "", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/04/04_ObjectSave.rst", - "format": "rst", - "filename": "04_ObjectSave.rst", - "type": "component", - "category": "libraries", - "id": "libraries-04_ObjectSave--s5", - "base_name": "libraries-04_ObjectSave", - "output_path": "component/libraries/libraries-04_ObjectSave--s5.json", - "assets_dir": "component/libraries/assets/libraries-04_ObjectSave--s5/", - "section_range": { - "start_line": 474, - "end_line": 852, - "sections": [ - "処理シーケンス", - "Java実装例(Objectのフィールド値を登録する場合)", - "設定内容詳細" - ], - "section_ids": [ - "s5", - "s6", - "s7" - ] - }, - "split_info": { - "is_split": true, - "part": 3, - "total_parts": 3, - "original_id": "libraries-04_ObjectSave", - "group_line_count": 378 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s8", + "heading": "構成", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "インタフェース定義", "rst_labels": [ - "db-object-store-label" + "default-interface-label" ] }, { - "section_id": "s2", - "heading": "オブジェクトのフィールドの値のデータベースへの登録機能(オブジェクトのフィールド値を使用した検索機能)", + "section_id": "s10", + "heading": "nablarch.fw.web.HttpResponseクラスのメソッド", "rst_labels": [] }, { - "section_id": "s3", - "heading": "インタフェース定義", + "section_id": "s11", + "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "クラス定義", - "rst_labels": [ - "sql-parameter-parser-label", - "sql-convertor-label", - "db-object-save-class-label" - ] + "section_id": "s12", + "heading": "設定の記述", + "rst_labels": [] }, { - "section_id": "s5", - "heading": "処理シーケンス", + "section_id": "s13", + "heading": "設定内容詳細", "rst_labels": [] }, { - "section_id": "s6", - "heading": "Java実装例(Objectのフィールド値を登録する場合)", - "rst_labels": [ - "db-object-config-label" - ] + "section_id": "s14", + "heading": "設定内容詳細", + "rst_labels": [] }, { - "section_id": "s7", - "heading": "設定内容詳細", + "section_id": "s15", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "使用例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_03_validation_recursive.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/07_UserAgent.rst", "format": "rst", - "filename": "08_03_validation_recursive.rst", + "filename": "07_UserAgent.rst", "type": "component", "category": "libraries", - "id": "libraries-08_03_validation_recursive--s1", - "base_name": "libraries-08_03_validation_recursive", - "output_path": "component/libraries/libraries-08_03_validation_recursive--s1.json", - "assets_dir": "component/libraries/assets/libraries-08_03_validation_recursive--s1/", + "id": "libraries-07_UserAgent--s1", + "base_name": "libraries-07_UserAgent", + "output_path": "component/libraries/libraries-07_UserAgent--s1.json", + "assets_dir": "component/libraries/assets/libraries-07_UserAgent--s1/", "section_range": { "start_line": 0, - "end_line": 352, + "end_line": 149, "sections": [ + "インタフェース定義", + "nablarch.fw.web.HttpRequestクラスのメソッド", + "nablarch.fw.web.useragent.UserAgentParserインタフェースのメソッド", + "nablarch.fw.web.useragent.UserAgentクラスのメソッド", "", - "複数の Form に対するバリデーション", - "", - "Form の配列を入力する際のバリデーション", - "", - "可変配列長の Form 配列を入力する際の実装例", - "" + "設定の記述" ], "section_ids": [ "s1", @@ -25255,36 +24292,35 @@ "s3", "s4", "s5", - "s6", - "s7" + "s6" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 2, - "original_id": "libraries-08_03_validation_recursive", - "group_line_count": 352 + "total_parts": 1, + "original_id": "libraries-07_UserAgent", + "group_line_count": 149 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s2", - "heading": "複数の Form に対するバリデーション", + "heading": "nablarch.fw.web.HttpRequestクラスのメソッド", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "nablarch.fw.web.useragent.UserAgentParserインタフェースのメソッド", "rst_labels": [] }, { "section_id": "s4", - "heading": "Form の配列を入力する際のバリデーション", + "heading": "nablarch.fw.web.useragent.UserAgentクラスのメソッド", "rst_labels": [] }, { @@ -25294,48 +24330,56 @@ }, { "section_id": "s6", - "heading": "可変配列長の Form 配列を入力する際の実装例", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "画面入力用プロパティとデータベースアクセス用プロパティの変換", + "heading": "設定の記述", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_03_validation_recursive.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging.rst", "format": "rst", - "filename": "08_03_validation_recursive.rst", - "type": "component", - "category": "libraries", - "id": "libraries-08_03_validation_recursive--s8", - "base_name": "libraries-08_03_validation_recursive", - "output_path": "component/libraries/libraries-08_03_validation_recursive--s8.json", - "assets_dir": "component/libraries/assets/libraries-08_03_validation_recursive--s8/", + "filename": "messaging.rst", + "type": "processing-pattern", + "category": "mom-messaging", + "id": "mom-messaging-messaging", + "base_name": "mom-messaging-messaging", + "output_path": "processing-pattern/mom-messaging/mom-messaging-messaging.json", + "assets_dir": "processing-pattern/mom-messaging/assets/mom-messaging-messaging/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging_receive.rst", + "format": "rst", + "filename": "messaging_receive.rst", + "type": "processing-pattern", + "category": "mom-messaging", + "id": "mom-messaging-messaging_receive--s1", + "base_name": "mom-messaging-messaging_receive", + "output_path": "processing-pattern/mom-messaging/mom-messaging-messaging_receive--s1.json", + "assets_dir": "processing-pattern/mom-messaging/assets/mom-messaging-messaging_receive--s1/", "section_range": { - "start_line": 352, - "end_line": 472, + "start_line": 0, + "end_line": 262, "sections": [ - "画面入力用プロパティとデータベースアクセス用プロパティの変換" + "", + "業務アクションハンドラの実装", + "", + "標準ハンドラ構成と主要処理フロー" ], "section_ids": [ - "s8" + "s1", + "s2", + "s3", + "s4" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-08_03_validation_recursive", - "group_line_count": 120 - }, + "part": 1, + "total_parts": 1, + "original_id": "mom-messaging-messaging_receive", + "group_line_count": 262 + }, "section_map": [ { "section_id": "s1", @@ -25344,7 +24388,7 @@ }, { "section_id": "s2", - "heading": "複数の Form に対するバリデーション", + "heading": "業務アクションハンドラの実装", "rst_labels": [] }, { @@ -25354,225 +24398,279 @@ }, { "section_id": "s4", - "heading": "Form の配列を入力する際のバリデーション", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "可変配列長の Form 配列を入力する際の実装例", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "画面入力用プロパティとデータベースアクセス用プロパティの変換", - "rst_labels": [] + "heading": "標準ハンドラ構成と主要処理フロー", + "rst_labels": [ + "flow-table" + ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_01_validation_architecture.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch_resident_thread_sync.rst", "format": "rst", - "filename": "08_01_validation_architecture.rst", - "type": "component", - "category": "libraries", - "id": "libraries-08_01_validation_architecture--s1", - "base_name": "libraries-08_01_validation_architecture", - "output_path": "component/libraries/libraries-08_01_validation_architecture--s1.json", - "assets_dir": "component/libraries/assets/libraries-08_01_validation_architecture--s1/", + "filename": "batch_resident_thread_sync.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-batch_resident_thread_sync--s1", + "base_name": "nablarch-batch-batch_resident_thread_sync", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch_resident_thread_sync--s1.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch_resident_thread_sync--s1/", "section_range": { "start_line": 0, - "end_line": 200, + "end_line": 342, "sections": [ - "インタフェース定義", - "クラス定義", - "nablarch.core.validation.ValidationManager の設定" + "", + "基本構造", + "", + "業務アクションハンドラの実装", + "", + "標準ハンドラ構成と主要処理フロー" ], "section_ids": [ "s1", "s2", - "s3" + "s3", + "s4", + "s5", + "s6" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "libraries-08_01_validation_architecture", - "group_line_count": 200 + "original_id": "nablarch-batch-batch_resident_thread_sync", + "group_line_count": 342 }, "section_map": [ { "section_id": "s1", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "クラス定義", - "rst_labels": [ - "validation_sequence", - "validation_config" - ] + "heading": "基本構造", + "rst_labels": [] }, { "section_id": "s3", - "heading": "nablarch.core.validation.ValidationManager の設定", + "heading": "", "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "業務アクションハンドラの実装", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "標準ハンドラ構成と主要処理フロー", + "rst_labels": [ + "flow-table" + ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_05_custom_validator.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging_http.rst", "format": "rst", - "filename": "08_05_custom_validator.rst", - "type": "component", - "category": "libraries", - "id": "libraries-08_05_custom_validator--s1", - "base_name": "libraries-08_05_custom_validator", - "output_path": "component/libraries/libraries-08_05_custom_validator--s1.json", - "assets_dir": "component/libraries/assets/libraries-08_05_custom_validator--s1/", + "filename": "messaging_http.rst", + "type": "processing-pattern", + "category": "http-messaging", + "id": "http-messaging-messaging_http--s1", + "base_name": "http-messaging-messaging_http", + "output_path": "processing-pattern/http-messaging/http-messaging-messaging_http--s1.json", + "assets_dir": "processing-pattern/http-messaging/assets/http-messaging-messaging_http--s1/", "section_range": { "start_line": 0, - "end_line": 261, + "end_line": 246, "sections": [ - "アノテーションの作成", - "バリデータの作成", - "バリデータを設定ファイルに登録", - "バリデータを明示的に呼び出す場合" + "", + "基本構造", + "", + "業務アクションハンドラの実装", + "", + "標準ハンドラ構成と主要処理フロー" ], "section_ids": [ "s1", "s2", "s3", - "s4" + "s4", + "s5", + "s6" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "libraries-08_05_custom_validator", - "group_line_count": 261 + "original_id": "http-messaging-messaging_http", + "group_line_count": 246 }, "section_map": [ { "section_id": "s1", - "heading": "アノテーションの作成", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "バリデータの作成", + "heading": "基本構造", "rst_labels": [] }, { "section_id": "s3", - "heading": "バリデータを設定ファイルに登録", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "バリデータを明示的に呼び出す場合", + "heading": "業務アクションハンドラの実装", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "標準ハンドラ構成と主要処理フロー", + "rst_labels": [ + "flow-table" + ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_06_direct_call_of_validators.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging_request_reply.rst", "format": "rst", - "filename": "08_06_direct_call_of_validators.rst", - "type": "component", - "category": "libraries", - "id": "libraries-08_06_direct_call_of_validators--s1", - "base_name": "libraries-08_06_direct_call_of_validators", - "output_path": "component/libraries/libraries-08_06_direct_call_of_validators--s1.json", - "assets_dir": "component/libraries/assets/libraries-08_06_direct_call_of_validators--s1/", + "filename": "messaging_request_reply.rst", + "type": "processing-pattern", + "category": "mom-messaging", + "id": "mom-messaging-messaging_request_reply--s1", + "base_name": "mom-messaging-messaging_request_reply", + "output_path": "processing-pattern/mom-messaging/mom-messaging-messaging_request_reply--s1.json", + "assets_dir": "processing-pattern/mom-messaging/assets/mom-messaging-messaging_request_reply--s1/", "section_range": { "start_line": 0, - "end_line": 59, + "end_line": 330, "sections": [ "", - "バリデータの明示的な呼び出し" + "基本構造", + "", + "業務アクションハンドラの実装", + "", + "標準ハンドラ構成と主要処理フロー" ], "section_ids": [ "s1", - "s2" + "s2", + "s3", + "s4", + "s5", + "s6" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "libraries-08_06_direct_call_of_validators", - "group_line_count": 59 + "original_id": "mom-messaging-messaging_request_reply", + "group_line_count": 330 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "direct_call_of_validators" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "バリデータの明示的な呼び出し", + "heading": "基本構造", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "業務アクションハンドラの実装", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "標準ハンドラ構成と主要処理フロー", + "rst_labels": [ + "flow-table" + ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_04_validation_form_inheritance.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/concept.rst", "format": "rst", - "filename": "08_04_validation_form_inheritance.rst", - "type": "component", - "category": "libraries", - "id": "libraries-08_04_validation_form_inheritance--s1", - "base_name": "libraries-08_04_validation_form_inheritance", - "output_path": "component/libraries/libraries-08_04_validation_form_inheritance--s1.json", - "assets_dir": "component/libraries/assets/libraries-08_04_validation_form_inheritance--s1/", + "filename": "concept.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-concept-architectural_pattern--s1", + "base_name": "about-nablarch-concept-architectural_pattern", + "output_path": "about/about-nablarch/about-nablarch-concept-architectural_pattern--s1.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-concept-architectural_pattern--s1/", "section_range": { "start_line": 0, - "end_line": 370, + "end_line": 276, "sections": [ "", - "Form の継承とバリデーション条件の継承", + "NAFのアプリケーション動作モデル", "", - "国際化したプロパティの表示名称の取得方法" + "標準ハンドラ構成", + "", + "アプリケーションの実行と初期化処理", + "" ], "section_ids": [ "s1", "s2", "s3", - "s4" + "s4", + "s5", + "s6", + "s7" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "libraries-08_04_validation_form_inheritance", - "group_line_count": 370 + "total_parts": 3, + "original_id": "about-nablarch-concept-architectural_pattern", + "group_line_count": 276 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "basic_architecture" + ] }, { "section_id": "s2", - "heading": "Form の継承とバリデーション条件の継承", + "heading": "NAFのアプリケーション動作モデル", "rst_labels": [] }, { @@ -25582,193 +24680,158 @@ }, { "section_id": "s4", - "heading": "国際化したプロパティの表示名称の取得方法", + "heading": "標準ハンドラ構成", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_02_validation_usage.rst", - "format": "rst", - "filename": "08_02_validation_usage.rst", - "type": "component", - "category": "libraries", - "id": "libraries-08_02_validation_usage--s1", - "base_name": "libraries-08_02_validation_usage", - "output_path": "component/libraries/libraries-08_02_validation_usage--s1.json", - "assets_dir": "component/libraries/assets/libraries-08_02_validation_usage--s1/", - "section_range": { - "start_line": 0, - "end_line": 389, - "sections": [ - "", - "バリデーションの実行と入力値の変換", - "", - "Entity の使用", - "", - "バリデーション対象のプロパティ指定", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-08_02_validation_usage", - "group_line_count": 389 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s5", "heading": "", - "rst_labels": [ - "validation_and_convert" - ] + "rst_labels": [] }, { - "section_id": "s2", - "heading": "バリデーションの実行と入力値の変換", - "rst_labels": [ - "validation_form_example", - "entity-usage" - ] + "section_id": "s6", + "heading": "アプリケーションの実行と初期化処理", + "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "Entity の使用", + "section_id": "s8", + "heading": "ハンドラの構造と実装", "rst_labels": [ - "validation-prop" + "method_binding", + "request_processing" ] }, { - "section_id": "s5", + "section_id": "s9", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "バリデーション対象のプロパティ指定", + "section_id": "s10", + "heading": "リクエストの識別と業務処理の実行", + "rst_labels": [ + "execution_id", + "request_path", + "internal_request_id" + ] + }, + { + "section_id": "s11", + "heading": "", "rst_labels": [] }, { - "section_id": "s7", + "section_id": "s12", "heading": "", "rst_labels": [] }, { - "section_id": "s8", - "heading": "1つのForm内の複数項目にまたがる入力チェック", + "section_id": "s13", + "heading": "処理結果の識別", "rst_labels": [ - "convert_property" + "scope" ] }, { - "section_id": "s9", + "section_id": "s14", "heading": "", "rst_labels": [] }, { - "section_id": "s10", - "heading": "値の変換", - "rst_labels": [] + "section_id": "s15", + "heading": "変数スコープ", + "rst_labels": [ + "windowscope" + ] }, { - "section_id": "s11", + "section_id": "s16", "heading": "", "rst_labels": [] }, { - "section_id": "s12", - "heading": "入力値のトリム", - "rst_labels": [] + "section_id": "s17", + "heading": "ハンドライベントコールバック", + "rst_labels": [ + "data_reader" + ] }, { - "section_id": "s13", - "heading": "SqlRowをインプットとして精査を行う例", + "section_id": "s18", + "heading": "", "rst_labels": [] }, { - "section_id": "s14", + "section_id": "s19", + "heading": "データリーダ", + "rst_labels": [ + "implementing_action_handler" + ] + }, + { + "section_id": "s20", "heading": "", "rst_labels": [] }, { - "section_id": "s15", - "heading": "プロパティに紐付くメッセージの作成", + "section_id": "s21", + "heading": "業務アクションハンドラの実装", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/08/08_02_validation_usage.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/concept.rst", "format": "rst", - "filename": "08_02_validation_usage.rst", - "type": "component", - "category": "libraries", - "id": "libraries-08_02_validation_usage--s8", - "base_name": "libraries-08_02_validation_usage", - "output_path": "component/libraries/libraries-08_02_validation_usage--s8.json", - "assets_dir": "component/libraries/assets/libraries-08_02_validation_usage--s8/", + "filename": "concept.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-concept--s8", + "base_name": "about-nablarch-concept", + "output_path": "about/about-nablarch/about-nablarch-concept--s8.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-concept--s8/", "section_range": { - "start_line": 389, - "end_line": 698, + "start_line": 276, + "end_line": 631, "sections": [ - "1つのForm内の複数項目にまたがる入力チェック", - "", - "値の変換", + "ハンドラの構造と実装", "", - "入力値のトリム", - "SqlRowをインプットとして精査を行う例", + "リクエストの識別と業務処理の実行", "", - "プロパティに紐付くメッセージの作成" + "" ], "section_ids": [ "s8", "s9", "s10", "s11", - "s12", - "s13", - "s14", - "s15" + "s12" ] }, "split_info": { "is_split": true, "part": 2, - "total_parts": 2, - "original_id": "libraries-08_02_validation_usage", - "group_line_count": 309 + "total_parts": 3, + "original_id": "about-nablarch-concept", + "group_line_count": 355 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "validation_and_convert" + "basic_architecture" ] }, { "section_id": "s2", - "heading": "バリデーションの実行と入力値の変換", - "rst_labels": [ - "validation_form_example", - "entity-usage" - ] + "heading": "NAFのアプリケーション動作モデル", + "rst_labels": [] }, { "section_id": "s3", @@ -25777,10 +24840,8 @@ }, { "section_id": "s4", - "heading": "Entity の使用", - "rst_labels": [ - "validation-prop" - ] + "heading": "標準ハンドラ構成", + "rst_labels": [] }, { "section_id": "s5", @@ -25789,7 +24850,7 @@ }, { "section_id": "s6", - "heading": "バリデーション対象のプロパティ指定", + "heading": "アプリケーションの実行と初期化処理", "rst_labels": [] }, { @@ -25799,9 +24860,10 @@ }, { "section_id": "s8", - "heading": "1つのForm内の複数項目にまたがる入力チェック", + "heading": "ハンドラの構造と実装", "rst_labels": [ - "convert_property" + "method_binding", + "request_processing" ] }, { @@ -25811,8 +24873,12 @@ }, { "section_id": "s10", - "heading": "値の変換", - "rst_labels": [] + "heading": "リクエストの識別と業務処理の実行", + "rst_labels": [ + "execution_id", + "request_path", + "internal_request_id" + ] }, { "section_id": "s11", @@ -25821,13 +24887,15 @@ }, { "section_id": "s12", - "heading": "入力値のトリム", + "heading": "", "rst_labels": [] }, { "section_id": "s13", - "heading": "SqlRowをインプットとして精査を行う例", - "rst_labels": [] + "heading": "処理結果の識別", + "rst_labels": [ + "scope" + ] }, { "section_id": "s14", @@ -25836,85 +24904,101 @@ }, { "section_id": "s15", - "heading": "プロパティに紐付くメッセージの作成", + "heading": "変数スコープ", + "rst_labels": [ + "windowscope" + ] + }, + { + "section_id": "s16", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "ハンドライベントコールバック", + "rst_labels": [ + "data_reader" + ] + }, + { + "section_id": "s18", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "データリーダ", + "rst_labels": [ + "implementing_action_handler" + ] + }, + { + "section_id": "s20", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "業務アクションハンドラの実装", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/06_FileUpload.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/concept.rst", "format": "rst", - "filename": "06_FileUpload.rst", - "type": "component", - "category": "libraries", - "id": "libraries-06_FileUpload", - "base_name": "libraries-06_FileUpload", - "output_path": "component/libraries/libraries-06_FileUpload.json", - "assets_dir": "component/libraries/assets/libraries-06_FileUpload/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/05_FileDownload.rst", - "format": "rst", - "filename": "05_FileDownload.rst", - "type": "component", - "category": "libraries", - "id": "libraries-05_FileDownload--s1", - "base_name": "libraries-05_FileDownload", - "output_path": "component/libraries/libraries-05_FileDownload--s1.json", - "assets_dir": "component/libraries/assets/libraries-05_FileDownload--s1/", + "filename": "concept.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-concept--s13", + "base_name": "about-nablarch-concept", + "output_path": "about/about-nablarch/about-nablarch-concept--s13.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-concept--s13/", "section_range": { - "start_line": 0, - "end_line": 399, + "start_line": 631, + "end_line": 1019, "sections": [ + "処理結果の識別", "", - "概要", - "", - "特徴", + "変数スコープ", "", - "要求", + "ハンドライベントコールバック", "", - "構成", - "インタフェース定義", - "nablarch.fw.web.HttpResponseクラスのメソッド", + "データリーダ", "", - "設定の記述", - "設定内容詳細", - "設定内容詳細" + "業務アクションハンドラの実装" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", "s13", - "s14" + "s14", + "s15", + "s16", + "s17", + "s18", + "s19", + "s20", + "s21" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-05_FileDownload", - "group_line_count": 399 + "part": 3, + "total_parts": 3, + "original_id": "about-nablarch-concept", + "group_line_count": 388 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "basic_architecture" + ] }, { "section_id": "s2", - "heading": "概要", + "heading": "NAFのアプリケーション動作モデル", "rst_labels": [] }, { @@ -25924,7 +25008,7 @@ }, { "section_id": "s4", - "heading": "特徴", + "heading": "標準ハンドラ構成", "rst_labels": [] }, { @@ -25934,7 +25018,7 @@ }, { "section_id": "s6", - "heading": "要求", + "heading": "アプリケーションの実行と初期化処理", "rst_labels": [] }, { @@ -25944,20 +25028,25 @@ }, { "section_id": "s8", - "heading": "構成", - "rst_labels": [] + "heading": "ハンドラの構造と実装", + "rst_labels": [ + "method_binding", + "request_processing" + ] }, { "section_id": "s9", - "heading": "インタフェース定義", - "rst_labels": [ - "default-interface-label" - ] + "heading": "", + "rst_labels": [] }, { "section_id": "s10", - "heading": "nablarch.fw.web.HttpResponseクラスのメソッド", - "rst_labels": [] + "heading": "リクエストの識別と業務処理の実行", + "rst_labels": [ + "execution_id", + "request_path", + "internal_request_id" + ] }, { "section_id": "s11", @@ -25966,69 +25055,108 @@ }, { "section_id": "s12", - "heading": "設定の記述", + "heading": "", "rst_labels": [] }, { "section_id": "s13", - "heading": "設定内容詳細", - "rst_labels": [] + "heading": "処理結果の識別", + "rst_labels": [ + "scope" + ] }, { "section_id": "s14", - "heading": "設定内容詳細", + "heading": "", "rst_labels": [] }, { "section_id": "s15", + "heading": "変数スコープ", + "rst_labels": [ + "windowscope" + ] + }, + { + "section_id": "s16", "heading": "", "rst_labels": [] }, { - "section_id": "s16", - "heading": "使用例", + "section_id": "s17", + "heading": "ハンドライベントコールバック", + "rst_labels": [ + "data_reader" + ] + }, + { + "section_id": "s18", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "データリーダ", + "rst_labels": [ + "implementing_action_handler" + ] + }, + { + "section_id": "s20", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "業務アクションハンドラの実装", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/05_FileDownload.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/web_gui.rst", "format": "rst", - "filename": "05_FileDownload.rst", - "type": "component", - "category": "libraries", - "id": "libraries-05_FileDownload--s15", - "base_name": "libraries-05_FileDownload", - "output_path": "component/libraries/libraries-05_FileDownload--s15.json", - "assets_dir": "component/libraries/assets/libraries-05_FileDownload--s15/", + "filename": "web_gui.rst", + "type": "processing-pattern", + "category": "web-application", + "id": "web-application-web_gui--s1", + "base_name": "web-application-web_gui", + "output_path": "processing-pattern/web-application/web-application-web_gui--s1.json", + "assets_dir": "processing-pattern/web-application/assets/web-application-web_gui--s1/", "section_range": { - "start_line": 399, - "end_line": 428, + "start_line": 0, + "end_line": 251, "sections": [ "", - "使用例" + "業務アクションハンドラの実装", + "", + "標準ハンドラ構成と主要処理フロー" ], "section_ids": [ - "s15", - "s16" + "s1", + "s2", + "s3", + "s4" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-05_FileDownload", - "group_line_count": 29 + "part": 1, + "total_parts": 1, + "original_id": "web-application-web_gui", + "group_line_count": 251 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "web_gui" + ] }, { "section_id": "s2", - "heading": "概要", + "heading": "業務アクションハンドラの実装", "rst_labels": [] }, { @@ -26038,169 +25166,113 @@ }, { "section_id": "s4", - "heading": "特徴", - "rst_labels": [] - }, + "heading": "標準ハンドラ構成と主要処理フロー", + "rst_labels": [ + "flow-table" + ] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch_resident.rst", + "format": "rst", + "filename": "batch_resident.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-batch_resident--s1", + "base_name": "nablarch-batch-batch_resident", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch_resident--s1.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch_resident--s1/", + "section_range": { + "start_line": 0, + "end_line": 293, + "sections": [ + "", + "基本構造", + "", + "業務アクションハンドラの実装", + "", + "標準ハンドラ構成と主要処理フロー" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "nablarch-batch-batch_resident", + "group_line_count": 293 + }, + "section_map": [ { - "section_id": "s5", + "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "要求", + "section_id": "s2", + "heading": "基本構造", "rst_labels": [] }, { - "section_id": "s7", + "section_id": "s3", "heading": "", "rst_labels": [] }, { - "section_id": "s8", - "heading": "構成", + "section_id": "s4", + "heading": "業務アクションハンドラの実装", "rst_labels": [] }, { - "section_id": "s9", - "heading": "インタフェース定義", - "rst_labels": [ - "default-interface-label" - ] - }, - { - "section_id": "s10", - "heading": "nablarch.fw.web.HttpResponseクラスのメソッド", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "設定の記述", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "設定内容詳細", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "設定内容詳細", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s16", - "heading": "使用例", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/02_Fw/01_Web/07_UserAgent.rst", - "format": "rst", - "filename": "07_UserAgent.rst", - "type": "component", - "category": "libraries", - "id": "libraries-07_UserAgent--s1", - "base_name": "libraries-07_UserAgent", - "output_path": "component/libraries/libraries-07_UserAgent--s1.json", - "assets_dir": "component/libraries/assets/libraries-07_UserAgent--s1/", - "section_range": { - "start_line": 0, - "end_line": 149, - "sections": [ - "インタフェース定義", - "nablarch.fw.web.HttpRequestクラスのメソッド", - "nablarch.fw.web.useragent.UserAgentParserインタフェースのメソッド", - "nablarch.fw.web.useragent.UserAgentクラスのメソッド", - "", - "設定の記述" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-07_UserAgent", - "group_line_count": 149 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "インタフェース定義", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "nablarch.fw.web.HttpRequestクラスのメソッド", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "nablarch.fw.web.useragent.UserAgentParserインタフェースのメソッド", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "nablarch.fw.web.useragent.UserAgentクラスのメソッド", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] + "section_id": "s5", + "heading": "", + "rst_labels": [] }, { "section_id": "s6", - "heading": "設定の記述", - "rst_labels": [] + "heading": "標準ハンドラ構成と主要処理フロー", + "rst_labels": [ + "flow-table" + ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch.rst", "format": "rst", - "filename": "messaging.rst", + "filename": "batch.rst", "type": "processing-pattern", - "category": "mom-messaging", - "id": "mom-messaging-messaging", - "base_name": "mom-messaging-messaging", - "output_path": "processing-pattern/mom-messaging/mom-messaging-messaging.json", - "assets_dir": "processing-pattern/mom-messaging/assets/mom-messaging-messaging/", + "category": "nablarch-batch", + "id": "nablarch-batch-batch-architectural_pattern", + "base_name": "nablarch-batch-batch-architectural_pattern", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch-architectural_pattern.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch-architectural_pattern/", "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging_receive.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch_single_shot.rst", "format": "rst", - "filename": "messaging_receive.rst", + "filename": "batch_single_shot.rst", "type": "processing-pattern", - "category": "mom-messaging", - "id": "mom-messaging-messaging_receive--s1", - "base_name": "mom-messaging-messaging_receive", - "output_path": "processing-pattern/mom-messaging/mom-messaging-messaging_receive--s1.json", - "assets_dir": "processing-pattern/mom-messaging/assets/mom-messaging-messaging_receive--s1/", + "category": "nablarch-batch", + "id": "nablarch-batch-batch_single_shot--s1", + "base_name": "nablarch-batch-batch_single_shot", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch_single_shot--s1.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch_single_shot--s1/", "section_range": { "start_line": 0, - "end_line": 262, + "end_line": 186, "sections": [ + "", + "基本構造", "", "業務アクションハンドラの実装", "", @@ -26210,15 +25282,17 @@ "s1", "s2", "s3", - "s4" + "s4", + "s5", + "s6" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "mom-messaging-messaging_receive", - "group_line_count": 262 + "original_id": "nablarch-batch-batch_single_shot", + "group_line_count": 186 }, "section_map": [ { @@ -26228,7 +25302,7 @@ }, { "section_id": "s2", - "heading": "業務アクションハンドラの実装", + "heading": "基本構造", "rst_labels": [] }, { @@ -26238,6 +25312,16 @@ }, { "section_id": "s4", + "heading": "業務アクションハンドラの実装", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", "heading": "標準ハンドラ構成と主要処理フロー", "rst_labels": [ "flow-table" @@ -26246,25 +25330,25 @@ ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch_resident_thread_sync.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/01_SystemConstitution/04_RDBMS_Policy.rst", "format": "rst", - "filename": "batch_resident_thread_sync.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-batch_resident_thread_sync--s1", - "base_name": "nablarch-batch-batch_resident_thread_sync", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch_resident_thread_sync--s1.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch_resident_thread_sync--s1/", + "filename": "04_RDBMS_Policy.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-04_RDBMS_Policy--s1", + "base_name": "about-nablarch-04_RDBMS_Policy", + "output_path": "about/about-nablarch/about-nablarch-04_RDBMS_Policy--s1.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-04_RDBMS_Policy--s1/", "section_range": { "start_line": 0, - "end_line": 342, + "end_line": 127, "sections": [ "", - "基本構造", + "RDBMS への依存の排除", "", - "業務アクションハンドラの実装", + "共通項目の更新について", "", - "標準ハンドラ構成と主要処理フロー" + "フレームワークで規定するテーブルへのアクセスについて" ], "section_ids": [ "s1", @@ -26279,8 +25363,8 @@ "is_split": true, "part": 1, "total_parts": 1, - "original_id": "nablarch-batch-batch_resident_thread_sync", - "group_line_count": 342 + "original_id": "about-nablarch-04_RDBMS_Policy", + "group_line_count": 127 }, "section_map": [ { @@ -26290,7 +25374,7 @@ }, { "section_id": "s2", - "heading": "基本構造", + "heading": "RDBMS への依存の排除", "rst_labels": [] }, { @@ -26300,7 +25384,7 @@ }, { "section_id": "s4", - "heading": "業務アクションハンドラの実装", + "heading": "共通項目の更新について", "rst_labels": [] }, { @@ -26310,49 +25394,51 @@ }, { "section_id": "s6", - "heading": "標準ハンドラ構成と主要処理フロー", - "rst_labels": [ - "flow-table" - ] + "heading": "フレームワークで規定するテーブルへのアクセスについて", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging_http.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/reader/index.rst", "format": "rst", - "filename": "messaging_http.rst", - "type": "processing-pattern", - "category": "http-messaging", - "id": "http-messaging-messaging_http--s1", - "base_name": "http-messaging-messaging_http", - "output_path": "processing-pattern/http-messaging/http-messaging-messaging_http--s1.json", - "assets_dir": "processing-pattern/http-messaging/assets/http-messaging-messaging_http--s1/", + "filename": "index.rst", + "type": "component", + "category": "readers", + "id": "readers-reader", + "base_name": "readers-reader", + "output_path": "component/readers/readers-reader.json", + "assets_dir": "component/readers/assets/readers-reader/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/reader/ResumeDataReader.rst", + "format": "rst", + "filename": "ResumeDataReader.rst", + "type": "component", + "category": "readers", + "id": "readers-ResumeDataReader--s1", + "base_name": "readers-ResumeDataReader", + "output_path": "component/readers/readers-ResumeDataReader--s1.json", + "assets_dir": "component/readers/assets/readers-ResumeDataReader--s1/", "section_range": { "start_line": 0, - "end_line": 246, + "end_line": 155, "sections": [ "", - "基本構造", - "", - "業務アクションハンドラの実装", - "", - "標準ハンドラ構成と主要処理フロー" + "設定項目" ], "section_ids": [ "s1", - "s2", - "s3", - "s4", - "s5", - "s6" + "s2" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "http-messaging-messaging_http", - "group_line_count": 246 + "original_id": "readers-ResumeDataReader", + "group_line_count": 155 }, "section_map": [ { @@ -26362,53 +25448,189 @@ }, { "section_id": "s2", - "heading": "基本構造", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "業務アクションハンドラの実装", + "heading": "設定項目", "rst_labels": [] - }, - { - "section_id": "s5", + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/reader/MessageReader.rst", + "format": "rst", + "filename": "MessageReader.rst", + "type": "component", + "category": "readers", + "id": "readers-MessageReader", + "base_name": "readers-MessageReader", + "output_path": "component/readers/readers-MessageReader.json", + "assets_dir": "component/readers/assets/readers-MessageReader/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/reader/DatabaseRecordReader.rst", + "format": "rst", + "filename": "DatabaseRecordReader.rst", + "type": "component", + "category": "readers", + "id": "readers-DatabaseRecordReader", + "base_name": "readers-DatabaseRecordReader", + "output_path": "component/readers/readers-DatabaseRecordReader.json", + "assets_dir": "component/readers/assets/readers-DatabaseRecordReader/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/reader/FwHeaderReader.rst", + "format": "rst", + "filename": "FwHeaderReader.rst", + "type": "component", + "category": "readers", + "id": "readers-FwHeaderReader", + "base_name": "readers-FwHeaderReader", + "output_path": "component/readers/readers-FwHeaderReader.json", + "assets_dir": "component/readers/assets/readers-FwHeaderReader/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/reader/ValidatableFileDataReader.rst", + "format": "rst", + "filename": "ValidatableFileDataReader.rst", + "type": "component", + "category": "readers", + "id": "readers-ValidatableFileDataReader--s1", + "base_name": "readers-ValidatableFileDataReader", + "output_path": "component/readers/readers-ValidatableFileDataReader--s1.json", + "assets_dir": "component/readers/assets/readers-ValidatableFileDataReader--s1/", + "section_range": { + "start_line": 0, + "end_line": 314, + "sections": [ + "", + "事前精査処理の実装例" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "readers-ValidatableFileDataReader", + "group_line_count": 314 + }, + "section_map": [ + { + "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "標準ハンドラ構成と主要処理フロー", - "rst_labels": [ - "flow-table" - ] + "section_id": "s2", + "heading": "事前精査処理の実装例", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/messaging_request_reply.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/reader/FileDataReader.rst", "format": "rst", - "filename": "messaging_request_reply.rst", - "type": "processing-pattern", - "category": "mom-messaging", - "id": "mom-messaging-messaging_request_reply--s1", - "base_name": "mom-messaging-messaging_request_reply", - "output_path": "processing-pattern/mom-messaging/mom-messaging-messaging_request_reply--s1.json", - "assets_dir": "processing-pattern/mom-messaging/assets/mom-messaging-messaging_request_reply--s1/", + "filename": "FileDataReader.rst", + "type": "component", + "category": "readers", + "id": "readers-FileDataReader", + "base_name": "readers-FileDataReader", + "output_path": "component/readers/readers-FileDataReader.json", + "assets_dir": "component/readers/assets/readers-FileDataReader/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/reader/DatabaseTableQueueReader.rst", + "format": "rst", + "filename": "DatabaseTableQueueReader.rst", + "type": "component", + "category": "readers", + "id": "readers-DatabaseTableQueueReader", + "base_name": "readers-DatabaseTableQueueReader", + "output_path": "component/readers/readers-DatabaseTableQueueReader.json", + "assets_dir": "component/readers/assets/readers-DatabaseTableQueueReader/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/file_access.rst", + "format": "rst", + "filename": "file_access.rst", + "type": "component", + "category": "libraries", + "id": "libraries-file_access--s1", + "base_name": "libraries-file_access", + "output_path": "component/libraries/libraries-file_access--s1.json", + "assets_dir": "component/libraries/assets/libraries-file_access--s1/", "section_range": { "start_line": 0, - "end_line": 330, + "end_line": 163, "sections": [ "", - "基本構造", + "論理パス", "", - "業務アクションハンドラの実装", + "ファイルアクセスAPI" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "libraries-file_access", + "group_line_count": 163 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "論理パス", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "ファイルアクセスAPI", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/messaging_sender_util.rst", + "format": "rst", + "filename": "messaging_sender_util.rst", + "type": "component", + "category": "libraries", + "id": "libraries-messaging_sender_util--s1", + "base_name": "libraries-messaging_sender_util", + "output_path": "component/libraries/libraries-messaging_sender_util--s1.json", + "assets_dir": "component/libraries/assets/libraries-messaging_sender_util--s1/", + "section_range": { + "start_line": 0, + "end_line": 371, + "sections": [ "", - "標準ハンドラ構成と主要処理フロー" + "送信定義ファイルの設定項目", + "", + "メッセージ送信前後処理の追加", + "", + "メッセージID採番処理の追加" ], "section_ids": [ "s1", @@ -26423,8 +25645,8 @@ "is_split": true, "part": 1, "total_parts": 1, - "original_id": "mom-messaging-messaging_request_reply", - "group_line_count": 330 + "original_id": "libraries-messaging_sender_util", + "group_line_count": 371 }, "section_map": [ { @@ -26434,7 +25656,7 @@ }, { "section_id": "s2", - "heading": "基本構造", + "heading": "送信定義ファイルの設定項目", "rst_labels": [] }, { @@ -26444,7 +25666,7 @@ }, { "section_id": "s4", - "heading": "業務アクションハンドラの実装", + "heading": "メッセージ送信前後処理の追加", "rst_labels": [] }, { @@ -26454,33 +25676,33 @@ }, { "section_id": "s6", - "heading": "標準ハンドラ構成と主要処理フロー", - "rst_labels": [ - "flow-table" - ] + "heading": "メッセージID採番処理の追加", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/concept.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_mom.rst", "format": "rst", - "filename": "concept.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-concept-architectural_pattern--s1", - "base_name": "about-nablarch-concept-architectural_pattern", - "output_path": "about/about-nablarch/about-nablarch-concept-architectural_pattern--s1.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-concept-architectural_pattern--s1/", + "filename": "enterprise_messaging_mom.rst", + "type": "component", + "category": "libraries", + "id": "libraries-enterprise_messaging_mom--s1", + "base_name": "libraries-enterprise_messaging_mom", + "output_path": "component/libraries/libraries-enterprise_messaging_mom--s1.json", + "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_mom--s1/", "section_range": { "start_line": 0, - "end_line": 276, + "end_line": 240, "sections": [ "", - "NAFのアプリケーション動作モデル", + "概要", "", - "標準ハンドラ構成", + "要求", "", - "アプリケーションの実行と初期化処理", + "全体構成", + "", + "データモデル", "" ], "section_ids": [ @@ -26490,27 +25712,27 @@ "s4", "s5", "s6", - "s7" + "s7", + "s8", + "s9" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 3, - "original_id": "about-nablarch-concept-architectural_pattern", - "group_line_count": 276 + "total_parts": 2, + "original_id": "libraries-enterprise_messaging_mom", + "group_line_count": 240 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "basic_architecture" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "NAFのアプリケーション動作モデル", + "heading": "概要", "rst_labels": [] }, { @@ -26520,7 +25742,7 @@ }, { "section_id": "s4", - "heading": "標準ハンドラ構成", + "heading": "要求", "rst_labels": [] }, { @@ -26530,8 +25752,10 @@ }, { "section_id": "s6", - "heading": "アプリケーションの実行と初期化処理", - "rst_labels": [] + "heading": "全体構成", + "rst_labels": [ + "message_model" + ] }, { "section_id": "s7", @@ -26540,10 +25764,9 @@ }, { "section_id": "s8", - "heading": "ハンドラの構造と実装", + "heading": "データモデル", "rst_labels": [ - "method_binding", - "request_processing" + "messaging_api" ] }, { @@ -26553,11 +25776,9 @@ }, { "section_id": "s10", - "heading": "リクエストの識別と業務処理の実行", + "heading": "メッセージング基盤API", "rst_labels": [ - "execution_id", - "request_path", - "internal_request_id" + "messaging_provider" ] }, { @@ -26567,87 +25788,30 @@ }, { "section_id": "s12", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "処理結果の識別", - "rst_labels": [ - "scope" - ] - }, - { - "section_id": "s14", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "変数スコープ", - "rst_labels": [ - "windowscope" - ] - }, - { - "section_id": "s16", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "ハンドライベントコールバック", - "rst_labels": [ - "data_reader" - ] - }, - { - "section_id": "s18", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "データリーダ", - "rst_labels": [ - "implementing_action_handler" - ] - }, - { - "section_id": "s20", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "業務アクションハンドラの実装", + "heading": "メッセージングプロバイダ", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/concept.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_mom.rst", "format": "rst", - "filename": "concept.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-concept--s8", - "base_name": "about-nablarch-concept", - "output_path": "about/about-nablarch/about-nablarch-concept--s8.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-concept--s8/", + "filename": "enterprise_messaging_mom.rst", + "type": "component", + "category": "libraries", + "id": "libraries-enterprise_messaging_mom--s10", + "base_name": "libraries-enterprise_messaging_mom", + "output_path": "component/libraries/libraries-enterprise_messaging_mom--s10.json", + "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_mom--s10/", "section_range": { - "start_line": 276, - "end_line": 631, + "start_line": 240, + "end_line": 638, "sections": [ - "ハンドラの構造と実装", - "", - "リクエストの識別と業務処理の実行", + "メッセージング基盤API", "", - "" + "メッセージングプロバイダ" ], "section_ids": [ - "s8", - "s9", "s10", "s11", "s12" @@ -26656,21 +25820,19 @@ "split_info": { "is_split": true, "part": 2, - "total_parts": 3, - "original_id": "about-nablarch-concept", - "group_line_count": 355 + "total_parts": 2, + "original_id": "libraries-enterprise_messaging_mom", + "group_line_count": 398 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "basic_architecture" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "NAFのアプリケーション動作モデル", + "heading": "概要", "rst_labels": [] }, { @@ -26680,7 +25842,7 @@ }, { "section_id": "s4", - "heading": "標準ハンドラ構成", + "heading": "要求", "rst_labels": [] }, { @@ -26690,8 +25852,10 @@ }, { "section_id": "s6", - "heading": "アプリケーションの実行と初期化処理", - "rst_labels": [] + "heading": "全体構成", + "rst_labels": [ + "message_model" + ] }, { "section_id": "s7", @@ -26700,10 +25864,9 @@ }, { "section_id": "s8", - "heading": "ハンドラの構造と実装", + "heading": "データモデル", "rst_labels": [ - "method_binding", - "request_processing" + "messaging_api" ] }, { @@ -26713,11 +25876,9 @@ }, { "section_id": "s10", - "heading": "リクエストの識別と業務処理の実行", + "heading": "メッセージング基盤API", "rst_labels": [ - "execution_id", - "request_path", - "internal_request_id" + "messaging_provider" ] }, { @@ -26727,118 +25888,57 @@ }, { "section_id": "s12", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "処理結果の識別", - "rst_labels": [ - "scope" - ] - }, - { - "section_id": "s14", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "変数スコープ", - "rst_labels": [ - "windowscope" - ] - }, - { - "section_id": "s16", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "ハンドライベントコールバック", - "rst_labels": [ - "data_reader" - ] - }, - { - "section_id": "s18", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "データリーダ", - "rst_labels": [ - "implementing_action_handler" - ] - }, - { - "section_id": "s20", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "業務アクションハンドラの実装", + "heading": "メッセージングプロバイダ", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/concept.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation_basic_validators.rst", "format": "rst", - "filename": "concept.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-concept--s13", - "base_name": "about-nablarch-concept", - "output_path": "about/about-nablarch/about-nablarch-concept--s13.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-concept--s13/", + "filename": "validation_basic_validators.rst", + "type": "component", + "category": "libraries", + "id": "libraries-validation_basic_validators--s1", + "base_name": "libraries-validation_basic_validators", + "output_path": "component/libraries/libraries-validation_basic_validators--s1.json", + "assets_dir": "component/libraries/assets/libraries-validation_basic_validators--s1/", "section_range": { - "start_line": 631, - "end_line": 1019, + "start_line": 0, + "end_line": 344, "sections": [ - "処理結果の識別", "", - "変数スコープ", - "", - "ハンドライベントコールバック", - "", - "データリーダ", + "基本バリデータ・コンバータ一覧", "", - "業務アクションハンドラの実装" + "システム許容文字のバリデーション", + "" ], "section_ids": [ - "s13", - "s14", - "s15", - "s16", - "s17", - "s18", - "s19", - "s20", - "s21" + "s1", + "s2", + "s3", + "s4", + "s5" ] }, "split_info": { "is_split": true, - "part": 3, - "total_parts": 3, - "original_id": "about-nablarch-concept", - "group_line_count": 388 + "part": 1, + "total_parts": 2, + "original_id": "libraries-validation_basic_validators", + "group_line_count": 344 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "basic_architecture" + "validator_and_convertor" ] }, { "section_id": "s2", - "heading": "NAFのアプリケーション動作モデル", + "heading": "基本バリデータ・コンバータ一覧", "rst_labels": [] }, { @@ -26848,7 +25948,7 @@ }, { "section_id": "s4", - "heading": "標準ハンドラ構成", + "heading": "システム許容文字のバリデーション", "rst_labels": [] }, { @@ -26858,145 +25958,53 @@ }, { "section_id": "s6", - "heading": "アプリケーションの実行と初期化処理", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "ハンドラの構造と実装", + "heading": "基本コンバータ、バリデータの設定値", "rst_labels": [ - "method_binding", - "request_processing" + "stringconvertor-setting", + "validate-requiredvalidator-setting", + "validate-lengthvalidator-setting" ] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "リクエストの識別と業務処理の実行", - "rst_labels": [ - "execution_id", - "request_path", - "internal_request_id" - ] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "処理結果の識別", - "rst_labels": [ - "scope" - ] - }, - { - "section_id": "s14", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "変数スコープ", - "rst_labels": [ - "windowscope" - ] - }, - { - "section_id": "s16", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "ハンドライベントコールバック", - "rst_labels": [ - "data_reader" - ] - }, - { - "section_id": "s18", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "データリーダ", - "rst_labels": [ - "implementing_action_handler" - ] - }, - { - "section_id": "s20", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s21", - "heading": "業務アクションハンドラの実装", - "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/web_gui.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation_basic_validators.rst", "format": "rst", - "filename": "web_gui.rst", - "type": "processing-pattern", - "category": "web-application", - "id": "web-application-web_gui--s1", - "base_name": "web-application-web_gui", - "output_path": "processing-pattern/web-application/web-application-web_gui--s1.json", - "assets_dir": "processing-pattern/web-application/assets/web-application-web_gui--s1/", + "filename": "validation_basic_validators.rst", + "type": "component", + "category": "libraries", + "id": "libraries-validation_basic_validators--s6", + "base_name": "libraries-validation_basic_validators", + "output_path": "component/libraries/libraries-validation_basic_validators--s6.json", + "assets_dir": "component/libraries/assets/libraries-validation_basic_validators--s6/", "section_range": { - "start_line": 0, - "end_line": 251, + "start_line": 344, + "end_line": 587, "sections": [ - "", - "業務アクションハンドラの実装", - "", - "標準ハンドラ構成と主要処理フロー" + "基本コンバータ、バリデータの設定値" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4" + "s6" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "web-application-web_gui", - "group_line_count": 251 + "part": 2, + "total_parts": 2, + "original_id": "libraries-validation_basic_validators", + "group_line_count": 243 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "web_gui" + "validator_and_convertor" ] }, { "section_id": "s2", - "heading": "業務アクションハンドラの実装", + "heading": "基本バリデータ・コンバータ一覧", "rst_labels": [] }, { @@ -27006,33 +26014,45 @@ }, { "section_id": "s4", - "heading": "標準ハンドラ構成と主要処理フロー", + "heading": "システム許容文字のバリデーション", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "基本コンバータ、バリデータの設定値", "rst_labels": [ - "flow-table" + "stringconvertor-setting", + "validate-requiredvalidator-setting", + "validate-lengthvalidator-setting" ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch_resident.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_overview.rst", "format": "rst", - "filename": "batch_resident.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-batch_resident--s1", - "base_name": "nablarch-batch-batch_resident", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch_resident--s1.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch_resident--s1/", + "filename": "enterprise_messaging_overview.rst", + "type": "component", + "category": "libraries", + "id": "libraries-enterprise_messaging_overview--s1", + "base_name": "libraries-enterprise_messaging_overview", + "output_path": "component/libraries/libraries-enterprise_messaging_overview--s1.json", + "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_overview--s1/", "section_range": { "start_line": 0, - "end_line": 293, + "end_line": 74, "sections": [ "", - "基本構造", + "概要", "", - "業務アクションハンドラの実装", + "全体構成", "", - "標準ハンドラ構成と主要処理フロー" + "機能詳細" ], "section_ids": [ "s1", @@ -27047,8 +26067,8 @@ "is_split": true, "part": 1, "total_parts": 1, - "original_id": "nablarch-batch-batch_resident", - "group_line_count": 293 + "original_id": "libraries-enterprise_messaging_overview", + "group_line_count": 74 }, "section_map": [ { @@ -27058,7 +26078,7 @@ }, { "section_id": "s2", - "heading": "基本構造", + "heading": "概要", "rst_labels": [] }, { @@ -27068,7 +26088,7 @@ }, { "section_id": "s4", - "heading": "業務アクションハンドラの実装", + "heading": "全体構成", "rst_labels": [] }, { @@ -27078,45 +26098,36 @@ }, { "section_id": "s6", - "heading": "標準ハンドラ構成と主要処理フロー", - "rst_labels": [ - "flow-table" - ] + "heading": "機能詳細", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch.rst", - "format": "rst", - "filename": "batch.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-batch-architectural_pattern", - "base_name": "nablarch-batch-batch-architectural_pattern", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch-architectural_pattern.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch-architectural_pattern/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/architectural_pattern/batch_single_shot.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_http.rst", "format": "rst", - "filename": "batch_single_shot.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-batch_single_shot--s1", - "base_name": "nablarch-batch-batch_single_shot", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch_single_shot--s1.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch_single_shot--s1/", + "filename": "enterprise_messaging_http.rst", + "type": "component", + "category": "libraries", + "id": "libraries-enterprise_messaging_http--s1", + "base_name": "libraries-enterprise_messaging_http", + "output_path": "component/libraries/libraries-enterprise_messaging_http--s1.json", + "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_http--s1/", "section_range": { "start_line": 0, - "end_line": 186, + "end_line": 276, "sections": [ "", - "基本構造", + "概要", "", - "業務アクションハンドラの実装", + "要求", "", - "標準ハンドラ構成と主要処理フロー" + "全体構成", + "", + "データモデル", + "", + "フレームワーク機能", + "" ], "section_ids": [ "s1", @@ -27124,15 +26135,20 @@ "s3", "s4", "s5", - "s6" + "s6", + "s7", + "s8", + "s9", + "s10", + "s11" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "nablarch-batch-batch_single_shot", - "group_line_count": 186 + "total_parts": 2, + "original_id": "libraries-enterprise_messaging_http", + "group_line_count": 276 }, "section_map": [ { @@ -27142,7 +26158,7 @@ }, { "section_id": "s2", - "heading": "基本構造", + "heading": "概要", "rst_labels": [] }, { @@ -27152,7 +26168,7 @@ }, { "section_id": "s4", - "heading": "業務アクションハンドラの実装", + "heading": "要求", "rst_labels": [] }, { @@ -27162,49 +26178,73 @@ }, { "section_id": "s6", - "heading": "標準ハンドラ構成と主要処理フロー", + "heading": "全体構成", "rst_labels": [ - "flow-table" + "message_model_http" ] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/01_SystemConstitution/04_RDBMS_Policy.rst", - "format": "rst", - "filename": "04_RDBMS_Policy.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-04_RDBMS_Policy--s1", - "base_name": "about-nablarch-04_RDBMS_Policy", - "output_path": "about/about-nablarch/about-nablarch-04_RDBMS_Policy--s1.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-04_RDBMS_Policy--s1/", - "section_range": { - "start_line": 0, - "end_line": 127, - "sections": [ - "", - "RDBMS への依存の排除", - "", - "共通項目の更新について", - "", - "フレームワークで規定するテーブルへのアクセスについて" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "データモデル", + "rst_labels": [ + "framework" + ] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "フレームワーク機能", + "rst_labels": [ + "messaging_api" + ] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "通信クライアント", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_http.rst", + "format": "rst", + "filename": "enterprise_messaging_http.rst", + "type": "component", + "category": "libraries", + "id": "libraries-enterprise_messaging_http--s12", + "base_name": "libraries-enterprise_messaging_http", + "output_path": "component/libraries/libraries-enterprise_messaging_http--s12.json", + "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_http--s12/", + "section_range": { + "start_line": 276, + "end_line": 407, + "sections": [ + "通信クライアント" + ], + "section_ids": [ + "s12" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "about-nablarch-04_RDBMS_Policy", - "group_line_count": 127 + "part": 2, + "total_parts": 2, + "original_id": "libraries-enterprise_messaging_http", + "group_line_count": 131 }, "section_map": [ { @@ -27214,7 +26254,7 @@ }, { "section_id": "s2", - "heading": "RDBMS への依存の排除", + "heading": "概要", "rst_labels": [] }, { @@ -27224,7 +26264,7 @@ }, { "section_id": "s4", - "heading": "共通項目の更新について", + "heading": "要求", "rst_labels": [] }, { @@ -27234,51 +26274,79 @@ }, { "section_id": "s6", - "heading": "フレームワークで規定するテーブルへのアクセスについて", + "heading": "全体構成", + "rst_labels": [ + "message_model_http" + ] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "データモデル", + "rst_labels": [ + "framework" + ] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "フレームワーク機能", + "rst_labels": [ + "messaging_api" + ] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "通信クライアント", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "component", - "category": "readers", - "id": "readers-reader", - "base_name": "readers-reader", - "output_path": "component/readers/readers-reader.json", - "assets_dir": "component/readers/assets/readers-reader/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/ResumeDataReader.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation_advanced_validators.rst", "format": "rst", - "filename": "ResumeDataReader.rst", + "filename": "validation_advanced_validators.rst", "type": "component", - "category": "readers", - "id": "readers-ResumeDataReader--s1", - "base_name": "readers-ResumeDataReader", - "output_path": "component/readers/readers-ResumeDataReader--s1.json", - "assets_dir": "component/readers/assets/readers-ResumeDataReader--s1/", + "category": "libraries", + "id": "libraries-validation_advanced_validators--s1", + "base_name": "libraries-validation_advanced_validators", + "output_path": "component/libraries/libraries-validation_advanced_validators--s1.json", + "assets_dir": "component/libraries/assets/libraries-validation_advanced_validators--s1/", "section_range": { "start_line": 0, - "end_line": 155, + "end_line": 195, "sections": [ "", - "設定項目" + "年月日コンバータ", + "", + "年月コンバータ" ], "section_ids": [ "s1", - "s2" + "s2", + "s3", + "s4" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "readers-ResumeDataReader", - "group_line_count": 155 + "original_id": "libraries-validation_advanced_validators", + "group_line_count": 195 }, "section_map": [ { @@ -27288,75 +26356,53 @@ }, { "section_id": "s2", - "heading": "設定項目", + "heading": "年月日コンバータ", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "年月コンバータ", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/MessageReader.rst", - "format": "rst", - "filename": "MessageReader.rst", - "type": "component", - "category": "readers", - "id": "readers-MessageReader", - "base_name": "readers-MessageReader", - "output_path": "component/readers/readers-MessageReader.json", - "assets_dir": "component/readers/assets/readers-MessageReader/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/DatabaseRecordReader.rst", - "format": "rst", - "filename": "DatabaseRecordReader.rst", - "type": "component", - "category": "readers", - "id": "readers-DatabaseRecordReader", - "base_name": "readers-DatabaseRecordReader", - "output_path": "component/readers/readers-DatabaseRecordReader.json", - "assets_dir": "component/readers/assets/readers-DatabaseRecordReader/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/FwHeaderReader.rst", - "format": "rst", - "filename": "FwHeaderReader.rst", - "type": "component", - "category": "readers", - "id": "readers-FwHeaderReader", - "base_name": "readers-FwHeaderReader", - "output_path": "component/readers/readers-FwHeaderReader.json", - "assets_dir": "component/readers/assets/readers-FwHeaderReader/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/ValidatableFileDataReader.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/messaging_sending_batch.rst", "format": "rst", - "filename": "ValidatableFileDataReader.rst", + "filename": "messaging_sending_batch.rst", "type": "component", - "category": "readers", - "id": "readers-ValidatableFileDataReader--s1", - "base_name": "readers-ValidatableFileDataReader", - "output_path": "component/readers/readers-ValidatableFileDataReader--s1.json", - "assets_dir": "component/readers/assets/readers-ValidatableFileDataReader--s1/", + "category": "libraries", + "id": "libraries-messaging_sending_batch--s1", + "base_name": "libraries-messaging_sending_batch", + "output_path": "component/libraries/libraries-messaging_sending_batch--s1.json", + "assets_dir": "component/libraries/assets/libraries-messaging_sending_batch--s1/", "section_range": { "start_line": 0, - "end_line": 314, + "end_line": 233, "sections": [ "", - "事前精査処理の実装例" + "基本構造", + "", + "標準ハンドラ構成と主要処理フロー" ], "section_ids": [ "s1", - "s2" + "s2", + "s3", + "s4" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "readers-ValidatableFileDataReader", - "group_line_count": 314 + "original_id": "libraries-messaging_sending_batch", + "group_line_count": 233 }, "section_map": [ { @@ -27366,67 +26412,55 @@ }, { "section_id": "s2", - "heading": "事前精査処理の実装例", + "heading": "基本構造", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "標準ハンドラ構成と主要処理フロー", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/FileDataReader.rst", - "format": "rst", - "filename": "FileDataReader.rst", - "type": "component", - "category": "readers", - "id": "readers-FileDataReader", - "base_name": "readers-FileDataReader", - "output_path": "component/readers/readers-FileDataReader.json", - "assets_dir": "component/readers/assets/readers-FileDataReader/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/reader/DatabaseTableQueueReader.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", "format": "rst", - "filename": "DatabaseTableQueueReader.rst", - "type": "component", - "category": "readers", - "id": "readers-DatabaseTableQueueReader", - "base_name": "readers-DatabaseTableQueueReader", - "output_path": "component/readers/readers-DatabaseTableQueueReader.json", - "assets_dir": "component/readers/assets/readers-DatabaseTableQueueReader/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/file_access.rst", - "format": "rst", - "filename": "file_access.rst", + "filename": "record_format.rst", "type": "component", "category": "libraries", - "id": "libraries-file_access--s1", - "base_name": "libraries-file_access", - "output_path": "component/libraries/libraries-file_access--s1.json", - "assets_dir": "component/libraries/assets/libraries-file_access--s1/", + "id": "libraries-record_format--s1", + "base_name": "libraries-record_format", + "output_path": "component/libraries/libraries-record_format--s1.json", + "assets_dir": "component/libraries/assets/libraries-record_format--s1/", "section_range": { "start_line": 0, - "end_line": 163, + "end_line": 159, "sections": [ "", - "論理パス", + "基本構造", "", - "ファイルアクセスAPI" + "使用例", + "" ], "section_ids": [ "s1", "s2", "s3", - "s4" + "s4", + "s5" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "libraries-file_access", - "group_line_count": 163 + "total_parts": 5, + "original_id": "libraries-record_format", + "group_line_count": 159 }, "section_map": [ { @@ -27436,7 +26470,7 @@ }, { "section_id": "s2", - "heading": "論理パス", + "heading": "基本構造", "rst_labels": [] }, { @@ -27446,315 +26480,264 @@ }, { "section_id": "s4", - "heading": "ファイルアクセスAPI", + "heading": "使用例", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "フォーマット定義ファイルの書式", + "rst_labels": [ + "using_multi_format" + ] + }, + { + "section_id": "s7", + "heading": "マルチフォーマット形式の利用", + "rst_labels": [ + "types_and_converters" + ] + }, + { + "section_id": "s8", + "heading": "フィールドタイプ・フィールドコンバータ定義一覧", + "rst_labels": [ + "converters_sample" + ] + }, + { + "section_id": "s9", + "heading": "フィールドコンバータ(文字列置換)の利用方法", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "可変長ファイルにおけるタイトル行の読み書き", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "ノード名に関する制約事項", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/thread_context.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", "format": "rst", - "filename": "thread_context.rst", + "filename": "record_format.rst", "type": "component", "category": "libraries", - "id": "libraries-thread_context--s1", - "base_name": "libraries-thread_context", - "output_path": "component/libraries/libraries-thread_context--s1.json", - "assets_dir": "component/libraries/assets/libraries-thread_context--s1/", + "id": "libraries-record_format--s6", + "base_name": "libraries-record_format", + "output_path": "component/libraries/libraries-record_format--s6.json", + "assets_dir": "component/libraries/assets/libraries-record_format--s6/", "section_range": { - "start_line": 0, - "end_line": 345, + "start_line": 159, + "end_line": 529, "sections": [ - "", - "同一スレッド内でのデータ共有(スレッドコンテキスト)", - "インタフェース定義", - "クラス定義", - "ThreadContextHandlerの設定", - "UserIdAttributeの設定", - "RequestIdAttributeの設定", - "InternalRequestIdAttributeの設定" + "フォーマット定義ファイルの書式" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8" + "s6" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-thread_context", - "group_line_count": 345 + "part": 2, + "total_parts": 5, + "original_id": "libraries-record_format", + "group_line_count": 370 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "thread-context-label" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "同一スレッド内でのデータ共有(スレッドコンテキスト)", + "heading": "基本構造", "rst_labels": [] }, { "section_id": "s3", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "クラス定義", + "heading": "使用例", "rst_labels": [] }, { "section_id": "s5", - "heading": "ThreadContextHandlerの設定", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "UserIdAttributeの設定", - "rst_labels": [] + "heading": "フォーマット定義ファイルの書式", + "rst_labels": [ + "using_multi_format" + ] }, { "section_id": "s7", - "heading": "RequestIdAttributeの設定", - "rst_labels": [] + "heading": "マルチフォーマット形式の利用", + "rst_labels": [ + "types_and_converters" + ] }, { "section_id": "s8", - "heading": "InternalRequestIdAttributeの設定", - "rst_labels": [] + "heading": "フィールドタイプ・フィールドコンバータ定義一覧", + "rst_labels": [ + "converters_sample" + ] }, { "section_id": "s9", - "heading": "LanguageAttributeの設定", + "heading": "フィールドコンバータ(文字列置換)の利用方法", "rst_labels": [] }, { "section_id": "s10", - "heading": "TimeZoneAttributeの設定", + "heading": "可変長ファイルにおけるタイトル行の読み書き", "rst_labels": [] }, { "section_id": "s11", - "heading": "ExecutionIdAttributeの設定", + "heading": "ノード名に関する制約事項", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/thread_context.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", "format": "rst", - "filename": "thread_context.rst", + "filename": "record_format.rst", "type": "component", "category": "libraries", - "id": "libraries-thread_context--s9", - "base_name": "libraries-thread_context", - "output_path": "component/libraries/libraries-thread_context--s9.json", - "assets_dir": "component/libraries/assets/libraries-thread_context--s9/", + "id": "libraries-record_format--s7", + "base_name": "libraries-record_format", + "output_path": "component/libraries/libraries-record_format--s7.json", + "assets_dir": "component/libraries/assets/libraries-record_format--s7/", "section_range": { - "start_line": 345, - "end_line": 707, + "start_line": 529, + "end_line": 830, "sections": [ - "LanguageAttributeの設定", - "TimeZoneAttributeの設定", - "ExecutionIdAttributeの設定" + "マルチフォーマット形式の利用", + "フィールドタイプ・フィールドコンバータ定義一覧" ], "section_ids": [ - "s9", - "s10", - "s11" + "s7", + "s8" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-thread_context", - "group_line_count": 362 + "part": 3, + "total_parts": 5, + "original_id": "libraries-record_format", + "group_line_count": 301 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "thread-context-label" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "同一スレッド内でのデータ共有(スレッドコンテキスト)", + "heading": "基本構造", "rst_labels": [] }, { "section_id": "s3", - "heading": "インタフェース定義", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "クラス定義", + "heading": "使用例", "rst_labels": [] }, { "section_id": "s5", - "heading": "ThreadContextHandlerの設定", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "UserIdAttributeの設定", - "rst_labels": [] + "heading": "フォーマット定義ファイルの書式", + "rst_labels": [ + "using_multi_format" + ] }, { "section_id": "s7", - "heading": "RequestIdAttributeの設定", - "rst_labels": [] + "heading": "マルチフォーマット形式の利用", + "rst_labels": [ + "types_and_converters" + ] }, { "section_id": "s8", - "heading": "InternalRequestIdAttributeの設定", - "rst_labels": [] + "heading": "フィールドタイプ・フィールドコンバータ定義一覧", + "rst_labels": [ + "converters_sample" + ] }, { "section_id": "s9", - "heading": "LanguageAttributeの設定", + "heading": "フィールドコンバータ(文字列置換)の利用方法", "rst_labels": [] }, { "section_id": "s10", - "heading": "TimeZoneAttributeの設定", + "heading": "可変長ファイルにおけるタイトル行の読み書き", "rst_labels": [] }, { "section_id": "s11", - "heading": "ExecutionIdAttributeの設定", + "heading": "ノード名に関する制約事項", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/messaging_sender_util.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", "format": "rst", - "filename": "messaging_sender_util.rst", + "filename": "record_format.rst", "type": "component", "category": "libraries", - "id": "libraries-messaging_sender_util--s1", - "base_name": "libraries-messaging_sender_util", - "output_path": "component/libraries/libraries-messaging_sender_util--s1.json", - "assets_dir": "component/libraries/assets/libraries-messaging_sender_util--s1/", + "id": "libraries-record_format--s9", + "base_name": "libraries-record_format", + "output_path": "component/libraries/libraries-record_format--s9.json", + "assets_dir": "component/libraries/assets/libraries-record_format--s9/", "section_range": { - "start_line": 0, - "end_line": 371, + "start_line": 830, + "end_line": 1078, "sections": [ - "", - "送信定義ファイルの設定項目", - "", - "メッセージ送信前後処理の追加", - "", - "メッセージID採番処理の追加" + "フィールドコンバータ(文字列置換)の利用方法", + "可変長ファイルにおけるタイトル行の読み書き" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" + "s9", + "s10" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-messaging_sender_util", - "group_line_count": 371 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "送信定義ファイルの設定項目", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "メッセージ送信前後処理の追加", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "メッセージID採番処理の追加", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_mom.rst", - "format": "rst", - "filename": "enterprise_messaging_mom.rst", - "type": "component", - "category": "libraries", - "id": "libraries-enterprise_messaging_mom--s1", - "base_name": "libraries-enterprise_messaging_mom", - "output_path": "component/libraries/libraries-enterprise_messaging_mom--s1.json", - "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_mom--s1/", - "section_range": { - "start_line": 0, - "end_line": 240, - "sections": [ - "", - "概要", - "", - "要求", - "", - "全体構成", - "", - "データモデル", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-enterprise_messaging_mom", - "group_line_count": 240 + "part": 4, + "total_parts": 5, + "original_id": "libraries-record_format", + "group_line_count": 248 }, "section_map": [ { @@ -27764,7 +26747,7 @@ }, { "section_id": "s2", - "heading": "概要", + "heading": "基本構造", "rst_labels": [] }, { @@ -27774,7 +26757,7 @@ }, { "section_id": "s4", - "heading": "要求", + "heading": "使用例", "rst_labels": [] }, { @@ -27784,77 +26767,68 @@ }, { "section_id": "s6", - "heading": "全体構成", + "heading": "フォーマット定義ファイルの書式", "rst_labels": [ - "message_model" + "using_multi_format" ] }, { "section_id": "s7", - "heading": "", - "rst_labels": [] + "heading": "マルチフォーマット形式の利用", + "rst_labels": [ + "types_and_converters" + ] }, { "section_id": "s8", - "heading": "データモデル", + "heading": "フィールドタイプ・フィールドコンバータ定義一覧", "rst_labels": [ - "messaging_api" + "converters_sample" ] }, { "section_id": "s9", - "heading": "", + "heading": "フィールドコンバータ(文字列置換)の利用方法", "rst_labels": [] }, { "section_id": "s10", - "heading": "メッセージング基盤API", - "rst_labels": [ - "messaging_provider" - ] - }, - { - "section_id": "s11", - "heading": "", + "heading": "可変長ファイルにおけるタイトル行の読み書き", "rst_labels": [] }, { - "section_id": "s12", - "heading": "メッセージングプロバイダ", + "section_id": "s11", + "heading": "ノード名に関する制約事項", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_mom.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", "format": "rst", - "filename": "enterprise_messaging_mom.rst", + "filename": "record_format.rst", "type": "component", "category": "libraries", - "id": "libraries-enterprise_messaging_mom--s10", - "base_name": "libraries-enterprise_messaging_mom", - "output_path": "component/libraries/libraries-enterprise_messaging_mom--s10.json", - "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_mom--s10/", + "id": "libraries-record_format--s11", + "base_name": "libraries-record_format", + "output_path": "component/libraries/libraries-record_format--s11.json", + "assets_dir": "component/libraries/assets/libraries-record_format--s11/", "section_range": { - "start_line": 240, - "end_line": 638, + "start_line": 1078, + "end_line": 1527, "sections": [ - "メッセージング基盤API", - "", - "メッセージングプロバイダ" + "ノード名に関する制約事項" ], "section_ids": [ - "s10", - "s11", - "s12" + "s11" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-enterprise_messaging_mom", - "group_line_count": 398 + "part": 5, + "total_parts": 5, + "original_id": "libraries-record_format", + "group_line_count": 449 }, "section_map": [ { @@ -27864,7 +26838,7 @@ }, { "section_id": "s2", - "heading": "概要", + "heading": "基本構造", "rst_labels": [] }, { @@ -27874,7 +26848,7 @@ }, { "section_id": "s4", - "heading": "要求", + "heading": "使用例", "rst_labels": [] }, { @@ -27884,1220 +26858,214 @@ }, { "section_id": "s6", - "heading": "全体構成", + "heading": "フォーマット定義ファイルの書式", "rst_labels": [ - "message_model" + "using_multi_format" ] }, { "section_id": "s7", - "heading": "", - "rst_labels": [] + "heading": "マルチフォーマット形式の利用", + "rst_labels": [ + "types_and_converters" + ] }, { "section_id": "s8", - "heading": "データモデル", + "heading": "フィールドタイプ・フィールドコンバータ定義一覧", "rst_labels": [ - "messaging_api" + "converters_sample" ] }, { "section_id": "s9", - "heading": "", + "heading": "フィールドコンバータ(文字列置換)の利用方法", "rst_labels": [] }, { "section_id": "s10", - "heading": "メッセージング基盤API", - "rst_labels": [ - "messaging_provider" - ] - }, - { - "section_id": "s11", - "heading": "", + "heading": "可変長ファイルにおけるタイトル行の読み書き", "rst_labels": [] }, { - "section_id": "s12", - "heading": "メッセージングプロバイダ", + "section_id": "s11", + "heading": "ノード名に関する制約事項", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation_basic_validators.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation.rst", "format": "rst", - "filename": "validation_basic_validators.rst", + "filename": "validation.rst", "type": "component", "category": "libraries", - "id": "libraries-validation_basic_validators--s1", - "base_name": "libraries-validation_basic_validators", - "output_path": "component/libraries/libraries-validation_basic_validators--s1.json", - "assets_dir": "component/libraries/assets/libraries-validation_basic_validators--s1/", - "section_range": { - "start_line": 0, - "end_line": 344, - "sections": [ - "", - "基本バリデータ・コンバータ一覧", - "", - "システム許容文字のバリデーション", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-validation_basic_validators", - "group_line_count": 344 - }, + "id": "libraries-validation-core_library", + "base_name": "libraries-validation-core_library", + "output_path": "component/libraries/libraries-validation-core_library.json", + "assets_dir": "component/libraries/assets/libraries-validation-core_library/", "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "validator_and_convertor" - ] - }, - { - "section_id": "s2", - "heading": "基本バリデータ・コンバータ一覧", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "システム許容文字のバリデーション", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "基本コンバータ、バリデータの設定値", - "rst_labels": [ - "stringconvertor-setting", - "validate-requiredvalidator-setting", - "validate-lengthvalidator-setting" + "validation" ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation_basic_validators.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/index.rst", "format": "rst", - "filename": "validation_basic_validators.rst", - "type": "component", - "category": "libraries", - "id": "libraries-validation_basic_validators--s6", - "base_name": "libraries-validation_basic_validators", - "output_path": "component/libraries/libraries-validation_basic_validators--s6.json", - "assets_dir": "component/libraries/assets/libraries-validation_basic_validators--s6/", - "section_range": { - "start_line": 344, - "end_line": 587, - "sections": [ - "基本コンバータ、バリデータの設定値" - ], - "section_ids": [ - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-validation_basic_validators", - "group_line_count": 243 - }, + "filename": "index.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-FAQ", + "base_name": "about-nablarch-FAQ", + "output_path": "about/about-nablarch/about-nablarch-FAQ.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-FAQ/", "section_map": [ { "section_id": "s1", - "heading": "", - "rst_labels": [ - "validator_and_convertor" - ] - }, - { - "section_id": "s2", - "heading": "基本バリデータ・コンバータ一覧", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "システム許容文字のバリデーション", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", + "heading": "FAQ一覧", "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "基本コンバータ、バリデータの設定値", - "rst_labels": [ - "stringconvertor-setting", - "validate-requiredvalidator-setting", - "validate-lengthvalidator-setting" - ] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_overview.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/index.rst", "format": "rst", - "filename": "enterprise_messaging_overview.rst", - "type": "component", - "category": "libraries", - "id": "libraries-enterprise_messaging_overview--s1", - "base_name": "libraries-enterprise_messaging_overview", - "output_path": "component/libraries/libraries-enterprise_messaging_overview--s1.json", - "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_overview--s1/", - "section_range": { - "start_line": 0, - "end_line": 74, - "sections": [ - "", - "概要", - "", - "全体構成", - "", - "機能詳細" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-enterprise_messaging_overview", - "group_line_count": 74 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "概要", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "全体構成", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "機能詳細", - "rst_labels": [] - } - ] + "filename": "index.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-batch-batch", + "base_name": "nablarch-batch-batch-batch", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch-batch.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch-batch/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_http.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/4.rst", "format": "rst", - "filename": "enterprise_messaging_http.rst", - "type": "component", - "category": "libraries", - "id": "libraries-enterprise_messaging_http--s1", - "base_name": "libraries-enterprise_messaging_http", - "output_path": "component/libraries/libraries-enterprise_messaging_http--s1.json", - "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_http--s1/", - "section_range": { - "start_line": 0, - "end_line": 276, - "sections": [ - "", - "概要", - "", - "要求", - "", - "全体構成", - "", - "データモデル", - "", - "フレームワーク機能", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-enterprise_messaging_http", - "group_line_count": 276 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "概要", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "要求", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "全体構成", - "rst_labels": [ - "message_model_http" - ] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "データモデル", - "rst_labels": [ - "framework" - ] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "フレームワーク機能", - "rst_labels": [ - "messaging_api" - ] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "通信クライアント", - "rst_labels": [] - } - ] + "filename": "4.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-4", + "base_name": "nablarch-batch-4", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-4.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-4/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/enterprise_messaging_http.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/8.rst", "format": "rst", - "filename": "enterprise_messaging_http.rst", - "type": "component", - "category": "libraries", - "id": "libraries-enterprise_messaging_http--s12", - "base_name": "libraries-enterprise_messaging_http", - "output_path": "component/libraries/libraries-enterprise_messaging_http--s12.json", - "assets_dir": "component/libraries/assets/libraries-enterprise_messaging_http--s12/", - "section_range": { - "start_line": 276, - "end_line": 407, - "sections": [ - "通信クライアント" - ], - "section_ids": [ - "s12" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-enterprise_messaging_http", - "group_line_count": 131 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "概要", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "要求", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "全体構成", - "rst_labels": [ - "message_model_http" - ] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "データモデル", - "rst_labels": [ - "framework" - ] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "フレームワーク機能", - "rst_labels": [ - "messaging_api" - ] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "通信クライアント", - "rst_labels": [] - } - ] + "filename": "8.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-8", + "base_name": "nablarch-batch-8", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-8.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-8/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation_advanced_validators.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/9.rst", "format": "rst", - "filename": "validation_advanced_validators.rst", - "type": "component", - "category": "libraries", - "id": "libraries-validation_advanced_validators--s1", - "base_name": "libraries-validation_advanced_validators", - "output_path": "component/libraries/libraries-validation_advanced_validators--s1.json", - "assets_dir": "component/libraries/assets/libraries-validation_advanced_validators--s1/", - "section_range": { - "start_line": 0, - "end_line": 195, - "sections": [ - "", - "年月日コンバータ", - "", - "年月コンバータ" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-validation_advanced_validators", - "group_line_count": 195 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "年月日コンバータ", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "年月コンバータ", - "rst_labels": [] - } - ] + "filename": "9.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-9", + "base_name": "nablarch-batch-9", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-9.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-9/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/messaging_sending_batch.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/5.rst", "format": "rst", - "filename": "messaging_sending_batch.rst", - "type": "component", - "category": "libraries", - "id": "libraries-messaging_sending_batch--s1", - "base_name": "libraries-messaging_sending_batch", - "output_path": "component/libraries/libraries-messaging_sending_batch--s1.json", - "assets_dir": "component/libraries/assets/libraries-messaging_sending_batch--s1/", - "section_range": { - "start_line": 0, - "end_line": 233, - "sections": [ - "", - "基本構造", - "", - "標準ハンドラ構成と主要処理フロー" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "libraries-messaging_sending_batch", - "group_line_count": 233 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "基本構造", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "標準ハンドラ構成と主要処理フロー", - "rst_labels": [] - } - ] + "filename": "5.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-5", + "base_name": "nablarch-batch-5", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-5.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-5/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/2.rst", "format": "rst", - "filename": "record_format.rst", - "type": "component", - "category": "libraries", - "id": "libraries-record_format--s1", - "base_name": "libraries-record_format", - "output_path": "component/libraries/libraries-record_format--s1.json", - "assets_dir": "component/libraries/assets/libraries-record_format--s1/", - "section_range": { - "start_line": 0, - "end_line": 159, - "sections": [ - "", - "基本構造", - "", - "使用例", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 5, - "original_id": "libraries-record_format", - "group_line_count": 159 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "基本構造", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "使用例", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "フォーマット定義ファイルの書式", - "rst_labels": [ - "using_multi_format" - ] - }, - { - "section_id": "s7", - "heading": "マルチフォーマット形式の利用", - "rst_labels": [ - "types_and_converters" - ] - }, - { - "section_id": "s8", - "heading": "フィールドタイプ・フィールドコンバータ定義一覧", - "rst_labels": [ - "converters_sample" - ] - }, - { - "section_id": "s9", - "heading": "フィールドコンバータ(文字列置換)の利用方法", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "可変長ファイルにおけるタイトル行の読み書き", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "ノード名に関する制約事項", - "rst_labels": [] - } - ] + "filename": "2.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-2", + "base_name": "nablarch-batch-2", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-2.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-2/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/7.rst", "format": "rst", - "filename": "record_format.rst", - "type": "component", - "category": "libraries", - "id": "libraries-record_format--s6", - "base_name": "libraries-record_format", - "output_path": "component/libraries/libraries-record_format--s6.json", - "assets_dir": "component/libraries/assets/libraries-record_format--s6/", - "section_range": { - "start_line": 159, - "end_line": 529, - "sections": [ - "フォーマット定義ファイルの書式" - ], - "section_ids": [ - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 5, - "original_id": "libraries-record_format", - "group_line_count": 370 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "基本構造", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "使用例", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "フォーマット定義ファイルの書式", - "rst_labels": [ - "using_multi_format" - ] - }, - { - "section_id": "s7", - "heading": "マルチフォーマット形式の利用", - "rst_labels": [ - "types_and_converters" - ] - }, - { - "section_id": "s8", - "heading": "フィールドタイプ・フィールドコンバータ定義一覧", - "rst_labels": [ - "converters_sample" - ] - }, - { - "section_id": "s9", - "heading": "フィールドコンバータ(文字列置換)の利用方法", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "可変長ファイルにおけるタイトル行の読み書き", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "ノード名に関する制約事項", - "rst_labels": [] - } - ] + "filename": "7.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-7", + "base_name": "nablarch-batch-7", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-7.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-7/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/3.rst", "format": "rst", - "filename": "record_format.rst", - "type": "component", - "category": "libraries", - "id": "libraries-record_format--s7", - "base_name": "libraries-record_format", - "output_path": "component/libraries/libraries-record_format--s7.json", - "assets_dir": "component/libraries/assets/libraries-record_format--s7/", - "section_range": { - "start_line": 529, - "end_line": 830, - "sections": [ - "マルチフォーマット形式の利用", - "フィールドタイプ・フィールドコンバータ定義一覧" - ], - "section_ids": [ - "s7", - "s8" - ] - }, - "split_info": { - "is_split": true, - "part": 3, - "total_parts": 5, - "original_id": "libraries-record_format", - "group_line_count": 301 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "基本構造", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "使用例", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "フォーマット定義ファイルの書式", - "rst_labels": [ - "using_multi_format" - ] - }, - { - "section_id": "s7", - "heading": "マルチフォーマット形式の利用", - "rst_labels": [ - "types_and_converters" - ] - }, - { - "section_id": "s8", - "heading": "フィールドタイプ・フィールドコンバータ定義一覧", - "rst_labels": [ - "converters_sample" - ] - }, - { - "section_id": "s9", - "heading": "フィールドコンバータ(文字列置換)の利用方法", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "可変長ファイルにおけるタイトル行の読み書き", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "ノード名に関する制約事項", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", - "format": "rst", - "filename": "record_format.rst", - "type": "component", - "category": "libraries", - "id": "libraries-record_format--s9", - "base_name": "libraries-record_format", - "output_path": "component/libraries/libraries-record_format--s9.json", - "assets_dir": "component/libraries/assets/libraries-record_format--s9/", - "section_range": { - "start_line": 830, - "end_line": 1078, - "sections": [ - "フィールドコンバータ(文字列置換)の利用方法", - "可変長ファイルにおけるタイトル行の読み書き" - ], - "section_ids": [ - "s9", - "s10" - ] - }, - "split_info": { - "is_split": true, - "part": 4, - "total_parts": 5, - "original_id": "libraries-record_format", - "group_line_count": 248 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "基本構造", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "使用例", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "フォーマット定義ファイルの書式", - "rst_labels": [ - "using_multi_format" - ] - }, - { - "section_id": "s7", - "heading": "マルチフォーマット形式の利用", - "rst_labels": [ - "types_and_converters" - ] - }, - { - "section_id": "s8", - "heading": "フィールドタイプ・フィールドコンバータ定義一覧", - "rst_labels": [ - "converters_sample" - ] - }, - { - "section_id": "s9", - "heading": "フィールドコンバータ(文字列置換)の利用方法", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "可変長ファイルにおけるタイトル行の読み書き", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "ノード名に関する制約事項", - "rst_labels": [] - } - ] + "filename": "3.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-3", + "base_name": "nablarch-batch-3", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-3.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-3/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/record_format.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/1.rst", "format": "rst", - "filename": "record_format.rst", - "type": "component", - "category": "libraries", - "id": "libraries-record_format--s11", - "base_name": "libraries-record_format", - "output_path": "component/libraries/libraries-record_format--s11.json", - "assets_dir": "component/libraries/assets/libraries-record_format--s11/", - "section_range": { - "start_line": 1078, - "end_line": 1527, - "sections": [ - "ノード名に関する制約事項" - ], - "section_ids": [ - "s11" - ] - }, - "split_info": { - "is_split": true, - "part": 5, - "total_parts": 5, - "original_id": "libraries-record_format", - "group_line_count": 449 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "基本構造", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "使用例", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "フォーマット定義ファイルの書式", - "rst_labels": [ - "using_multi_format" - ] - }, - { - "section_id": "s7", - "heading": "マルチフォーマット形式の利用", - "rst_labels": [ - "types_and_converters" - ] - }, - { - "section_id": "s8", - "heading": "フィールドタイプ・フィールドコンバータ定義一覧", - "rst_labels": [ - "converters_sample" - ] - }, - { - "section_id": "s9", - "heading": "フィールドコンバータ(文字列置換)の利用方法", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "可変長ファイルにおけるタイトル行の読み書き", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "ノード名に関する制約事項", - "rst_labels": [] - } - ] + "filename": "1.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-1-FAQ", + "base_name": "nablarch-batch-1-FAQ", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-1-FAQ.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-1-FAQ/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/validation.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/6.rst", "format": "rst", - "filename": "validation.rst", - "type": "component", - "category": "libraries", - "id": "libraries-validation-core_library", - "base_name": "libraries-validation-core_library", - "output_path": "component/libraries/libraries-validation-core_library.json", - "assets_dir": "component/libraries/assets/libraries-validation-core_library/", - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [ - "validation" - ] - } - ] + "filename": "6.rst", + "type": "processing-pattern", + "category": "nablarch-batch", + "id": "nablarch-batch-6", + "base_name": "nablarch-batch-6", + "output_path": "processing-pattern/nablarch-batch/nablarch-batch-6.json", + "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-6/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/FAQ/index.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/test/index.rst", "format": "rst", "filename": "index.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-FAQ", - "base_name": "about-nablarch-FAQ", - "output_path": "about/about-nablarch/about-nablarch-FAQ.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-FAQ/", - "section_map": [ - { - "section_id": "s1", - "heading": "FAQ一覧", - "rst_labels": [] - } - ] + "type": "development-tools", + "category": "testing-framework", + "id": "testing-framework-test", + "base_name": "testing-framework-test", + "output_path": "development-tools/testing-framework/testing-framework-test.json", + "assets_dir": "development-tools/testing-framework/assets/testing-framework-test/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-batch-batch", - "base_name": "nablarch-batch-batch-batch", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-batch-batch.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-batch-batch/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/4.rst", - "format": "rst", - "filename": "4.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-4", - "base_name": "nablarch-batch-4", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-4.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-4/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/8.rst", - "format": "rst", - "filename": "8.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-8", - "base_name": "nablarch-batch-8", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-8.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-8/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/9.rst", - "format": "rst", - "filename": "9.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-9", - "base_name": "nablarch-batch-9", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-9.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-9/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/5.rst", - "format": "rst", - "filename": "5.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-5", - "base_name": "nablarch-batch-5", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-5.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-5/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/2.rst", - "format": "rst", - "filename": "2.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-2", - "base_name": "nablarch-batch-2", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-2.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-2/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/7.rst", - "format": "rst", - "filename": "7.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-7", - "base_name": "nablarch-batch-7", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-7.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-7/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/3.rst", - "format": "rst", - "filename": "3.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-3", - "base_name": "nablarch-batch-3", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-3.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-3/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/1.rst", - "format": "rst", - "filename": "1.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-1-FAQ", - "base_name": "nablarch-batch-1-FAQ", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-1-FAQ.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-1-FAQ/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/batch/6.rst", - "format": "rst", - "filename": "6.rst", - "type": "processing-pattern", - "category": "nablarch-batch", - "id": "nablarch-batch-6", - "base_name": "nablarch-batch-6", - "output_path": "processing-pattern/nablarch-batch/nablarch-batch-6.json", - "assets_dir": "processing-pattern/nablarch-batch/assets/nablarch-batch-6/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/test/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "development-tools", - "category": "testing-framework", - "id": "testing-framework-test", - "base_name": "testing-framework-test", - "output_path": "development-tools/testing-framework/testing-framework-test.json", - "assets_dir": "development-tools/testing-framework/assets/testing-framework-test/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/document/FAQ/test/4.rst", + "source_path": ".lw/nab-official/v1.4/document/FAQ/test/4.rst", "format": "rst", "filename": "4.rst", "type": "development-tools", @@ -29399,91 +27367,1869 @@ { "source_path": ".lw/nab-official/v1.4/document/FAQ/web/3.rst", "format": "rst", - "filename": "3.rst", - "type": "processing-pattern", - "category": "web-application", - "id": "web-application-3", - "base_name": "web-application-3", - "output_path": "processing-pattern/web-application/web-application-3.json", - "assets_dir": "processing-pattern/web-application/assets/web-application-3/", - "section_map": [] + "filename": "3.rst", + "type": "processing-pattern", + "category": "web-application", + "id": "web-application-3", + "base_name": "web-application-3", + "output_path": "processing-pattern/web-application/web-application-3.json", + "assets_dir": "processing-pattern/web-application/assets/web-application-3/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/FAQ/web/10.rst", + "format": "rst", + "filename": "10.rst", + "type": "processing-pattern", + "category": "web-application", + "id": "web-application-10", + "base_name": "web-application-10", + "output_path": "processing-pattern/web-application/web-application-10.json", + "assets_dir": "processing-pattern/web-application/assets/web-application-10/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/FAQ/web/1.rst", + "format": "rst", + "filename": "1.rst", + "type": "processing-pattern", + "category": "web-application", + "id": "web-application-1-FAQ", + "base_name": "web-application-1-FAQ", + "output_path": "processing-pattern/web-application/web-application-1-FAQ.json", + "assets_dir": "processing-pattern/web-application/assets/web-application-1-FAQ/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/FAQ/web/6.rst", + "format": "rst", + "filename": "6.rst", + "type": "processing-pattern", + "category": "web-application", + "id": "web-application-6", + "base_name": "web-application-6", + "output_path": "processing-pattern/web-application/web-application-6.json", + "assets_dir": "processing-pattern/web-application/assets/web-application-6/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/FAQ/web/16.rst", + "format": "rst", + "filename": "16.rst", + "type": "processing-pattern", + "category": "web-application", + "id": "web-application-16", + "base_name": "web-application-16", + "output_path": "processing-pattern/web-application/web-application-16.json", + "assets_dir": "processing-pattern/web-application/assets/web-application-16/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/index.rst", + "format": "rst", + "filename": "index.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-source--s1", + "base_name": "biz-samples-source", + "output_path": "guide/biz-samples/biz-samples-source--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-source--s1/", + "section_range": { + "start_line": 0, + "end_line": 37, + "sections": [ + "", + "目次" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "biz-samples-source", + "group_line_count": 37 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "目次", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/about.rst", + "format": "rst", + "filename": "about.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-about--s1", + "base_name": "biz-samples-about", + "output_path": "guide/biz-samples/biz-samples-about--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-about--s1/", + "section_range": { + "start_line": 0, + "end_line": 28, + "sections": [ + "", + "Nablarch Mobile Library とは?", + "", + "NMLが想定する利用形態と提供する機能" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "biz-samples-about", + "group_line_count": 28 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "Nablarch Mobile Library とは?", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "NMLが想定する利用形態と提供する機能", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/00_Introduction.rst", + "format": "rst", + "filename": "00_Introduction.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-00_Introduction--s1", + "base_name": "biz-samples-00_Introduction", + "output_path": "guide/biz-samples/biz-samples-00_Introduction--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-00_Introduction--s1/", + "section_range": { + "start_line": 0, + "end_line": 105, + "sections": [ + "", + "ビルド設定", + "", + "実装方針" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "biz-samples-00_Introduction", + "group_line_count": 105 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "ビルド設定", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "実装方針", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/03_Utility/01_Utility.rst", + "format": "rst", + "filename": "01_Utility.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-01_Utility--s1", + "base_name": "biz-samples-01_Utility", + "output_path": "guide/biz-samples/biz-samples-01_Utility--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-01_Utility--s1/", + "section_range": { + "start_line": 0, + "end_line": 174, + "sections": [ + "", + "NMCommonUtil", + "", + "NMConnectionUtil", + "" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "biz-samples-01_Utility", + "group_line_count": 174 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "NMCommonUtil", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "NMConnectionUtil", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "NMMockUtil", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/03_Utility/01_Utility.rst", + "format": "rst", + "filename": "01_Utility.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-01_Utility--s6", + "base_name": "biz-samples-01_Utility", + "output_path": "guide/biz-samples/biz-samples-01_Utility--s6.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-01_Utility--s6/", + "section_range": { + "start_line": 174, + "end_line": 492, + "sections": [ + "NMMockUtil" + ], + "section_ids": [ + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "biz-samples-01_Utility", + "group_line_count": 318 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "NMCommonUtil", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "NMConnectionUtil", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "NMMockUtil", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/02_Encryption/01_Encryption.rst", + "format": "rst", + "filename": "01_Encryption.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-01_Encryption--s1", + "base_name": "biz-samples-01_Encryption", + "output_path": "guide/biz-samples/biz-samples-01_Encryption--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-01_Encryption--s1/", + "section_range": { + "start_line": 0, + "end_line": 220, + "sections": [ + "", + "概要", + "", + "特徴", + "", + "使用方法" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "biz-samples-01_Encryption", + "group_line_count": 220 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "概要", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "特徴", + "rst_labels": [ + "implementated" + ] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "使用方法", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/01_ConnectionFramework/01_ConnectionFramework.rst", + "format": "rst", + "filename": "01_ConnectionFramework.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-01_ConnectionFramework--s1", + "base_name": "biz-samples-01_ConnectionFramework", + "output_path": "guide/biz-samples/biz-samples-01_ConnectionFramework--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-01_ConnectionFramework--s1/", + "section_range": { + "start_line": 0, + "end_line": 345, + "sections": [ + "", + "概要", + "", + "特徴", + "", + "データモデル", + "", + "使用方法", + "" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "biz-samples-01_ConnectionFramework", + "group_line_count": 345 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "概要", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "特徴", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "データモデル", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "使用方法", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "実装クラス", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "ユーティリティ", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/01_ConnectionFramework/01_ConnectionFramework.rst", + "format": "rst", + "filename": "01_ConnectionFramework.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-01_ConnectionFramework--s10", + "base_name": "biz-samples-01_ConnectionFramework", + "output_path": "guide/biz-samples/biz-samples-01_ConnectionFramework--s10.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-01_ConnectionFramework--s10/", + "section_range": { + "start_line": 345, + "end_line": 407, + "sections": [ + "実装クラス", + "", + "ユーティリティ" + ], + "section_ids": [ + "s10", + "s11", + "s12" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "biz-samples-01_ConnectionFramework", + "group_line_count": 62 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "概要", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "特徴", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "データモデル", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "使用方法", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "実装クラス", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "ユーティリティ", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/index.rst", + "format": "rst", + "filename": "index.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-doc-workflow--s1", + "base_name": "workflow-doc-workflow", + "output_path": "extension/workflow/workflow-doc-workflow--s1.json", + "assets_dir": "extension/workflow/assets/workflow-doc-workflow--s1/", + "section_range": { + "start_line": 0, + "end_line": 155, + "sections": [ + "", + "概要", + "", + "要求", + "", + "対象外としている機能", + "", + "制約事項", + "", + "全体構造", + "", + "提供するAPI" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "workflow-doc-workflow", + "group_line_count": 155 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "概要", + "rst_labels": [ + "workflow_definition", + "workflow_instance" + ] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "要求", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "対象外としている機能", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "制約事項", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "全体構造", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "提供するAPI", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/toc.rst", + "format": "rst", + "filename": "toc.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-toc-workflow", + "base_name": "workflow-toc-workflow", + "output_path": "extension/workflow/workflow-toc-workflow.json", + "assets_dir": "extension/workflow/assets/workflow-toc-workflow/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowInstanceElement.rst", + "format": "rst", + "filename": "WorkflowInstanceElement.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowInstanceElement--s1", + "base_name": "workflow-WorkflowInstanceElement", + "output_path": "extension/workflow/workflow-WorkflowInstanceElement--s1.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowInstanceElement--s1/", + "section_range": { + "start_line": 0, + "end_line": 57, + "sections": [ + "", + "タスク担当ユーザ/タスク担当グループ", + "", + "アクティブフローノード", + "", + "アクティブユーザタスク/アクティブグループタスク" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "workflow-WorkflowInstanceElement", + "group_line_count": 57 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [ + "workflow_task_assignee" + ] + }, + { + "section_id": "s2", + "heading": "タスク担当ユーザ/タスク担当グループ", + "rst_labels": [ + "workflow_active_flow_node" + ] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "アクティブフローノード", + "rst_labels": [ + "workflow_active_task" + ] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "アクティブユーザタスク/アクティブグループタスク", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowProcessElement.rst", + "format": "rst", + "filename": "WorkflowProcessElement.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowProcessElement--s1", + "base_name": "workflow-WorkflowProcessElement", + "output_path": "extension/workflow/workflow-WorkflowProcessElement--s1.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowProcessElement--s1/", + "section_range": { + "start_line": 0, + "end_line": 220, + "sections": [ + "", + "フローノード", + "", + "シーケンスフロー", + "", + "タスク", + "", + "XORゲートウェイ", + "", + "開始イベント", + "", + "停止イベント", + "", + "境界イベント", + "", + "レーン" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "workflow-WorkflowProcessElement", + "group_line_count": 220 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [ + "workflow_flow_node" + ] + }, + { + "section_id": "s2", + "heading": "フローノード", + "rst_labels": [ + "workflow_element_sequence_flows" + ] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "シーケンスフロー", + "rst_labels": [ + "workflow_element_task" + ] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "タスク", + "rst_labels": [ + "workflow_element_multi_instance_task", + "workflow_element_gateway_xor" + ] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "XORゲートウェイ", + "rst_labels": [ + "workflow_element_event_start" + ] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "開始イベント", + "rst_labels": [ + "workflow_element_event_terminate" + ] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "停止イベント", + "rst_labels": [ + "workflow_element_boundary_event" + ] + }, + { + "section_id": "s13", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "境界イベント", + "rst_labels": [ + "workflow_element_lane" + ] + }, + { + "section_id": "s15", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "レーン", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowArchitecture.rst", + "format": "rst", + "filename": "WorkflowArchitecture.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowArchitecture--s1", + "base_name": "workflow-WorkflowArchitecture", + "output_path": "extension/workflow/workflow-WorkflowArchitecture--s1.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowArchitecture--s1/", + "section_range": { + "start_line": 0, + "end_line": 208, + "sections": [ + "" + ], + "section_ids": [ + "s1" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 3, + "original_id": "workflow-WorkflowArchitecture", + "group_line_count": 208 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "テーブル定義", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "テーブル定義の例", + "rst_labels": [ + "assign_user", + "assign_group" + ] + }, + { + "section_id": "s4", + "heading": "テーブル定義の例", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "コンポーネント定義", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowArchitecture.rst", + "format": "rst", + "filename": "WorkflowArchitecture.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowArchitecture--s2", + "base_name": "workflow-WorkflowArchitecture", + "output_path": "extension/workflow/workflow-WorkflowArchitecture--s2.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowArchitecture--s2/", + "section_range": { + "start_line": 208, + "end_line": 598, + "sections": [ + "テーブル定義", + "テーブル定義の例", + "テーブル定義の例", + "" + ], + "section_ids": [ + "s2", + "s3", + "s4", + "s5" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 3, + "original_id": "workflow-WorkflowArchitecture", + "group_line_count": 390 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "テーブル定義", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "テーブル定義の例", + "rst_labels": [ + "assign_user", + "assign_group" + ] + }, + { + "section_id": "s4", + "heading": "テーブル定義の例", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "コンポーネント定義", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowArchitecture.rst", + "format": "rst", + "filename": "WorkflowArchitecture.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowArchitecture--s6", + "base_name": "workflow-WorkflowArchitecture", + "output_path": "extension/workflow/workflow-WorkflowArchitecture--s6.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowArchitecture--s6/", + "section_range": { + "start_line": 598, + "end_line": 824, + "sections": [ + "コンポーネント定義" + ], + "section_ids": [ + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 3, + "total_parts": 3, + "original_id": "workflow-WorkflowArchitecture", + "group_line_count": 226 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "テーブル定義", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "テーブル定義の例", + "rst_labels": [ + "assign_user", + "assign_group" + ] + }, + { + "section_id": "s4", + "heading": "テーブル定義の例", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "コンポーネント定義", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowApplicationApi.rst", + "format": "rst", + "filename": "WorkflowApplicationApi.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowApplicationApi--s1", + "base_name": "workflow-WorkflowApplicationApi", + "output_path": "extension/workflow/workflow-WorkflowApplicationApi--s1.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowApplicationApi--s1/", + "section_range": { + "start_line": 0, + "end_line": 377, + "sections": [ + "", + "ワークフローの開始", + "", + "インスタンスIDの取得", + "", + "開始済みワークフローの検索", + "", + "ワークフローの進行", + "", + "境界イベントによるワークフローの進行", + "", + "ユーザ/グループの割り当て", + "", + "割り当て済みユーザ/グループの変更", + "", + "フローノードがアクティブか否かの問い合わせ", + "", + "ユーザ/グループのアクティブタスクが存在するか否かの問い合わせ", + "", + "ワークフローが完了したか否かの問い合わせ", + "" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16", + "s17", + "s18", + "s19", + "s20", + "s21" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "workflow-WorkflowApplicationApi", + "group_line_count": 377 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "ワークフローの開始", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "インスタンスIDの取得", + "rst_labels": [ + "workflow_api_find" + ] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "開始済みワークフローの検索", + "rst_labels": [ + "workflow_complete_task" + ] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "ワークフローの進行", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "境界イベントによるワークフローの進行", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "ユーザ/グループの割り当て", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "割り当て済みユーザ/グループの変更", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "フローノードがアクティブか否かの問い合わせ", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s18", + "heading": "ユーザ/グループのアクティブタスクが存在するか否かの問い合わせ", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "ワークフローが完了したか否かの問い合わせ", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s22", + "heading": "現在有効なワークフローバージョンの取得", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "FlowProceedConditionインタフェース", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s26", + "heading": "使用例", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "CompletionConditionインタフェース", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowApplicationApi.rst", + "format": "rst", + "filename": "WorkflowApplicationApi.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowApplicationApi--s22", + "base_name": "workflow-WorkflowApplicationApi", + "output_path": "extension/workflow/workflow-WorkflowApplicationApi--s22.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowApplicationApi--s22/", + "section_range": { + "start_line": 377, + "end_line": 612, + "sections": [ + "現在有効なワークフローバージョンの取得", + "", + "FlowProceedConditionインタフェース", + "", + "使用例", + "", + "CompletionConditionインタフェース" + ], + "section_ids": [ + "s22", + "s23", + "s24", + "s25", + "s26", + "s27", + "s28" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "workflow-WorkflowApplicationApi", + "group_line_count": 235 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "ワークフローの開始", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "インスタンスIDの取得", + "rst_labels": [ + "workflow_api_find" + ] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "開始済みワークフローの検索", + "rst_labels": [ + "workflow_complete_task" + ] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "ワークフローの進行", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "境界イベントによるワークフローの進行", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "ユーザ/グループの割り当て", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "割り当て済みユーザ/グループの変更", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "フローノードがアクティブか否かの問い合わせ", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s18", + "heading": "ユーザ/グループのアクティブタスクが存在するか否かの問い合わせ", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "ワークフローが完了したか否かの問い合わせ", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s22", + "heading": "現在有効なワークフローバージョンの取得", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "FlowProceedConditionインタフェース", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s26", + "heading": "使用例", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "CompletionConditionインタフェース", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowProcessSample.rst", + "format": "rst", + "filename": "WorkflowProcessSample.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-WorkflowProcessSample--s1", + "base_name": "workflow-WorkflowProcessSample", + "output_path": "extension/workflow/workflow-WorkflowProcessSample--s1.json", + "assets_dir": "extension/workflow/assets/workflow-WorkflowProcessSample--s1/", + "section_range": { + "start_line": 0, + "end_line": 220, + "sections": [ + "通常経路(申請・確認・承認)", + "条件分岐", + "差戻", + "再申請", + "取消", + "却下", + "引戻", + "後閲", + "合議(回覧)", + "審議(エスカレーション)/スキップ" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "workflow-WorkflowProcessSample", + "group_line_count": 220 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "通常経路(申請・確認・承認)", + "rst_labels": [ + "workflow_normal_process", + "workflow_conditional_branch" + ] + }, + { + "section_id": "s2", + "heading": "条件分岐", + "rst_labels": [ + "workflow_remand" + ] + }, + { + "section_id": "s3", + "heading": "差戻", + "rst_labels": [ + "workflow_reapply" + ] + }, + { + "section_id": "s4", + "heading": "再申請", + "rst_labels": [ + "workflow_cancel" + ] + }, + { + "section_id": "s5", + "heading": "取消", + "rst_labels": [ + "workflow_reject" + ] + }, + { + "section_id": "s6", + "heading": "却下", + "rst_labels": [ + "workflow_pullback" + ] + }, + { + "section_id": "s7", + "heading": "引戻", + "rst_labels": [ + "workflow_confirm" + ] + }, + { + "section_id": "s8", + "heading": "後閲", + "rst_labels": [ + "workflow_council" + ] + }, + { + "section_id": "s9", + "heading": "合議(回覧)", + "rst_labels": [ + "workflow_escalation" + ] + }, + { + "section_id": "s10", + "heading": "審議(エスカレーション)/スキップ", + "rst_labels": [] + } + ] }, { - "source_path": ".lw/nab-official/v1.4/document/FAQ/web/10.rst", + "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/index.rst", "format": "rst", - "filename": "10.rst", - "type": "processing-pattern", - "category": "web-application", - "id": "web-application-10", - "base_name": "web-application-10", - "output_path": "processing-pattern/web-application/web-application-10.json", - "assets_dir": "processing-pattern/web-application/assets/web-application-10/", + "filename": "index.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-doc", + "base_name": "workflow-doc", + "output_path": "extension/workflow/workflow-doc.json", + "assets_dir": "extension/workflow/assets/workflow-doc/", "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/FAQ/web/1.rst", + "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/toc.rst", "format": "rst", - "filename": "1.rst", - "type": "processing-pattern", - "category": "web-application", - "id": "web-application-1-FAQ", - "base_name": "web-application-1-FAQ", - "output_path": "processing-pattern/web-application/web-application-1-FAQ.json", - "assets_dir": "processing-pattern/web-application/assets/web-application-1-FAQ/", + "filename": "toc.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-toc-sample_application", + "base_name": "workflow-toc-sample_application", + "output_path": "extension/workflow/workflow-toc-sample_application.json", + "assets_dir": "extension/workflow/assets/workflow-toc-sample_application/", "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/document/FAQ/web/6.rst", + "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationViewImplementation.rst", "format": "rst", - "filename": "6.rst", - "type": "processing-pattern", - "category": "web-application", - "id": "web-application-6", - "base_name": "web-application-6", - "output_path": "processing-pattern/web-application/web-application-6.json", - "assets_dir": "processing-pattern/web-application/assets/web-application-6/", - "section_map": [] + "filename": "SampleApplicationViewImplementation.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-SampleApplicationViewImplementation--s1", + "base_name": "workflow-SampleApplicationViewImplementation", + "output_path": "extension/workflow/workflow-SampleApplicationViewImplementation--s1.json", + "assets_dir": "extension/workflow/assets/workflow-SampleApplicationViewImplementation--s1/", + "section_range": { + "start_line": 0, + "end_line": 152, + "sections": [ + "", + "タスクがアクティブかどうかの判定", + "", + "担当ユーザ/グループへのアクティブタスクの割り当て状況の確認", + "", + "画面表示項目の切り替え" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "workflow-SampleApplicationViewImplementation", + "group_line_count": 152 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "タスクがアクティブかどうかの判定", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "担当ユーザ/グループへのアクティブタスクの割り当て状況の確認", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "画面表示項目の切り替え", + "rst_labels": [] + } + ] }, { - "source_path": ".lw/nab-official/v1.4/document/FAQ/web/16.rst", + "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationExtension.rst", "format": "rst", - "filename": "16.rst", - "type": "processing-pattern", - "category": "web-application", - "id": "web-application-16", - "base_name": "web-application-16", - "output_path": "processing-pattern/web-application/web-application-16.json", - "assets_dir": "processing-pattern/web-application/assets/web-application-16/", - "section_map": [] + "filename": "SampleApplicationExtension.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-SampleApplicationExtension--s1", + "base_name": "workflow-SampleApplicationExtension", + "output_path": "extension/workflow/workflow-SampleApplicationExtension--s1.json", + "assets_dir": "extension/workflow/assets/workflow-SampleApplicationExtension--s1/", + "section_range": { + "start_line": 0, + "end_line": 55, + "sections": [ + "", + "進行先ノードの判定制御ロジックの実装" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "workflow-SampleApplicationExtension", + "group_line_count": 55 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [ + "customize_flow_proceed_condition" + ] + }, + { + "section_id": "s2", + "heading": "進行先ノードの判定制御ロジックの実装", + "rst_labels": [] + } + ] }, { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/index.rst", + "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationDesign.rst", "format": "rst", - "filename": "index.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-source--s1", - "base_name": "biz-samples-source", - "output_path": "guide/biz-samples/biz-samples-source--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-source--s1/", + "filename": "SampleApplicationDesign.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-SampleApplicationDesign--s1", + "base_name": "workflow-SampleApplicationDesign", + "output_path": "extension/workflow/workflow-SampleApplicationDesign--s1.json", + "assets_dir": "extension/workflow/assets/workflow-SampleApplicationDesign--s1/", "section_range": { "start_line": 0, - "end_line": 37, + "end_line": 99, "sections": [ "", - "目次" + "ワークフロー定義", + "", + "画面遷移", + "", + "ワークフローライブラリに関連する機能", + "ワークフローに付随する情報の保持", + "ワークフローにおける処理履歴の保持", + "タスクにアサインするユーザ/グループや権限の管理" ], "section_ids": [ "s1", - "s2" + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-source", - "group_line_count": 37 + "original_id": "workflow-SampleApplicationDesign", + "group_line_count": 99 }, "section_map": [ { @@ -29493,54 +29239,108 @@ }, { "section_id": "s2", - "heading": "目次", + "heading": "ワークフロー定義", + "rst_labels": [ + "trans_expence_appliance_definition", + "loan_appliance_definition" + ] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "画面遷移", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "ワークフローライブラリに関連する機能", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "ワークフローに付随する情報の保持", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "ワークフローにおける処理履歴の保持", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "タスクにアサインするユーザ/グループや権限の管理", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/about.rst", + "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationImplementation.rst", "format": "rst", - "filename": "about.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-about--s1", - "base_name": "biz-samples-about", - "output_path": "guide/biz-samples/biz-samples-about--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-about--s1/", + "filename": "SampleApplicationImplementation.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-SampleApplicationImplementation--s1", + "base_name": "workflow-SampleApplicationImplementation", + "output_path": "extension/workflow/workflow-SampleApplicationImplementation--s1.json", + "assets_dir": "extension/workflow/assets/workflow-SampleApplicationImplementation--s1/", "section_range": { "start_line": 0, - "end_line": 28, + "end_line": 325, "sections": [ "", - "Nablarch Mobile Library とは?", + "ワークフローの開始", "", - "NMLが想定する利用形態と提供する機能" + "ワークフローの進行", + "", + "境界イベントの実行", + "", + "ワークフローの検索", + "", + "排他制御についての注意事項" ], "section_ids": [ "s1", "s2", "s3", - "s4" + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-about", - "group_line_count": 28 + "original_id": "workflow-SampleApplicationImplementation", + "group_line_count": 325 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "start_workflow" + ] }, { "section_id": "s2", - "heading": "Nablarch Mobile Library とは?", - "rst_labels": [] + "heading": "ワークフローの開始", + "rst_labels": [ + "complete_task" + ] }, { "section_id": "s3", @@ -29549,43 +29349,123 @@ }, { "section_id": "s4", - "heading": "NMLが想定する利用形態と提供する機能", + "heading": "ワークフローの進行", + "rst_labels": [ + "trigger_event" + ] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "境界イベントの実行", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "ワークフローの検索", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "排他制御についての注意事項", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/00_Introduction.rst", + "source_path": ".lw/nab-official/v1.4/workflow/tool/doc/index.rst", "format": "rst", - "filename": "00_Introduction.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-00_Introduction--s1", - "base_name": "biz-samples-00_Introduction", - "output_path": "guide/biz-samples/biz-samples-00_Introduction--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-00_Introduction--s1/", + "filename": "index.rst", + "type": "extension", + "category": "workflow", + "id": "workflow-doc-tool--s1", + "base_name": "workflow-doc-tool", + "output_path": "extension/workflow/workflow-doc-tool--s1.json", + "assets_dir": "extension/workflow/assets/workflow-doc-tool--s1/", "section_range": { "start_line": 0, - "end_line": 105, + "end_line": 383, "sections": [ "", - "ビルド設定", + "概要", "", - "実装方針" + "前提", + "", + "ツール配置場所", + "", + "利用の準備", + "", + "利用手順", + "精査エラー発生時の動作", + "", + "仕様", + "ワークフロー定義", + "レーン", + "フローノード", + "シーケンスフロー", + "境界イベントトリガー", + "境界イベント", + "タスク", + "イベント", + "ゲートウェイ", + "構文精査", + "ワークフローライブラリの制約に関する精査", + "", + "プロジェクト固有の設定について", + "省略記法について", + "省略記法の追加・変更" ], "section_ids": [ "s1", "s2", "s3", - "s4" + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16", + "s17", + "s18", + "s19", + "s20", + "s21", + "s22", + "s23", + "s24", + "s25", + "s26", + "s27", + "s28" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-00_Introduction", - "group_line_count": 105 + "original_id": "workflow-doc-tool", + "group_line_count": 383 }, "section_map": [ { @@ -29595,7 +29475,7 @@ }, { "section_id": "s2", - "heading": "ビルド設定", + "heading": "概要", "rst_labels": [] }, { @@ -29605,159 +29485,151 @@ }, { "section_id": "s4", - "heading": "実装方針", + "heading": "前提", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/03_Utility/01_Utility.rst", - "format": "rst", - "filename": "01_Utility.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-01_Utility--s1", - "base_name": "biz-samples-01_Utility", - "output_path": "guide/biz-samples/biz-samples-01_Utility--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-01_Utility--s1/", - "section_range": { - "start_line": 0, - "end_line": 174, - "sections": [ - "", - "NMCommonUtil", - "", - "NMConnectionUtil", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "biz-samples-01_Utility", - "group_line_count": 174 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s5", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "NMCommonUtil", + "section_id": "s6", + "heading": "ツール配置場所", "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "NMConnectionUtil", + "section_id": "s8", + "heading": "利用の準備", "rst_labels": [] }, { - "section_id": "s5", + "section_id": "s9", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "NMMockUtil", + "section_id": "s10", + "heading": "利用手順", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/03_Utility/01_Utility.rst", - "format": "rst", - "filename": "01_Utility.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-01_Utility--s6", - "base_name": "biz-samples-01_Utility", - "output_path": "guide/biz-samples/biz-samples-01_Utility--s6.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-01_Utility--s6/", - "section_range": { - "start_line": 174, - "end_line": 492, - "sections": [ - "NMMockUtil" - ], - "section_ids": [ - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "biz-samples-01_Utility", - "group_line_count": 318 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s11", + "heading": "精査エラー発生時の動作", + "rst_labels": [] + }, + { + "section_id": "s12", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "NMCommonUtil", + "section_id": "s13", + "heading": "仕様", "rst_labels": [] }, { - "section_id": "s3", - "heading": "", + "section_id": "s14", + "heading": "ワークフロー定義", "rst_labels": [] }, { - "section_id": "s4", - "heading": "NMConnectionUtil", + "section_id": "s15", + "heading": "レーン", "rst_labels": [] }, { - "section_id": "s5", + "section_id": "s16", + "heading": "フローノード", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "シーケンスフロー", + "rst_labels": [] + }, + { + "section_id": "s18", + "heading": "境界イベントトリガー", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "境界イベント", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "タスク", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "イベント", + "rst_labels": [] + }, + { + "section_id": "s22", + "heading": "ゲートウェイ", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "構文精査", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "ワークフローライブラリの制約に関する精査", + "rst_labels": [] + }, + { + "section_id": "s25", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "NMMockUtil", + "section_id": "s26", + "heading": "プロジェクト固有の設定について", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "省略記法について", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "省略記法の追加・変更", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/02_Encryption/01_Encryption.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/0402_ExtendedFieldType.rst", "format": "rst", - "filename": "01_Encryption.rst", + "filename": "0402_ExtendedFieldType.rst", "type": "guide", "category": "biz-samples", - "id": "biz-samples-01_Encryption--s1", - "base_name": "biz-samples-01_Encryption", - "output_path": "guide/biz-samples/biz-samples-01_Encryption--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-01_Encryption--s1/", + "id": "biz-samples-0402_ExtendedFieldType--s1", + "base_name": "biz-samples-0402_ExtendedFieldType", + "output_path": "guide/biz-samples/biz-samples-0402_ExtendedFieldType--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-0402_ExtendedFieldType--s1/", "section_range": { "start_line": 0, - "end_line": 220, + "end_line": 136, "sections": [ "", "概要", - "", - "特徴", - "", - "使用方法" + "提供パッケージ", + "フィールドタイプの構成", + "フィールドタイプの使用方法", + "フィールドタイプ・フィールドコンバータ定義一覧" ], "section_ids": [ "s1", @@ -29772,8 +29644,8 @@ "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-01_Encryption", - "group_line_count": 220 + "original_id": "biz-samples-0402_ExtendedFieldType", + "group_line_count": 136 }, "section_map": [ { @@ -29788,51 +29660,51 @@ }, { "section_id": "s3", - "heading": "", + "heading": "提供パッケージ", "rst_labels": [] }, { "section_id": "s4", - "heading": "特徴", - "rst_labels": [ - "implementated" - ] + "heading": "フィールドタイプの構成", + "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "フィールドタイプの使用方法", "rst_labels": [] }, { "section_id": "s6", - "heading": "使用方法", + "heading": "フィールドタイプ・フィールドコンバータ定義一覧", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/01_ConnectionFramework/01_ConnectionFramework.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/02_ExtendedValidation.rst", "format": "rst", - "filename": "01_ConnectionFramework.rst", + "filename": "02_ExtendedValidation.rst", "type": "guide", "category": "biz-samples", - "id": "biz-samples-01_ConnectionFramework--s1", - "base_name": "biz-samples-01_ConnectionFramework", - "output_path": "guide/biz-samples/biz-samples-01_ConnectionFramework--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-01_ConnectionFramework--s1/", + "id": "biz-samples-02_ExtendedValidation--s1", + "base_name": "biz-samples-02_ExtendedValidation", + "output_path": "guide/biz-samples/biz-samples-02_ExtendedValidation--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-02_ExtendedValidation--s1/", "section_range": { "start_line": 0, - "end_line": 345, + "end_line": 311, "sections": [ "", - "概要", + "提供パッケージ", "", - "特徴", + "メールアドレスバリデーション", "", - "データモデル", + "日本電話番号バリデーション", + "精査仕様", + "精査仕様", + "実装例", "", - "使用方法", - "" + "コード値精査" ], "section_ids": [ "s1", @@ -29843,15 +29715,17 @@ "s6", "s7", "s8", - "s9" + "s9", + "s10", + "s11" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 2, - "original_id": "biz-samples-01_ConnectionFramework", - "group_line_count": 345 + "total_parts": 1, + "original_id": "biz-samples-02_ExtendedValidation", + "group_line_count": 311 }, "section_map": [ { @@ -29861,7 +29735,7 @@ }, { "section_id": "s2", - "heading": "概要", + "heading": "提供パッケージ", "rst_labels": [] }, { @@ -29871,7 +29745,7 @@ }, { "section_id": "s4", - "heading": "特徴", + "heading": "メールアドレスバリデーション", "rst_labels": [] }, { @@ -29881,71 +29755,76 @@ }, { "section_id": "s6", - "heading": "データモデル", + "heading": "日本電話番号バリデーション", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "精査仕様", "rst_labels": [] }, { "section_id": "s8", - "heading": "使用方法", + "heading": "精査仕様", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "実装例", "rst_labels": [] }, { "section_id": "s10", - "heading": "実装クラス", - "rst_labels": [] - }, - { - "section_id": "s11", "heading": "", "rst_labels": [] }, { - "section_id": "s12", - "heading": "ユーティリティ", + "section_id": "s11", + "heading": "コード値精査", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/mobile/source/01_iOS/01_ConnectionFramework/01_ConnectionFramework.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/index.rst", "format": "rst", - "filename": "01_ConnectionFramework.rst", + "filename": "index.rst", "type": "guide", "category": "biz-samples", - "id": "biz-samples-01_ConnectionFramework--s10", - "base_name": "biz-samples-01_ConnectionFramework", - "output_path": "guide/biz-samples/biz-samples-01_ConnectionFramework--s10.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-01_ConnectionFramework--s10/", + "id": "biz-samples-doc", + "base_name": "biz-samples-doc", + "output_path": "guide/biz-samples/biz-samples-doc.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-doc/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/useragent_sample.rst", + "format": "rst", + "filename": "useragent_sample.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-useragent_sample--s1", + "base_name": "biz-samples-useragent_sample", + "output_path": "guide/biz-samples/biz-samples-useragent_sample--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-useragent_sample--s1/", "section_range": { - "start_line": 345, - "end_line": 407, + "start_line": 0, + "end_line": 99, "sections": [ - "実装クラス", "", - "ユーティリティ" + "UserAgent情報取得機能設定サンプル" ], "section_ids": [ - "s10", - "s11", - "s12" + "s1", + "s2" ] }, "split_info": { "is_split": true, - "part": 2, + "part": 1, "total_parts": 2, - "original_id": "biz-samples-01_ConnectionFramework", - "group_line_count": 62 + "original_id": "biz-samples-useragent_sample", + "group_line_count": 99 }, "section_map": [ { @@ -29955,87 +29834,83 @@ }, { "section_id": "s2", - "heading": "概要", + "heading": "UserAgent情報取得機能設定サンプル", "rst_labels": [] }, { "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "特徴", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "データモデル", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "使用方法", + "heading": "各種ユーザエージェント値から取得できる値の例", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/useragent_sample.rst", + "format": "rst", + "filename": "useragent_sample.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-useragent_sample--s3", + "base_name": "biz-samples-useragent_sample", + "output_path": "guide/biz-samples/biz-samples-useragent_sample--s3.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-useragent_sample--s3/", + "section_range": { + "start_line": 99, + "end_line": 445, + "sections": [ + "各種ユーザエージェント値から取得できる値の例" + ], + "section_ids": [ + "s3" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "biz-samples-useragent_sample", + "group_line_count": 346 + }, + "section_map": [ { - "section_id": "s9", + "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s10", - "heading": "実装クラス", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "", + "section_id": "s2", + "heading": "UserAgent情報取得機能設定サンプル", "rst_labels": [] }, { - "section_id": "s12", - "heading": "ユーティリティ", + "section_id": "s3", + "heading": "各種ユーザエージェント値から取得できる値の例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/workflow/doc/index.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/06_Captcha.rst", "format": "rst", - "filename": "index.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-doc-workflow--s1", - "base_name": "workflow-doc-workflow", - "output_path": "extension/workflow/workflow-doc-workflow--s1.json", - "assets_dir": "extension/workflow/assets/workflow-doc-workflow--s1/", + "filename": "06_Captcha.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-06_Captcha--s1", + "base_name": "biz-samples-06_Captcha", + "output_path": "guide/biz-samples/biz-samples-06_Captcha--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-06_Captcha--s1/", "section_range": { "start_line": 0, - "end_line": 155, + "end_line": 359, "sections": [ "", - "概要", - "", - "要求", - "", - "対象外としている機能", + "提供パッケージ", "", - "制約事項", + "概要", "", - "全体構造", + "構成", "", - "提供するAPI" + "使用方法" ], "section_ids": [ "s1", @@ -30045,33 +29920,28 @@ "s5", "s6", "s7", - "s8", - "s9", - "s10", - "s11", - "s12" + "s8" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "workflow-doc-workflow", - "group_line_count": 155 + "original_id": "biz-samples-06_Captcha", + "group_line_count": 359 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "captcha" + ] }, { "section_id": "s2", - "heading": "概要", - "rst_labels": [ - "workflow_definition", - "workflow_instance" - ] + "heading": "提供パッケージ", + "rst_labels": [] }, { "section_id": "s3", @@ -30080,7 +29950,7 @@ }, { "section_id": "s4", - "heading": "要求", + "heading": "概要", "rst_labels": [] }, { @@ -30090,7 +29960,7 @@ }, { "section_id": "s6", - "heading": "対象外としている機能", + "heading": "構成", "rst_labels": [] }, { @@ -30100,63 +29970,33 @@ }, { "section_id": "s8", - "heading": "制約事項", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "全体構造", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "提供するAPI", + "heading": "使用方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/workflow/doc/toc.rst", - "format": "rst", - "filename": "toc.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-toc-workflow", - "base_name": "workflow-toc-workflow", - "output_path": "extension/workflow/workflow-toc-workflow.json", - "assets_dir": "extension/workflow/assets/workflow-toc-workflow/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowInstanceElement.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/01_Authentication.rst", "format": "rst", - "filename": "WorkflowInstanceElement.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowInstanceElement--s1", - "base_name": "workflow-WorkflowInstanceElement", - "output_path": "extension/workflow/workflow-WorkflowInstanceElement--s1.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowInstanceElement--s1/", + "filename": "01_Authentication.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-01_Authentication--s1", + "base_name": "biz-samples-01_Authentication", + "output_path": "guide/biz-samples/biz-samples-01_Authentication--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-01_Authentication--s1/", "section_range": { "start_line": 0, - "end_line": 57, + "end_line": 323, "sections": [ "", - "タスク担当ユーザ/タスク担当グループ", + "提供パッケージ", "", - "アクティブフローノード", + "概要", "", - "アクティブユーザタスク/アクティブグループタスク" + "構成", + "", + "使用方法" ], "section_ids": [ "s1", @@ -30164,30 +30004,30 @@ "s3", "s4", "s5", - "s6" + "s6", + "s7", + "s8" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "workflow-WorkflowInstanceElement", - "group_line_count": 57 + "original_id": "biz-samples-01_Authentication", + "group_line_count": 323 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "workflow_task_assignee" + "authentication" ] }, { "section_id": "s2", - "heading": "タスク担当ユーザ/タスク担当グループ", - "rst_labels": [ - "workflow_active_flow_node" - ] + "heading": "提供パッケージ", + "rst_labels": [] }, { "section_id": "s3", @@ -30196,10 +30036,8 @@ }, { "section_id": "s4", - "heading": "アクティブフローノード", - "rst_labels": [ - "workflow_active_task" - ] + "heading": "概要", + "rst_labels": [] }, { "section_id": "s5", @@ -30208,41 +30046,50 @@ }, { "section_id": "s6", - "heading": "アクティブユーザタスク/アクティブグループタスク", + "heading": "構成", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "使用方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowProcessElement.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", "format": "rst", - "filename": "WorkflowProcessElement.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowProcessElement--s1", - "base_name": "workflow-WorkflowProcessElement", - "output_path": "extension/workflow/workflow-WorkflowProcessElement--s1.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowProcessElement--s1/", + "filename": "03_ListSearchResult.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-03_ListSearchResult--s1", + "base_name": "biz-samples-03_ListSearchResult", + "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s1/", "section_range": { "start_line": 0, - "end_line": 220, + "end_line": 266, "sections": [ "", - "フローノード", - "", - "シーケンスフロー", - "", - "タスク", + "提供パッケージ", "", - "XORゲートウェイ", + "概要", "", - "開始イベント", + "構成", "", - "停止イベント", + "使用方法", "", - "境界イベント", + "ListSearchInfoクラス", "", - "レーン" + "listSearchResultタグ", + "全体", + "検索結果件数", + "ページング" ], "section_ids": [ "s1", @@ -30259,31 +30106,28 @@ "s12", "s13", "s14", - "s15", - "s16" + "s15" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "workflow-WorkflowProcessElement", - "group_line_count": 220 + "total_parts": 4, + "original_id": "biz-samples-03_ListSearchResult", + "group_line_count": 266 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "workflow_flow_node" + "list_search_result" ] }, { "section_id": "s2", - "heading": "フローノード", - "rst_labels": [ - "workflow_element_sequence_flows" - ] + "heading": "提供パッケージ", + "rst_labels": [] }, { "section_id": "s3", @@ -30292,10 +30136,8 @@ }, { "section_id": "s4", - "heading": "シーケンスフロー", - "rst_labels": [ - "workflow_element_task" - ] + "heading": "概要", + "rst_labels": [] }, { "section_id": "s5", @@ -30304,11 +30146,8 @@ }, { "section_id": "s6", - "heading": "タスク", - "rst_labels": [ - "workflow_element_multi_instance_task", - "workflow_element_gateway_xor" - ] + "heading": "構成", + "rst_labels": [] }, { "section_id": "s7", @@ -30317,10 +30156,8 @@ }, { "section_id": "s8", - "heading": "XORゲートウェイ", - "rst_labels": [ - "workflow_element_event_start" - ] + "heading": "使用方法", + "rst_labels": [] }, { "section_id": "s9", @@ -30329,10 +30166,8 @@ }, { "section_id": "s10", - "heading": "開始イベント", - "rst_labels": [ - "workflow_element_event_terminate" - ] + "heading": "ListSearchInfoクラス", + "rst_labels": [] }, { "section_id": "s11", @@ -30341,306 +30176,181 @@ }, { "section_id": "s12", - "heading": "停止イベント", - "rst_labels": [ - "workflow_element_boundary_event" - ] + "heading": "listSearchResultタグ", + "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "全体", "rst_labels": [] }, { "section_id": "s14", - "heading": "境界イベント", - "rst_labels": [ - "workflow_element_lane" - ] + "heading": "検索結果件数", + "rst_labels": [] }, { "section_id": "s15", - "heading": "", + "heading": "ページング", "rst_labels": [] }, { "section_id": "s16", - "heading": "レーン", + "heading": "検索結果", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowArchitecture.rst", - "format": "rst", - "filename": "WorkflowArchitecture.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowArchitecture--s1", - "base_name": "workflow-WorkflowArchitecture", - "output_path": "extension/workflow/workflow-WorkflowArchitecture--s1.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowArchitecture--s1/", - "section_range": { - "start_line": 0, - "end_line": 208, - "sections": [ - "" - ], - "section_ids": [ - "s1" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 3, - "original_id": "workflow-WorkflowArchitecture", - "group_line_count": 208 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s17", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "テーブル定義", + "section_id": "s18", + "heading": "検索結果の並び替え", "rst_labels": [] }, { - "section_id": "s3", - "heading": "テーブル定義の例", - "rst_labels": [ - "assign_user", - "assign_group" - ] + "section_id": "s19", + "heading": "", + "rst_labels": [] }, { - "section_id": "s4", - "heading": "テーブル定義の例", + "section_id": "s20", + "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", "rst_labels": [] }, { - "section_id": "s5", + "section_id": "s21", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "コンポーネント定義", + "section_id": "s22", + "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowArchitecture.rst", - "format": "rst", - "filename": "WorkflowArchitecture.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowArchitecture--s2", - "base_name": "workflow-WorkflowArchitecture", - "output_path": "extension/workflow/workflow-WorkflowArchitecture--s2.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowArchitecture--s2/", - "section_range": { - "start_line": 208, - "end_line": 598, - "sections": [ - "テーブル定義", - "テーブル定義の例", - "テーブル定義の例", - "" - ], - "section_ids": [ - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 3, - "original_id": "workflow-WorkflowArchitecture", - "group_line_count": 390 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s23", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "テーブル定義", + "section_id": "s24", + "heading": "検索結果の一覧表示機能のデフォルト値設定", "rst_labels": [] }, { - "section_id": "s3", - "heading": "テーブル定義の例", - "rst_labels": [ - "assign_user", - "assign_group" - ] + "section_id": "s25", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s26", + "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "タグリファレンス", + "rst_labels": [] + }, + { + "section_id": "s29", + "heading": "全体", + "rst_labels": [] }, { - "section_id": "s4", - "heading": "テーブル定義の例", + "section_id": "s30", + "heading": "検索結果件数", "rst_labels": [] }, { - "section_id": "s5", - "heading": "", + "section_id": "s31", + "heading": "ページング", "rst_labels": [] }, { - "section_id": "s6", - "heading": "コンポーネント定義", + "section_id": "s32", + "heading": "現在のページ番号", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowArchitecture.rst", - "format": "rst", - "filename": "WorkflowArchitecture.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowArchitecture--s6", - "base_name": "workflow-WorkflowArchitecture", - "output_path": "extension/workflow/workflow-WorkflowArchitecture--s6.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowArchitecture--s6/", - "section_range": { - "start_line": 598, - "end_line": 824, - "sections": [ - "コンポーネント定義" - ], - "section_ids": [ - "s6" - ] - }, - "split_info": { - "is_split": true, - "part": 3, - "total_parts": 3, - "original_id": "workflow-WorkflowArchitecture", - "group_line_count": 226 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s33", + "heading": "最初", "rst_labels": [] }, { - "section_id": "s2", - "heading": "テーブル定義", + "section_id": "s34", + "heading": "前へ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "テーブル定義の例", - "rst_labels": [ - "assign_user", - "assign_group" - ] + "section_id": "s35", + "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "rst_labels": [] }, { - "section_id": "s4", - "heading": "テーブル定義の例", + "section_id": "s36", + "heading": "次へ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "", + "section_id": "s37", + "heading": "最後", "rst_labels": [] }, { - "section_id": "s6", - "heading": "コンポーネント定義", + "section_id": "s38", + "heading": "検索結果", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowApplicationApi.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", "format": "rst", - "filename": "WorkflowApplicationApi.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowApplicationApi--s1", - "base_name": "workflow-WorkflowApplicationApi", - "output_path": "extension/workflow/workflow-WorkflowApplicationApi--s1.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowApplicationApi--s1/", + "filename": "03_ListSearchResult.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-03_ListSearchResult--s16", + "base_name": "biz-samples-03_ListSearchResult", + "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s16.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s16/", "section_range": { - "start_line": 0, - "end_line": 377, + "start_line": 266, + "end_line": 520, "sections": [ - "", - "ワークフローの開始", - "", - "インスタンスIDの取得", - "", - "開始済みワークフローの検索", - "", - "ワークフローの進行", - "", - "境界イベントによるワークフローの進行", - "", - "ユーザ/グループの割り当て", - "", - "割り当て済みユーザ/グループの変更", - "", - "フローノードがアクティブか否かの問い合わせ", - "", - "ユーザ/グループのアクティブタスクが存在するか否かの問い合わせ", - "", - "ワークフローが完了したか否かの問い合わせ", + "検索結果", "" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15", "s16", - "s17", - "s18", - "s19", - "s20", - "s21" + "s17" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "workflow-WorkflowApplicationApi", - "group_line_count": 377 + "part": 2, + "total_parts": 4, + "original_id": "biz-samples-03_ListSearchResult", + "group_line_count": 254 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "list_search_result" + ] }, { "section_id": "s2", - "heading": "ワークフローの開始", + "heading": "提供パッケージ", "rst_labels": [] }, { @@ -30650,10 +30360,8 @@ }, { "section_id": "s4", - "heading": "インスタンスIDの取得", - "rst_labels": [ - "workflow_api_find" - ] + "heading": "概要", + "rst_labels": [] }, { "section_id": "s5", @@ -30662,10 +30370,8 @@ }, { "section_id": "s6", - "heading": "開始済みワークフローの検索", - "rst_labels": [ - "workflow_complete_task" - ] + "heading": "構成", + "rst_labels": [] }, { "section_id": "s7", @@ -30674,7 +30380,7 @@ }, { "section_id": "s8", - "heading": "ワークフローの進行", + "heading": "使用方法", "rst_labels": [] }, { @@ -30684,7 +30390,7 @@ }, { "section_id": "s10", - "heading": "境界イベントによるワークフローの進行", + "heading": "ListSearchInfoクラス", "rst_labels": [] }, { @@ -30694,27 +30400,27 @@ }, { "section_id": "s12", - "heading": "ユーザ/グループの割り当て", + "heading": "listSearchResultタグ", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "全体", "rst_labels": [] }, { "section_id": "s14", - "heading": "割り当て済みユーザ/グループの変更", + "heading": "検索結果件数", "rst_labels": [] }, { "section_id": "s15", - "heading": "", + "heading": "ページング", "rst_labels": [] }, { "section_id": "s16", - "heading": "フローノードがアクティブか否かの問い合わせ", + "heading": "検索結果", "rst_labels": [] }, { @@ -30724,7 +30430,7 @@ }, { "section_id": "s18", - "heading": "ユーザ/グループのアクティブタスクが存在するか否かの問い合わせ", + "heading": "検索結果の並び替え", "rst_labels": [] }, { @@ -30734,7 +30440,7 @@ }, { "section_id": "s20", - "heading": "ワークフローが完了したか否かの問い合わせ", + "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", "rst_labels": [] }, { @@ -30744,7 +30450,7 @@ }, { "section_id": "s22", - "heading": "現在有効なワークフローバージョンの取得", + "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", "rst_labels": [] }, { @@ -30754,7 +30460,7 @@ }, { "section_id": "s24", - "heading": "FlowProceedConditionインタフェース", + "heading": "検索結果の一覧表示機能のデフォルト値設定", "rst_labels": [] }, { @@ -30764,7 +30470,7 @@ }, { "section_id": "s26", - "heading": "使用例", + "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", "rst_labels": [] }, { @@ -30774,59 +30480,109 @@ }, { "section_id": "s28", - "heading": "CompletionConditionインタフェース", + "heading": "タグリファレンス", + "rst_labels": [] + }, + { + "section_id": "s29", + "heading": "全体", + "rst_labels": [] + }, + { + "section_id": "s30", + "heading": "検索結果件数", + "rst_labels": [] + }, + { + "section_id": "s31", + "heading": "ページング", + "rst_labels": [] + }, + { + "section_id": "s32", + "heading": "現在のページ番号", + "rst_labels": [] + }, + { + "section_id": "s33", + "heading": "最初", + "rst_labels": [] + }, + { + "section_id": "s34", + "heading": "前へ", + "rst_labels": [] + }, + { + "section_id": "s35", + "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "rst_labels": [] + }, + { + "section_id": "s36", + "heading": "次へ", + "rst_labels": [] + }, + { + "section_id": "s37", + "heading": "最後", + "rst_labels": [] + }, + { + "section_id": "s38", + "heading": "検索結果", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowApplicationApi.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", "format": "rst", - "filename": "WorkflowApplicationApi.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowApplicationApi--s22", - "base_name": "workflow-WorkflowApplicationApi", - "output_path": "extension/workflow/workflow-WorkflowApplicationApi--s22.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowApplicationApi--s22/", + "filename": "03_ListSearchResult.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-03_ListSearchResult--s18", + "base_name": "biz-samples-03_ListSearchResult", + "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s18.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s18/", "section_range": { - "start_line": 377, - "end_line": 612, + "start_line": 520, + "end_line": 872, "sections": [ - "現在有効なワークフローバージョンの取得", - "", - "FlowProceedConditionインタフェース", + "検索結果の並び替え", "", - "使用例", + "1画面にすべての検索結果を一覧表示する場合の実装方法", "", - "CompletionConditionインタフェース" + "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", + "" ], "section_ids": [ + "s18", + "s19", + "s20", + "s21", "s22", - "s23", - "s24", - "s25", - "s26", - "s27", - "s28" + "s23" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "workflow-WorkflowApplicationApi", - "group_line_count": 235 + "part": 3, + "total_parts": 4, + "original_id": "biz-samples-03_ListSearchResult", + "group_line_count": 352 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "list_search_result" + ] }, { "section_id": "s2", - "heading": "ワークフローの開始", + "heading": "提供パッケージ", "rst_labels": [] }, { @@ -30836,10 +30592,8 @@ }, { "section_id": "s4", - "heading": "インスタンスIDの取得", - "rst_labels": [ - "workflow_api_find" - ] + "heading": "概要", + "rst_labels": [] }, { "section_id": "s5", @@ -30848,10 +30602,8 @@ }, { "section_id": "s6", - "heading": "開始済みワークフローの検索", - "rst_labels": [ - "workflow_complete_task" - ] + "heading": "構成", + "rst_labels": [] }, { "section_id": "s7", @@ -30860,7 +30612,7 @@ }, { "section_id": "s8", - "heading": "ワークフローの進行", + "heading": "使用方法", "rst_labels": [] }, { @@ -30870,7 +30622,7 @@ }, { "section_id": "s10", - "heading": "境界イベントによるワークフローの進行", + "heading": "ListSearchInfoクラス", "rst_labels": [] }, { @@ -30880,27 +30632,27 @@ }, { "section_id": "s12", - "heading": "ユーザ/グループの割り当て", + "heading": "listSearchResultタグ", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "全体", "rst_labels": [] }, { "section_id": "s14", - "heading": "割り当て済みユーザ/グループの変更", + "heading": "検索結果件数", "rst_labels": [] }, { "section_id": "s15", - "heading": "", + "heading": "ページング", "rst_labels": [] }, { "section_id": "s16", - "heading": "フローノードがアクティブか否かの問い合わせ", + "heading": "検索結果", "rst_labels": [] }, { @@ -30910,7 +30662,7 @@ }, { "section_id": "s18", - "heading": "ユーザ/グループのアクティブタスクが存在するか否かの問い合わせ", + "heading": "検索結果の並び替え", "rst_labels": [] }, { @@ -30920,7 +30672,7 @@ }, { "section_id": "s20", - "heading": "ワークフローが完了したか否かの問い合わせ", + "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", "rst_labels": [] }, { @@ -30930,7 +30682,7 @@ }, { "section_id": "s22", - "heading": "現在有効なワークフローバージョンの取得", + "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", "rst_labels": [] }, { @@ -30940,7 +30692,7 @@ }, { "section_id": "s24", - "heading": "FlowProceedConditionインタフェース", + "heading": "検索結果の一覧表示機能のデフォルト値設定", "rst_labels": [] }, { @@ -30950,7 +30702,7 @@ }, { "section_id": "s26", - "heading": "使用例", + "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", "rst_labels": [] }, { @@ -30960,198 +30712,127 @@ }, { "section_id": "s28", - "heading": "CompletionConditionインタフェース", + "heading": "タグリファレンス", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/doc/09/WorkflowProcessSample.rst", - "format": "rst", - "filename": "WorkflowProcessSample.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-WorkflowProcessSample--s1", - "base_name": "workflow-WorkflowProcessSample", - "output_path": "extension/workflow/workflow-WorkflowProcessSample--s1.json", - "assets_dir": "extension/workflow/assets/workflow-WorkflowProcessSample--s1/", - "section_range": { - "start_line": 0, - "end_line": 220, - "sections": [ - "通常経路(申請・確認・承認)", - "条件分岐", - "差戻", - "再申請", - "取消", - "却下", - "引戻", - "後閲", - "合議(回覧)", - "審議(エスカレーション)/スキップ" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "workflow-WorkflowProcessSample", - "group_line_count": 220 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "通常経路(申請・確認・承認)", - "rst_labels": [ - "workflow_normal_process", - "workflow_conditional_branch" - ] + "section_id": "s29", + "heading": "全体", + "rst_labels": [] }, { - "section_id": "s2", - "heading": "条件分岐", - "rst_labels": [ - "workflow_remand" - ] + "section_id": "s30", + "heading": "検索結果件数", + "rst_labels": [] }, { - "section_id": "s3", - "heading": "差戻", - "rst_labels": [ - "workflow_reapply" - ] + "section_id": "s31", + "heading": "ページング", + "rst_labels": [] }, { - "section_id": "s4", - "heading": "再申請", - "rst_labels": [ - "workflow_cancel" - ] + "section_id": "s32", + "heading": "現在のページ番号", + "rst_labels": [] }, { - "section_id": "s5", - "heading": "取消", - "rst_labels": [ - "workflow_reject" - ] + "section_id": "s33", + "heading": "最初", + "rst_labels": [] }, { - "section_id": "s6", - "heading": "却下", - "rst_labels": [ - "workflow_pullback" - ] + "section_id": "s34", + "heading": "前へ", + "rst_labels": [] }, { - "section_id": "s7", - "heading": "引戻", - "rst_labels": [ - "workflow_confirm" - ] + "section_id": "s35", + "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "rst_labels": [] }, { - "section_id": "s8", - "heading": "後閲", - "rst_labels": [ - "workflow_council" - ] + "section_id": "s36", + "heading": "次へ", + "rst_labels": [] }, { - "section_id": "s9", - "heading": "合議(回覧)", - "rst_labels": [ - "workflow_escalation" - ] + "section_id": "s37", + "heading": "最後", + "rst_labels": [] }, { - "section_id": "s10", - "heading": "審議(エスカレーション)/スキップ", + "section_id": "s38", + "heading": "検索結果", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-doc", - "base_name": "workflow-doc", - "output_path": "extension/workflow/workflow-doc.json", - "assets_dir": "extension/workflow/assets/workflow-doc/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/toc.rst", - "format": "rst", - "filename": "toc.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-toc-sample_application", - "base_name": "workflow-toc-sample_application", - "output_path": "extension/workflow/workflow-toc-sample_application.json", - "assets_dir": "extension/workflow/assets/workflow-toc-sample_application/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationViewImplementation.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", "format": "rst", - "filename": "SampleApplicationViewImplementation.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-SampleApplicationViewImplementation--s1", - "base_name": "workflow-SampleApplicationViewImplementation", - "output_path": "extension/workflow/workflow-SampleApplicationViewImplementation--s1.json", - "assets_dir": "extension/workflow/assets/workflow-SampleApplicationViewImplementation--s1/", + "filename": "03_ListSearchResult.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-03_ListSearchResult--s24", + "base_name": "biz-samples-03_ListSearchResult", + "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s24.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s24/", "section_range": { - "start_line": 0, - "end_line": 152, + "start_line": 872, + "end_line": 1269, "sections": [ + "検索結果の一覧表示機能のデフォルト値設定", "", - "タスクがアクティブかどうかの判定", - "", - "担当ユーザ/グループへのアクティブタスクの割り当て状況の確認", + "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", "", - "画面表示項目の切り替え" + "タグリファレンス", + "全体", + "検索結果件数", + "ページング", + "現在のページ番号", + "最初", + "前へ", + "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "次へ", + "最後", + "検索結果" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" + "s24", + "s25", + "s26", + "s27", + "s28", + "s29", + "s30", + "s31", + "s32", + "s33", + "s34", + "s35", + "s36", + "s37", + "s38" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "workflow-SampleApplicationViewImplementation", - "group_line_count": 152 + "part": 4, + "total_parts": 4, + "original_id": "biz-samples-03_ListSearchResult", + "group_line_count": 397 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "list_search_result" + ] }, { "section_id": "s2", - "heading": "タスクがアクティブかどうかの判定", + "heading": "提供パッケージ", "rst_labels": [] }, { @@ -31161,7 +30842,7 @@ }, { "section_id": "s4", - "heading": "担当ユーザ/グループへのアクティブタスクの割り当て状況の確認", + "heading": "概要", "rst_labels": [] }, { @@ -31171,295 +30852,194 @@ }, { "section_id": "s6", - "heading": "画面表示項目の切り替え", + "heading": "構成", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationExtension.rst", - "format": "rst", - "filename": "SampleApplicationExtension.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-SampleApplicationExtension--s1", - "base_name": "workflow-SampleApplicationExtension", - "output_path": "extension/workflow/workflow-SampleApplicationExtension--s1.json", - "assets_dir": "extension/workflow/assets/workflow-SampleApplicationExtension--s1/", - "section_range": { - "start_line": 0, - "end_line": 55, - "sections": [ - "", - "進行先ノードの判定制御ロジックの実装" - ], - "section_ids": [ - "s1", - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "workflow-SampleApplicationExtension", - "group_line_count": 55 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s7", "heading": "", - "rst_labels": [ - "customize_flow_proceed_condition" - ] + "rst_labels": [] }, { - "section_id": "s2", - "heading": "進行先ノードの判定制御ロジックの実装", + "section_id": "s8", + "heading": "使用方法", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationDesign.rst", - "format": "rst", - "filename": "SampleApplicationDesign.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-SampleApplicationDesign--s1", - "base_name": "workflow-SampleApplicationDesign", - "output_path": "extension/workflow/workflow-SampleApplicationDesign--s1.json", - "assets_dir": "extension/workflow/assets/workflow-SampleApplicationDesign--s1/", - "section_range": { - "start_line": 0, - "end_line": 99, - "sections": [ - "", - "ワークフロー定義", - "", - "画面遷移", - "", - "ワークフローライブラリに関連する機能", - "ワークフローに付随する情報の保持", - "ワークフローにおける処理履歴の保持", - "タスクにアサインするユーザ/グループや権限の管理" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "workflow-SampleApplicationDesign", - "group_line_count": 99 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s9", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "ワークフロー定義", - "rst_labels": [ - "trans_expence_appliance_definition", - "loan_appliance_definition" - ] + "section_id": "s10", + "heading": "ListSearchInfoクラス", + "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s11", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "画面遷移", + "section_id": "s12", + "heading": "listSearchResultタグ", "rst_labels": [] }, { - "section_id": "s5", + "section_id": "s13", + "heading": "全体", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "検索結果件数", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "ページング", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "検索結果", + "rst_labels": [] + }, + { + "section_id": "s17", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "ワークフローライブラリに関連する機能", + "section_id": "s18", + "heading": "検索結果の並び替え", "rst_labels": [] }, { - "section_id": "s7", - "heading": "ワークフローに付随する情報の保持", + "section_id": "s19", + "heading": "", "rst_labels": [] }, { - "section_id": "s8", - "heading": "ワークフローにおける処理履歴の保持", + "section_id": "s20", + "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", "rst_labels": [] }, { - "section_id": "s9", - "heading": "タスクにアサインするユーザ/グループや権限の管理", + "section_id": "s21", + "heading": "", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/workflow/sample_application/doc/00/SampleApplicationImplementation.rst", - "format": "rst", - "filename": "SampleApplicationImplementation.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-SampleApplicationImplementation--s1", - "base_name": "workflow-SampleApplicationImplementation", - "output_path": "extension/workflow/workflow-SampleApplicationImplementation--s1.json", - "assets_dir": "extension/workflow/assets/workflow-SampleApplicationImplementation--s1/", - "section_range": { - "start_line": 0, - "end_line": 325, - "sections": [ - "", - "ワークフローの開始", - "", - "ワークフローの進行", - "", - "境界イベントの実行", - "", - "ワークフローの検索", - "", - "排他制御についての注意事項" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "workflow-SampleApplicationImplementation", - "group_line_count": 325 - }, - "section_map": [ + }, + { + "section_id": "s22", + "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "検索結果の一覧表示機能のデフォルト値設定", + "rst_labels": [] + }, { - "section_id": "s1", + "section_id": "s25", "heading": "", - "rst_labels": [ - "start_workflow" - ] + "rst_labels": [] }, { - "section_id": "s2", - "heading": "ワークフローの開始", - "rst_labels": [ - "complete_task" - ] + "section_id": "s26", + "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", + "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s27", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "ワークフローの進行", - "rst_labels": [ - "trigger_event" - ] + "section_id": "s28", + "heading": "タグリファレンス", + "rst_labels": [] }, { - "section_id": "s5", - "heading": "", + "section_id": "s29", + "heading": "全体", "rst_labels": [] }, { - "section_id": "s6", - "heading": "境界イベントの実行", + "section_id": "s30", + "heading": "検索結果件数", "rst_labels": [] }, { - "section_id": "s7", - "heading": "", + "section_id": "s31", + "heading": "ページング", "rst_labels": [] }, { - "section_id": "s8", - "heading": "ワークフローの検索", + "section_id": "s32", + "heading": "現在のページ番号", "rst_labels": [] }, { - "section_id": "s9", - "heading": "", + "section_id": "s33", + "heading": "最初", "rst_labels": [] }, { - "section_id": "s10", - "heading": "排他制御についての注意事項", + "section_id": "s34", + "heading": "前へ", + "rst_labels": [] + }, + { + "section_id": "s35", + "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "rst_labels": [] + }, + { + "section_id": "s36", + "heading": "次へ", + "rst_labels": [] + }, + { + "section_id": "s37", + "heading": "最後", + "rst_labels": [] + }, + { + "section_id": "s38", + "heading": "検索結果", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/workflow/tool/doc/index.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/08_HtmlMail.rst", "format": "rst", - "filename": "index.rst", - "type": "extension", - "category": "workflow", - "id": "workflow-doc-tool--s1", - "base_name": "workflow-doc-tool", - "output_path": "extension/workflow/workflow-doc-tool--s1.json", - "assets_dir": "extension/workflow/assets/workflow-doc-tool--s1/", + "filename": "08_HtmlMail.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-08_HtmlMail--s1", + "base_name": "biz-samples-08_HtmlMail", + "output_path": "guide/biz-samples/biz-samples-08_HtmlMail--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-08_HtmlMail--s1/", "section_range": { "start_line": 0, - "end_line": 383, + "end_line": 334, "sections": [ - "", - "概要", - "", - "前提", - "", - "ツール配置場所", - "", - "利用の準備", - "", - "利用手順", - "精査エラー発生時の動作", - "", - "仕様", - "ワークフロー定義", - "レーン", - "フローノード", - "シーケンスフロー", - "境界イベントトリガー", - "境界イベント", - "タスク", - "イベント", - "ゲートウェイ", - "構文精査", - "ワークフローライブラリの制約に関する精査", - "", - "プロジェクト固有の設定について", - "省略記法について", - "省略記法の追加・変更" + "実装済み", + "取り下げ", + "メールの形式", + "クラス図", + "データモデル", + "HTMLメールの送信", + "コンテンツの動的な切替", + "電子署名の併用", + "タグを埋めこむ" ], "section_ids": [ "s1", @@ -31470,198 +31050,164 @@ "s6", "s7", "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15", - "s16", - "s17", - "s18", - "s19", - "s20", - "s21", - "s22", - "s23", - "s24", - "s25", - "s26", - "s27", - "s28" + "s9" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "workflow-doc-tool", - "group_line_count": 383 + "original_id": "biz-samples-08_HtmlMail", + "group_line_count": 334 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "実装済み", "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "取り下げ", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "メールの形式", "rst_labels": [] }, { "section_id": "s4", - "heading": "前提", + "heading": "クラス図", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "データモデル", "rst_labels": [] }, { "section_id": "s6", - "heading": "ツール配置場所", + "heading": "HTMLメールの送信", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "コンテンツの動的な切替", "rst_labels": [] }, { "section_id": "s8", - "heading": "利用の準備", + "heading": "電子署名の併用", "rst_labels": [] }, { "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "利用手順", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "精査エラー発生時の動作", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "仕様", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "ワークフロー定義", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "レーン", - "rst_labels": [] - }, - { - "section_id": "s16", - "heading": "フローノード", - "rst_labels": [] - }, - { - "section_id": "s17", - "heading": "シーケンスフロー", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "境界イベントトリガー", - "rst_labels": [] - }, - { - "section_id": "s19", - "heading": "境界イベント", + "heading": "タグを埋めこむ", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/07_UserAgent.rst", + "format": "rst", + "filename": "07_UserAgent.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-07_UserAgent--s1", + "base_name": "biz-samples-07_UserAgent", + "output_path": "guide/biz-samples/biz-samples-07_UserAgent--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-07_UserAgent--s1/", + "section_range": { + "start_line": 0, + "end_line": 326, + "sections": [ + "インタフェース定義", + "クラス定義", + "", + "設定の記述", + "設定内容詳細", + "", + "使用例" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "biz-samples-07_UserAgent", + "group_line_count": 326 + }, + "section_map": [ { - "section_id": "s20", - "heading": "タスク", + "section_id": "s1", + "heading": "インタフェース定義", "rst_labels": [] }, { - "section_id": "s21", - "heading": "イベント", + "section_id": "s2", + "heading": "クラス定義", "rst_labels": [] }, { - "section_id": "s22", - "heading": "ゲートウェイ", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s23", - "heading": "構文精査", + "section_id": "s4", + "heading": "設定の記述", "rst_labels": [] }, { - "section_id": "s24", - "heading": "ワークフローライブラリの制約に関する精査", + "section_id": "s5", + "heading": "設定内容詳細", "rst_labels": [] }, { - "section_id": "s25", + "section_id": "s6", "heading": "", "rst_labels": [] }, { - "section_id": "s26", - "heading": "プロジェクト固有の設定について", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "省略記法について", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "省略記法の追加・変更", + "section_id": "s7", + "heading": "使用例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/0402_ExtendedFieldType.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/04_ExtendedFormatter.rst", "format": "rst", - "filename": "0402_ExtendedFieldType.rst", + "filename": "04_ExtendedFormatter.rst", "type": "guide", "category": "biz-samples", - "id": "biz-samples-0402_ExtendedFieldType--s1", - "base_name": "biz-samples-0402_ExtendedFieldType", - "output_path": "guide/biz-samples/biz-samples-0402_ExtendedFieldType--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-0402_ExtendedFieldType--s1/", + "id": "biz-samples-04_ExtendedFormatter--s1", + "base_name": "biz-samples-04_ExtendedFormatter", + "output_path": "guide/biz-samples/biz-samples-04_ExtendedFormatter--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-04_ExtendedFormatter--s1/", "section_range": { "start_line": 0, - "end_line": 136, + "end_line": 120, "sections": [ "", - "概要", "提供パッケージ", - "フィールドタイプの構成", - "フィールドタイプの使用方法", - "フィールドタイプ・フィールドコンバータ定義一覧" + "", + "KeyValueデータフォーマッタ", + "", + "使用方法", + "KeyValueデータフォーマッタの使用方法", + "フィールドタイプ・フィールドコンバータ定義一覧", + "同一キーで複数の値を取り扱う場合" ], "section_ids": [ "s1", @@ -31669,15 +31215,18 @@ "s3", "s4", "s5", - "s6" + "s6", + "s7", + "s8", + "s9" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-0402_ExtendedFieldType", - "group_line_count": 136 + "original_id": "biz-samples-04_ExtendedFormatter", + "group_line_count": 120 }, "section_map": [ { @@ -31687,56 +31236,71 @@ }, { "section_id": "s2", - "heading": "概要", + "heading": "提供パッケージ", "rst_labels": [] }, { "section_id": "s3", - "heading": "提供パッケージ", + "heading": "", "rst_labels": [] }, { "section_id": "s4", - "heading": "フィールドタイプの構成", + "heading": "KeyValueデータフォーマッタ", "rst_labels": [] }, { "section_id": "s5", - "heading": "フィールドタイプの使用方法", + "heading": "", "rst_labels": [] }, { "section_id": "s6", + "heading": "使用方法", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "KeyValueデータフォーマッタの使用方法", + "rst_labels": [] + }, + { + "section_id": "s8", "heading": "フィールドタイプ・フィールドコンバータ定義一覧", "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "同一キーで複数の値を取り扱う場合", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/02_ExtendedValidation.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/0401_ExtendedDataFormatter.rst", "format": "rst", - "filename": "02_ExtendedValidation.rst", + "filename": "0401_ExtendedDataFormatter.rst", "type": "guide", "category": "biz-samples", - "id": "biz-samples-02_ExtendedValidation--s1", - "base_name": "biz-samples-02_ExtendedValidation", - "output_path": "guide/biz-samples/biz-samples-02_ExtendedValidation--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-02_ExtendedValidation--s1/", + "id": "biz-samples-0401_ExtendedDataFormatter--s1", + "base_name": "biz-samples-0401_ExtendedDataFormatter", + "output_path": "guide/biz-samples/biz-samples-0401_ExtendedDataFormatter--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-0401_ExtendedDataFormatter--s1/", "section_range": { "start_line": 0, - "end_line": 311, + "end_line": 207, "sections": [ "", + "概要", "提供パッケージ", + "FormUrlEncodedデータフォーマッタの構成", "", - "メールアドレスバリデーション", - "", - "日本電話番号バリデーション", - "精査仕様", - "精査仕様", - "実装例", - "", - "コード値精査" + "使用方法", + "FormUrlEncodedデータフォーマッタの使用方法", + "フォーマット定義ファイルの記述例", + "フィールドタイプ・フィールドコンバータ定義一覧", + "同一キーで複数の値を取り扱う場合", + "テストデータの記述方法" ], "section_ids": [ "s1", @@ -31756,8 +31320,8 @@ "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-02_ExtendedValidation", - "group_line_count": 311 + "original_id": "biz-samples-0401_ExtendedDataFormatter", + "group_line_count": 207 }, "section_map": [ { @@ -31767,17 +31331,17 @@ }, { "section_id": "s2", - "heading": "提供パッケージ", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "提供パッケージ", "rst_labels": [] }, { "section_id": "s4", - "heading": "メールアドレスバリデーション", + "heading": "FormUrlEncodedデータフォーマッタの構成", "rst_labels": [] }, { @@ -31787,76 +31351,80 @@ }, { "section_id": "s6", - "heading": "日本電話番号バリデーション", + "heading": "使用方法", "rst_labels": [] }, { "section_id": "s7", - "heading": "精査仕様", + "heading": "FormUrlEncodedデータフォーマッタの使用方法", "rst_labels": [] }, { "section_id": "s8", - "heading": "精査仕様", + "heading": "フォーマット定義ファイルの記述例", "rst_labels": [] }, { "section_id": "s9", - "heading": "実装例", + "heading": "フィールドタイプ・フィールドコンバータ定義一覧", "rst_labels": [] }, { "section_id": "s10", - "heading": "", + "heading": "同一キーで複数の値を取り扱う場合", "rst_labels": [] }, { "section_id": "s11", - "heading": "コード値精査", + "heading": "テストデータの記述方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-doc", - "base_name": "biz-samples-doc", - "output_path": "guide/biz-samples/biz-samples-doc.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-doc/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/useragent_sample.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/05_DbFileManagement.rst", "format": "rst", - "filename": "useragent_sample.rst", + "filename": "05_DbFileManagement.rst", "type": "guide", "category": "biz-samples", - "id": "biz-samples-useragent_sample--s1", - "base_name": "biz-samples-useragent_sample", - "output_path": "guide/biz-samples/biz-samples-useragent_sample--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-useragent_sample--s1/", + "id": "biz-samples-05_DbFileManagement--s1", + "base_name": "biz-samples-05_DbFileManagement", + "output_path": "guide/biz-samples/biz-samples-05_DbFileManagement--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-05_DbFileManagement--s1/", "section_range": { "start_line": 0, - "end_line": 99, + "end_line": 259, "sections": [ "", - "UserAgent情報取得機能設定サンプル" + "概要", + "", + "提供パッケージ", + "", + "機能", + "", + "構成", + "", + "使用方法" ], "section_ids": [ "s1", - "s2" + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 2, - "original_id": "biz-samples-useragent_sample", - "group_line_count": 99 + "total_parts": 1, + "original_id": "biz-samples-05_DbFileManagement", + "group_line_count": 259 }, "section_map": [ { @@ -31866,83 +31434,75 @@ }, { "section_id": "s2", - "heading": "UserAgent情報取得機能設定サンプル", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "各種ユーザエージェント値から取得できる値の例", + "heading": "", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/useragent_sample.rst", - "format": "rst", - "filename": "useragent_sample.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-useragent_sample--s3", - "base_name": "biz-samples-useragent_sample", - "output_path": "guide/biz-samples/biz-samples-useragent_sample--s3.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-useragent_sample--s3/", - "section_range": { - "start_line": 99, - "end_line": 445, - "sections": [ - "各種ユーザエージェント値から取得できる値の例" - ], - "section_ids": [ - "s3" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "biz-samples-useragent_sample", - "group_line_count": 346 - }, - "section_map": [ + }, { - "section_id": "s1", + "section_id": "s4", + "heading": "提供パッケージ", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "機能", + "rst_labels": [] + }, + { + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "UserAgent情報取得機能設定サンプル", + "section_id": "s8", + "heading": "構成", "rst_labels": [] }, { - "section_id": "s3", - "heading": "各種ユーザエージェント値から取得できる値の例", + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "使用方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/06_Captcha.rst", + "source_path": ".lw/nab-official/v1.4/biz_sample/doc/01/0101_PBKDF2PasswordEncryptor.rst", "format": "rst", - "filename": "06_Captcha.rst", + "filename": "0101_PBKDF2PasswordEncryptor.rst", "type": "guide", "category": "biz-samples", - "id": "biz-samples-06_Captcha--s1", - "base_name": "biz-samples-06_Captcha", - "output_path": "guide/biz-samples/biz-samples-06_Captcha--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-06_Captcha--s1/", + "id": "biz-samples-0101_PBKDF2PasswordEncryptor--s1", + "base_name": "biz-samples-0101_PBKDF2PasswordEncryptor", + "output_path": "guide/biz-samples/biz-samples-0101_PBKDF2PasswordEncryptor--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-0101_PBKDF2PasswordEncryptor--s1/", "section_range": { "start_line": 0, - "end_line": 359, + "end_line": 178, "sections": [ "", "提供パッケージ", "", "概要", "", - "構成", + "要求", "", - "使用方法" + "パスワード暗号化機能の詳細", + "", + "設定方法" ], "section_ids": [ "s1", @@ -31952,22 +31512,24 @@ "s5", "s6", "s7", - "s8" + "s8", + "s9", + "s10" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-06_Captcha", - "group_line_count": 359 + "original_id": "biz-samples-0101_PBKDF2PasswordEncryptor", + "group_line_count": 178 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "captcha" + "authentication_pbkdf2" ] }, { @@ -31992,7 +31554,7 @@ }, { "section_id": "s6", - "heading": "構成", + "heading": "要求", "rst_labels": [] }, { @@ -32002,33 +31564,70 @@ }, { "section_id": "s8", - "heading": "使用方法", + "heading": "パスワード暗号化機能の詳細", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "設定方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/01_Authentication.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/known_issues.rst", "format": "rst", - "filename": "01_Authentication.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-01_Authentication--s1", - "base_name": "biz-samples-01_Authentication", - "output_path": "guide/biz-samples/biz-samples-01_Authentication--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-01_Authentication--s1/", + "filename": "known_issues.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-known_issues", + "base_name": "ui-framework-known_issues", + "output_path": "component/ui-framework/ui-framework-known_issues.json", + "assets_dir": "component/ui-framework/assets/ui-framework-known_issues/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/index.rst", + "format": "rst", + "filename": "index.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-doc", + "base_name": "ui-framework-doc", + "output_path": "component/ui-framework/ui-framework-doc.json", + "assets_dir": "component/ui-framework/assets/ui-framework-doc/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/plugin_build.rst", + "format": "rst", + "filename": "plugin_build.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-plugin_build--s1", + "base_name": "ui-framework-plugin_build", + "output_path": "component/ui-framework/ui-framework-plugin_build--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-plugin_build--s1/", "section_range": { "start_line": 0, - "end_line": 323, + "end_line": 274, "sections": [ - "", - "提供パッケージ", "", "概要", "", - "構成", + "想定されるプロジェクト構成ごとの設定例", + "デプロイ対象プロジェクトが1つの場合", + "デプロイ対象プロジェクト複数の場合(プラグインは共通)", + "デプロイ対象プロジェクト複数の場合(プラグインも個別)", "", - "使用方法" + "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", + "", + "設定ファイル" ], "section_ids": [ "s1", @@ -32038,28 +31637,31 @@ "s5", "s6", "s7", - "s8" + "s8", + "s9", + "s10", + "s11" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "biz-samples-01_Authentication", - "group_line_count": 323 + "total_parts": 3, + "original_id": "ui-framework-plugin_build", + "group_line_count": 274 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "authentication" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "提供パッケージ", - "rst_labels": [] + "heading": "概要", + "rst_labels": [ + "project-structure" + ] }, { "section_id": "s3", @@ -32068,98 +31670,214 @@ }, { "section_id": "s4", - "heading": "概要", + "heading": "想定されるプロジェクト構成ごとの設定例", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "デプロイ対象プロジェクトが1つの場合", "rst_labels": [] }, { "section_id": "s6", - "heading": "構成", + "heading": "デプロイ対象プロジェクト複数の場合(プラグインは共通)", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "デプロイ対象プロジェクト複数の場合(プラグインも個別)", + "rst_labels": [ + "config-command-detail" + ] + }, + { + "section_id": "s8", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", + "rst_labels": [ + "config-file" + ] + }, + { + "section_id": "s10", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "設定ファイル", + "rst_labels": [ + "pjconf_json" + ] + }, + { + "section_id": "s12", + "heading": "ビルドコマンド用設定ファイル", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "lessインポート定義ファイル", + "rst_labels": [ + "generate-file" + ] + }, + { + "section_id": "s14", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "ファイルの自動生成", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "CSSの自動生成", + "rst_labels": [ + "generate_javascript" + ] + }, + { + "section_id": "s17", + "heading": "JavaScriptの自動生成", + "rst_labels": [ + "build-file" + ] + }, + { + "section_id": "s18", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "プラグイン、外部ライブラリの展開", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "プラグインの展開", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "外部ライブラリの展開", + "rst_labels": [ + "build-command" + ] + }, + { + "section_id": "s22", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "ビルドコマンド", + "rst_labels": [ + "install" + ] + }, + { + "section_id": "s24", + "heading": "インストールコマンド", + "rst_labels": [ + "ui_build" + ] + }, + { + "section_id": "s25", + "heading": "UIビルドコマンド", + "rst_labels": [ + "ui_genless" + ] + }, + { + "section_id": "s26", + "heading": "lessインポート定義雛形生成コマンド", "rst_labels": [] }, { - "section_id": "s7", - "heading": "", - "rst_labels": [] + "section_id": "s27", + "heading": "ローカル動作確認用サーバ起動コマンド", + "rst_labels": [ + "ui_demo" + ] }, { - "section_id": "s8", - "heading": "使用方法", + "section_id": "s28", + "heading": "サーバ動作確認用サーバ起動コマンド", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/plugin_build.rst", "format": "rst", - "filename": "03_ListSearchResult.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-03_ListSearchResult--s1", - "base_name": "biz-samples-03_ListSearchResult", - "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s1/", + "filename": "plugin_build.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-plugin_build--s12", + "base_name": "ui-framework-plugin_build", + "output_path": "component/ui-framework/ui-framework-plugin_build--s12.json", + "assets_dir": "component/ui-framework/assets/ui-framework-plugin_build--s12/", "section_range": { - "start_line": 0, - "end_line": 266, + "start_line": 274, + "end_line": 658, "sections": [ + "ビルドコマンド用設定ファイル", + "lessインポート定義ファイル", "", - "提供パッケージ", - "", - "概要", - "", - "構成", - "", - "使用方法", + "ファイルの自動生成", + "CSSの自動生成", + "JavaScriptの自動生成", "", - "ListSearchInfoクラス", + "プラグイン、外部ライブラリの展開", + "プラグインの展開", + "外部ライブラリの展開", "", - "listSearchResultタグ", - "全体", - "検索結果件数", - "ページング" + "ビルドコマンド" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", "s12", "s13", "s14", - "s15" + "s15", + "s16", + "s17", + "s18", + "s19", + "s20", + "s21", + "s22", + "s23" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 4, - "original_id": "biz-samples-03_ListSearchResult", - "group_line_count": 266 + "part": 2, + "total_parts": 3, + "original_id": "ui-framework-plugin_build", + "group_line_count": 384 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "list_search_result" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "提供パッケージ", - "rst_labels": [] + "heading": "概要", + "rst_labels": [ + "project-structure" + ] }, { "section_id": "s3", @@ -32168,222 +31886,200 @@ }, { "section_id": "s4", - "heading": "概要", + "heading": "想定されるプロジェクト構成ごとの設定例", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "デプロイ対象プロジェクトが1つの場合", "rst_labels": [] }, { "section_id": "s6", - "heading": "構成", + "heading": "デプロイ対象プロジェクト複数の場合(プラグインは共通)", "rst_labels": [] }, { "section_id": "s7", - "heading": "", - "rst_labels": [] + "heading": "デプロイ対象プロジェクト複数の場合(プラグインも個別)", + "rst_labels": [ + "config-command-detail" + ] }, { "section_id": "s8", - "heading": "使用方法", + "heading": "", "rst_labels": [] }, { "section_id": "s9", - "heading": "", - "rst_labels": [] + "heading": "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", + "rst_labels": [ + "config-file" + ] }, { "section_id": "s10", - "heading": "ListSearchInfoクラス", + "heading": "", "rst_labels": [] }, { "section_id": "s11", - "heading": "", - "rst_labels": [] + "heading": "設定ファイル", + "rst_labels": [ + "pjconf_json" + ] }, { "section_id": "s12", - "heading": "listSearchResultタグ", + "heading": "ビルドコマンド用設定ファイル", "rst_labels": [] }, { "section_id": "s13", - "heading": "全体", - "rst_labels": [] + "heading": "lessインポート定義ファイル", + "rst_labels": [ + "generate-file" + ] }, { "section_id": "s14", - "heading": "検索結果件数", + "heading": "", "rst_labels": [] }, { "section_id": "s15", - "heading": "ページング", + "heading": "ファイルの自動生成", "rst_labels": [] }, { "section_id": "s16", - "heading": "検索結果", - "rst_labels": [] + "heading": "CSSの自動生成", + "rst_labels": [ + "generate_javascript" + ] }, { "section_id": "s17", - "heading": "", - "rst_labels": [] + "heading": "JavaScriptの自動生成", + "rst_labels": [ + "build-file" + ] }, { "section_id": "s18", - "heading": "検索結果の並び替え", + "heading": "", "rst_labels": [] }, { "section_id": "s19", - "heading": "", + "heading": "プラグイン、外部ライブラリの展開", "rst_labels": [] }, { "section_id": "s20", - "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", + "heading": "プラグインの展開", "rst_labels": [] }, { "section_id": "s21", - "heading": "", - "rst_labels": [] + "heading": "外部ライブラリの展開", + "rst_labels": [ + "build-command" + ] }, { "section_id": "s22", - "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", + "heading": "", "rst_labels": [] }, { "section_id": "s23", - "heading": "", - "rst_labels": [] + "heading": "ビルドコマンド", + "rst_labels": [ + "install" + ] }, { "section_id": "s24", - "heading": "検索結果の一覧表示機能のデフォルト値設定", - "rst_labels": [] + "heading": "インストールコマンド", + "rst_labels": [ + "ui_build" + ] }, { "section_id": "s25", - "heading": "", - "rst_labels": [] + "heading": "UIビルドコマンド", + "rst_labels": [ + "ui_genless" + ] }, { "section_id": "s26", - "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", + "heading": "lessインポート定義雛形生成コマンド", "rst_labels": [] }, { "section_id": "s27", - "heading": "", - "rst_labels": [] + "heading": "ローカル動作確認用サーバ起動コマンド", + "rst_labels": [ + "ui_demo" + ] }, { "section_id": "s28", - "heading": "タグリファレンス", - "rst_labels": [] - }, - { - "section_id": "s29", - "heading": "全体", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "検索結果件数", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "ページング", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "現在のページ番号", - "rst_labels": [] - }, - { - "section_id": "s33", - "heading": "最初", - "rst_labels": [] - }, - { - "section_id": "s34", - "heading": "前へ", - "rst_labels": [] - }, - { - "section_id": "s35", - "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", - "rst_labels": [] - }, - { - "section_id": "s36", - "heading": "次へ", - "rst_labels": [] - }, - { - "section_id": "s37", - "heading": "最後", - "rst_labels": [] - }, - { - "section_id": "s38", - "heading": "検索結果", + "heading": "サーバ動作確認用サーバ起動コマンド", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/plugin_build.rst", "format": "rst", - "filename": "03_ListSearchResult.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-03_ListSearchResult--s16", - "base_name": "biz-samples-03_ListSearchResult", - "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s16.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s16/", + "filename": "plugin_build.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-plugin_build--s24", + "base_name": "ui-framework-plugin_build", + "output_path": "component/ui-framework/ui-framework-plugin_build--s24.json", + "assets_dir": "component/ui-framework/assets/ui-framework-plugin_build--s24/", "section_range": { - "start_line": 266, - "end_line": 520, + "start_line": 658, + "end_line": 814, "sections": [ - "検索結果", - "" + "インストールコマンド", + "UIビルドコマンド", + "lessインポート定義雛形生成コマンド", + "ローカル動作確認用サーバ起動コマンド", + "サーバ動作確認用サーバ起動コマンド" ], "section_ids": [ - "s16", - "s17" + "s24", + "s25", + "s26", + "s27", + "s28" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 4, - "original_id": "biz-samples-03_ListSearchResult", - "group_line_count": 254 + "part": 3, + "total_parts": 3, + "original_id": "ui-framework-plugin_build", + "group_line_count": 156 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "list_search_result" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "提供パッケージ", - "rst_labels": [] + "heading": "概要", + "rst_labels": [ + "project-structure" + ] }, { "section_id": "s3", @@ -32392,229 +32088,295 @@ }, { "section_id": "s4", - "heading": "概要", + "heading": "想定されるプロジェクト構成ごとの設定例", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "デプロイ対象プロジェクトが1つの場合", "rst_labels": [] }, { "section_id": "s6", - "heading": "構成", + "heading": "デプロイ対象プロジェクト複数の場合(プラグインは共通)", "rst_labels": [] }, { "section_id": "s7", - "heading": "", - "rst_labels": [] + "heading": "デプロイ対象プロジェクト複数の場合(プラグインも個別)", + "rst_labels": [ + "config-command-detail" + ] }, { "section_id": "s8", - "heading": "使用方法", + "heading": "", "rst_labels": [] }, { "section_id": "s9", - "heading": "", - "rst_labels": [] + "heading": "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", + "rst_labels": [ + "config-file" + ] }, { "section_id": "s10", - "heading": "ListSearchInfoクラス", + "heading": "", "rst_labels": [] }, { "section_id": "s11", - "heading": "", - "rst_labels": [] + "heading": "設定ファイル", + "rst_labels": [ + "pjconf_json" + ] }, { "section_id": "s12", - "heading": "listSearchResultタグ", + "heading": "ビルドコマンド用設定ファイル", "rst_labels": [] }, { "section_id": "s13", - "heading": "全体", - "rst_labels": [] + "heading": "lessインポート定義ファイル", + "rst_labels": [ + "generate-file" + ] }, { "section_id": "s14", - "heading": "検索結果件数", + "heading": "", "rst_labels": [] }, { "section_id": "s15", - "heading": "ページング", + "heading": "ファイルの自動生成", "rst_labels": [] }, { "section_id": "s16", - "heading": "検索結果", - "rst_labels": [] + "heading": "CSSの自動生成", + "rst_labels": [ + "generate_javascript" + ] }, { "section_id": "s17", - "heading": "", - "rst_labels": [] + "heading": "JavaScriptの自動生成", + "rst_labels": [ + "build-file" + ] }, { "section_id": "s18", - "heading": "検索結果の並び替え", + "heading": "", "rst_labels": [] }, { "section_id": "s19", - "heading": "", + "heading": "プラグイン、外部ライブラリの展開", "rst_labels": [] }, { "section_id": "s20", - "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", + "heading": "プラグインの展開", "rst_labels": [] }, { "section_id": "s21", - "heading": "", - "rst_labels": [] + "heading": "外部ライブラリの展開", + "rst_labels": [ + "build-command" + ] }, { "section_id": "s22", - "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", + "heading": "", "rst_labels": [] }, { "section_id": "s23", - "heading": "", - "rst_labels": [] + "heading": "ビルドコマンド", + "rst_labels": [ + "install" + ] }, { "section_id": "s24", - "heading": "検索結果の一覧表示機能のデフォルト値設定", - "rst_labels": [] + "heading": "インストールコマンド", + "rst_labels": [ + "ui_build" + ] }, { "section_id": "s25", - "heading": "", - "rst_labels": [] + "heading": "UIビルドコマンド", + "rst_labels": [ + "ui_genless" + ] }, { "section_id": "s26", - "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", + "heading": "lessインポート定義雛形生成コマンド", "rst_labels": [] }, { "section_id": "s27", - "heading": "", - "rst_labels": [] + "heading": "ローカル動作確認用サーバ起動コマンド", + "rst_labels": [ + "ui_demo" + ] }, { "section_id": "s28", - "heading": "タグリファレンス", - "rst_labels": [] - }, - { - "section_id": "s29", - "heading": "全体", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "検索結果件数", - "rst_labels": [] - }, - { - "section_id": "s31", - "heading": "ページング", - "rst_labels": [] - }, - { - "section_id": "s32", - "heading": "現在のページ番号", - "rst_labels": [] - }, - { - "section_id": "s33", - "heading": "最初", - "rst_labels": [] - }, - { - "section_id": "s34", - "heading": "前へ", - "rst_labels": [] - }, - { - "section_id": "s35", - "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "heading": "サーバ動作確認用サーバ起動コマンド", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_js_framework.rst", + "format": "rst", + "filename": "reference_js_framework.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-reference_js_framework--s1", + "base_name": "ui-framework-reference_js_framework", + "output_path": "component/ui-framework/ui-framework-reference_js_framework--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-reference_js_framework--s1/", + "section_range": { + "start_line": 0, + "end_line": 28, + "sections": [ + "UI部品", + "ユーティリティ" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-reference_js_framework", + "group_line_count": 28 + }, + "section_map": [ { - "section_id": "s36", - "heading": "次へ", + "section_id": "s1", + "heading": "UI部品", "rst_labels": [] }, { - "section_id": "s37", - "heading": "最後", + "section_id": "s2", + "heading": "ユーティリティ", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/related_documents.rst", + "format": "rst", + "filename": "related_documents.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-related_documents", + "base_name": "ui-framework-related_documents", + "output_path": "component/ui-framework/ui-framework-related_documents.json", + "assets_dir": "component/ui-framework/assets/ui-framework-related_documents/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/about_this_book.rst", + "format": "rst", + "filename": "about_this_book.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-about_this_book", + "base_name": "ui-framework-about_this_book", + "output_path": "component/ui-framework/ui-framework-about_this_book.json", + "assets_dir": "component/ui-framework/assets/ui-framework-about_this_book/", + "section_map": [ { - "section_id": "s38", - "heading": "検索結果", + "section_id": "s1", + "heading": "本書の内容", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/book_layout.rst", "format": "rst", - "filename": "03_ListSearchResult.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-03_ListSearchResult--s18", - "base_name": "biz-samples-03_ListSearchResult", - "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s18.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s18/", + "filename": "book_layout.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-book_layout", + "base_name": "ui-framework-book_layout", + "output_path": "component/ui-framework/ui-framework-book_layout.json", + "assets_dir": "component/ui-framework/assets/ui-framework-book_layout/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/testing.rst", + "format": "rst", + "filename": "testing.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-testing--s1", + "base_name": "ui-framework-testing", + "output_path": "component/ui-framework/ui-framework-testing--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-testing--s1/", "section_range": { - "start_line": 520, - "end_line": 872, + "start_line": 0, + "end_line": 170, "sections": [ - "検索結果の並び替え", "", - "1画面にすべての検索結果を一覧表示する場合の実装方法", + "テスト方針", "", - "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", - "" + "テスト実施環境", + "", + "実施テスト内容", + "UI部品ウィジェット機能テスト", + "UI部品ウィジェット性能テスト", + "UI部品ウィジェット組み合わせテスト", + "結合テスト", + "ローカル表示テスト", + "表示方向切替えテスト" ], "section_ids": [ - "s18", - "s19", - "s20", - "s21", - "s22", - "s23" + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12" ] }, "split_info": { "is_split": true, - "part": 3, - "total_parts": 4, - "original_id": "biz-samples-03_ListSearchResult", - "group_line_count": 352 + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-testing", + "group_line_count": 170 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "list_search_result" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "提供パッケージ", + "heading": "テスト方針", "rst_labels": [] }, { @@ -32624,7 +32386,7 @@ }, { "section_id": "s4", - "heading": "概要", + "heading": "テスト実施環境", "rst_labels": [] }, { @@ -32634,238 +32396,372 @@ }, { "section_id": "s6", - "heading": "構成", + "heading": "実施テスト内容", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "UI部品ウィジェット機能テスト", "rst_labels": [] }, { "section_id": "s8", - "heading": "使用方法", + "heading": "UI部品ウィジェット性能テスト", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "UI部品ウィジェット組み合わせテスト", "rst_labels": [] }, { "section_id": "s10", - "heading": "ListSearchInfoクラス", + "heading": "結合テスト", "rst_labels": [] }, { "section_id": "s11", - "heading": "", + "heading": "ローカル表示テスト", "rst_labels": [] }, { "section_id": "s12", - "heading": "listSearchResultタグ", + "heading": "表示方向切替えテスト", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/structure/directory_layout.rst", + "format": "rst", + "filename": "directory_layout.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-directory_layout", + "base_name": "ui-framework-directory_layout", + "output_path": "component/ui-framework/ui-framework-directory_layout.json", + "assets_dir": "component/ui-framework/assets/ui-framework-directory_layout/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/structure/plugins.rst", + "format": "rst", + "filename": "plugins.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-plugins--s1", + "base_name": "ui-framework-plugins", + "output_path": "component/ui-framework/ui-framework-plugins--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-plugins--s1/", + "section_range": { + "start_line": 0, + "end_line": 147, + "sections": [ + "", + "UIプラグインの構造", + "", + "UIプラグインのバージョンについて" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-plugins", + "group_line_count": 147 + }, + "section_map": [ { - "section_id": "s13", - "heading": "全体", + "section_id": "s1", + "heading": "", "rst_labels": [] }, { - "section_id": "s14", - "heading": "検索結果件数", + "section_id": "s2", + "heading": "UIプラグインの構造", "rst_labels": [] }, { - "section_id": "s15", - "heading": "ページング", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s16", - "heading": "検索結果", + "section_id": "s4", + "heading": "UIプラグインのバージョンについて", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_ui_plugin/index.rst", + "format": "rst", + "filename": "index.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-reference_ui_plugin", + "base_name": "ui-framework-reference_ui_plugin", + "output_path": "component/ui-framework/ui-framework-reference_ui_plugin.json", + "assets_dir": "component/ui-framework/assets/ui-framework-reference_ui_plugin/", + "section_map": [ { - "section_id": "s17", + "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "nablarch-device-fix" + ] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_ui_standard/index.rst", + "format": "rst", + "filename": "index.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-reference_ui_standard--s1", + "base_name": "ui-framework-reference_ui_standard", + "output_path": "component/ui-framework/ui-framework-reference_ui_standard--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-reference_ui_standard--s1/", + "section_range": { + "start_line": 0, + "end_line": 395, + "sections": [ + "", + "UI標準1.1. 対応する端末とブラウザ", + "", + "UI標準1.2. 使用技術", + "", + "UI標準2. 画面構成", + "", + "UI標準2.1. 端末の画面サイズと表示モード", + "", + "UI標準2.2. ワイド表示モードの画面構成", + "", + "UI標準2.3. コンパクト表示モードの画面構成", + "", + "UI標準2.4. ナロー表示モードの画面構成", + "", + "UI標準2.5.画面内の入出力項目に関する共通仕様", + "", + "UI標準2.6. WEB標準に準拠しないブラウザでの表示制約", + "" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16", + "s17", + "s18", + "s19" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "ui-framework-reference_ui_standard", + "group_line_count": 395 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [ + "ui_standard_1_1" + ] }, { - "section_id": "s18", - "heading": "検索結果の並び替え", - "rst_labels": [] + "section_id": "s2", + "heading": "UI標準1.1. 対応する端末とブラウザ", + "rst_labels": [ + "ui_standard_1_2" + ] }, { - "section_id": "s19", + "section_id": "s3", "heading": "", "rst_labels": [] }, { - "section_id": "s20", - "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", + "section_id": "s4", + "heading": "UI標準1.2. 使用技術", + "rst_labels": [ + "ui_standard_2" + ] + }, + { + "section_id": "s5", + "heading": "", "rst_labels": [] }, { - "section_id": "s21", + "section_id": "s6", + "heading": "UI標準2. 画面構成", + "rst_labels": [ + "ui_standard_2_1" + ] + }, + { + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s22", - "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", + "section_id": "s8", + "heading": "UI標準2.1. 端末の画面サイズと表示モード", "rst_labels": [] }, { - "section_id": "s23", + "section_id": "s9", "heading": "", "rst_labels": [] }, { - "section_id": "s24", - "heading": "検索結果の一覧表示機能のデフォルト値設定", + "section_id": "s10", + "heading": "UI標準2.2. ワイド表示モードの画面構成", "rst_labels": [] }, { - "section_id": "s25", + "section_id": "s11", "heading": "", "rst_labels": [] }, { - "section_id": "s26", - "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", + "section_id": "s12", + "heading": "UI標準2.3. コンパクト表示モードの画面構成", "rst_labels": [] }, { - "section_id": "s27", + "section_id": "s13", "heading": "", "rst_labels": [] }, { - "section_id": "s28", - "heading": "タグリファレンス", + "section_id": "s14", + "heading": "UI標準2.4. ナロー表示モードの画面構成", "rst_labels": [] }, { - "section_id": "s29", - "heading": "全体", + "section_id": "s15", + "heading": "", "rst_labels": [] }, { - "section_id": "s30", - "heading": "検索結果件数", + "section_id": "s16", + "heading": "UI標準2.5.画面内の入出力項目に関する共通仕様", "rst_labels": [] }, { - "section_id": "s31", - "heading": "ページング", + "section_id": "s17", + "heading": "", "rst_labels": [] }, { - "section_id": "s32", - "heading": "現在のページ番号", + "section_id": "s18", + "heading": "UI標準2.6. WEB標準に準拠しないブラウザでの表示制約", "rst_labels": [] }, { - "section_id": "s33", - "heading": "最初", + "section_id": "s19", + "heading": "", "rst_labels": [] }, { - "section_id": "s34", - "heading": "前へ", + "section_id": "s20", + "heading": "UI標準2.11. 共通エラー画面の構成", "rst_labels": [] }, { - "section_id": "s35", - "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "section_id": "s21", + "heading": "", "rst_labels": [] }, { - "section_id": "s36", - "heading": "次へ", + "section_id": "s22", + "heading": "UI標準3. UI部品 (UI部品カタログ)", "rst_labels": [] }, { - "section_id": "s37", - "heading": "最後", + "section_id": "s23", + "heading": "", "rst_labels": [] }, { - "section_id": "s38", - "heading": "検索結果", + "section_id": "s24", + "heading": "開閉可能領域", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/03_ListSearchResult.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_ui_standard/index.rst", "format": "rst", - "filename": "03_ListSearchResult.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-03_ListSearchResult--s24", - "base_name": "biz-samples-03_ListSearchResult", - "output_path": "guide/biz-samples/biz-samples-03_ListSearchResult--s24.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-03_ListSearchResult--s24/", + "filename": "index.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-reference_ui_standard--s20", + "base_name": "ui-framework-reference_ui_standard", + "output_path": "component/ui-framework/ui-framework-reference_ui_standard--s20.json", + "assets_dir": "component/ui-framework/assets/ui-framework-reference_ui_standard--s20/", "section_range": { - "start_line": 872, - "end_line": 1269, + "start_line": 395, + "end_line": 496, "sections": [ - "検索結果の一覧表示機能のデフォルト値設定", + "UI標準2.11. 共通エラー画面の構成", "", - "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", + "UI標準3. UI部品 (UI部品カタログ)", "", - "タグリファレンス", - "全体", - "検索結果件数", - "ページング", - "現在のページ番号", - "最初", - "前へ", - "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", - "次へ", - "最後", - "検索結果" + "開閉可能領域" ], "section_ids": [ - "s24", - "s25", - "s26", - "s27", - "s28", - "s29", - "s30", - "s31", - "s32", - "s33", - "s34", - "s35", - "s36", - "s37", - "s38" + "s20", + "s21", + "s22", + "s23", + "s24" ] }, "split_info": { "is_split": true, - "part": 4, - "total_parts": 4, - "original_id": "biz-samples-03_ListSearchResult", - "group_line_count": 397 + "part": 2, + "total_parts": 2, + "original_id": "ui-framework-reference_ui_standard", + "group_line_count": 101 }, "section_map": [ { "section_id": "s1", "heading": "", "rst_labels": [ - "list_search_result" + "ui_standard_1_1" ] }, { "section_id": "s2", - "heading": "提供パッケージ", - "rst_labels": [] + "heading": "UI標準1.1. 対応する端末とブラウザ", + "rst_labels": [ + "ui_standard_1_2" + ] }, { "section_id": "s3", @@ -32874,8 +32770,10 @@ }, { "section_id": "s4", - "heading": "概要", - "rst_labels": [] + "heading": "UI標準1.2. 使用技術", + "rst_labels": [ + "ui_standard_2" + ] }, { "section_id": "s5", @@ -32884,8 +32782,10 @@ }, { "section_id": "s6", - "heading": "構成", - "rst_labels": [] + "heading": "UI標準2. 画面構成", + "rst_labels": [ + "ui_standard_2_1" + ] }, { "section_id": "s7", @@ -32894,7 +32794,7 @@ }, { "section_id": "s8", - "heading": "使用方法", + "heading": "UI標準2.1. 端末の画面サイズと表示モード", "rst_labels": [] }, { @@ -32904,7 +32804,7 @@ }, { "section_id": "s10", - "heading": "ListSearchInfoクラス", + "heading": "UI標準2.2. ワイド表示モードの画面構成", "rst_labels": [] }, { @@ -32914,27 +32814,27 @@ }, { "section_id": "s12", - "heading": "listSearchResultタグ", + "heading": "UI標準2.3. コンパクト表示モードの画面構成", "rst_labels": [] }, { "section_id": "s13", - "heading": "全体", + "heading": "", "rst_labels": [] }, { "section_id": "s14", - "heading": "検索結果件数", + "heading": "UI標準2.4. ナロー表示モードの画面構成", "rst_labels": [] }, { "section_id": "s15", - "heading": "ページング", + "heading": "", "rst_labels": [] }, { "section_id": "s16", - "heading": "検索結果", + "heading": "UI標準2.5.画面内の入出力項目に関する共通仕様", "rst_labels": [] }, { @@ -32944,7 +32844,7 @@ }, { "section_id": "s18", - "heading": "検索結果の並び替え", + "heading": "UI標準2.6. WEB標準に準拠しないブラウザでの表示制約", "rst_labels": [] }, { @@ -32954,7 +32854,7 @@ }, { "section_id": "s20", - "heading": "1画面にすべての検索結果を一覧表示する場合の実装方法", + "heading": "UI標準2.11. 共通エラー画面の構成", "rst_labels": [] }, { @@ -32964,7 +32864,7 @@ }, { "section_id": "s22", - "heading": "デフォルトの検索条件で検索した結果を初期表示する場合の実装方法", + "heading": "UI標準3. UI部品 (UI部品カタログ)", "rst_labels": [] }, { @@ -32974,291 +32874,812 @@ }, { "section_id": "s24", - "heading": "検索結果の一覧表示機能のデフォルト値設定", - "rst_labels": [] - }, - { - "section_id": "s25", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s26", - "heading": "業務アプリケーションへのサンプル実装(タグファイル)の取り込み方法", - "rst_labels": [] - }, - { - "section_id": "s27", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s28", - "heading": "タグリファレンス", - "rst_labels": [] - }, - { - "section_id": "s29", - "heading": "全体", - "rst_labels": [] - }, - { - "section_id": "s30", - "heading": "検索結果件数", + "heading": "開閉可能領域", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/box_title.rst", + "format": "rst", + "filename": "box_title.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-box_title", + "base_name": "ui-framework-box_title", + "output_path": "component/ui-framework/ui-framework-box_title.json", + "assets_dir": "component/ui-framework/assets/ui-framework-box_title/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_label.rst", + "format": "rst", + "filename": "column_label.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-column_label", + "base_name": "ui-framework-column_label", + "output_path": "component/ui-framework/ui-framework-column_label.json", + "assets_dir": "component/ui-framework/assets/ui-framework-column_label/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label_block.rst", + "format": "rst", + "filename": "field_label_block.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_label_block", + "base_name": "ui-framework-field_label_block", + "output_path": "component/ui-framework/ui-framework-field_label_block.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_label_block/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_condition.rst", + "format": "rst", + "filename": "spec_condition.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_condition", + "base_name": "ui-framework-spec_condition", + "output_path": "component/ui-framework/ui-framework-spec_condition.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_condition/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_checkbox.rst", + "format": "rst", + "filename": "column_checkbox.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-column_checkbox", + "base_name": "ui-framework-column_checkbox", + "output_path": "component/ui-framework/ui-framework-column_checkbox.json", + "assets_dir": "component/ui-framework/assets/ui-framework-column_checkbox/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_checkbox.rst", + "format": "rst", + "filename": "field_checkbox.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_checkbox", + "base_name": "ui-framework-field_checkbox", + "output_path": "component/ui-framework/ui-framework-field_checkbox.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_checkbox/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/button_submit.rst", + "format": "rst", + "filename": "button_submit.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-button_submit--s1", + "base_name": "ui-framework-button_submit", + "output_path": "component/ui-framework/ui-framework-button_submit--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-button_submit--s1/", + "section_range": { + "start_line": 0, + "end_line": 185, + "sections": [ + "**共通属性**", + "**共通属性(ポップアップを除く)**", + "**ポップアップ・汎用ボタンのみの属性**", + "**ポップアップボタンのみの属性**", + "**特定ボタン固有の属性**" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-button_submit", + "group_line_count": 185 + }, + "section_map": [ { - "section_id": "s31", - "heading": "ページング", + "section_id": "s1", + "heading": "**共通属性**", "rst_labels": [] }, { - "section_id": "s32", - "heading": "現在のページ番号", + "section_id": "s2", + "heading": "**共通属性(ポップアップを除く)**", "rst_labels": [] }, { - "section_id": "s33", - "heading": "最初", + "section_id": "s3", + "heading": "**ポップアップ・汎用ボタンのみの属性**", "rst_labels": [] }, { - "section_id": "s34", - "heading": "前へ", + "section_id": "s4", + "heading": "**ポップアップボタンのみの属性**", "rst_labels": [] }, { - "section_id": "s35", - "heading": "ページ番号(ページ番号をラベルとして使用するためラベル指定がない)", + "section_id": "s5", + "heading": "**特定ボタン固有の属性**", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_send_request.rst", + "format": "rst", + "filename": "event_send_request.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_send_request", + "base_name": "ui-framework-event_send_request", + "output_path": "component/ui-framework/ui-framework-event_send_request.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_send_request/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/index.rst", + "format": "rst", + "filename": "index.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-reference_jsp_widgets", + "base_name": "ui-framework-reference_jsp_widgets", + "output_path": "component/ui-framework/ui-framework-reference_jsp_widgets.json", + "assets_dir": "component/ui-framework/assets/ui-framework-reference_jsp_widgets/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_alert.rst", + "format": "rst", + "filename": "event_alert.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_alert", + "base_name": "ui-framework-event_alert", + "output_path": "component/ui-framework/ui-framework-event_alert.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_alert/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label_id_value.rst", + "format": "rst", + "filename": "field_label_id_value.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_label_id_value", + "base_name": "ui-framework-field_label_id_value", + "output_path": "component/ui-framework/ui-framework-field_label_id_value.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_label_id_value/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_radio.rst", + "format": "rst", + "filename": "column_radio.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-column_radio", + "base_name": "ui-framework-column_radio", + "output_path": "component/ui-framework/ui-framework-column_radio.json", + "assets_dir": "component/ui-framework/assets/ui-framework-column_radio/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label.rst", + "format": "rst", + "filename": "field_label.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_label", + "base_name": "ui-framework-field_label", + "output_path": "component/ui-framework/ui-framework-field_label.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_label/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_row.rst", + "format": "rst", + "filename": "table_row.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-table_row", + "base_name": "ui-framework-table_row", + "output_path": "component/ui-framework/ui-framework-table_row.json", + "assets_dir": "component/ui-framework/assets/ui-framework-table_row/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/button_block.rst", + "format": "rst", + "filename": "button_block.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-button_block", + "base_name": "ui-framework-button_block", + "output_path": "component/ui-framework/ui-framework-button_block.json", + "assets_dir": "component/ui-framework/assets/ui-framework-button_block/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_code.rst", + "format": "rst", + "filename": "column_code.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-column_code", + "base_name": "ui-framework-column_code", + "output_path": "component/ui-framework/ui-framework-column_code.json", + "assets_dir": "component/ui-framework/assets/ui-framework-column_code/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_hint.rst", + "format": "rst", + "filename": "field_hint.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_hint", + "base_name": "ui-framework-field_hint", + "output_path": "component/ui-framework/ui-framework-field_hint.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_hint/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_toggle_readonly.rst", + "format": "rst", + "filename": "event_toggle_readonly.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_toggle_readonly", + "base_name": "ui-framework-event_toggle_readonly", + "output_path": "component/ui-framework/ui-framework-event_toggle_readonly.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_toggle_readonly/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_link.rst", + "format": "rst", + "filename": "column_link.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-column_link", + "base_name": "ui-framework-column_link", + "output_path": "component/ui-framework/ui-framework-column_link.json", + "assets_dir": "component/ui-framework/assets/ui-framework-column_link/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/box_img.rst", + "format": "rst", + "filename": "box_img.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-box_img", + "base_name": "ui-framework-box_img", + "output_path": "component/ui-framework/ui-framework-box_img.json", + "assets_dir": "component/ui-framework/assets/ui-framework-box_img/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_desc.rst", + "format": "rst", + "filename": "spec_desc.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_desc", + "base_name": "ui-framework-spec_desc", + "output_path": "component/ui-framework/ui-framework-spec_desc.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_desc/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_password.rst", + "format": "rst", + "filename": "field_password.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_password", + "base_name": "ui-framework-field_password", + "output_path": "component/ui-framework/ui-framework-field_password.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_password/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_pulldown.rst", + "format": "rst", + "filename": "field_pulldown.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_pulldown", + "base_name": "ui-framework-field_pulldown", + "output_path": "component/ui-framework/ui-framework-field_pulldown.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_pulldown/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_listen_subwindow.rst", + "format": "rst", + "filename": "event_listen_subwindow.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_listen_subwindow", + "base_name": "ui-framework-event_listen_subwindow", + "output_path": "component/ui-framework/ui-framework-event_listen_subwindow.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_listen_subwindow/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_block.rst", + "format": "rst", + "filename": "field_block.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_block", + "base_name": "ui-framework-field_block", + "output_path": "component/ui-framework/ui-framework-field_block.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_block/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_file.rst", + "format": "rst", + "filename": "field_file.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_file", + "base_name": "ui-framework-field_file", + "output_path": "component/ui-framework/ui-framework-field_file.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_file/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/link_submit.rst", + "format": "rst", + "filename": "link_submit.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-link_submit--s1", + "base_name": "ui-framework-link_submit", + "output_path": "component/ui-framework/ui-framework-link_submit--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-link_submit--s1/", + "section_range": { + "start_line": 0, + "end_line": 93, + "sections": [ + "共通属性", + "汎用リンクのみの属性", + "ポップアップリンクのみの属性" + ], + "section_ids": [ + "s1", + "s2", + "s3" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-link_submit", + "group_line_count": 93 + }, + "section_map": [ { - "section_id": "s36", - "heading": "次へ", + "section_id": "s1", + "heading": "共通属性", "rst_labels": [] }, { - "section_id": "s37", - "heading": "最後", + "section_id": "s2", + "heading": "汎用リンクのみの属性", "rst_labels": [] }, { - "section_id": "s38", - "heading": "検索結果", + "section_id": "s3", + "heading": "ポップアップリンクのみの属性", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/08_HtmlMail.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_code_pulldown.rst", + "format": "rst", + "filename": "field_code_pulldown.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_code_pulldown", + "base_name": "ui-framework-field_code_pulldown", + "output_path": "component/ui-framework/ui-framework-field_code_pulldown.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_code_pulldown/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_textarea.rst", + "format": "rst", + "filename": "field_textarea.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_textarea", + "base_name": "ui-framework-field_textarea", + "output_path": "component/ui-framework/ui-framework-field_textarea.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_textarea/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_write_to.rst", + "format": "rst", + "filename": "event_write_to.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_write_to", + "base_name": "ui-framework-event_write_to", + "output_path": "component/ui-framework/ui-framework-event_write_to.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_write_to/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_author.rst", + "format": "rst", + "filename": "spec_author.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_author", + "base_name": "ui-framework-spec_author", + "output_path": "component/ui-framework/ui-framework-spec_author.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_author/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_base.rst", + "format": "rst", + "filename": "field_base.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_base", + "base_name": "ui-framework-field_base", + "output_path": "component/ui-framework/ui-framework-field_base.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_base/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_listen.rst", + "format": "rst", + "filename": "event_listen.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_listen", + "base_name": "ui-framework-event_listen", + "output_path": "component/ui-framework/ui-framework-event_listen.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_listen/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_code_radio.rst", + "format": "rst", + "filename": "field_code_radio.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_code_radio", + "base_name": "ui-framework-field_code_radio", + "output_path": "component/ui-framework/ui-framework-field_code_radio.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_code_radio/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_layout.rst", + "format": "rst", + "filename": "spec_layout.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_layout", + "base_name": "ui-framework-spec_layout", + "output_path": "component/ui-framework/ui-framework-spec_layout.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_layout/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_calendar.rst", + "format": "rst", + "filename": "field_calendar.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_calendar", + "base_name": "ui-framework-field_calendar", + "output_path": "component/ui-framework/ui-framework-field_calendar.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_calendar/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_search_result.rst", + "format": "rst", + "filename": "table_search_result.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-table_search_result", + "base_name": "ui-framework-table_search_result", + "output_path": "component/ui-framework/ui-framework-table_search_result.json", + "assets_dir": "component/ui-framework/assets/ui-framework-table_search_result/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_confirm.rst", + "format": "rst", + "filename": "event_confirm.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_confirm", + "base_name": "ui-framework-event_confirm", + "output_path": "component/ui-framework/ui-framework-event_confirm.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_confirm/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_updated_date.rst", + "format": "rst", + "filename": "spec_updated_date.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_updated_date", + "base_name": "ui-framework-spec_updated_date", + "output_path": "component/ui-framework/ui-framework-spec_updated_date.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_updated_date/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_listbuilder.rst", + "format": "rst", + "filename": "field_listbuilder.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_listbuilder", + "base_name": "ui-framework-field_listbuilder", + "output_path": "component/ui-framework/ui-framework-field_listbuilder.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_listbuilder/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_toggle_property.rst", "format": "rst", - "filename": "08_HtmlMail.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-08_HtmlMail--s1", - "base_name": "biz-samples-08_HtmlMail", - "output_path": "guide/biz-samples/biz-samples-08_HtmlMail--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-08_HtmlMail--s1/", - "section_range": { - "start_line": 0, - "end_line": 334, - "sections": [ - "実装済み", - "取り下げ", - "メールの形式", - "クラス図", - "データモデル", - "HTMLメールの送信", - "コンテンツの動的な切替", - "電子署名の併用", - "タグを埋めこむ" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "biz-samples-08_HtmlMail", - "group_line_count": 334 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "実装済み", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "取り下げ", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "メールの形式", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "クラス図", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "データモデル", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "HTMLメールの送信", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "コンテンツの動的な切替", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "電子署名の併用", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "タグを埋めこむ", - "rst_labels": [] - } - ] + "filename": "event_toggle_property.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_toggle_property", + "base_name": "ui-framework-event_toggle_property", + "output_path": "component/ui-framework/ui-framework-event_toggle_property.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_toggle_property/", + "section_map": [] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/07_UserAgent.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/tab_group.rst", "format": "rst", - "filename": "07_UserAgent.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-07_UserAgent--s1", - "base_name": "biz-samples-07_UserAgent", - "output_path": "guide/biz-samples/biz-samples-07_UserAgent--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-07_UserAgent--s1/", + "filename": "tab_group.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-tab_group--s1", + "base_name": "ui-framework-tab_group", + "output_path": "component/ui-framework/ui-framework-tab_group--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-tab_group--s1/", "section_range": { "start_line": 0, - "end_line": 326, + "end_line": 132, "sections": [ - "インタフェース定義", - "クラス定義", - "", - "設定の記述", - "設定内容詳細", - "", - "使用例" + "****", + "****", + "****" ], "section_ids": [ "s1", "s2", - "s3", - "s4", - "s5", - "s6", - "s7" + "s3" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-07_UserAgent", - "group_line_count": 326 + "original_id": "ui-framework-tab_group", + "group_line_count": 132 }, "section_map": [ { "section_id": "s1", - "heading": "インタフェース定義", + "heading": "****", "rst_labels": [] }, { "section_id": "s2", - "heading": "クラス定義", + "heading": "****", "rst_labels": [] }, { "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "設定の記述", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "設定内容詳細", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "使用例", + "heading": "****", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/04_ExtendedFormatter.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_toggle_disabled.rst", + "format": "rst", + "filename": "event_toggle_disabled.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_toggle_disabled", + "base_name": "ui-framework-event_toggle_disabled", + "output_path": "component/ui-framework/ui-framework-event_toggle_disabled.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_toggle_disabled/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_treelist.rst", + "format": "rst", + "filename": "table_treelist.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-table_treelist", + "base_name": "ui-framework-table_treelist", + "output_path": "component/ui-framework/ui-framework-table_treelist.json", + "assets_dir": "component/ui-framework/assets/ui-framework-table_treelist/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_radio.rst", + "format": "rst", + "filename": "field_radio.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_radio", + "base_name": "ui-framework-field_radio", + "output_path": "component/ui-framework/ui-framework-field_radio.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_radio/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/box_content.rst", + "format": "rst", + "filename": "box_content.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-box_content", + "base_name": "ui-framework-box_content", + "output_path": "component/ui-framework/ui-framework-box_content.json", + "assets_dir": "component/ui-framework/assets/ui-framework-box_content/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_plain.rst", + "format": "rst", + "filename": "table_plain.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-table_plain", + "base_name": "ui-framework-table_plain", + "output_path": "component/ui-framework/ui-framework-table_plain.json", + "assets_dir": "component/ui-framework/assets/ui-framework-table_plain/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_created_date.rst", + "format": "rst", + "filename": "spec_created_date.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_created_date", + "base_name": "ui-framework-spec_created_date", + "output_path": "component/ui-framework/ui-framework-spec_created_date.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_created_date/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_text.rst", + "format": "rst", + "filename": "field_text.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_text", + "base_name": "ui-framework-field_text", + "output_path": "component/ui-framework/ui-framework-field_text.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_text/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_validation.rst", + "format": "rst", + "filename": "spec_validation.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_validation", + "base_name": "ui-framework-spec_validation", + "output_path": "component/ui-framework/ui-framework-spec_validation.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_validation/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label_code.rst", "format": "rst", - "filename": "04_ExtendedFormatter.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-04_ExtendedFormatter--s1", - "base_name": "biz-samples-04_ExtendedFormatter", - "output_path": "guide/biz-samples/biz-samples-04_ExtendedFormatter--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-04_ExtendedFormatter--s1/", + "filename": "field_label_code.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_label_code", + "base_name": "ui-framework-field_label_code", + "output_path": "component/ui-framework/ui-framework-field_label_code.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_label_code/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_window_close.rst", + "format": "rst", + "filename": "event_window_close.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-event_window_close", + "base_name": "ui-framework-event_window_close", + "output_path": "component/ui-framework/ui-framework-event_window_close.json", + "assets_dir": "component/ui-framework/assets/ui-framework-event_window_close/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_code_checkbox.rst", + "format": "rst", + "filename": "field_code_checkbox.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-field_code_checkbox", + "base_name": "ui-framework-field_code_checkbox", + "output_path": "component/ui-framework/ui-framework-field_code_checkbox.json", + "assets_dir": "component/ui-framework/assets/ui-framework-field_code_checkbox/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_updated_by.rst", + "format": "rst", + "filename": "spec_updated_by.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-spec_updated_by", + "base_name": "ui-framework-spec_updated_by", + "output_path": "component/ui-framework/ui-framework-spec_updated_by.json", + "assets_dir": "component/ui-framework/assets/ui-framework-spec_updated_by/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/ui_development_workflow.rst", + "format": "rst", + "filename": "ui_development_workflow.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-ui_development_workflow--s1", + "base_name": "ui-framework-ui_development_workflow", + "output_path": "component/ui-framework/ui-framework-ui_development_workflow--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-ui_development_workflow--s1/", "section_range": { "start_line": 0, - "end_line": 120, + "end_line": 49, "sections": [ "", - "提供パッケージ", - "", - "KeyValueデータフォーマッタ", - "", - "使用方法", - "KeyValueデータフォーマッタの使用方法", - "フィールドタイプ・フィールドコンバータ定義一覧", - "同一キーで複数の値を取り扱う場合" + "UI開発ワークフロー" ], "section_ids": [ "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9" + "s2" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-04_ExtendedFormatter", - "group_line_count": 120 + "original_id": "ui-framework-ui_development_workflow", + "group_line_count": 49 }, "section_map": [ { @@ -33268,92 +33689,55 @@ }, { "section_id": "s2", - "heading": "提供パッケージ", - "rst_labels": [] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "KeyValueデータフォーマッタ", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "使用方法", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "KeyValueデータフォーマッタの使用方法", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "フィールドタイプ・フィールドコンバータ定義一覧", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "同一キーで複数の値を取り扱う場合", + "heading": "UI開発ワークフロー", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/0401_ExtendedDataFormatter.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/required_knowledge.rst", "format": "rst", - "filename": "0401_ExtendedDataFormatter.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-0401_ExtendedDataFormatter--s1", - "base_name": "biz-samples-0401_ExtendedDataFormatter", - "output_path": "guide/biz-samples/biz-samples-0401_ExtendedDataFormatter--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-0401_ExtendedDataFormatter--s1/", + "filename": "required_knowledge.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-required_knowledge", + "base_name": "ui-framework-required_knowledge", + "output_path": "component/ui-framework/ui-framework-required_knowledge.json", + "assets_dir": "component/ui-framework/assets/ui-framework-required_knowledge/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/grand_design.rst", + "format": "rst", + "filename": "grand_design.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-grand_design--s1", + "base_name": "ui-framework-grand_design", + "output_path": "component/ui-framework/ui-framework-grand_design--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-grand_design--s1/", "section_range": { "start_line": 0, - "end_line": 207, + "end_line": 118, "sections": [ "", - "概要", - "提供パッケージ", - "FormUrlEncodedデータフォーマッタの構成", + "業務画面JSPの記述", "", - "使用方法", - "FormUrlEncodedデータフォーマッタの使用方法", - "フォーマット定義ファイルの記述例", - "フィールドタイプ・フィールドコンバータ定義一覧", - "同一キーで複数の値を取り扱う場合", - "テストデータの記述方法" + "UI標準と共通部品" ], "section_ids": [ "s1", "s2", "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11" + "s4" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-0401_ExtendedDataFormatter", - "group_line_count": 207 + "original_id": "ui-framework-grand_design", + "group_line_count": 118 }, "section_map": [ { @@ -33363,80 +33747,41 @@ }, { "section_id": "s2", - "heading": "概要", + "heading": "業務画面JSPの記述", "rst_labels": [] }, { "section_id": "s3", - "heading": "提供パッケージ", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "FormUrlEncodedデータフォーマッタの構成", - "rst_labels": [] - }, - { - "section_id": "s5", "heading": "", "rst_labels": [] }, { - "section_id": "s6", - "heading": "使用方法", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "FormUrlEncodedデータフォーマッタの使用方法", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "フォーマット定義ファイルの記述例", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "フィールドタイプ・フィールドコンバータ定義一覧", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "同一キーで複数の値を取り扱う場合", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "テストデータの記述方法", + "section_id": "s4", + "heading": "UI標準と共通部品", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/05_DbFileManagement.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/intention.rst", "format": "rst", - "filename": "05_DbFileManagement.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-05_DbFileManagement--s1", - "base_name": "biz-samples-05_DbFileManagement", - "output_path": "guide/biz-samples/biz-samples-05_DbFileManagement--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-05_DbFileManagement--s1/", + "filename": "intention.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-intention--s1", + "base_name": "ui-framework-intention", + "output_path": "component/ui-framework/ui-framework-intention--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-intention--s1/", "section_range": { "start_line": 0, - "end_line": 259, + "end_line": 128, "sections": [ - "", - "概要", - "", - "提供パッケージ", - "", - "機能", - "", - "構成", - "", - "使用方法" + "問題点", + "アプローチ", + "メリット", + "問題点", + "アプローチ", + "メリット" ], "section_ids": [ "s1", @@ -33444,97 +33789,76 @@ "s3", "s4", "s5", - "s6", - "s7", - "s8", - "s9", - "s10" + "s6" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-05_DbFileManagement", - "group_line_count": 259 + "original_id": "ui-framework-intention", + "group_line_count": 128 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "問題点", "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "アプローチ", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "メリット", "rst_labels": [] }, { "section_id": "s4", - "heading": "提供パッケージ", + "heading": "問題点", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "アプローチ", "rst_labels": [] }, { "section_id": "s6", - "heading": "機能", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s8", - "heading": "構成", - "rst_labels": [] - }, - { - "section_id": "s9", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s10", - "heading": "使用方法", + "heading": "メリット", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/biz_sample/doc/01/0101_PBKDF2PasswordEncryptor.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/jsp_widgets.rst", "format": "rst", - "filename": "0101_PBKDF2PasswordEncryptor.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-0101_PBKDF2PasswordEncryptor--s1", - "base_name": "biz-samples-0101_PBKDF2PasswordEncryptor", - "output_path": "guide/biz-samples/biz-samples-0101_PBKDF2PasswordEncryptor--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-0101_PBKDF2PasswordEncryptor--s1/", + "filename": "jsp_widgets.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-jsp_widgets--s1", + "base_name": "ui-framework-jsp_widgets", + "output_path": "component/ui-framework/ui-framework-jsp_widgets--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-jsp_widgets--s1/", "section_range": { "start_line": 0, - "end_line": 178, + "end_line": 345, "sections": [ - "", - "提供パッケージ", "", "概要", "", - "要求", - "", - "パスワード暗号化機能の詳細", + "構造", + "**buttonタグ**", + "**fieldタグ**", + "**linkタグ**", + "**tabタグ**", + "**tableタグ**", + "**columnタグ**", + "**boxタグ**", "", - "設定方法" + "ローカル動作時の挙動" ], "section_ids": [ "s1", @@ -33546,27 +33870,28 @@ "s7", "s8", "s9", - "s10" + "s10", + "s11", + "s12", + "s13" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "biz-samples-0101_PBKDF2PasswordEncryptor", - "group_line_count": 178 + "original_id": "ui-framework-jsp_widgets", + "group_line_count": 345 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [ - "authentication_pbkdf2" - ] + "rst_labels": [] }, { "section_id": "s2", - "heading": "提供パッケージ", + "heading": "概要", "rst_labels": [] }, { @@ -33576,90 +33901,126 @@ }, { "section_id": "s4", - "heading": "概要", + "heading": "構造", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "**buttonタグ**", "rst_labels": [] }, { "section_id": "s6", - "heading": "要求", + "heading": "**fieldタグ**", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "**linkタグ**", "rst_labels": [] }, { "section_id": "s8", - "heading": "パスワード暗号化機能の詳細", + "heading": "**tabタグ**", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "**tableタグ**", "rst_labels": [] }, { "section_id": "s10", - "heading": "設定方法", + "heading": "**columnタグ**", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "**boxタグ**", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "ローカル動作時の挙動", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/known_issues.rst", - "format": "rst", - "filename": "known_issues.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-known_issues", - "base_name": "ui-framework-known_issues", - "output_path": "component/ui-framework/ui-framework-known_issues.json", - "assets_dir": "component/ui-framework/assets/ui-framework-known_issues/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/index.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/configuration_files.rst", "format": "rst", - "filename": "index.rst", + "filename": "configuration_files.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-doc", - "base_name": "ui-framework-doc", - "output_path": "component/ui-framework/ui-framework-doc.json", - "assets_dir": "component/ui-framework/assets/ui-framework-doc/", - "section_map": [] + "id": "ui-framework-configuration_files--s1", + "base_name": "ui-framework-configuration_files", + "output_path": "component/ui-framework/ui-framework-configuration_files--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-configuration_files--s1/", + "section_range": { + "start_line": 0, + "end_line": 74, + "sections": [ + "", + "タグ定義" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-configuration_files", + "group_line_count": 74 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "タグ定義", + "rst_labels": [] + } + ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/plugin_build.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/css_framework.rst", "format": "rst", - "filename": "plugin_build.rst", + "filename": "css_framework.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-plugin_build--s1", - "base_name": "ui-framework-plugin_build", - "output_path": "component/ui-framework/ui-framework-plugin_build--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-plugin_build--s1/", + "id": "ui-framework-css_framework--s1", + "base_name": "ui-framework-css_framework", + "output_path": "component/ui-framework/ui-framework-css_framework--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-css_framework--s1/", "section_range": { "start_line": 0, - "end_line": 274, + "end_line": 243, "sections": [ "", "概要", "", - "想定されるプロジェクト構成ごとの設定例", - "デプロイ対象プロジェクトが1つの場合", - "デプロイ対象プロジェクト複数の場合(プラグインは共通)", - "デプロイ対象プロジェクト複数の場合(プラグインも個別)", + "表示モード切替え", "", - "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", + "ファイル構成", + "構成ファイル一覧", + "**ビルド済みCSSファイル**", + "**LESSファイル**", "", - "設定ファイル" + "グリッドベースレイアウト", + "グリッドレイアウトフレームワークの使用方法", + "", + "アイコンの使用" ], "section_ids": [ "s1", @@ -33672,231 +34033,136 @@ "s8", "s9", "s10", - "s11" + "s11", + "s12", + "s13", + "s14" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 3, - "original_id": "ui-framework-plugin_build", - "group_line_count": 274 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s2", - "heading": "概要", - "rst_labels": [ - "project-structure" - ] - }, - { - "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "想定されるプロジェクト構成ごとの設定例", - "rst_labels": [] - }, - { - "section_id": "s5", - "heading": "デプロイ対象プロジェクトが1つの場合", - "rst_labels": [] - }, - { - "section_id": "s6", - "heading": "デプロイ対象プロジェクト複数の場合(プラグインは共通)", - "rst_labels": [] - }, - { - "section_id": "s7", - "heading": "デプロイ対象プロジェクト複数の場合(プラグインも個別)", - "rst_labels": [ - "config-command-detail" - ] - }, + "total_parts": 1, + "original_id": "ui-framework-css_framework", + "group_line_count": 243 + }, + "section_map": [ { - "section_id": "s8", + "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s9", - "heading": "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", + "section_id": "s2", + "heading": "概要", "rst_labels": [ - "config-file" + "display_mode" ] }, { - "section_id": "s10", + "section_id": "s3", "heading": "", "rst_labels": [] }, { - "section_id": "s11", - "heading": "設定ファイル", - "rst_labels": [ - "pjconf_json" - ] - }, - { - "section_id": "s12", - "heading": "ビルドコマンド用設定ファイル", + "section_id": "s4", + "heading": "表示モード切替え", "rst_labels": [] }, { - "section_id": "s13", - "heading": "lessインポート定義ファイル", - "rst_labels": [ - "generate-file" - ] - }, - { - "section_id": "s14", + "section_id": "s5", "heading": "", "rst_labels": [] }, { - "section_id": "s15", - "heading": "ファイルの自動生成", + "section_id": "s6", + "heading": "ファイル構成", "rst_labels": [] }, { - "section_id": "s16", - "heading": "CSSの自動生成", - "rst_labels": [ - "generate_javascript" - ] - }, - { - "section_id": "s17", - "heading": "JavaScriptの自動生成", - "rst_labels": [ - "build-file" - ] - }, - { - "section_id": "s18", - "heading": "", + "section_id": "s7", + "heading": "構成ファイル一覧", "rst_labels": [] }, { - "section_id": "s19", - "heading": "プラグイン、外部ライブラリの展開", + "section_id": "s8", + "heading": "**ビルド済みCSSファイル**", "rst_labels": [] }, { - "section_id": "s20", - "heading": "プラグインの展開", + "section_id": "s9", + "heading": "**LESSファイル**", "rst_labels": [] }, { - "section_id": "s21", - "heading": "外部ライブラリの展開", - "rst_labels": [ - "build-command" - ] - }, - { - "section_id": "s22", + "section_id": "s10", "heading": "", "rst_labels": [] }, { - "section_id": "s23", - "heading": "ビルドコマンド", - "rst_labels": [ - "install" - ] - }, - { - "section_id": "s24", - "heading": "インストールコマンド", - "rst_labels": [ - "ui_build" - ] - }, - { - "section_id": "s25", - "heading": "UIビルドコマンド", - "rst_labels": [ - "ui_genless" - ] + "section_id": "s11", + "heading": "グリッドベースレイアウト", + "rst_labels": [] }, { - "section_id": "s26", - "heading": "lessインポート定義雛形生成コマンド", + "section_id": "s12", + "heading": "グリッドレイアウトフレームワークの使用方法", "rst_labels": [] }, { - "section_id": "s27", - "heading": "ローカル動作確認用サーバ起動コマンド", - "rst_labels": [ - "ui_demo" - ] + "section_id": "s13", + "heading": "", + "rst_labels": [] }, { - "section_id": "s28", - "heading": "サーバ動作確認用サーバ起動コマンド", + "section_id": "s14", + "heading": "アイコンの使用", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/plugin_build.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/inbrowser_jsp_rendering.rst", "format": "rst", - "filename": "plugin_build.rst", + "filename": "inbrowser_jsp_rendering.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-plugin_build--s12", - "base_name": "ui-framework-plugin_build", - "output_path": "component/ui-framework/ui-framework-plugin_build--s12.json", - "assets_dir": "component/ui-framework/assets/ui-framework-plugin_build--s12/", + "id": "ui-framework-inbrowser_jsp_rendering--s1", + "base_name": "ui-framework-inbrowser_jsp_rendering", + "output_path": "component/ui-framework/ui-framework-inbrowser_jsp_rendering--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-inbrowser_jsp_rendering--s1/", "section_range": { - "start_line": 274, - "end_line": 658, + "start_line": 0, + "end_line": 275, "sections": [ - "ビルドコマンド用設定ファイル", - "lessインポート定義ファイル", "", - "ファイルの自動生成", - "CSSの自動生成", - "JavaScriptの自動生成", + "概要", + "ローカルJSPレンダリング機能の有効化", + "業務画面JSPを記述する際の制約事項", "", - "プラグイン、外部ライブラリの展開", - "プラグインの展開", - "外部ライブラリの展開", + "ローカル表示の仕組み", "", - "ビルドコマンド" + "構造", + "構成ファイル一覧" ], "section_ids": [ - "s12", - "s13", - "s14", - "s15", - "s16", - "s17", - "s18", - "s19", - "s20", - "s21", - "s22", - "s23" + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 3, - "original_id": "ui-framework-plugin_build", - "group_line_count": 384 + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-inbrowser_jsp_rendering", + "group_line_count": 275 }, "section_map": [ { @@ -33907,211 +34173,184 @@ { "section_id": "s2", "heading": "概要", - "rst_labels": [ - "project-structure" - ] + "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "ローカルJSPレンダリング機能の有効化", "rst_labels": [] }, { "section_id": "s4", - "heading": "想定されるプロジェクト構成ごとの設定例", + "heading": "業務画面JSPを記述する際の制約事項", "rst_labels": [] }, { "section_id": "s5", - "heading": "デプロイ対象プロジェクトが1つの場合", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "デプロイ対象プロジェクト複数の場合(プラグインは共通)", + "heading": "ローカル表示の仕組み", "rst_labels": [] }, { "section_id": "s7", - "heading": "デプロイ対象プロジェクト複数の場合(プラグインも個別)", - "rst_labels": [ - "config-command-detail" - ] - }, - { - "section_id": "s8", "heading": "", "rst_labels": [] }, { - "section_id": "s9", - "heading": "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", - "rst_labels": [ - "config-file" - ] - }, - { - "section_id": "s10", - "heading": "", + "section_id": "s8", + "heading": "構造", "rst_labels": [] }, { - "section_id": "s11", - "heading": "設定ファイル", - "rst_labels": [ - "pjconf_json" - ] - }, - { - "section_id": "s12", - "heading": "ビルドコマンド用設定ファイル", + "section_id": "s9", + "heading": "構成ファイル一覧", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/multicol_css_framework.rst", + "format": "rst", + "filename": "multicol_css_framework.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-multicol_css_framework--s1", + "base_name": "ui-framework-multicol_css_framework", + "output_path": "component/ui-framework/ui-framework-multicol_css_framework--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-multicol_css_framework--s1/", + "section_range": { + "start_line": 0, + "end_line": 274, + "sections": [ + "", + "概要", + "", + "制約事項", + "", + "マルチレイアウトモードの適用方法", + "", + "レイアウトの調整方法", + "" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "ui-framework-multicol_css_framework", + "group_line_count": 274 + }, + "section_map": [ { - "section_id": "s13", - "heading": "lessインポート定義ファイル", + "section_id": "s1", + "heading": "", "rst_labels": [ - "generate-file" + "multicol_mode" ] }, { - "section_id": "s14", - "heading": "", + "section_id": "s2", + "heading": "概要", "rst_labels": [] }, { - "section_id": "s15", - "heading": "ファイルの自動生成", + "section_id": "s3", + "heading": "", "rst_labels": [] }, { - "section_id": "s16", - "heading": "CSSの自動生成", - "rst_labels": [ - "generate_javascript" - ] - }, - { - "section_id": "s17", - "heading": "JavaScriptの自動生成", + "section_id": "s4", + "heading": "制約事項", "rst_labels": [ - "build-file" + "apply-multicol-layout" ] }, { - "section_id": "s18", + "section_id": "s5", "heading": "", "rst_labels": [] }, { - "section_id": "s19", - "heading": "プラグイン、外部ライブラリの展開", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "プラグインの展開", + "section_id": "s6", + "heading": "マルチレイアウトモードの適用方法", "rst_labels": [] }, { - "section_id": "s21", - "heading": "外部ライブラリの展開", - "rst_labels": [ - "build-command" - ] - }, - { - "section_id": "s22", + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s23", - "heading": "ビルドコマンド", - "rst_labels": [ - "install" - ] - }, - { - "section_id": "s24", - "heading": "インストールコマンド", - "rst_labels": [ - "ui_build" - ] - }, - { - "section_id": "s25", - "heading": "UIビルドコマンド", - "rst_labels": [ - "ui_genless" - ] - }, - { - "section_id": "s26", - "heading": "lessインポート定義雛形生成コマンド", + "section_id": "s8", + "heading": "レイアウトの調整方法", "rst_labels": [] }, { - "section_id": "s27", - "heading": "ローカル動作確認用サーバ起動コマンド", - "rst_labels": [ - "ui_demo" - ] + "section_id": "s9", + "heading": "", + "rst_labels": [] }, { - "section_id": "s28", - "heading": "サーバ動作確認用サーバ起動コマンド", + "section_id": "s10", + "heading": "使用例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/plugin_build.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/multicol_css_framework.rst", "format": "rst", - "filename": "plugin_build.rst", + "filename": "multicol_css_framework.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-plugin_build--s24", - "base_name": "ui-framework-plugin_build", - "output_path": "component/ui-framework/ui-framework-plugin_build--s24.json", - "assets_dir": "component/ui-framework/assets/ui-framework-plugin_build--s24/", + "id": "ui-framework-multicol_css_framework--s10", + "base_name": "ui-framework-multicol_css_framework", + "output_path": "component/ui-framework/ui-framework-multicol_css_framework--s10.json", + "assets_dir": "component/ui-framework/assets/ui-framework-multicol_css_framework--s10/", "section_range": { - "start_line": 658, - "end_line": 814, + "start_line": 274, + "end_line": 489, "sections": [ - "インストールコマンド", - "UIビルドコマンド", - "lessインポート定義雛形生成コマンド", - "ローカル動作確認用サーバ起動コマンド", - "サーバ動作確認用サーバ起動コマンド" + "使用例" ], "section_ids": [ - "s24", - "s25", - "s26", - "s27", - "s28" + "s10" ] }, "split_info": { "is_split": true, - "part": 3, - "total_parts": 3, - "original_id": "ui-framework-plugin_build", - "group_line_count": 156 + "part": 2, + "total_parts": 2, + "original_id": "ui-framework-multicol_css_framework", + "group_line_count": 215 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "multicol_mode" + ] }, { "section_id": "s2", "heading": "概要", - "rst_labels": [ - "project-structure" - ] + "rst_labels": [] }, { "section_id": "s3", @@ -34120,285 +34359,430 @@ }, { "section_id": "s4", - "heading": "想定されるプロジェクト構成ごとの設定例", - "rst_labels": [] + "heading": "制約事項", + "rst_labels": [ + "apply-multicol-layout" + ] }, { "section_id": "s5", - "heading": "デプロイ対象プロジェクトが1つの場合", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "デプロイ対象プロジェクト複数の場合(プラグインは共通)", + "heading": "マルチレイアウトモードの適用方法", "rst_labels": [] }, { "section_id": "s7", - "heading": "デプロイ対象プロジェクト複数の場合(プラグインも個別)", - "rst_labels": [ - "config-command-detail" - ] + "heading": "", + "rst_labels": [] }, { "section_id": "s8", - "heading": "", + "heading": "レイアウトの調整方法", "rst_labels": [] }, { "section_id": "s9", - "heading": "プラグインビルドで使用するコマンドや設定ファイルの詳細仕様", - "rst_labels": [ - "config-file" - ] - }, - { - "section_id": "s10", "heading": "", "rst_labels": [] }, { - "section_id": "s11", - "heading": "設定ファイル", - "rst_labels": [ - "pjconf_json" - ] - }, - { - "section_id": "s12", - "heading": "ビルドコマンド用設定ファイル", + "section_id": "s10", + "heading": "使用例", "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "lessインポート定義ファイル", - "rst_labels": [ - "generate-file" - ] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/jsp_page_templates.rst", + "format": "rst", + "filename": "jsp_page_templates.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-jsp_page_templates--s1", + "base_name": "ui-framework-jsp_page_templates", + "output_path": "component/ui-framework/ui-framework-jsp_page_templates--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-jsp_page_templates--s1/", + "section_range": { + "start_line": 0, + "end_line": 322, + "sections": [ + "", + "概要", + "", + "ファイル構成", + "概要", + "構成ファイル一覧", + "", + "業務画面テンプレートの詳細仕様", + "業務画面ベースレイアウト", + "業務画面標準テンプレート", + "エラー画面テンプレート", + "", + "ローカル動作時の挙動" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-jsp_page_templates", + "group_line_count": 322 + }, + "section_map": [ { - "section_id": "s14", + "section_id": "s1", "heading": "", "rst_labels": [] }, { - "section_id": "s15", - "heading": "ファイルの自動生成", + "section_id": "s2", + "heading": "概要", "rst_labels": [] }, { - "section_id": "s16", - "heading": "CSSの自動生成", - "rst_labels": [ - "generate_javascript" - ] - }, - { - "section_id": "s17", - "heading": "JavaScriptの自動生成", - "rst_labels": [ - "build-file" - ] - }, - { - "section_id": "s18", + "section_id": "s3", "heading": "", "rst_labels": [] }, { - "section_id": "s19", - "heading": "プラグイン、外部ライブラリの展開", + "section_id": "s4", + "heading": "ファイル構成", "rst_labels": [] }, { - "section_id": "s20", - "heading": "プラグインの展開", + "section_id": "s5", + "heading": "概要", "rst_labels": [] }, { - "section_id": "s21", - "heading": "外部ライブラリの展開", - "rst_labels": [ - "build-command" - ] + "section_id": "s6", + "heading": "構成ファイル一覧", + "rst_labels": [] }, { - "section_id": "s22", + "section_id": "s7", "heading": "", "rst_labels": [] }, { - "section_id": "s23", - "heading": "ビルドコマンド", + "section_id": "s8", + "heading": "業務画面テンプレートの詳細仕様", "rst_labels": [ - "install" + "base_layout_tag" ] }, { - "section_id": "s24", - "heading": "インストールコマンド", + "section_id": "s9", + "heading": "業務画面ベースレイアウト", "rst_labels": [ - "ui_build" + "page_template_tag" ] }, { - "section_id": "s25", - "heading": "UIビルドコマンド", + "section_id": "s10", + "heading": "業務画面標準テンプレート", "rst_labels": [ - "ui_genless" + "errorpage_template_tag" ] }, { - "section_id": "s26", - "heading": "lessインポート定義雛形生成コマンド", + "section_id": "s11", + "heading": "エラー画面テンプレート", "rst_labels": [] }, { - "section_id": "s27", - "heading": "ローカル動作確認用サーバ起動コマンド", - "rst_labels": [ - "ui_demo" - ] + "section_id": "s12", + "heading": "", + "rst_labels": [] }, { - "section_id": "s28", - "heading": "サーバ動作確認用サーバ起動コマンド", + "section_id": "s13", + "heading": "ローカル動作時の挙動", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_js_framework.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/generating_form_class.rst", "format": "rst", - "filename": "reference_js_framework.rst", + "filename": "generating_form_class.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-reference_js_framework--s1", - "base_name": "ui-framework-reference_js_framework", - "output_path": "component/ui-framework/ui-framework-reference_js_framework--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-reference_js_framework--s1/", + "id": "ui-framework-generating_form_class-internals--s1", + "base_name": "ui-framework-generating_form_class-internals", + "output_path": "component/ui-framework/ui-framework-generating_form_class-internals--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-generating_form_class-internals--s1/", "section_range": { "start_line": 0, - "end_line": 28, + "end_line": 387, "sections": [ - "UI部品", - "ユーティリティ" + "概要", + "使用方法", + "関連ファイル", + "出力仕様" ], "section_ids": [ "s1", - "s2" + "s2", + "s3", + "s4" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "ui-framework-reference_js_framework", - "group_line_count": 28 + "original_id": "ui-framework-generating_form_class-internals", + "group_line_count": 387 }, "section_map": [ { "section_id": "s1", - "heading": "UI部品", + "heading": "概要", "rst_labels": [] }, { "section_id": "s2", - "heading": "ユーティリティ", + "heading": "使用方法", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "関連ファイル", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "出力仕様", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/related_documents.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/showing_specsheet_view.rst", "format": "rst", - "filename": "related_documents.rst", + "filename": "showing_specsheet_view.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-related_documents", - "base_name": "ui-framework-related_documents", - "output_path": "component/ui-framework/ui-framework-related_documents.json", - "assets_dir": "component/ui-framework/assets/ui-framework-related_documents/", - "section_map": [] + "id": "ui-framework-showing_specsheet_view--s1", + "base_name": "ui-framework-showing_specsheet_view", + "output_path": "component/ui-framework/ui-framework-showing_specsheet_view--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-showing_specsheet_view--s1/", + "section_range": { + "start_line": 0, + "end_line": 84, + "sections": [ + "概要", + "使用方法", + "関連ファイル" + ], + "section_ids": [ + "s1", + "s2", + "s3" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-showing_specsheet_view", + "group_line_count": 84 + }, + "section_map": [ + { + "section_id": "s1", + "heading": "概要", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "使用方法", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "関連ファイル", + "rst_labels": [] + } + ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/about_this_book.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/js_framework.rst", "format": "rst", - "filename": "about_this_book.rst", + "filename": "js_framework.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-about_this_book", - "base_name": "ui-framework-about_this_book", - "output_path": "component/ui-framework/ui-framework-about_this_book.json", - "assets_dir": "component/ui-framework/assets/ui-framework-about_this_book/", + "id": "ui-framework-js_framework--s1", + "base_name": "ui-framework-js_framework", + "output_path": "component/ui-framework/ui-framework-js_framework--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-js_framework--s1/", + "section_range": { + "start_line": 0, + "end_line": 254, + "sections": [ + "", + "概要", + "使用例", + "依存ライブラリ", + "", + "初期処理", + "スクリプトロード時の挙動", + "ドキュメントロード時の挙動", + "UI部品の再初期化", + "", + "ファイル構成", + "", + "新規 JavaScript UI部品の作成方法", + "作成するファイル" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 2, + "original_id": "ui-framework-js_framework", + "group_line_count": 254 + }, "section_map": [ { - "section_id": "s1", - "heading": "本書の内容", + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "概要", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "使用例", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "依存ライブラリ", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "初期処理", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "スクリプトロード時の挙動", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "ドキュメントロード時の挙動", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "UI部品の再初期化", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "ファイル構成", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "新規 JavaScript UI部品の作成方法", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "作成するファイル", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "ウィジェットの実装例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/book_layout.rst", - "format": "rst", - "filename": "book_layout.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-book_layout", - "base_name": "ui-framework-book_layout", - "output_path": "component/ui-framework/ui-framework-book_layout.json", - "assets_dir": "component/ui-framework/assets/ui-framework-book_layout/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/testing.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/js_framework.rst", "format": "rst", - "filename": "testing.rst", + "filename": "js_framework.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-testing--s1", - "base_name": "ui-framework-testing", - "output_path": "component/ui-framework/ui-framework-testing--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-testing--s1/", + "id": "ui-framework-js_framework--s15", + "base_name": "ui-framework-js_framework", + "output_path": "component/ui-framework/ui-framework-js_framework--s15.json", + "assets_dir": "component/ui-framework/assets/ui-framework-js_framework--s15/", "section_range": { - "start_line": 0, - "end_line": 170, + "start_line": 254, + "end_line": 423, "sections": [ - "", - "テスト方針", - "", - "テスト実施環境", - "", - "実施テスト内容", - "UI部品ウィジェット機能テスト", - "UI部品ウィジェット性能テスト", - "UI部品ウィジェット組み合わせテスト", - "結合テスト", - "ローカル表示テスト", - "表示方向切替えテスト" + "ウィジェットの実装例" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12" + "s15" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-testing", - "group_line_count": 170 + "part": 2, + "total_parts": 2, + "original_id": "ui-framework-js_framework", + "group_line_count": 169 }, "section_map": [ { @@ -34408,17 +34792,17 @@ }, { "section_id": "s2", - "heading": "テスト方針", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "使用例", "rst_labels": [] }, { "section_id": "s4", - "heading": "テスト実施環境", + "heading": "依存ライブラリ", "rst_labels": [] }, { @@ -34428,162 +34812,190 @@ }, { "section_id": "s6", - "heading": "実施テスト内容", + "heading": "初期処理", "rst_labels": [] }, { "section_id": "s7", - "heading": "UI部品ウィジェット機能テスト", + "heading": "スクリプトロード時の挙動", "rst_labels": [] }, { "section_id": "s8", - "heading": "UI部品ウィジェット性能テスト", + "heading": "ドキュメントロード時の挙動", "rst_labels": [] }, { "section_id": "s9", - "heading": "UI部品ウィジェット組み合わせテスト", + "heading": "UI部品の再初期化", "rst_labels": [] }, { "section_id": "s10", - "heading": "結合テスト", + "heading": "", "rst_labels": [] }, { "section_id": "s11", - "heading": "ローカル表示テスト", + "heading": "ファイル構成", "rst_labels": [] }, { "section_id": "s12", - "heading": "表示方向切替えテスト", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "新規 JavaScript UI部品の作成方法", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "作成するファイル", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "ウィジェットの実装例", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/structure/directory_layout.rst", - "format": "rst", - "filename": "directory_layout.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-directory_layout", - "base_name": "ui-framework-directory_layout", - "output_path": "component/ui-framework/ui-framework-directory_layout.json", - "assets_dir": "component/ui-framework/assets/ui-framework-directory_layout/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/structure/plugins.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/architecture_overview.rst", "format": "rst", - "filename": "plugins.rst", + "filename": "architecture_overview.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-plugins--s1", - "base_name": "ui-framework-plugins", - "output_path": "component/ui-framework/ui-framework-plugins--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-plugins--s1/", + "id": "ui-framework-architecture_overview--s1", + "base_name": "ui-framework-architecture_overview", + "output_path": "component/ui-framework/ui-framework-architecture_overview--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-architecture_overview--s1/", "section_range": { "start_line": 0, - "end_line": 147, + "end_line": 120, "sections": [ - "", - "UIプラグインの構造", - "", - "UIプラグインのバージョンについて" + "本番環境での外部ライブラリへの依存", + "サーバ動作時の構成", + "ローカル動作時の構成" ], "section_ids": [ "s1", "s2", - "s3", - "s4" + "s3" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "ui-framework-plugins", - "group_line_count": 147 + "original_id": "ui-framework-architecture_overview", + "group_line_count": 120 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "本番環境での外部ライブラリへの依存", "rst_labels": [] }, { "section_id": "s2", - "heading": "UIプラグインの構造", + "heading": "サーバ動作時の構成", "rst_labels": [] }, { "section_id": "s3", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s4", - "heading": "UIプラグインのバージョンについて", + "heading": "ローカル動作時の構成", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_ui_plugin/index.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/modifying_code_and_testing.rst", "format": "rst", - "filename": "index.rst", + "filename": "modifying_code_and_testing.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-reference_ui_plugin", - "base_name": "ui-framework-reference_ui_plugin", - "output_path": "component/ui-framework/ui-framework-reference_ui_plugin.json", - "assets_dir": "component/ui-framework/assets/ui-framework-reference_ui_plugin/", + "id": "ui-framework-modifying_code_and_testing--s1", + "base_name": "ui-framework-modifying_code_and_testing", + "output_path": "component/ui-framework/ui-framework-modifying_code_and_testing--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-modifying_code_and_testing--s1/", + "section_range": { + "start_line": 0, + "end_line": 209, + "sections": [ + "1. 修正要件の確認", + "2. 修正箇所の特定", + "3. プラグインの追加", + "4. ビルドと修正確認", + "5. リポジトリへの反映" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-modifying_code_and_testing", + "group_line_count": 209 + }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "1. 修正要件の確認", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "2. 修正箇所の特定", "rst_labels": [ - "nablarch-device-fix" + "add_plugin" ] + }, + { + "section_id": "s3", + "heading": "3. プラグインの追加", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "4. ビルドと修正確認", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "5. リポジトリへの反映", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_ui_standard/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-reference_ui_standard--s1", - "base_name": "ui-framework-reference_ui_standard", - "output_path": "component/ui-framework/ui-framework-reference_ui_standard--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-reference_ui_standard--s1/", - "section_range": { - "start_line": 0, - "end_line": 395, - "sections": [ - "", - "UI標準1.1. 対応する端末とブラウザ", - "", - "UI標準1.2. 使用技術", - "", - "UI標準2. 画面構成", - "", - "UI標準2.1. 端末の画面サイズと表示モード", - "", - "UI標準2.2. ワイド表示モードの画面構成", - "", - "UI標準2.3. コンパクト表示モードの画面構成", - "", - "UI標準2.4. ナロー表示モードの画面構成", - "", - "UI標準2.5.画面内の入出力項目に関する共通仕様", - "", - "UI標準2.6. WEB標準に準拠しないブラウザでの表示制約", - "" + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/initial_setup.rst", + "format": "rst", + "filename": "initial_setup.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-initial_setup--s1", + "base_name": "ui-framework-initial_setup", + "output_path": "component/ui-framework/ui-framework-initial_setup--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-initial_setup--s1/", + "section_range": { + "start_line": 0, + "end_line": 378, + "sections": [ + "1. サードパーティライブラリの取得(要オンライン)", + "2. プロジェクトで使用するプラグインの選定", + "3. プロジェクトへのプラグインインストール", + "4. UI部品のビルドと配置", + "5. UIローカルデモ用プロジェクトの動作確認", + "6. UI開発基盤テスト用プロジェクトの動作確認" ], "section_ids": [ "s1", @@ -34591,1127 +35003,837 @@ "s3", "s4", "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15", - "s16", - "s17", - "s18", - "s19" + "s6" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 2, - "original_id": "ui-framework-reference_ui_standard", - "group_line_count": 395 + "original_id": "ui-framework-initial_setup", + "group_line_count": 378 }, "section_map": [ { "section_id": "s1", - "heading": "", - "rst_labels": [ - "ui_standard_1_1" - ] + "heading": "1. サードパーティライブラリの取得(要オンライン)", + "rst_labels": [] }, { "section_id": "s2", - "heading": "UI標準1.1. 対応する端末とブラウザ", - "rst_labels": [ - "ui_standard_1_2" - ] + "heading": "2. プロジェクトで使用するプラグインの選定", + "rst_labels": [] }, { "section_id": "s3", - "heading": "", - "rst_labels": [] + "heading": "3. プロジェクトへのプラグインインストール", + "rst_labels": [ + "executing_ui_build" + ] }, { "section_id": "s4", - "heading": "UI標準1.2. 使用技術", - "rst_labels": [ - "ui_standard_2" - ] + "heading": "4. UI部品のビルドと配置", + "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "5. UIローカルデモ用プロジェクトの動作確認", "rst_labels": [] }, { "section_id": "s6", - "heading": "UI標準2. 画面構成", - "rst_labels": [ - "ui_standard_2_1" - ] - }, - { - "section_id": "s7", - "heading": "", + "heading": "6. UI開発基盤テスト用プロジェクトの動作確認", "rst_labels": [] }, { - "section_id": "s8", - "heading": "UI標準2.1. 端末の画面サイズと表示モード", + "section_id": "s7", + "heading": "7. 開発リポジトリへの登録", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/initial_setup.rst", + "format": "rst", + "filename": "initial_setup.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-initial_setup--s7", + "base_name": "ui-framework-initial_setup", + "output_path": "component/ui-framework/ui-framework-initial_setup--s7.json", + "assets_dir": "component/ui-framework/assets/ui-framework-initial_setup--s7/", + "section_range": { + "start_line": 378, + "end_line": 438, + "sections": [ + "7. 開発リポジトリへの登録" + ], + "section_ids": [ + "s7" + ] + }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 2, + "original_id": "ui-framework-initial_setup", + "group_line_count": 60 + }, + "section_map": [ { - "section_id": "s9", - "heading": "", + "section_id": "s1", + "heading": "1. サードパーティライブラリの取得(要オンライン)", "rst_labels": [] }, { - "section_id": "s10", - "heading": "UI標準2.2. ワイド表示モードの画面構成", + "section_id": "s2", + "heading": "2. プロジェクトで使用するプラグインの選定", "rst_labels": [] }, { - "section_id": "s11", - "heading": "", - "rst_labels": [] + "section_id": "s3", + "heading": "3. プロジェクトへのプラグインインストール", + "rst_labels": [ + "executing_ui_build" + ] }, { - "section_id": "s12", - "heading": "UI標準2.3. コンパクト表示モードの画面構成", + "section_id": "s4", + "heading": "4. UI部品のビルドと配置", "rst_labels": [] }, { - "section_id": "s13", - "heading": "", + "section_id": "s5", + "heading": "5. UIローカルデモ用プロジェクトの動作確認", "rst_labels": [] }, { - "section_id": "s14", - "heading": "UI標準2.4. ナロー表示モードの画面構成", + "section_id": "s6", + "heading": "6. UI開発基盤テスト用プロジェクトの動作確認", "rst_labels": [] }, { - "section_id": "s15", - "heading": "", + "section_id": "s7", + "heading": "7. 開発リポジトリへの登録", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/update_bundle_plugin.rst", + "format": "rst", + "filename": "update_bundle_plugin.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-update_bundle_plugin--s1", + "base_name": "ui-framework-update_bundle_plugin", + "output_path": "component/ui-framework/ui-framework-update_bundle_plugin--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-update_bundle_plugin--s1/", + "section_range": { + "start_line": 0, + "end_line": 200, + "sections": [ + "1. 現在のプラグインのバージョンの確認", + "2. プラグインのマージ" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-update_bundle_plugin", + "group_line_count": 200 + }, + "section_map": [ { - "section_id": "s16", - "heading": "UI標準2.5.画面内の入出力項目に関する共通仕様", + "section_id": "s1", + "heading": "1. 現在のプラグインのバージョンの確認", "rst_labels": [] }, { - "section_id": "s17", - "heading": "", + "section_id": "s2", + "heading": "2. プラグインのマージ", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/redistribution.rst", + "format": "rst", + "filename": "redistribution.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-redistribution--s1", + "base_name": "ui-framework-redistribution", + "output_path": "component/ui-framework/ui-framework-redistribution--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-redistribution--s1/", + "section_range": { + "start_line": 0, + "end_line": 125, + "sections": [ + "作成手順", + "確認手順" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-redistribution", + "group_line_count": 125 + }, + "section_map": [ { - "section_id": "s18", - "heading": "UI標準2.6. WEB標準に準拠しないブラウザでの表示制約", + "section_id": "s1", + "heading": "作成手順", "rst_labels": [] }, { - "section_id": "s19", - "heading": "", + "section_id": "s2", + "heading": "確認手順", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/index.rst", + "format": "rst", + "filename": "index.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-guide--s1", + "base_name": "ui-framework-guide", + "output_path": "component/ui-framework/ui-framework-guide--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-guide--s1/", + "section_range": { + "start_line": 0, + "end_line": 82, + "sections": [ + "業務画面JSP作成フロー", + "業務画面JSP作成に利用する開発環境", + "業務画面JSPの作成方法", + "画面項目定義一覧の作成方法", + "フォームクラスの自動生成方法" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-guide", + "group_line_count": 82 + }, + "section_map": [ { - "section_id": "s20", - "heading": "UI標準2.11. 共通エラー画面の構成", + "section_id": "s1", + "heading": "業務画面JSP作成フロー", "rst_labels": [] }, { - "section_id": "s21", - "heading": "", + "section_id": "s2", + "heading": "業務画面JSP作成に利用する開発環境", "rst_labels": [] }, { - "section_id": "s22", - "heading": "UI標準3. UI部品 (UI部品カタログ)", + "section_id": "s3", + "heading": "業務画面JSPの作成方法", "rst_labels": [] }, { - "section_id": "s23", - "heading": "", + "section_id": "s4", + "heading": "画面項目定義一覧の作成方法", "rst_labels": [] }, { - "section_id": "s24", - "heading": "開閉可能領域", + "section_id": "s5", + "heading": "フォームクラスの自動生成方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_ui_standard/index.rst", + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/template_list.rst", "format": "rst", - "filename": "index.rst", + "filename": "template_list.rst", "type": "component", "category": "ui-framework", - "id": "ui-framework-reference_ui_standard--s20", - "base_name": "ui-framework-reference_ui_standard", - "output_path": "component/ui-framework/ui-framework-reference_ui_standard--s20.json", - "assets_dir": "component/ui-framework/assets/ui-framework-reference_ui_standard--s20/", + "id": "ui-framework-template_list--s1", + "base_name": "ui-framework-template_list", + "output_path": "component/ui-framework/ui-framework-template_list--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-template_list--s1/", "section_range": { - "start_line": 395, - "end_line": 496, + "start_line": 0, + "end_line": 215, "sections": [ - "UI標準2.11. 共通エラー画面の構成", - "", - "UI標準3. UI部品 (UI部品カタログ)", - "", - "開閉可能領域" + "Eclipse補完テンプレートの導入方法", + "Eclipse補完テンプレートの一覧" ], "section_ids": [ - "s20", - "s21", - "s22", - "s23", - "s24" + "s1", + "s2" ] }, "split_info": { "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "ui-framework-reference_ui_standard", - "group_line_count": 101 + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-template_list", + "group_line_count": 215 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "Eclipse補完テンプレートの導入方法", "rst_labels": [ - "ui_standard_1_1" + "eclipse-template" ] }, { "section_id": "s2", - "heading": "UI標準1.1. 対応する端末とブラウザ", - "rst_labels": [ - "ui_standard_1_2" - ] - }, - { - "section_id": "s3", - "heading": "", + "heading": "Eclipse補完テンプレートの一覧", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/develop_environment.rst", + "format": "rst", + "filename": "develop_environment.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-develop_environment--s1", + "base_name": "ui-framework-develop_environment", + "output_path": "component/ui-framework/ui-framework-develop_environment--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-develop_environment--s1/", + "section_range": { + "start_line": 0, + "end_line": 34, + "sections": [ + "統合開発環境の補完機能を利用する", + "統合開発環境のドキュメント参照機能を利用する" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-develop_environment", + "group_line_count": 34 + }, + "section_map": [ { - "section_id": "s4", - "heading": "UI標準1.2. 使用技術", - "rst_labels": [ - "ui_standard_2" - ] + "section_id": "s1", + "heading": "統合開発環境の補完機能を利用する", + "rst_labels": [] }, { - "section_id": "s5", - "heading": "", + "section_id": "s2", + "heading": "統合開発環境のドキュメント参照機能を利用する", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/widget_list.rst", + "format": "rst", + "filename": "widget_list.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-widget_list", + "base_name": "ui-framework-widget_list", + "output_path": "component/ui-framework/ui-framework-widget_list.json", + "assets_dir": "component/ui-framework/assets/ui-framework-widget_list/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/project_structure.rst", + "format": "rst", + "filename": "project_structure.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-project_structure", + "base_name": "ui-framework-project_structure", + "output_path": "component/ui-framework/ui-framework-project_structure.json", + "assets_dir": "component/ui-framework/assets/ui-framework-project_structure/", + "section_map": [] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/create_screen_item_list.rst", + "format": "rst", + "filename": "create_screen_item_list.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-create_screen_item_list", + "base_name": "ui-framework-create_screen_item_list", + "output_path": "component/ui-framework/ui-framework-create_screen_item_list.json", + "assets_dir": "component/ui-framework/assets/ui-framework-create_screen_item_list/", + "section_map": [ { - "section_id": "s6", - "heading": "UI標準2. 画面構成", - "rst_labels": [ - "ui_standard_2_1" - ] - }, + "section_id": "s1", + "heading": "業務画面JSPから画面項目定義を作成する", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/generating_form_class.rst", + "format": "rst", + "filename": "generating_form_class.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-generating_form_class-widget_usage--s1", + "base_name": "ui-framework-generating_form_class-widget_usage", + "output_path": "component/ui-framework/ui-framework-generating_form_class-widget_usage--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-generating_form_class-widget_usage--s1/", + "section_range": { + "start_line": 0, + "end_line": 38, + "sections": [ + "概要", + "使用方法" + ], + "section_ids": [ + "s1", + "s2" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-generating_form_class-widget_usage", + "group_line_count": 38 + }, + "section_map": [ { - "section_id": "s7", - "heading": "", + "section_id": "s1", + "heading": "概要", "rst_labels": [] }, { - "section_id": "s8", - "heading": "UI標準2.1. 端末の画面サイズと表示モード", + "section_id": "s2", + "heading": "使用方法", "rst_labels": [] - }, + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/create_with_widget.rst", + "format": "rst", + "filename": "create_with_widget.rst", + "type": "component", + "category": "ui-framework", + "id": "ui-framework-create_with_widget--s1", + "base_name": "ui-framework-create_with_widget", + "output_path": "component/ui-framework/ui-framework-create_with_widget--s1.json", + "assets_dir": "component/ui-framework/assets/ui-framework-create_with_widget--s1/", + "section_range": { + "start_line": 0, + "end_line": 326, + "sections": [ + "画面のテンプレートを用意する", + "画面をブラウザで表示する", + "UI部品(ウィジェット)を配置していく", + "ウィジェットに定義されている属性について", + "画面遷移について", + "ウィジェットの作成について", + "入力画面と確認画面の共用", + "業務画面JSPの例", + "", + "", + "", + "" + ], + "section_ids": [ + "s1", + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12" + ] + }, + "split_info": { + "is_split": true, + "part": 1, + "total_parts": 1, + "original_id": "ui-framework-create_with_widget", + "group_line_count": 326 + }, + "section_map": [ { - "section_id": "s9", - "heading": "", + "section_id": "s1", + "heading": "画面のテンプレートを用意する", "rst_labels": [] }, { - "section_id": "s10", - "heading": "UI標準2.2. ワイド表示モードの画面構成", + "section_id": "s2", + "heading": "画面をブラウザで表示する", "rst_labels": [] }, { - "section_id": "s11", - "heading": "", + "section_id": "s3", + "heading": "UI部品(ウィジェット)を配置していく", "rst_labels": [] }, { - "section_id": "s12", - "heading": "UI標準2.3. コンパクト表示モードの画面構成", + "section_id": "s4", + "heading": "ウィジェットに定義されている属性について", "rst_labels": [] }, { - "section_id": "s13", - "heading": "", + "section_id": "s5", + "heading": "画面遷移について", "rst_labels": [] }, { - "section_id": "s14", - "heading": "UI標準2.4. ナロー表示モードの画面構成", + "section_id": "s6", + "heading": "ウィジェットの作成について", "rst_labels": [] }, { - "section_id": "s15", - "heading": "", - "rst_labels": [] + "section_id": "s7", + "heading": "入力画面と確認画面の共用", + "rst_labels": [ + "example" + ] }, { - "section_id": "s16", - "heading": "UI標準2.5.画面内の入出力項目に関する共通仕様", + "section_id": "s8", + "heading": "業務画面JSPの例", "rst_labels": [] }, { - "section_id": "s17", + "section_id": "s9", "heading": "", - "rst_labels": [] - }, - { - "section_id": "s18", - "heading": "UI標準2.6. WEB標準に準拠しないブラウザでの表示制約", - "rst_labels": [] + "rst_labels": [ + "input" + ] }, { - "section_id": "s19", + "section_id": "s10", "heading": "", - "rst_labels": [] - }, - { - "section_id": "s20", - "heading": "UI標準2.11. 共通エラー画面の構成", - "rst_labels": [] + "rst_labels": [ + "confirm" + ] }, { - "section_id": "s21", + "section_id": "s11", "heading": "", - "rst_labels": [] - }, - { - "section_id": "s22", - "heading": "UI標準3. UI部品 (UI部品カタログ)", - "rst_labels": [] + "rst_labels": [ + "list_search" + ] }, { - "section_id": "s23", + "section_id": "s12", "heading": "", - "rst_labels": [] - }, - { - "section_id": "s24", - "heading": "開閉可能領域", - "rst_labels": [] + "rst_labels": [ + "detail" + ] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/box_title.rst", - "format": "rst", - "filename": "box_title.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-box_title", - "base_name": "ui-framework-box_title", - "output_path": "component/ui-framework/ui-framework-box_title.json", - "assets_dir": "component/ui-framework/assets/ui-framework-box_title/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_label.rst", - "format": "rst", - "filename": "column_label.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-column_label", - "base_name": "ui-framework-column_label", - "output_path": "component/ui-framework/ui-framework-column_label.json", - "assets_dir": "component/ui-framework/assets/ui-framework-column_label/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label_block.rst", - "format": "rst", - "filename": "field_label_block.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_label_block", - "base_name": "ui-framework-field_label_block", - "output_path": "component/ui-framework/ui-framework-field_label_block.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_label_block/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_condition.rst", - "format": "rst", - "filename": "spec_condition.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_condition", - "base_name": "ui-framework-spec_condition", - "output_path": "component/ui-framework/ui-framework-spec_condition.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_condition/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_checkbox.rst", - "format": "rst", - "filename": "column_checkbox.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-column_checkbox", - "base_name": "ui-framework-column_checkbox", - "output_path": "component/ui-framework/ui-framework-column_checkbox.json", - "assets_dir": "component/ui-framework/assets/ui-framework-column_checkbox/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_checkbox.rst", - "format": "rst", - "filename": "field_checkbox.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_checkbox", - "base_name": "ui-framework-field_checkbox", - "output_path": "component/ui-framework/ui-framework-field_checkbox.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_checkbox/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/button_submit.rst", + "source_path": ".lw/nab-official/v1.4/MessagingSimu/doc/index.rst", "format": "rst", - "filename": "button_submit.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-button_submit--s1", - "base_name": "ui-framework-button_submit", - "output_path": "component/ui-framework/ui-framework-button_submit--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-button_submit--s1/", + "filename": "index.rst", + "type": "guide", + "category": "biz-samples", + "id": "biz-samples-doc--s1", + "base_name": "biz-samples-doc", + "output_path": "guide/biz-samples/biz-samples-doc--s1.json", + "assets_dir": "guide/biz-samples/assets/biz-samples-doc--s1/", "section_range": { "start_line": 0, - "end_line": 185, + "end_line": 209, "sections": [ - "**共通属性**", - "**共通属性(ポップアップを除く)**", - "**ポップアップ・汎用ボタンのみの属性**", - "**ポップアップボタンのみの属性**", - "**特定ボタン固有の属性**" + "疎通テスト", + "結合テスト", + "負荷テスト", + "シミュレータがMOM同期応答メッセージ受信を行う場合", + "シミュレータがMOM同期応答メッセージ送信を行う場合", + "シミュレータがMOM応答不要メッセージ送信を行う場合", + "シミュレータがHTTPメッセージ受信を行う場合", + "シミュレータがHTTPメッセージ送信を行う場合", + "シミュレータがメッセージ受信する場合", + "シミュレータがメッセージ送信する場合", + "シミュレータがメッセージ受信する場合", + "シミュレータがメッセージ受信する場合", + "シミュレータがメッセージ送信する場合", + "", + "動作イメージ", + "", + "利用手順" ], "section_ids": [ "s1", "s2", "s3", "s4", - "s5" + "s5", + "s6", + "s7", + "s8", + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15", + "s16", + "s17" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 1, - "original_id": "ui-framework-button_submit", - "group_line_count": 185 + "original_id": "biz-samples-doc", + "group_line_count": 209 }, "section_map": [ { - "section_id": "s1", - "heading": "**共通属性**", + "section_id": "s1", + "heading": "疎通テスト", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "結合テスト", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "負荷テスト", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "シミュレータがMOM同期応答メッセージ受信を行う場合", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "シミュレータがMOM同期応答メッセージ送信を行う場合", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "シミュレータがMOM応答不要メッセージ送信を行う場合", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "シミュレータがHTTPメッセージ受信を行う場合", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "シミュレータがHTTPメッセージ送信を行う場合", "rst_labels": [] }, { - "section_id": "s2", - "heading": "**共通属性(ポップアップを除く)**", + "section_id": "s9", + "heading": "シミュレータがメッセージ受信する場合", "rst_labels": [] }, { - "section_id": "s3", - "heading": "**ポップアップ・汎用ボタンのみの属性**", + "section_id": "s10", + "heading": "シミュレータがメッセージ送信する場合", "rst_labels": [] }, { - "section_id": "s4", - "heading": "**ポップアップボタンのみの属性**", + "section_id": "s11", + "heading": "シミュレータがメッセージ受信する場合", "rst_labels": [] }, { - "section_id": "s5", - "heading": "**特定ボタン固有の属性**", + "section_id": "s12", + "heading": "シミュレータがメッセージ受信する場合", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_send_request.rst", - "format": "rst", - "filename": "event_send_request.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_send_request", - "base_name": "ui-framework-event_send_request", - "output_path": "component/ui-framework/ui-framework-event_send_request.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_send_request/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-reference_jsp_widgets", - "base_name": "ui-framework-reference_jsp_widgets", - "output_path": "component/ui-framework/ui-framework-reference_jsp_widgets.json", - "assets_dir": "component/ui-framework/assets/ui-framework-reference_jsp_widgets/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_alert.rst", - "format": "rst", - "filename": "event_alert.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_alert", - "base_name": "ui-framework-event_alert", - "output_path": "component/ui-framework/ui-framework-event_alert.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_alert/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label_id_value.rst", - "format": "rst", - "filename": "field_label_id_value.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_label_id_value", - "base_name": "ui-framework-field_label_id_value", - "output_path": "component/ui-framework/ui-framework-field_label_id_value.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_label_id_value/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_radio.rst", - "format": "rst", - "filename": "column_radio.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-column_radio", - "base_name": "ui-framework-column_radio", - "output_path": "component/ui-framework/ui-framework-column_radio.json", - "assets_dir": "component/ui-framework/assets/ui-framework-column_radio/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label.rst", - "format": "rst", - "filename": "field_label.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_label", - "base_name": "ui-framework-field_label", - "output_path": "component/ui-framework/ui-framework-field_label.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_label/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_row.rst", - "format": "rst", - "filename": "table_row.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-table_row", - "base_name": "ui-framework-table_row", - "output_path": "component/ui-framework/ui-framework-table_row.json", - "assets_dir": "component/ui-framework/assets/ui-framework-table_row/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/button_block.rst", - "format": "rst", - "filename": "button_block.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-button_block", - "base_name": "ui-framework-button_block", - "output_path": "component/ui-framework/ui-framework-button_block.json", - "assets_dir": "component/ui-framework/assets/ui-framework-button_block/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_code.rst", - "format": "rst", - "filename": "column_code.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-column_code", - "base_name": "ui-framework-column_code", - "output_path": "component/ui-framework/ui-framework-column_code.json", - "assets_dir": "component/ui-framework/assets/ui-framework-column_code/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_hint.rst", - "format": "rst", - "filename": "field_hint.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_hint", - "base_name": "ui-framework-field_hint", - "output_path": "component/ui-framework/ui-framework-field_hint.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_hint/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_toggle_readonly.rst", - "format": "rst", - "filename": "event_toggle_readonly.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_toggle_readonly", - "base_name": "ui-framework-event_toggle_readonly", - "output_path": "component/ui-framework/ui-framework-event_toggle_readonly.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_toggle_readonly/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/column_link.rst", - "format": "rst", - "filename": "column_link.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-column_link", - "base_name": "ui-framework-column_link", - "output_path": "component/ui-framework/ui-framework-column_link.json", - "assets_dir": "component/ui-framework/assets/ui-framework-column_link/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/box_img.rst", - "format": "rst", - "filename": "box_img.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-box_img", - "base_name": "ui-framework-box_img", - "output_path": "component/ui-framework/ui-framework-box_img.json", - "assets_dir": "component/ui-framework/assets/ui-framework-box_img/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_desc.rst", - "format": "rst", - "filename": "spec_desc.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_desc", - "base_name": "ui-framework-spec_desc", - "output_path": "component/ui-framework/ui-framework-spec_desc.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_desc/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_password.rst", - "format": "rst", - "filename": "field_password.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_password", - "base_name": "ui-framework-field_password", - "output_path": "component/ui-framework/ui-framework-field_password.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_password/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_pulldown.rst", - "format": "rst", - "filename": "field_pulldown.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_pulldown", - "base_name": "ui-framework-field_pulldown", - "output_path": "component/ui-framework/ui-framework-field_pulldown.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_pulldown/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_listen_subwindow.rst", - "format": "rst", - "filename": "event_listen_subwindow.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_listen_subwindow", - "base_name": "ui-framework-event_listen_subwindow", - "output_path": "component/ui-framework/ui-framework-event_listen_subwindow.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_listen_subwindow/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_block.rst", - "format": "rst", - "filename": "field_block.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_block", - "base_name": "ui-framework-field_block", - "output_path": "component/ui-framework/ui-framework-field_block.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_block/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_file.rst", - "format": "rst", - "filename": "field_file.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_file", - "base_name": "ui-framework-field_file", - "output_path": "component/ui-framework/ui-framework-field_file.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_file/", - "section_map": [] + }, + { + "section_id": "s13", + "heading": "シミュレータがメッセージ送信する場合", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "動作イメージ", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "利用手順", + "rst_labels": [] + } + ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/link_submit.rst", + "source_path": ".lw/nab-official/v1.4/document/TOP/top/nablarch/index.rst", "format": "rst", - "filename": "link_submit.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-link_submit--s1", - "base_name": "ui-framework-link_submit", - "output_path": "component/ui-framework/ui-framework-link_submit--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-link_submit--s1/", + "filename": "index.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-top-nablarch--s1", + "base_name": "about-nablarch-top-nablarch", + "output_path": "about/about-nablarch/about-nablarch-top-nablarch--s1.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-top-nablarch--s1/", "section_range": { "start_line": 0, - "end_line": 93, + "end_line": 11, "sections": [ - "共通属性", - "汎用リンクのみの属性", - "ポップアップリンクのみの属性" + "" ], "section_ids": [ - "s1", - "s2", - "s3" + "s1" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "ui-framework-link_submit", - "group_line_count": 93 + "total_parts": 3, + "original_id": "about-nablarch-top-nablarch", + "group_line_count": 11 }, "section_map": [ { "section_id": "s1", - "heading": "共通属性", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "汎用リンクのみの属性", + "heading": "フォルダ構成", "rst_labels": [] }, { "section_id": "s3", - "heading": "ポップアップリンクのみの属性", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "コンテンツの見方", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_code_pulldown.rst", - "format": "rst", - "filename": "field_code_pulldown.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_code_pulldown", - "base_name": "ui-framework-field_code_pulldown", - "output_path": "component/ui-framework/ui-framework-field_code_pulldown.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_code_pulldown/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_textarea.rst", - "format": "rst", - "filename": "field_textarea.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_textarea", - "base_name": "ui-framework-field_textarea", - "output_path": "component/ui-framework/ui-framework-field_textarea.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_textarea/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_write_to.rst", - "format": "rst", - "filename": "event_write_to.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_write_to", - "base_name": "ui-framework-event_write_to", - "output_path": "component/ui-framework/ui-framework-event_write_to.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_write_to/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_author.rst", - "format": "rst", - "filename": "spec_author.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_author", - "base_name": "ui-framework-spec_author", - "output_path": "component/ui-framework/ui-framework-spec_author.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_author/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_base.rst", - "format": "rst", - "filename": "field_base.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_base", - "base_name": "ui-framework-field_base", - "output_path": "component/ui-framework/ui-framework-field_base.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_base/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_listen.rst", - "format": "rst", - "filename": "event_listen.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_listen", - "base_name": "ui-framework-event_listen", - "output_path": "component/ui-framework/ui-framework-event_listen.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_listen/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_code_radio.rst", - "format": "rst", - "filename": "field_code_radio.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_code_radio", - "base_name": "ui-framework-field_code_radio", - "output_path": "component/ui-framework/ui-framework-field_code_radio.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_code_radio/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_layout.rst", - "format": "rst", - "filename": "spec_layout.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_layout", - "base_name": "ui-framework-spec_layout", - "output_path": "component/ui-framework/ui-framework-spec_layout.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_layout/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_calendar.rst", - "format": "rst", - "filename": "field_calendar.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_calendar", - "base_name": "ui-framework-field_calendar", - "output_path": "component/ui-framework/ui-framework-field_calendar.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_calendar/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_search_result.rst", - "format": "rst", - "filename": "table_search_result.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-table_search_result", - "base_name": "ui-framework-table_search_result", - "output_path": "component/ui-framework/ui-framework-table_search_result.json", - "assets_dir": "component/ui-framework/assets/ui-framework-table_search_result/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_confirm.rst", - "format": "rst", - "filename": "event_confirm.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_confirm", - "base_name": "ui-framework-event_confirm", - "output_path": "component/ui-framework/ui-framework-event_confirm.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_confirm/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_updated_date.rst", - "format": "rst", - "filename": "spec_updated_date.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_updated_date", - "base_name": "ui-framework-spec_updated_date", - "output_path": "component/ui-framework/ui-framework-spec_updated_date.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_updated_date/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_listbuilder.rst", - "format": "rst", - "filename": "field_listbuilder.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_listbuilder", - "base_name": "ui-framework-field_listbuilder", - "output_path": "component/ui-framework/ui-framework-field_listbuilder.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_listbuilder/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_toggle_property.rst", - "format": "rst", - "filename": "event_toggle_property.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_toggle_property", - "base_name": "ui-framework-event_toggle_property", - "output_path": "component/ui-framework/ui-framework-event_toggle_property.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_toggle_property/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/tab_group.rst", + "source_path": ".lw/nab-official/v1.4/document/TOP/top/nablarch/index.rst", "format": "rst", - "filename": "tab_group.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-tab_group--s1", - "base_name": "ui-framework-tab_group", - "output_path": "component/ui-framework/ui-framework-tab_group--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-tab_group--s1/", + "filename": "index.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-top-nablarch--s2", + "base_name": "about-nablarch-top-nablarch", + "output_path": "about/about-nablarch/about-nablarch-top-nablarch--s2.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-top-nablarch--s2/", "section_range": { - "start_line": 0, - "end_line": 132, + "start_line": 11, + "end_line": 858, "sections": [ - "****", - "****", - "****" + "フォルダ構成" ], "section_ids": [ - "s1", - "s2", - "s3" + "s2" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-tab_group", - "group_line_count": 132 + "part": 2, + "total_parts": 3, + "original_id": "about-nablarch-top-nablarch", + "group_line_count": 847 }, "section_map": [ { "section_id": "s1", - "heading": "****", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "****", + "heading": "フォルダ構成", "rst_labels": [] }, { "section_id": "s3", - "heading": "****", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "コンテンツの見方", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_toggle_disabled.rst", - "format": "rst", - "filename": "event_toggle_disabled.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_toggle_disabled", - "base_name": "ui-framework-event_toggle_disabled", - "output_path": "component/ui-framework/ui-framework-event_toggle_disabled.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_toggle_disabled/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_treelist.rst", - "format": "rst", - "filename": "table_treelist.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-table_treelist", - "base_name": "ui-framework-table_treelist", - "output_path": "component/ui-framework/ui-framework-table_treelist.json", - "assets_dir": "component/ui-framework/assets/ui-framework-table_treelist/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_radio.rst", - "format": "rst", - "filename": "field_radio.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_radio", - "base_name": "ui-framework-field_radio", - "output_path": "component/ui-framework/ui-framework-field_radio.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_radio/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/box_content.rst", - "format": "rst", - "filename": "box_content.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-box_content", - "base_name": "ui-framework-box_content", - "output_path": "component/ui-framework/ui-framework-box_content.json", - "assets_dir": "component/ui-framework/assets/ui-framework-box_content/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/table_plain.rst", - "format": "rst", - "filename": "table_plain.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-table_plain", - "base_name": "ui-framework-table_plain", - "output_path": "component/ui-framework/ui-framework-table_plain.json", - "assets_dir": "component/ui-framework/assets/ui-framework-table_plain/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_created_date.rst", - "format": "rst", - "filename": "spec_created_date.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_created_date", - "base_name": "ui-framework-spec_created_date", - "output_path": "component/ui-framework/ui-framework-spec_created_date.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_created_date/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_text.rst", - "format": "rst", - "filename": "field_text.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_text", - "base_name": "ui-framework-field_text", - "output_path": "component/ui-framework/ui-framework-field_text.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_text/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_validation.rst", - "format": "rst", - "filename": "spec_validation.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_validation", - "base_name": "ui-framework-spec_validation", - "output_path": "component/ui-framework/ui-framework-spec_validation.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_validation/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_label_code.rst", - "format": "rst", - "filename": "field_label_code.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_label_code", - "base_name": "ui-framework-field_label_code", - "output_path": "component/ui-framework/ui-framework-field_label_code.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_label_code/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/event_window_close.rst", - "format": "rst", - "filename": "event_window_close.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-event_window_close", - "base_name": "ui-framework-event_window_close", - "output_path": "component/ui-framework/ui-framework-event_window_close.json", - "assets_dir": "component/ui-framework/assets/ui-framework-event_window_close/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/field_code_checkbox.rst", - "format": "rst", - "filename": "field_code_checkbox.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-field_code_checkbox", - "base_name": "ui-framework-field_code_checkbox", - "output_path": "component/ui-framework/ui-framework-field_code_checkbox.json", - "assets_dir": "component/ui-framework/assets/ui-framework-field_code_checkbox/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/reference_jsp_widgets/spec_updated_by.rst", - "format": "rst", - "filename": "spec_updated_by.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-spec_updated_by", - "base_name": "ui-framework-spec_updated_by", - "output_path": "component/ui-framework/ui-framework-spec_updated_by.json", - "assets_dir": "component/ui-framework/assets/ui-framework-spec_updated_by/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/ui_development_workflow.rst", + "source_path": ".lw/nab-official/v1.4/document/TOP/top/nablarch/index.rst", "format": "rst", - "filename": "ui_development_workflow.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-ui_development_workflow--s1", - "base_name": "ui-framework-ui_development_workflow", - "output_path": "component/ui-framework/ui-framework-ui_development_workflow--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-ui_development_workflow--s1/", + "filename": "index.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-top-nablarch--s3", + "base_name": "about-nablarch-top-nablarch", + "output_path": "about/about-nablarch/about-nablarch-top-nablarch--s3.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-top-nablarch--s3/", "section_range": { - "start_line": 0, - "end_line": 49, + "start_line": 858, + "end_line": 906, "sections": [ "", - "UI開発ワークフロー" + "コンテンツの見方" ], "section_ids": [ - "s1", - "s2" + "s3", + "s4" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-ui_development_workflow", - "group_line_count": 49 + "part": 3, + "total_parts": 3, + "original_id": "about-nablarch-top-nablarch", + "group_line_count": 48 }, "section_map": [ { @@ -35721,55 +35843,103 @@ }, { "section_id": "s2", - "heading": "UI開発ワークフロー", + "heading": "フォルダ構成", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "コンテンツの見方", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/guide/03_DevelopmentStep/09_confirm_operation.rst", + "format": "rst", + "filename": "09_confirm_operation.rst", + "type": "guide", + "category": "web-application", + "id": "web-application-09_confirm_operation", + "base_name": "web-application-09_confirm_operation", + "output_path": "guide/web-application/web-application-09_confirm_operation.json", + "assets_dir": "guide/web-application/assets/web-application-09_confirm_operation/", + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "動作確認の実施", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/guide/03_DevelopmentStep/02_flow.rst", + "format": "rst", + "filename": "02_flow.rst", + "type": "guide", + "category": "web-application", + "id": "web-application-02_flow", + "base_name": "web-application-02_flow", + "output_path": "guide/web-application/web-application-02_flow.json", + "assets_dir": "guide/web-application/assets/web-application-02_flow/", + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "開発フロー", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/required_knowledge.rst", - "format": "rst", - "filename": "required_knowledge.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-required_knowledge", - "base_name": "ui-framework-required_knowledge", - "output_path": "component/ui-framework/ui-framework-required_knowledge.json", - "assets_dir": "component/ui-framework/assets/ui-framework-required_knowledge/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/grand_design.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/01_FailureLog.rst", "format": "rst", - "filename": "grand_design.rst", + "filename": "01_FailureLog.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-grand_design--s1", - "base_name": "ui-framework-grand_design", - "output_path": "component/ui-framework/ui-framework-grand_design--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-grand_design--s1/", + "category": "libraries", + "id": "libraries-01_FailureLog--s1", + "base_name": "libraries-01_FailureLog", + "output_path": "component/libraries/libraries-01_FailureLog--s1.json", + "assets_dir": "component/libraries/assets/libraries-01_FailureLog--s1/", "section_range": { "start_line": 0, - "end_line": 118, + "end_line": 389, "sections": [ "", - "業務画面JSPの記述", - "", - "UI標準と共通部品" + "障害ログの出力方針", + "障害ログの出力項目", + "障害ログの出力方法", + "障害ログの設定方法", + "障害ログの出力例" ], "section_ids": [ "s1", "s2", "s3", - "s4" + "s4", + "s5", + "s6" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "ui-framework-grand_design", - "group_line_count": 118 + "total_parts": 3, + "original_id": "libraries-01_FailureLog", + "group_line_count": 389 }, "section_map": [ { @@ -35779,141 +35949,173 @@ }, { "section_id": "s2", - "heading": "業務画面JSPの記述", + "heading": "障害ログの出力方針", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "障害ログの出力項目", "rst_labels": [] }, { "section_id": "s4", - "heading": "UI標準と共通部品", + "heading": "障害ログの出力方法", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "障害ログの設定方法", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "障害ログの出力例", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "障害の連絡先情報の追加方法", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "アプリケーションの障害コードの変更方法", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "フレームワークの障害コードの変更方法", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "派生元実行時情報の出力方法", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "プレースホルダのカスタマイズ方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/introduction/intention.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/01_FailureLog.rst", "format": "rst", - "filename": "intention.rst", + "filename": "01_FailureLog.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-intention--s1", - "base_name": "ui-framework-intention", - "output_path": "component/ui-framework/ui-framework-intention--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-intention--s1/", + "category": "libraries", + "id": "libraries-01_FailureLog--s7", + "base_name": "libraries-01_FailureLog", + "output_path": "component/libraries/libraries-01_FailureLog--s7.json", + "assets_dir": "component/libraries/assets/libraries-01_FailureLog--s7/", "section_range": { - "start_line": 0, - "end_line": 128, + "start_line": 389, + "end_line": 700, "sections": [ - "問題点", - "アプローチ", - "メリット", - "問題点", - "アプローチ", - "メリット" + "障害の連絡先情報の追加方法", + "アプリケーションの障害コードの変更方法", + "フレームワークの障害コードの変更方法", + "派生元実行時情報の出力方法" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" + "s7", + "s8", + "s9", + "s10" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-intention", - "group_line_count": 128 + "part": 2, + "total_parts": 3, + "original_id": "libraries-01_FailureLog", + "group_line_count": 311 }, "section_map": [ { "section_id": "s1", - "heading": "問題点", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "アプローチ", + "heading": "障害ログの出力方針", "rst_labels": [] }, { "section_id": "s3", - "heading": "メリット", + "heading": "障害ログの出力項目", "rst_labels": [] }, { "section_id": "s4", - "heading": "問題点", + "heading": "障害ログの出力方法", "rst_labels": [] }, { "section_id": "s5", - "heading": "アプローチ", + "heading": "障害ログの設定方法", "rst_labels": [] }, { "section_id": "s6", - "heading": "メリット", + "heading": "障害ログの出力例", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "障害の連絡先情報の追加方法", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "アプリケーションの障害コードの変更方法", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "フレームワークの障害コードの変更方法", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "派生元実行時情報の出力方法", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "プレースホルダのカスタマイズ方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/jsp_widgets.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/01_FailureLog.rst", "format": "rst", - "filename": "jsp_widgets.rst", + "filename": "01_FailureLog.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-jsp_widgets--s1", - "base_name": "ui-framework-jsp_widgets", - "output_path": "component/ui-framework/ui-framework-jsp_widgets--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-jsp_widgets--s1/", + "category": "libraries", + "id": "libraries-01_FailureLog--s11", + "base_name": "libraries-01_FailureLog", + "output_path": "component/libraries/libraries-01_FailureLog--s11.json", + "assets_dir": "component/libraries/assets/libraries-01_FailureLog--s11/", "section_range": { - "start_line": 0, - "end_line": 345, + "start_line": 700, + "end_line": 810, "sections": [ - "", - "概要", - "", - "構造", - "**buttonタグ**", - "**fieldタグ**", - "**linkタグ**", - "**tabタグ**", - "**tableタグ**", - "**columnタグ**", - "**boxタグ**", - "", - "ローカル動作時の挙動" + "プレースホルダのカスタマイズ方法" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13" + "s11" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-jsp_widgets", - "group_line_count": 345 + "part": 3, + "total_parts": 3, + "original_id": "libraries-01_FailureLog", + "group_line_count": 110 }, "section_map": [ { @@ -35923,7 +36125,75 @@ }, { "section_id": "s2", - "heading": "概要", + "heading": "障害ログの出力方針", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "障害ログの出力項目", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "障害ログの出力方法", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "障害ログの設定方法", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "障害ログの出力例", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "障害の連絡先情報の追加方法", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "アプリケーションの障害コードの変更方法", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "フレームワークの障害コードの変更方法", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "派生元実行時情報の出力方法", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "プレースホルダのカスタマイズ方法", + "rst_labels": [] + } + ] + }, + { + "source_path": ".lw/nab-official/v1.4/document/fw/01_SystemConstitution/02_I18N.rst", + "format": "rst", + "filename": "02_I18N.rst", + "type": "about", + "category": "about-nablarch", + "id": "about-nablarch-02_I18N", + "base_name": "about-nablarch-02_I18N", + "output_path": "about/about-nablarch/about-nablarch-02_I18N.json", + "assets_dir": "about/about-nablarch/assets/about-nablarch-02_I18N/", + "section_map": [ + { + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "RDBMS上データの保持方法", "rst_labels": [] }, { @@ -35933,340 +36203,378 @@ }, { "section_id": "s4", - "heading": "構造", + "heading": "言語を指定した取得方法", "rst_labels": [] }, { "section_id": "s5", - "heading": "**buttonタグ**", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "**fieldタグ**", + "heading": "フレームワーク内で作成するログ出力メッセージの使用言語", "rst_labels": [] }, { "section_id": "s7", - "heading": "**linkタグ**", + "heading": "", "rst_labels": [] }, { "section_id": "s8", - "heading": "**tabタグ**", - "rst_labels": [] + "heading": "ファイル入出力の文字コード", + "rst_labels": [ + "i18n_lang_select_keep" + ] }, { "section_id": "s9", - "heading": "**tableタグ**", + "heading": "", "rst_labels": [] }, { "section_id": "s10", - "heading": "**columnタグ**", + "heading": "言語の選択と保持", "rst_labels": [] }, { "section_id": "s11", - "heading": "**boxタグ**", + "heading": "", "rst_labels": [] }, { "section_id": "s12", - "heading": "", + "heading": "タイムゾーンの選択と保持", "rst_labels": [] }, { "section_id": "s13", - "heading": "ローカル動作時の挙動", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "JSPファイルおよび静的ファイルのパス", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/configuration_files.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/common_library/file_upload_utility.rst", "format": "rst", - "filename": "configuration_files.rst", + "filename": "file_upload_utility.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-configuration_files--s1", - "base_name": "ui-framework-configuration_files", - "output_path": "component/ui-framework/ui-framework-configuration_files--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-configuration_files--s1/", - "section_range": { - "start_line": 0, - "end_line": 74, - "sections": [ - "", - "タグ定義" - ], - "section_ids": [ - "s1", - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-configuration_files", - "group_line_count": 74 - }, + "category": "libraries", + "id": "libraries-file_upload_utility", + "base_name": "libraries-file_upload_utility", + "output_path": "component/libraries/libraries-file_upload_utility.json", + "assets_dir": "component/libraries/assets/libraries-file_upload_utility/", "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "クラス定義", "rst_labels": [] }, { "section_id": "s2", - "heading": "タグ定義", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "使用方法", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "フォーマット定義ファイルパスの指定", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "精査エラー発生時のメッセージID指定", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "精査処理を実装したクラス、メソッドの指定", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "データベース一括登録", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "データベース一括登録(独自実装)", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/css_framework.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/mail.rst", "format": "rst", - "filename": "css_framework.rst", + "filename": "mail.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-css_framework--s1", - "base_name": "ui-framework-css_framework", - "output_path": "component/ui-framework/ui-framework-css_framework--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-css_framework--s1/", + "category": "libraries", + "id": "libraries-mail--s1", + "base_name": "libraries-mail", + "output_path": "component/libraries/libraries-mail--s1.json", + "assets_dir": "component/libraries/assets/libraries-mail--s1/", "section_range": { "start_line": 0, - "end_line": 243, + "end_line": 305, "sections": [ - "", - "概要", - "", - "表示モード切替え", - "", - "ファイル構成", - "構成ファイル一覧", - "**ビルド済みCSSファイル**", - "**LESSファイル**", - "", - "グリッドベースレイアウト", - "グリッドレイアウトフレームワークの使用方法", - "", - "アイコンの使用" + "クラス図", + "各クラスの責務", + "テーブル定義", + "メール送信要求", + "メール送信要求実装例" ], "section_ids": [ "s1", "s2", "s3", "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14" + "s5" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "ui-framework-css_framework", - "group_line_count": 243 + "total_parts": 2, + "original_id": "libraries-mail", + "group_line_count": 305 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "クラス図", "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", - "rst_labels": [ - "display_mode" - ] + "heading": "各クラスの責務", + "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "テーブル定義", "rst_labels": [] }, { "section_id": "s4", - "heading": "表示モード切替え", + "heading": "メール送信要求", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "メール送信要求実装例", "rst_labels": [] }, { "section_id": "s6", - "heading": "ファイル構成", + "heading": "共通設定項目", "rst_labels": [] }, { "section_id": "s7", - "heading": "構成ファイル一覧", + "heading": "メール送信要求API用設定項目", "rst_labels": [] }, { "section_id": "s8", - "heading": "**ビルド済みCSSファイル**", + "heading": "逐次メール送信バッチ用設定項目", "rst_labels": [] }, { "section_id": "s9", - "heading": "**LESSファイル**", + "heading": "nablarch.common.mail.MailRequestTableの設定", "rst_labels": [] }, { "section_id": "s10", - "heading": "", + "heading": "nablarch.common.mail.MailRecipientTableの設定(全て必須)", "rst_labels": [] }, { "section_id": "s11", - "heading": "グリッドベースレイアウト", + "heading": "nablarch.common.mail.MailAttachedFileTableの設定(すべて必須)", "rst_labels": [] }, { "section_id": "s12", - "heading": "グリッドレイアウトフレームワークの使用方法", + "heading": "nablarch.common.mail.MailTemplateTableの設定(すべて必須)", "rst_labels": [] }, { "section_id": "s13", - "heading": "", + "heading": "nablarch.common.mail.MailConfigの設定", "rst_labels": [] }, { "section_id": "s14", - "heading": "アイコンの使用", + "heading": "nablarch.common.mail.MailRequestConfigの設定(すべて必須)", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "nablarch.common.mail.MailSessionConfigの設定", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/inbrowser_jsp_rendering.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/mail.rst", "format": "rst", - "filename": "inbrowser_jsp_rendering.rst", + "filename": "mail.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-inbrowser_jsp_rendering--s1", - "base_name": "ui-framework-inbrowser_jsp_rendering", - "output_path": "component/ui-framework/ui-framework-inbrowser_jsp_rendering--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-inbrowser_jsp_rendering--s1/", + "category": "libraries", + "id": "libraries-mail--s6", + "base_name": "libraries-mail", + "output_path": "component/libraries/libraries-mail--s6.json", + "assets_dir": "component/libraries/assets/libraries-mail--s6/", "section_range": { - "start_line": 0, - "end_line": 275, + "start_line": 305, + "end_line": 699, "sections": [ - "", - "概要", - "ローカルJSPレンダリング機能の有効化", - "業務画面JSPを記述する際の制約事項", - "", - "ローカル表示の仕組み", - "", - "構造", - "構成ファイル一覧" + "共通設定項目", + "メール送信要求API用設定項目", + "逐次メール送信バッチ用設定項目", + "nablarch.common.mail.MailRequestTableの設定", + "nablarch.common.mail.MailRecipientTableの設定(全て必須)", + "nablarch.common.mail.MailAttachedFileTableの設定(すべて必須)", + "nablarch.common.mail.MailTemplateTableの設定(すべて必須)", + "nablarch.common.mail.MailConfigの設定", + "nablarch.common.mail.MailRequestConfigの設定(すべて必須)", + "nablarch.common.mail.MailSessionConfigの設定" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", "s6", "s7", "s8", - "s9" + "s9", + "s10", + "s11", + "s12", + "s13", + "s14", + "s15" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-inbrowser_jsp_rendering", - "group_line_count": 275 + "part": 2, + "total_parts": 2, + "original_id": "libraries-mail", + "group_line_count": 394 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "クラス図", "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "各クラスの責務", "rst_labels": [] }, { "section_id": "s3", - "heading": "ローカルJSPレンダリング機能の有効化", + "heading": "テーブル定義", "rst_labels": [] }, { "section_id": "s4", - "heading": "業務画面JSPを記述する際の制約事項", + "heading": "メール送信要求", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "メール送信要求実装例", "rst_labels": [] }, { "section_id": "s6", - "heading": "ローカル表示の仕組み", + "heading": "共通設定項目", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "メール送信要求API用設定項目", "rst_labels": [] }, { "section_id": "s8", - "heading": "構造", + "heading": "逐次メール送信バッチ用設定項目", "rst_labels": [] }, { "section_id": "s9", - "heading": "構成ファイル一覧", + "heading": "nablarch.common.mail.MailRequestTableの設定", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "nablarch.common.mail.MailRecipientTableの設定(全て必須)", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "nablarch.common.mail.MailAttachedFileTableの設定(すべて必須)", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "nablarch.common.mail.MailTemplateTableの設定(すべて必須)", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "nablarch.common.mail.MailConfigの設定", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "nablarch.common.mail.MailRequestConfigの設定(すべて必須)", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "nablarch.common.mail.MailSessionConfigの設定", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/multicol_css_framework.rst", + "source_path": ".lw/nab-official/v1.4/document/tool/08_DefInfoGenerator/01_DefInfoGenerator.rst", "format": "rst", - "filename": "multicol_css_framework.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-multicol_css_framework--s1", - "base_name": "ui-framework-multicol_css_framework", - "output_path": "component/ui-framework/ui-framework-multicol_css_framework--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-multicol_css_framework--s1/", + "filename": "01_DefInfoGenerator.rst", + "type": "development-tools", + "category": "toolbox", + "id": "toolbox-01_DefInfoGenerator--s1", + "base_name": "toolbox-01_DefInfoGenerator", + "output_path": "development-tools/toolbox/toolbox-01_DefInfoGenerator--s1.json", + "assets_dir": "development-tools/toolbox/assets/toolbox-01_DefInfoGenerator--s1/", "section_range": { "start_line": 0, - "end_line": 274, + "end_line": 363, "sections": [ + "**出力ファイル毎の設定ファイル**", + "**共通の設定ファイル**", "", - "概要", - "", - "制約事項", - "", - "マルチレイアウトモードの適用方法", + "環境設定ファイル", + "入力となる設計書に関する設定", + "ファイル生成に関する設定", "", - "レイアウトの調整方法", - "" + "コンポーネント定義ファイル", + "入力ファイル読み取り設定", + "メッセージ設計書の読込設定", + "テーブル定義書の読込設定", + "コード設計書の読込設定" ], "section_ids": [ "s1", @@ -36277,27 +36585,28 @@ "s6", "s7", "s8", - "s9" + "s9", + "s10", + "s11", + "s12" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 2, - "original_id": "ui-framework-multicol_css_framework", - "group_line_count": 274 + "original_id": "toolbox-01_DefInfoGenerator", + "group_line_count": 363 }, "section_map": [ { "section_id": "s1", - "heading": "", - "rst_labels": [ - "multicol_mode" - ] + "heading": "**出力ファイル毎の設定ファイル**", + "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "**共通の設定ファイル**", "rst_labels": [] }, { @@ -36307,19 +36616,17 @@ }, { "section_id": "s4", - "heading": "制約事項", - "rst_labels": [ - "apply-multicol-layout" - ] + "heading": "環境設定ファイル", + "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "入力となる設計書に関する設定", "rst_labels": [] }, { "section_id": "s6", - "heading": "マルチレイアウトモードの適用方法", + "heading": "ファイル生成に関する設定", "rst_labels": [] }, { @@ -36329,165 +36636,156 @@ }, { "section_id": "s8", - "heading": "レイアウトの調整方法", + "heading": "コンポーネント定義ファイル", "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "入力ファイル読み取り設定", "rst_labels": [] }, { "section_id": "s10", - "heading": "使用例", + "heading": "メッセージ設計書の読込設定", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/multicol_css_framework.rst", - "format": "rst", - "filename": "multicol_css_framework.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-multicol_css_framework--s10", - "base_name": "ui-framework-multicol_css_framework", - "output_path": "component/ui-framework/ui-framework-multicol_css_framework--s10.json", - "assets_dir": "component/ui-framework/assets/ui-framework-multicol_css_framework--s10/", - "section_range": { - "start_line": 274, - "end_line": 489, - "sections": [ - "使用例" - ], - "section_ids": [ - "s10" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "ui-framework-multicol_css_framework", - "group_line_count": 215 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "", - "rst_labels": [ - "multicol_mode" - ] + "section_id": "s11", + "heading": "テーブル定義書の読込設定", + "rst_labels": [] }, { - "section_id": "s2", - "heading": "概要", + "section_id": "s12", + "heading": "コード設計書の読込設定", "rst_labels": [] }, { - "section_id": "s3", + "section_id": "s13", + "heading": "外部インターフェース設計書の読込設定", + "rst_labels": [] + }, + { + "section_id": "s14", "heading": "", "rst_labels": [] }, { - "section_id": "s4", - "heading": "制約事項", - "rst_labels": [ - "apply-multicol-layout" - ] + "section_id": "s15", + "heading": "出力形式", + "rst_labels": [] }, { - "section_id": "s5", - "heading": "", + "section_id": "s16", + "heading": "メッセージ設計", "rst_labels": [] }, { - "section_id": "s6", - "heading": "マルチレイアウトモードの適用方法", + "section_id": "s17", + "heading": "ドメイン定義", "rst_labels": [] }, { - "section_id": "s7", - "heading": "", + "section_id": "s18", + "heading": "精査処理定義", "rst_labels": [] }, { - "section_id": "s8", - "heading": "レイアウトの調整方法", + "section_id": "s19", + "heading": "データタイプ定義", "rst_labels": [] }, { - "section_id": "s9", + "section_id": "s20", + "heading": "テーブル定義", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "コード設計", + "rst_labels": [] + }, + { + "section_id": "s22", + "heading": "外部インターフェース設計", + "rst_labels": [] + }, + { + "section_id": "s23", "heading": "", "rst_labels": [] }, { - "section_id": "s10", - "heading": "使用例", + "section_id": "s24", + "heading": "定義データの出力仕様", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "エスケープ処理", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/jsp_page_templates.rst", - "format": "rst", - "filename": "jsp_page_templates.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-jsp_page_templates--s1", - "base_name": "ui-framework-jsp_page_templates", - "output_path": "component/ui-framework/ui-framework-jsp_page_templates--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-jsp_page_templates--s1/", + "source_path": ".lw/nab-official/v1.4/document/tool/08_DefInfoGenerator/01_DefInfoGenerator.rst", + "format": "rst", + "filename": "01_DefInfoGenerator.rst", + "type": "development-tools", + "category": "toolbox", + "id": "toolbox-01_DefInfoGenerator--s13", + "base_name": "toolbox-01_DefInfoGenerator", + "output_path": "development-tools/toolbox/toolbox-01_DefInfoGenerator--s13.json", + "assets_dir": "development-tools/toolbox/assets/toolbox-01_DefInfoGenerator--s13/", "section_range": { - "start_line": 0, - "end_line": 322, + "start_line": 363, + "end_line": 664, "sections": [ + "外部インターフェース設計書の読込設定", "", - "概要", - "", - "ファイル構成", - "概要", - "構成ファイル一覧", - "", - "業務画面テンプレートの詳細仕様", - "業務画面ベースレイアウト", - "業務画面標準テンプレート", - "エラー画面テンプレート", + "出力形式", + "メッセージ設計", + "ドメイン定義", + "精査処理定義", + "データタイプ定義", + "テーブル定義", + "コード設計", + "外部インターフェース設計", "", - "ローカル動作時の挙動" + "定義データの出力仕様", + "エスケープ処理" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13" + "s13", + "s14", + "s15", + "s16", + "s17", + "s18", + "s19", + "s20", + "s21", + "s22", + "s23", + "s24", + "s25" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-jsp_page_templates", - "group_line_count": 322 + "part": 2, + "total_parts": 2, + "original_id": "toolbox-01_DefInfoGenerator", + "group_line_count": 301 }, "section_map": [ { "section_id": "s1", - "heading": "", + "heading": "**出力ファイル毎の設定ファイル**", "rst_labels": [] }, { "section_id": "s2", - "heading": "概要", + "heading": "**共通の設定ファイル**", "rst_labels": [] }, { @@ -36497,17 +36795,17 @@ }, { "section_id": "s4", - "heading": "ファイル構成", + "heading": "環境設定ファイル", "rst_labels": [] }, { "section_id": "s5", - "heading": "概要", + "heading": "入力となる設計書に関する設定", "rst_labels": [] }, { "section_id": "s6", - "heading": "構成ファイル一覧", + "heading": "ファイル生成に関する設定", "rst_labels": [] }, { @@ -36517,175 +36815,118 @@ }, { "section_id": "s8", - "heading": "業務画面テンプレートの詳細仕様", - "rst_labels": [ - "base_layout_tag" - ] + "heading": "コンポーネント定義ファイル", + "rst_labels": [] }, { "section_id": "s9", - "heading": "業務画面ベースレイアウト", - "rst_labels": [ - "page_template_tag" - ] + "heading": "入力ファイル読み取り設定", + "rst_labels": [] }, { "section_id": "s10", - "heading": "業務画面標準テンプレート", - "rst_labels": [ - "errorpage_template_tag" - ] + "heading": "メッセージ設計書の読込設定", + "rst_labels": [] }, { "section_id": "s11", - "heading": "エラー画面テンプレート", + "heading": "テーブル定義書の読込設定", "rst_labels": [] }, { "section_id": "s12", - "heading": "", + "heading": "コード設計書の読込設定", "rst_labels": [] }, { "section_id": "s13", - "heading": "ローカル動作時の挙動", + "heading": "外部インターフェース設計書の読込設定", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/generating_form_class.rst", - "format": "rst", - "filename": "generating_form_class.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-generating_form_class-internals--s1", - "base_name": "ui-framework-generating_form_class-internals", - "output_path": "component/ui-framework/ui-framework-generating_form_class-internals--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-generating_form_class-internals--s1/", - "section_range": { - "start_line": 0, - "end_line": 387, - "sections": [ - "概要", - "使用方法", - "関連ファイル", - "出力仕様" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-generating_form_class-internals", - "group_line_count": 387 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "概要", + "section_id": "s14", + "heading": "", "rst_labels": [] }, { - "section_id": "s2", - "heading": "使用方法", + "section_id": "s15", + "heading": "出力形式", "rst_labels": [] }, { - "section_id": "s3", - "heading": "関連ファイル", + "section_id": "s16", + "heading": "メッセージ設計", "rst_labels": [] }, { - "section_id": "s4", - "heading": "出力仕様", + "section_id": "s17", + "heading": "ドメイン定義", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/showing_specsheet_view.rst", - "format": "rst", - "filename": "showing_specsheet_view.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-showing_specsheet_view--s1", - "base_name": "ui-framework-showing_specsheet_view", - "output_path": "component/ui-framework/ui-framework-showing_specsheet_view--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-showing_specsheet_view--s1/", - "section_range": { - "start_line": 0, - "end_line": 84, - "sections": [ - "概要", - "使用方法", - "関連ファイル" - ], - "section_ids": [ - "s1", - "s2", - "s3" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-showing_specsheet_view", - "group_line_count": 84 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "概要", + "section_id": "s18", + "heading": "精査処理定義", "rst_labels": [] }, { - "section_id": "s2", - "heading": "使用方法", + "section_id": "s19", + "heading": "データタイプ定義", "rst_labels": [] }, { - "section_id": "s3", - "heading": "関連ファイル", + "section_id": "s20", + "heading": "テーブル定義", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "コード設計", + "rst_labels": [] + }, + { + "section_id": "s22", + "heading": "外部インターフェース設計", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "定義データの出力仕様", + "rst_labels": [] + }, + { + "section_id": "s25", + "heading": "エスケープ処理", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/js_framework.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/thread_context.rst", "format": "rst", - "filename": "js_framework.rst", + "filename": "thread_context.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-js_framework--s1", - "base_name": "ui-framework-js_framework", - "output_path": "component/ui-framework/ui-framework-js_framework--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-js_framework--s1/", - "section_range": { - "start_line": 0, - "end_line": 254, - "sections": [ - "", - "概要", - "使用例", - "依存ライブラリ", - "", - "初期処理", - "スクリプトロード時の挙動", - "ドキュメントロード時の挙動", - "UI部品の再初期化", - "", - "ファイル構成", + "category": "libraries", + "id": "libraries-thread_context--s1", + "base_name": "libraries-thread_context", + "output_path": "component/libraries/libraries-thread_context--s1.json", + "assets_dir": "component/libraries/assets/libraries-thread_context--s1/", + "section_range": { + "start_line": 0, + "end_line": 345, + "sections": [ "", - "新規 JavaScript UI部品の作成方法", - "作成するファイル" + "同一スレッド内でのデータ共有(スレッドコンテキスト)", + "インタフェース定義", + "クラス定義", + "ThreadContextHandlerの設定", + "UserIdAttributeの設定", + "RequestIdAttributeの設定", + "InternalRequestIdAttributeの設定" ], "section_ids": [ "s1", @@ -36695,339 +36936,233 @@ "s5", "s6", "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14" + "s8" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 2, - "original_id": "ui-framework-js_framework", - "group_line_count": 254 + "original_id": "libraries-thread_context", + "group_line_count": 345 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "thread-context-label" + ] }, { "section_id": "s2", - "heading": "概要", + "heading": "同一スレッド内でのデータ共有(スレッドコンテキスト)", "rst_labels": [] }, { "section_id": "s3", - "heading": "使用例", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s4", - "heading": "依存ライブラリ", + "heading": "クラス定義", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "ThreadContextHandlerの設定", "rst_labels": [] }, { "section_id": "s6", - "heading": "初期処理", + "heading": "UserIdAttributeの設定", "rst_labels": [] }, { "section_id": "s7", - "heading": "スクリプトロード時の挙動", + "heading": "RequestIdAttributeの設定", "rst_labels": [] }, { "section_id": "s8", - "heading": "ドキュメントロード時の挙動", + "heading": "InternalRequestIdAttributeの設定", "rst_labels": [] }, { "section_id": "s9", - "heading": "UI部品の再初期化", + "heading": "LanguageAttributeの設定", "rst_labels": [] }, { "section_id": "s10", - "heading": "", + "heading": "TimeZoneAttributeの設定", "rst_labels": [] }, { "section_id": "s11", - "heading": "ファイル構成", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "新規 JavaScript UI部品の作成方法", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "作成するファイル", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "ウィジェットの実装例", + "heading": "ExecutionIdAttributeの設定", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/js_framework.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/core_library/thread_context.rst", "format": "rst", - "filename": "js_framework.rst", + "filename": "thread_context.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-js_framework--s15", - "base_name": "ui-framework-js_framework", - "output_path": "component/ui-framework/ui-framework-js_framework--s15.json", - "assets_dir": "component/ui-framework/assets/ui-framework-js_framework--s15/", + "category": "libraries", + "id": "libraries-thread_context--s9", + "base_name": "libraries-thread_context", + "output_path": "component/libraries/libraries-thread_context--s9.json", + "assets_dir": "component/libraries/assets/libraries-thread_context--s9/", "section_range": { - "start_line": 254, - "end_line": 423, + "start_line": 345, + "end_line": 707, "sections": [ - "ウィジェットの実装例" + "LanguageAttributeの設定", + "TimeZoneAttributeの設定", + "ExecutionIdAttributeの設定" ], "section_ids": [ - "s15" + "s9", + "s10", + "s11" ] }, "split_info": { "is_split": true, "part": 2, "total_parts": 2, - "original_id": "ui-framework-js_framework", - "group_line_count": 169 + "original_id": "libraries-thread_context", + "group_line_count": 362 }, "section_map": [ { "section_id": "s1", "heading": "", - "rst_labels": [] + "rst_labels": [ + "thread-context-label" + ] }, { "section_id": "s2", - "heading": "概要", + "heading": "同一スレッド内でのデータ共有(スレッドコンテキスト)", "rst_labels": [] }, { "section_id": "s3", - "heading": "使用例", + "heading": "インタフェース定義", "rst_labels": [] }, { "section_id": "s4", - "heading": "依存ライブラリ", + "heading": "クラス定義", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "ThreadContextHandlerの設定", "rst_labels": [] }, { "section_id": "s6", - "heading": "初期処理", + "heading": "UserIdAttributeの設定", "rst_labels": [] }, { "section_id": "s7", - "heading": "スクリプトロード時の挙動", + "heading": "RequestIdAttributeの設定", "rst_labels": [] }, { "section_id": "s8", - "heading": "ドキュメントロード時の挙動", + "heading": "InternalRequestIdAttributeの設定", "rst_labels": [] }, { "section_id": "s9", - "heading": "UI部品の再初期化", + "heading": "LanguageAttributeの設定", "rst_labels": [] }, { "section_id": "s10", - "heading": "", + "heading": "TimeZoneAttributeの設定", "rst_labels": [] }, { "section_id": "s11", - "heading": "ファイル構成", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "新規 JavaScript UI部品の作成方法", - "rst_labels": [] - }, - { - "section_id": "s14", - "heading": "作成するファイル", - "rst_labels": [] - }, - { - "section_id": "s15", - "heading": "ウィジェットの実装例", + "heading": "ExecutionIdAttributeの設定", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/internals/architecture_overview.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/05_MessagingLog.rst", "format": "rst", - "filename": "architecture_overview.rst", + "filename": "05_MessagingLog.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-architecture_overview--s1", - "base_name": "ui-framework-architecture_overview", - "output_path": "component/ui-framework/ui-framework-architecture_overview--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-architecture_overview--s1/", - "section_range": { - "start_line": 0, - "end_line": 120, - "sections": [ - "本番環境での外部ライブラリへの依存", - "サーバ動作時の構成", - "ローカル動作時の構成" - ], - "section_ids": [ - "s1", - "s2", - "s3" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-architecture_overview", - "group_line_count": 120 - }, + "category": "libraries", + "id": "libraries-05_MessagingLog", + "base_name": "libraries-05_MessagingLog", + "output_path": "component/libraries/libraries-05_MessagingLog.json", + "assets_dir": "component/libraries/assets/libraries-05_MessagingLog/", "section_map": [ { "section_id": "s1", - "heading": "本番環境での外部ライブラリへの依存", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "サーバ動作時の構成", + "heading": "メッセージングログの出力", "rst_labels": [] }, { "section_id": "s3", - "heading": "ローカル動作時の構成", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/modifying_code_and_testing.rst", - "format": "rst", - "filename": "modifying_code_and_testing.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-modifying_code_and_testing--s1", - "base_name": "ui-framework-modifying_code_and_testing", - "output_path": "component/ui-framework/ui-framework-modifying_code_and_testing--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-modifying_code_and_testing--s1/", - "section_range": { - "start_line": 0, - "end_line": 209, - "sections": [ - "1. 修正要件の確認", - "2. 修正箇所の特定", - "3. プラグインの追加", - "4. ビルドと修正確認", - "5. リポジトリへの反映" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-modifying_code_and_testing", - "group_line_count": 209 - }, - "section_map": [ - { - "section_id": "s1", - "heading": "1. 修正要件の確認", + "heading": "MOM送信メッセージのログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s2", - "heading": "2. 修正箇所の特定", - "rst_labels": [ - "add_plugin" - ] - }, - { - "section_id": "s3", - "heading": "3. プラグインの追加", + "section_id": "s4", + "heading": "MOM受信メッセージのログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s4", - "heading": "4. ビルドと修正確認", + "section_id": "s5", + "heading": "HTTP送信メッセージのログ出力に使用するフォーマット", "rst_labels": [] }, { - "section_id": "s5", - "heading": "5. リポジトリへの反映", + "section_id": "s6", + "heading": "HTTP受信メッセージのログ出力に使用するフォーマット", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/initial_setup.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/04_Permission.rst", "format": "rst", - "filename": "initial_setup.rst", + "filename": "04_Permission.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-initial_setup--s1", - "base_name": "ui-framework-initial_setup", - "output_path": "component/ui-framework/ui-framework-initial_setup--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-initial_setup--s1/", + "category": "libraries", + "id": "libraries-04_Permission--s1", + "base_name": "libraries-04_Permission", + "output_path": "component/libraries/libraries-04_Permission--s1.json", + "assets_dir": "component/libraries/assets/libraries-04_Permission--s1/", "section_range": { "start_line": 0, - "end_line": 378, + "end_line": 265, "sections": [ - "1. サードパーティライブラリの取得(要オンライン)", - "2. プロジェクトで使用するプラグインの選定", - "3. プロジェクトへのプラグインインストール", - "4. UI部品のビルドと配置", - "5. UIローカルデモ用プロジェクトの動作確認", - "6. UI開発基盤テスト用プロジェクトの動作確認" + "", + "概要", + "", + "特徴", + "", + "要求", + "", + "構成", + "" ], "section_ids": [ "s1", @@ -37035,943 +37170,822 @@ "s3", "s4", "s5", - "s6" + "s6", + "s7", + "s8", + "s9" ] }, "split_info": { "is_split": true, "part": 1, "total_parts": 2, - "original_id": "ui-framework-initial_setup", - "group_line_count": 378 + "original_id": "libraries-04_Permission", + "group_line_count": 265 }, "section_map": [ { "section_id": "s1", - "heading": "1. サードパーティライブラリの取得(要オンライン)", - "rst_labels": [] + "heading": "", + "rst_labels": [ + "permission" + ] }, { "section_id": "s2", - "heading": "2. プロジェクトで使用するプラグインの選定", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "3. プロジェクトへのプラグインインストール", - "rst_labels": [ - "executing_ui_build" - ] + "heading": "", + "rst_labels": [] }, { "section_id": "s4", - "heading": "4. UI部品のビルドと配置", + "heading": "特徴", "rst_labels": [] }, { "section_id": "s5", - "heading": "5. UIローカルデモ用プロジェクトの動作確認", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "6. UI開発基盤テスト用プロジェクトの動作確認", + "heading": "要求", "rst_labels": [] }, { "section_id": "s7", - "heading": "7. 開発リポジトリへの登録", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "構成", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "使用方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/initial_setup.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/04_Permission.rst", "format": "rst", - "filename": "initial_setup.rst", + "filename": "04_Permission.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-initial_setup--s7", - "base_name": "ui-framework-initial_setup", - "output_path": "component/ui-framework/ui-framework-initial_setup--s7.json", - "assets_dir": "component/ui-framework/assets/ui-framework-initial_setup--s7/", + "category": "libraries", + "id": "libraries-04_Permission--s10", + "base_name": "libraries-04_Permission", + "output_path": "component/libraries/libraries-04_Permission--s10.json", + "assets_dir": "component/libraries/assets/libraries-04_Permission--s10/", "section_range": { - "start_line": 378, - "end_line": 438, + "start_line": 265, + "end_line": 563, "sections": [ - "7. 開発リポジトリへの登録" + "使用方法" ], "section_ids": [ - "s7" + "s10" ] }, "split_info": { "is_split": true, "part": 2, "total_parts": 2, - "original_id": "ui-framework-initial_setup", - "group_line_count": 60 + "original_id": "libraries-04_Permission", + "group_line_count": 298 }, "section_map": [ { "section_id": "s1", - "heading": "1. サードパーティライブラリの取得(要オンライン)", - "rst_labels": [] + "heading": "", + "rst_labels": [ + "permission" + ] }, { "section_id": "s2", - "heading": "2. プロジェクトで使用するプラグインの選定", + "heading": "概要", "rst_labels": [] }, { "section_id": "s3", - "heading": "3. プロジェクトへのプラグインインストール", - "rst_labels": [ - "executing_ui_build" - ] + "heading": "", + "rst_labels": [] }, { "section_id": "s4", - "heading": "4. UI部品のビルドと配置", + "heading": "特徴", "rst_labels": [] }, { "section_id": "s5", - "heading": "5. UIローカルデモ用プロジェクトの動作確認", + "heading": "", "rst_labels": [] }, { "section_id": "s6", - "heading": "6. UI開発基盤テスト用プロジェクトの動作確認", + "heading": "要求", "rst_labels": [] }, { "section_id": "s7", - "heading": "7. 開発リポジトリへの登録", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "構成", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "使用方法", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/update_bundle_plugin.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", "format": "rst", - "filename": "update_bundle_plugin.rst", + "filename": "07_TagReference.rst", "type": "component", - "category": "ui-framework", - "id": "ui-framework-update_bundle_plugin--s1", - "base_name": "ui-framework-update_bundle_plugin", - "output_path": "component/ui-framework/ui-framework-update_bundle_plugin--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-update_bundle_plugin--s1/", + "category": "libraries", + "id": "libraries-07_TagReference--s1", + "base_name": "libraries-07_TagReference", + "output_path": "component/libraries/libraries-07_TagReference--s1.json", + "assets_dir": "component/libraries/assets/libraries-07_TagReference--s1/", "section_range": { "start_line": 0, - "end_line": 200, + "end_line": 400, "sections": [ - "1. 現在のプラグインのバージョンの確認", - "2. プラグインのマージ" + "", + "カスタムタグ一覧", + "全てのHTMLタグ", + "フォーカスを取得可能なHTMLタグ", + "formタグ", + "textタグ", + "textareaタグ", + "passwordタグ", + "radioButtonタグ", + "checkboxタグ" ], "section_ids": [ "s1", - "s2" + "s2", + "s3", + "s4", + "s5", + "s6", + "s7", + "s8", + "s9", + "s10" ] }, "split_info": { "is_split": true, "part": 1, - "total_parts": 1, - "original_id": "ui-framework-update_bundle_plugin", - "group_line_count": 200 + "total_parts": 4, + "original_id": "libraries-07_TagReference", + "group_line_count": 400 }, "section_map": [ { - "section_id": "s1", - "heading": "1. 現在のプラグインのバージョンの確認", + "section_id": "s1", + "heading": "", + "rst_labels": [] + }, + { + "section_id": "s2", + "heading": "カスタムタグ一覧", + "rst_labels": [] + }, + { + "section_id": "s3", + "heading": "全てのHTMLタグ", + "rst_labels": [] + }, + { + "section_id": "s4", + "heading": "フォーカスを取得可能なHTMLタグ", + "rst_labels": [] + }, + { + "section_id": "s5", + "heading": "formタグ", + "rst_labels": [] + }, + { + "section_id": "s6", + "heading": "textタグ", + "rst_labels": [] + }, + { + "section_id": "s7", + "heading": "textareaタグ", + "rst_labels": [] + }, + { + "section_id": "s8", + "heading": "passwordタグ", + "rst_labels": [] + }, + { + "section_id": "s9", + "heading": "radioButtonタグ", + "rst_labels": [] + }, + { + "section_id": "s10", + "heading": "checkboxタグ", + "rst_labels": [] + }, + { + "section_id": "s11", + "heading": "compositeKeyCheckboxタグ", + "rst_labels": [] + }, + { + "section_id": "s12", + "heading": "compositeKeyRadioButtonタグ", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "fileタグ", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "hiddenタグ", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "plainHiddenタグ", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "selectタグ", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "radioButtonsタグ", + "rst_labels": [] + }, + { + "section_id": "s18", + "heading": "checkboxesタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "2. プラグインのマージ", + "section_id": "s19", + "heading": "submitタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/doc/development_environment/redistribution.rst", - "format": "rst", - "filename": "redistribution.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-redistribution--s1", - "base_name": "ui-framework-redistribution", - "output_path": "component/ui-framework/ui-framework-redistribution--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-redistribution--s1/", - "section_range": { - "start_line": 0, - "end_line": 125, - "sections": [ - "作成手順", - "確認手順" - ], - "section_ids": [ - "s1", - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-redistribution", - "group_line_count": 125 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "作成手順", + "section_id": "s20", + "heading": "buttonタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "確認手順", + "section_id": "s21", + "heading": "submitLinkタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-guide--s1", - "base_name": "ui-framework-guide", - "output_path": "component/ui-framework/ui-framework-guide--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-guide--s1/", - "section_range": { - "start_line": 0, - "end_line": 82, - "sections": [ - "業務画面JSP作成フロー", - "業務画面JSP作成に利用する開発環境", - "業務画面JSPの作成方法", - "画面項目定義一覧の作成方法", - "フォームクラスの自動生成方法" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-guide", - "group_line_count": 82 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "業務画面JSP作成フロー", + "section_id": "s22", + "heading": "popupSubmitタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "業務画面JSP作成に利用する開発環境", + "section_id": "s23", + "heading": "popupButtonタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "業務画面JSPの作成方法", + "section_id": "s24", + "heading": "popupLinkタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "画面項目定義一覧の作成方法", + "section_id": "s25", + "heading": "downloadSubmitタグ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "フォームクラスの自動生成方法", + "section_id": "s26", + "heading": "downloadButtonタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/template_list.rst", - "format": "rst", - "filename": "template_list.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-template_list--s1", - "base_name": "ui-framework-template_list", - "output_path": "component/ui-framework/ui-framework-template_list--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-template_list--s1/", - "section_range": { - "start_line": 0, - "end_line": 215, - "sections": [ - "Eclipse補完テンプレートの導入方法", - "Eclipse補完テンプレートの一覧" - ], - "section_ids": [ - "s1", - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-template_list", - "group_line_count": 215 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "Eclipse補完テンプレートの導入方法", - "rst_labels": [ - "eclipse-template" - ] + "section_id": "s27", + "heading": "downloadLinkタグ", + "rst_labels": [] }, { - "section_id": "s2", - "heading": "Eclipse補完テンプレートの一覧", + "section_id": "s28", + "heading": "paramタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/develop_environment.rst", - "format": "rst", - "filename": "develop_environment.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-develop_environment--s1", - "base_name": "ui-framework-develop_environment", - "output_path": "component/ui-framework/ui-framework-develop_environment--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-develop_environment--s1/", - "section_range": { - "start_line": 0, - "end_line": 34, - "sections": [ - "統合開発環境の補完機能を利用する", - "統合開発環境のドキュメント参照機能を利用する" - ], - "section_ids": [ - "s1", - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-develop_environment", - "group_line_count": 34 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "統合開発環境の補完機能を利用する", + "section_id": "s29", + "heading": "changeParamNameタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "統合開発環境のドキュメント参照機能を利用する", + "section_id": "s30", + "heading": "aタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/widget_list.rst", - "format": "rst", - "filename": "widget_list.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-widget_list", - "base_name": "ui-framework-widget_list", - "output_path": "component/ui-framework/ui-framework-widget_list.json", - "assets_dir": "component/ui-framework/assets/ui-framework-widget_list/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/project_structure.rst", - "format": "rst", - "filename": "project_structure.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-project_structure", - "base_name": "ui-framework-project_structure", - "output_path": "component/ui-framework/ui-framework-project_structure.json", - "assets_dir": "component/ui-framework/assets/ui-framework-project_structure/", - "section_map": [] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/create_screen_item_list.rst", - "format": "rst", - "filename": "create_screen_item_list.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-create_screen_item_list", - "base_name": "ui-framework-create_screen_item_list", - "output_path": "component/ui-framework/ui-framework-create_screen_item_list.json", - "assets_dir": "component/ui-framework/assets/ui-framework-create_screen_item_list/", - "section_map": [ + }, + { + "section_id": "s31", + "heading": "imgタグ", + "rst_labels": [] + }, + { + "section_id": "s32", + "heading": "linkタグ", + "rst_labels": [] + }, + { + "section_id": "s33", + "heading": "scriptタグ", + "rst_labels": [] + }, + { + "section_id": "s34", + "heading": "errorsタグ", + "rst_labels": [] + }, { - "section_id": "s1", - "heading": "業務画面JSPから画面項目定義を作成する", + "section_id": "s35", + "heading": "errorタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/generating_form_class.rst", - "format": "rst", - "filename": "generating_form_class.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-generating_form_class-widget_usage--s1", - "base_name": "ui-framework-generating_form_class-widget_usage", - "output_path": "component/ui-framework/ui-framework-generating_form_class-widget_usage--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-generating_form_class-widget_usage--s1/", - "section_range": { - "start_line": 0, - "end_line": 38, - "sections": [ - "概要", - "使用方法" - ], - "section_ids": [ - "s1", - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-generating_form_class-widget_usage", - "group_line_count": 38 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "概要", + "section_id": "s36", + "heading": "noCacheタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "使用方法", + "section_id": "s37", + "heading": "codeSelectタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/ui_dev/guide/widget_usage/create_with_widget.rst", - "format": "rst", - "filename": "create_with_widget.rst", - "type": "component", - "category": "ui-framework", - "id": "ui-framework-create_with_widget--s1", - "base_name": "ui-framework-create_with_widget", - "output_path": "component/ui-framework/ui-framework-create_with_widget--s1.json", - "assets_dir": "component/ui-framework/assets/ui-framework-create_with_widget--s1/", - "section_range": { - "start_line": 0, - "end_line": 326, - "sections": [ - "画面のテンプレートを用意する", - "画面をブラウザで表示する", - "UI部品(ウィジェット)を配置していく", - "ウィジェットに定義されている属性について", - "画面遷移について", - "ウィジェットの作成について", - "入力画面と確認画面の共用", - "業務画面JSPの例", - "", - "", - "", - "" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "ui-framework-create_with_widget", - "group_line_count": 326 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "画面のテンプレートを用意する", + "section_id": "s38", + "heading": "codeRadioButtonsタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "画面をブラウザで表示する", + "section_id": "s39", + "heading": "codeCheckboxesタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "UI部品(ウィジェット)を配置していく", + "section_id": "s40", + "heading": "codeCheckboxタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "ウィジェットに定義されている属性について", + "section_id": "s41", + "heading": "codeタグ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "画面遷移について", + "section_id": "s42", + "heading": "messageタグ", "rst_labels": [] }, { - "section_id": "s6", - "heading": "ウィジェットの作成について", + "section_id": "s43", + "heading": "writeタグ", "rst_labels": [] }, { - "section_id": "s7", - "heading": "入力画面と確認画面の共用", - "rst_labels": [ - "example" - ] + "section_id": "s44", + "heading": "prettyPrintタグ", + "rst_labels": [] }, { - "section_id": "s8", - "heading": "業務画面JSPの例", + "section_id": "s45", + "heading": "rawWriteタグ", "rst_labels": [] }, { - "section_id": "s9", - "heading": "", - "rst_labels": [ - "input" - ] + "section_id": "s46", + "heading": "includeタグ", + "rst_labels": [] }, { - "section_id": "s10", - "heading": "", - "rst_labels": [ - "confirm" - ] + "section_id": "s47", + "heading": "includeParamタグ", + "rst_labels": [] }, { - "section_id": "s11", - "heading": "", - "rst_labels": [ - "list_search" - ] + "section_id": "s48", + "heading": "confirmationPageタグ", + "rst_labels": [] }, { - "section_id": "s12", - "heading": "", - "rst_labels": [ - "detail" - ] + "section_id": "s49", + "heading": "ignoreConfirmationタグ", + "rst_labels": [] + }, + { + "section_id": "s50", + "heading": "forInputPageタグ", + "rst_labels": [] + }, + { + "section_id": "s51", + "heading": "forConfirmationPageタグ", + "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/MessagingSimu/doc/index.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", "format": "rst", - "filename": "index.rst", - "type": "guide", - "category": "biz-samples", - "id": "biz-samples-doc--s1", - "base_name": "biz-samples-doc", - "output_path": "guide/biz-samples/biz-samples-doc--s1.json", - "assets_dir": "guide/biz-samples/assets/biz-samples-doc--s1/", + "filename": "07_TagReference.rst", + "type": "component", + "category": "libraries", + "id": "libraries-07_TagReference--s11", + "base_name": "libraries-07_TagReference", + "output_path": "component/libraries/libraries-07_TagReference--s11.json", + "assets_dir": "component/libraries/assets/libraries-07_TagReference--s11/", "section_range": { - "start_line": 0, - "end_line": 209, + "start_line": 400, + "end_line": 794, "sections": [ - "疎通テスト", - "結合テスト", - "負荷テスト", - "シミュレータがMOM同期応答メッセージ受信を行う場合", - "シミュレータがMOM同期応答メッセージ送信を行う場合", - "シミュレータがMOM応答不要メッセージ送信を行う場合", - "シミュレータがHTTPメッセージ受信を行う場合", - "シミュレータがHTTPメッセージ送信を行う場合", - "シミュレータがメッセージ受信する場合", - "シミュレータがメッセージ送信する場合", - "シミュレータがメッセージ受信する場合", - "シミュレータがメッセージ受信する場合", - "シミュレータがメッセージ送信する場合", - "", - "動作イメージ", - "", - "利用手順" + "compositeKeyCheckboxタグ", + "compositeKeyRadioButtonタグ", + "fileタグ", + "hiddenタグ", + "plainHiddenタグ", + "selectタグ", + "radioButtonsタグ", + "checkboxesタグ", + "submitタグ", + "buttonタグ", + "submitLinkタグ", + "popupSubmitタグ", + "popupButtonタグ" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6", - "s7", - "s8", - "s9", - "s10", "s11", "s12", "s13", "s14", "s15", "s16", - "s17" + "s17", + "s18", + "s19", + "s20", + "s21", + "s22", + "s23" ] }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 1, - "original_id": "biz-samples-doc", - "group_line_count": 209 - }, + "split_info": { + "is_split": true, + "part": 2, + "total_parts": 4, + "original_id": "libraries-07_TagReference", + "group_line_count": 394 + }, "section_map": [ { "section_id": "s1", - "heading": "疎通テスト", + "heading": "", "rst_labels": [] }, { "section_id": "s2", - "heading": "結合テスト", + "heading": "カスタムタグ一覧", "rst_labels": [] }, { "section_id": "s3", - "heading": "負荷テスト", + "heading": "全てのHTMLタグ", "rst_labels": [] }, { "section_id": "s4", - "heading": "シミュレータがMOM同期応答メッセージ受信を行う場合", + "heading": "フォーカスを取得可能なHTMLタグ", "rst_labels": [] }, { "section_id": "s5", - "heading": "シミュレータがMOM同期応答メッセージ送信を行う場合", + "heading": "formタグ", "rst_labels": [] }, { "section_id": "s6", - "heading": "シミュレータがMOM応答不要メッセージ送信を行う場合", + "heading": "textタグ", "rst_labels": [] }, { "section_id": "s7", - "heading": "シミュレータがHTTPメッセージ受信を行う場合", + "heading": "textareaタグ", "rst_labels": [] }, { "section_id": "s8", - "heading": "シミュレータがHTTPメッセージ送信を行う場合", + "heading": "passwordタグ", "rst_labels": [] }, { "section_id": "s9", - "heading": "シミュレータがメッセージ受信する場合", + "heading": "radioButtonタグ", "rst_labels": [] }, { "section_id": "s10", - "heading": "シミュレータがメッセージ送信する場合", + "heading": "checkboxタグ", "rst_labels": [] }, { "section_id": "s11", - "heading": "シミュレータがメッセージ受信する場合", + "heading": "compositeKeyCheckboxタグ", "rst_labels": [] }, { "section_id": "s12", - "heading": "シミュレータがメッセージ受信する場合", + "heading": "compositeKeyRadioButtonタグ", "rst_labels": [] }, { "section_id": "s13", - "heading": "シミュレータがメッセージ送信する場合", + "heading": "fileタグ", "rst_labels": [] }, { "section_id": "s14", - "heading": "", + "heading": "hiddenタグ", "rst_labels": [] }, { "section_id": "s15", - "heading": "動作イメージ", + "heading": "plainHiddenタグ", "rst_labels": [] }, { "section_id": "s16", - "heading": "", + "heading": "selectタグ", "rst_labels": [] }, { "section_id": "s17", - "heading": "利用手順", + "heading": "radioButtonsタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/TOP/top/nablarch/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-top-nablarch--s1", - "base_name": "about-nablarch-top-nablarch", - "output_path": "about/about-nablarch/about-nablarch-top-nablarch--s1.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-top-nablarch--s1/", - "section_range": { - "start_line": 0, - "end_line": 11, - "sections": [ - "" - ], - "section_ids": [ - "s1" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 3, - "original_id": "about-nablarch-top-nablarch", - "group_line_count": 11 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s18", + "heading": "checkboxesタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "フォルダ構成", + "section_id": "s19", + "heading": "submitタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "", + "section_id": "s20", + "heading": "buttonタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "コンテンツの見方", + "section_id": "s21", + "heading": "submitLinkタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/TOP/top/nablarch/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-top-nablarch--s2", - "base_name": "about-nablarch-top-nablarch", - "output_path": "about/about-nablarch/about-nablarch-top-nablarch--s2.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-top-nablarch--s2/", - "section_range": { - "start_line": 11, - "end_line": 858, - "sections": [ - "フォルダ構成" - ], - "section_ids": [ - "s2" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 3, - "original_id": "about-nablarch-top-nablarch", - "group_line_count": 847 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s22", + "heading": "popupSubmitタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "フォルダ構成", + "section_id": "s23", + "heading": "popupButtonタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "", + "section_id": "s24", + "heading": "popupLinkタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "コンテンツの見方", + "section_id": "s25", + "heading": "downloadSubmitタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/TOP/top/nablarch/index.rst", - "format": "rst", - "filename": "index.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-top-nablarch--s3", - "base_name": "about-nablarch-top-nablarch", - "output_path": "about/about-nablarch/about-nablarch-top-nablarch--s3.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-top-nablarch--s3/", - "section_range": { - "start_line": 858, - "end_line": 906, - "sections": [ - "", - "コンテンツの見方" - ], - "section_ids": [ - "s3", - "s4" - ] - }, - "split_info": { - "is_split": true, - "part": 3, - "total_parts": 3, - "original_id": "about-nablarch-top-nablarch", - "group_line_count": 48 - }, - "section_map": [ + }, + { + "section_id": "s26", + "heading": "downloadButtonタグ", + "rst_labels": [] + }, + { + "section_id": "s27", + "heading": "downloadLinkタグ", + "rst_labels": [] + }, + { + "section_id": "s28", + "heading": "paramタグ", + "rst_labels": [] + }, + { + "section_id": "s29", + "heading": "changeParamNameタグ", + "rst_labels": [] + }, + { + "section_id": "s30", + "heading": "aタグ", + "rst_labels": [] + }, + { + "section_id": "s31", + "heading": "imgタグ", + "rst_labels": [] + }, + { + "section_id": "s32", + "heading": "linkタグ", + "rst_labels": [] + }, + { + "section_id": "s33", + "heading": "scriptタグ", + "rst_labels": [] + }, + { + "section_id": "s34", + "heading": "errorsタグ", + "rst_labels": [] + }, + { + "section_id": "s35", + "heading": "errorタグ", + "rst_labels": [] + }, + { + "section_id": "s36", + "heading": "noCacheタグ", + "rst_labels": [] + }, + { + "section_id": "s37", + "heading": "codeSelectタグ", + "rst_labels": [] + }, + { + "section_id": "s38", + "heading": "codeRadioButtonsタグ", + "rst_labels": [] + }, + { + "section_id": "s39", + "heading": "codeCheckboxesタグ", + "rst_labels": [] + }, + { + "section_id": "s40", + "heading": "codeCheckboxタグ", + "rst_labels": [] + }, + { + "section_id": "s41", + "heading": "codeタグ", + "rst_labels": [] + }, + { + "section_id": "s42", + "heading": "messageタグ", + "rst_labels": [] + }, { - "section_id": "s1", - "heading": "", + "section_id": "s43", + "heading": "writeタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "フォルダ構成", + "section_id": "s44", + "heading": "prettyPrintタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "", + "section_id": "s45", + "heading": "rawWriteタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "コンテンツの見方", + "section_id": "s46", + "heading": "includeタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/guide/03_DevelopmentStep/09_confirm_operation.rst", - "format": "rst", - "filename": "09_confirm_operation.rst", - "type": "guide", - "category": "web-application", - "id": "web-application-09_confirm_operation", - "base_name": "web-application-09_confirm_operation", - "output_path": "guide/web-application/web-application-09_confirm_operation.json", - "assets_dir": "guide/web-application/assets/web-application-09_confirm_operation/", - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s47", + "heading": "includeParamタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "動作確認の実施", + "section_id": "s48", + "heading": "confirmationPageタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/guide/03_DevelopmentStep/02_flow.rst", - "format": "rst", - "filename": "02_flow.rst", - "type": "guide", - "category": "web-application", - "id": "web-application-02_flow", - "base_name": "web-application-02_flow", - "output_path": "guide/web-application/web-application-02_flow.json", - "assets_dir": "guide/web-application/assets/web-application-02_flow/", - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s49", + "heading": "ignoreConfirmationタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "開発フロー", + "section_id": "s50", + "heading": "forInputPageタグ", + "rst_labels": [] + }, + { + "section_id": "s51", + "heading": "forConfirmationPageタグ", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/01_FailureLog.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", "format": "rst", - "filename": "01_FailureLog.rst", + "filename": "07_TagReference.rst", "type": "component", "category": "libraries", - "id": "libraries-01_FailureLog--s1", - "base_name": "libraries-01_FailureLog", - "output_path": "component/libraries/libraries-01_FailureLog--s1.json", - "assets_dir": "component/libraries/assets/libraries-01_FailureLog--s1/", + "id": "libraries-07_TagReference--s24", + "base_name": "libraries-07_TagReference", + "output_path": "component/libraries/libraries-07_TagReference--s24.json", + "assets_dir": "component/libraries/assets/libraries-07_TagReference--s24/", "section_range": { - "start_line": 0, - "end_line": 389, + "start_line": 794, + "end_line": 1175, "sections": [ - "", - "障害ログの出力方針", - "障害ログの出力項目", - "障害ログの出力方法", - "障害ログの設定方法", - "障害ログの出力例" + "popupLinkタグ", + "downloadSubmitタグ", + "downloadButtonタグ", + "downloadLinkタグ", + "paramタグ", + "changeParamNameタグ", + "aタグ", + "imgタグ", + "linkタグ", + "scriptタグ", + "errorsタグ", + "errorタグ", + "noCacheタグ", + "codeSelectタグ", + "codeRadioButtonsタグ" ], "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5", - "s6" + "s24", + "s25", + "s26", + "s27", + "s28", + "s29", + "s30", + "s31", + "s32", + "s33", + "s34", + "s35", + "s36", + "s37", + "s38" ] }, "split_info": { "is_split": true, - "part": 1, - "total_parts": 3, - "original_id": "libraries-01_FailureLog", - "group_line_count": 389 + "part": 3, + "total_parts": 4, + "original_id": "libraries-07_TagReference", + "group_line_count": 381 }, "section_map": [ { @@ -37981,242 +37995,307 @@ }, { "section_id": "s2", - "heading": "障害ログの出力方針", + "heading": "カスタムタグ一覧", "rst_labels": [] }, { "section_id": "s3", - "heading": "障害ログの出力項目", + "heading": "全てのHTMLタグ", "rst_labels": [] }, { "section_id": "s4", - "heading": "障害ログの出力方法", + "heading": "フォーカスを取得可能なHTMLタグ", "rst_labels": [] }, { "section_id": "s5", - "heading": "障害ログの設定方法", + "heading": "formタグ", "rst_labels": [] }, { "section_id": "s6", - "heading": "障害ログの出力例", + "heading": "textタグ", "rst_labels": [] }, { "section_id": "s7", - "heading": "障害の連絡先情報の追加方法", + "heading": "textareaタグ", "rst_labels": [] }, { "section_id": "s8", - "heading": "アプリケーションの障害コードの変更方法", + "heading": "passwordタグ", "rst_labels": [] }, { "section_id": "s9", - "heading": "フレームワークの障害コードの変更方法", + "heading": "radioButtonタグ", "rst_labels": [] }, { "section_id": "s10", - "heading": "派生元実行時情報の出力方法", + "heading": "checkboxタグ", "rst_labels": [] }, { "section_id": "s11", - "heading": "プレースホルダのカスタマイズ方法", + "heading": "compositeKeyCheckboxタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/01_FailureLog.rst", - "format": "rst", - "filename": "01_FailureLog.rst", - "type": "component", - "category": "libraries", - "id": "libraries-01_FailureLog--s7", - "base_name": "libraries-01_FailureLog", - "output_path": "component/libraries/libraries-01_FailureLog--s7.json", - "assets_dir": "component/libraries/assets/libraries-01_FailureLog--s7/", - "section_range": { - "start_line": 389, - "end_line": 700, - "sections": [ - "障害の連絡先情報の追加方法", - "アプリケーションの障害コードの変更方法", - "フレームワークの障害コードの変更方法", - "派生元実行時情報の出力方法" - ], - "section_ids": [ - "s7", - "s8", - "s9", - "s10" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 3, - "original_id": "libraries-01_FailureLog", - "group_line_count": 311 - }, - "section_map": [ + }, + { + "section_id": "s12", + "heading": "compositeKeyRadioButtonタグ", + "rst_labels": [] + }, + { + "section_id": "s13", + "heading": "fileタグ", + "rst_labels": [] + }, + { + "section_id": "s14", + "heading": "hiddenタグ", + "rst_labels": [] + }, + { + "section_id": "s15", + "heading": "plainHiddenタグ", + "rst_labels": [] + }, + { + "section_id": "s16", + "heading": "selectタグ", + "rst_labels": [] + }, + { + "section_id": "s17", + "heading": "radioButtonsタグ", + "rst_labels": [] + }, + { + "section_id": "s18", + "heading": "checkboxesタグ", + "rst_labels": [] + }, + { + "section_id": "s19", + "heading": "submitタグ", + "rst_labels": [] + }, + { + "section_id": "s20", + "heading": "buttonタグ", + "rst_labels": [] + }, + { + "section_id": "s21", + "heading": "submitLinkタグ", + "rst_labels": [] + }, + { + "section_id": "s22", + "heading": "popupSubmitタグ", + "rst_labels": [] + }, + { + "section_id": "s23", + "heading": "popupButtonタグ", + "rst_labels": [] + }, + { + "section_id": "s24", + "heading": "popupLinkタグ", + "rst_labels": [] + }, { - "section_id": "s1", - "heading": "", + "section_id": "s25", + "heading": "downloadSubmitタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "障害ログの出力方針", + "section_id": "s26", + "heading": "downloadButtonタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "障害ログの出力項目", + "section_id": "s27", + "heading": "downloadLinkタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "障害ログの出力方法", + "section_id": "s28", + "heading": "paramタグ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "障害ログの設定方法", + "section_id": "s29", + "heading": "changeParamNameタグ", "rst_labels": [] }, { - "section_id": "s6", - "heading": "障害ログの出力例", + "section_id": "s30", + "heading": "aタグ", "rst_labels": [] }, { - "section_id": "s7", - "heading": "障害の連絡先情報の追加方法", + "section_id": "s31", + "heading": "imgタグ", "rst_labels": [] }, { - "section_id": "s8", - "heading": "アプリケーションの障害コードの変更方法", + "section_id": "s32", + "heading": "linkタグ", "rst_labels": [] }, { - "section_id": "s9", - "heading": "フレームワークの障害コードの変更方法", + "section_id": "s33", + "heading": "scriptタグ", "rst_labels": [] }, { - "section_id": "s10", - "heading": "派生元実行時情報の出力方法", + "section_id": "s34", + "heading": "errorsタグ", "rst_labels": [] }, { - "section_id": "s11", - "heading": "プレースホルダのカスタマイズ方法", + "section_id": "s35", + "heading": "errorタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/01_Core/01/01_FailureLog.rst", - "format": "rst", - "filename": "01_FailureLog.rst", - "type": "component", - "category": "libraries", - "id": "libraries-01_FailureLog--s11", - "base_name": "libraries-01_FailureLog", - "output_path": "component/libraries/libraries-01_FailureLog--s11.json", - "assets_dir": "component/libraries/assets/libraries-01_FailureLog--s11/", - "section_range": { - "start_line": 700, - "end_line": 810, - "sections": [ - "プレースホルダのカスタマイズ方法" - ], - "section_ids": [ - "s11" - ] - }, - "split_info": { - "is_split": true, - "part": 3, - "total_parts": 3, - "original_id": "libraries-01_FailureLog", - "group_line_count": 110 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "", + "section_id": "s36", + "heading": "noCacheタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "障害ログの出力方針", + "section_id": "s37", + "heading": "codeSelectタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "障害ログの出力項目", + "section_id": "s38", + "heading": "codeRadioButtonsタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "障害ログの出力方法", + "section_id": "s39", + "heading": "codeCheckboxesタグ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "障害ログの設定方法", + "section_id": "s40", + "heading": "codeCheckboxタグ", "rst_labels": [] }, { - "section_id": "s6", - "heading": "障害ログの出力例", + "section_id": "s41", + "heading": "codeタグ", "rst_labels": [] }, { - "section_id": "s7", - "heading": "障害の連絡先情報の追加方法", + "section_id": "s42", + "heading": "messageタグ", "rst_labels": [] }, { - "section_id": "s8", - "heading": "アプリケーションの障害コードの変更方法", + "section_id": "s43", + "heading": "writeタグ", "rst_labels": [] }, { - "section_id": "s9", - "heading": "フレームワークの障害コードの変更方法", + "section_id": "s44", + "heading": "prettyPrintタグ", "rst_labels": [] }, { - "section_id": "s10", - "heading": "派生元実行時情報の出力方法", + "section_id": "s45", + "heading": "rawWriteタグ", "rst_labels": [] }, { - "section_id": "s11", - "heading": "プレースホルダのカスタマイズ方法", + "section_id": "s46", + "heading": "includeタグ", + "rst_labels": [] + }, + { + "section_id": "s47", + "heading": "includeParamタグ", + "rst_labels": [] + }, + { + "section_id": "s48", + "heading": "confirmationPageタグ", + "rst_labels": [] + }, + { + "section_id": "s49", + "heading": "ignoreConfirmationタグ", + "rst_labels": [] + }, + { + "section_id": "s50", + "heading": "forInputPageタグ", + "rst_labels": [] + }, + { + "section_id": "s51", + "heading": "forConfirmationPageタグ", "rst_labels": [] } ] }, { - "source_path": ".lw/nab-official/v1.4/document/fw/01_SystemConstitution/02_I18N.rst", + "source_path": ".lw/nab-official/v1.4/document/fw/02_FunctionDemandSpecifications/03_Common/07/07_TagReference.rst", "format": "rst", - "filename": "02_I18N.rst", - "type": "about", - "category": "about-nablarch", - "id": "about-nablarch-02_I18N", - "base_name": "about-nablarch-02_I18N", - "output_path": "about/about-nablarch/about-nablarch-02_I18N.json", - "assets_dir": "about/about-nablarch/assets/about-nablarch-02_I18N/", + "filename": "07_TagReference.rst", + "type": "component", + "category": "libraries", + "id": "libraries-07_TagReference--s39", + "base_name": "libraries-07_TagReference", + "output_path": "component/libraries/libraries-07_TagReference--s39.json", + "assets_dir": "component/libraries/assets/libraries-07_TagReference--s39/", + "section_range": { + "start_line": 1175, + "end_line": 1505, + "sections": [ + "codeCheckboxesタグ", + "codeCheckboxタグ", + "codeタグ", + "messageタグ", + "writeタグ", + "prettyPrintタグ", + "rawWriteタグ", + "includeタグ", + "includeParamタグ", + "confirmationPageタグ", + "ignoreConfirmationタグ", + "forInputPageタグ", + "forConfirmationPageタグ" + ], + "section_ids": [ + "s39", + "s40", + "s41", + "s42", + "s43", + "s44", + "s45", + "s46", + "s47", + "s48", + "s49", + "s50", + "s51" + ] + }, + "split_info": { + "is_split": true, + "part": 4, + "total_parts": 4, + "original_id": "libraries-07_TagReference", + "group_line_count": 330 + }, "section_map": [ { "section_id": "s1", @@ -38225,362 +38304,256 @@ }, { "section_id": "s2", - "heading": "RDBMS上データの保持方法", + "heading": "カスタムタグ一覧", "rst_labels": [] }, { "section_id": "s3", - "heading": "", + "heading": "全てのHTMLタグ", "rst_labels": [] }, { "section_id": "s4", - "heading": "言語を指定した取得方法", + "heading": "フォーカスを取得可能なHTMLタグ", "rst_labels": [] }, { "section_id": "s5", - "heading": "", + "heading": "formタグ", "rst_labels": [] }, { "section_id": "s6", - "heading": "フレームワーク内で作成するログ出力メッセージの使用言語", + "heading": "textタグ", "rst_labels": [] }, { "section_id": "s7", - "heading": "", + "heading": "textareaタグ", "rst_labels": [] }, { "section_id": "s8", - "heading": "ファイル入出力の文字コード", - "rst_labels": [ - "i18n_lang_select_keep" - ] + "heading": "passwordタグ", + "rst_labels": [] }, { "section_id": "s9", - "heading": "", + "heading": "radioButtonタグ", "rst_labels": [] }, { "section_id": "s10", - "heading": "言語の選択と保持", - "rst_labels": [] - }, - { - "section_id": "s11", - "heading": "", - "rst_labels": [] - }, - { - "section_id": "s12", - "heading": "タイムゾーンの選択と保持", - "rst_labels": [] - }, - { - "section_id": "s13", - "heading": "", + "heading": "checkboxタグ", "rst_labels": [] }, { - "section_id": "s14", - "heading": "JSPファイルおよび静的ファイルのパス", - "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/common_library/file_upload_utility.rst", - "format": "rst", - "filename": "file_upload_utility.rst", - "type": "component", - "category": "libraries", - "id": "libraries-file_upload_utility", - "base_name": "libraries-file_upload_utility", - "output_path": "component/libraries/libraries-file_upload_utility.json", - "assets_dir": "component/libraries/assets/libraries-file_upload_utility/", - "section_map": [ + "section_id": "s11", + "heading": "compositeKeyCheckboxタグ", + "rst_labels": [] + }, { - "section_id": "s1", - "heading": "クラス定義", + "section_id": "s12", + "heading": "compositeKeyRadioButtonタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "", + "section_id": "s13", + "heading": "fileタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "使用方法", + "section_id": "s14", + "heading": "hiddenタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "フォーマット定義ファイルパスの指定", + "section_id": "s15", + "heading": "plainHiddenタグ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "精査エラー発生時のメッセージID指定", + "section_id": "s16", + "heading": "selectタグ", "rst_labels": [] }, { - "section_id": "s6", - "heading": "精査処理を実装したクラス、メソッドの指定", + "section_id": "s17", + "heading": "radioButtonsタグ", "rst_labels": [] }, { - "section_id": "s7", - "heading": "データベース一括登録", + "section_id": "s18", + "heading": "checkboxesタグ", "rst_labels": [] }, { - "section_id": "s8", - "heading": "データベース一括登録(独自実装)", + "section_id": "s19", + "heading": "submitタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/mail.rst", - "format": "rst", - "filename": "mail.rst", - "type": "component", - "category": "libraries", - "id": "libraries-mail--s1", - "base_name": "libraries-mail", - "output_path": "component/libraries/libraries-mail--s1.json", - "assets_dir": "component/libraries/assets/libraries-mail--s1/", - "section_range": { - "start_line": 0, - "end_line": 305, - "sections": [ - "クラス図", - "各クラスの責務", - "テーブル定義", - "メール送信要求", - "メール送信要求実装例" - ], - "section_ids": [ - "s1", - "s2", - "s3", - "s4", - "s5" - ] - }, - "split_info": { - "is_split": true, - "part": 1, - "total_parts": 2, - "original_id": "libraries-mail", - "group_line_count": 305 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "クラス図", + "section_id": "s20", + "heading": "buttonタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "各クラスの責務", + "section_id": "s21", + "heading": "submitLinkタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "テーブル定義", + "section_id": "s22", + "heading": "popupSubmitタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "メール送信要求", + "section_id": "s23", + "heading": "popupButtonタグ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "メール送信要求実装例", + "section_id": "s24", + "heading": "popupLinkタグ", "rst_labels": [] }, { - "section_id": "s6", - "heading": "共通設定項目", + "section_id": "s25", + "heading": "downloadSubmitタグ", "rst_labels": [] }, { - "section_id": "s7", - "heading": "メール送信要求API用設定項目", + "section_id": "s26", + "heading": "downloadButtonタグ", "rst_labels": [] }, { - "section_id": "s8", - "heading": "逐次メール送信バッチ用設定項目", + "section_id": "s27", + "heading": "downloadLinkタグ", "rst_labels": [] }, { - "section_id": "s9", - "heading": "nablarch.common.mail.MailRequestTableの設定", + "section_id": "s28", + "heading": "paramタグ", "rst_labels": [] }, { - "section_id": "s10", - "heading": "nablarch.common.mail.MailRecipientTableの設定(全て必須)", + "section_id": "s29", + "heading": "changeParamNameタグ", "rst_labels": [] }, { - "section_id": "s11", - "heading": "nablarch.common.mail.MailAttachedFileTableの設定(すべて必須)", + "section_id": "s30", + "heading": "aタグ", "rst_labels": [] }, { - "section_id": "s12", - "heading": "nablarch.common.mail.MailTemplateTableの設定(すべて必須)", + "section_id": "s31", + "heading": "imgタグ", "rst_labels": [] }, { - "section_id": "s13", - "heading": "nablarch.common.mail.MailConfigの設定", + "section_id": "s32", + "heading": "linkタグ", "rst_labels": [] }, { - "section_id": "s14", - "heading": "nablarch.common.mail.MailRequestConfigの設定(すべて必須)", + "section_id": "s33", + "heading": "scriptタグ", "rst_labels": [] }, { - "section_id": "s15", - "heading": "nablarch.common.mail.MailSessionConfigの設定", + "section_id": "s34", + "heading": "errorsタグ", "rst_labels": [] - } - ] - }, - { - "source_path": ".lw/nab-official/v1.4/document/fw/core_library/mail.rst", - "format": "rst", - "filename": "mail.rst", - "type": "component", - "category": "libraries", - "id": "libraries-mail--s6", - "base_name": "libraries-mail", - "output_path": "component/libraries/libraries-mail--s6.json", - "assets_dir": "component/libraries/assets/libraries-mail--s6/", - "section_range": { - "start_line": 305, - "end_line": 699, - "sections": [ - "共通設定項目", - "メール送信要求API用設定項目", - "逐次メール送信バッチ用設定項目", - "nablarch.common.mail.MailRequestTableの設定", - "nablarch.common.mail.MailRecipientTableの設定(全て必須)", - "nablarch.common.mail.MailAttachedFileTableの設定(すべて必須)", - "nablarch.common.mail.MailTemplateTableの設定(すべて必須)", - "nablarch.common.mail.MailConfigの設定", - "nablarch.common.mail.MailRequestConfigの設定(すべて必須)", - "nablarch.common.mail.MailSessionConfigの設定" - ], - "section_ids": [ - "s6", - "s7", - "s8", - "s9", - "s10", - "s11", - "s12", - "s13", - "s14", - "s15" - ] - }, - "split_info": { - "is_split": true, - "part": 2, - "total_parts": 2, - "original_id": "libraries-mail", - "group_line_count": 394 - }, - "section_map": [ + }, { - "section_id": "s1", - "heading": "クラス図", + "section_id": "s35", + "heading": "errorタグ", "rst_labels": [] }, { - "section_id": "s2", - "heading": "各クラスの責務", + "section_id": "s36", + "heading": "noCacheタグ", "rst_labels": [] }, { - "section_id": "s3", - "heading": "テーブル定義", + "section_id": "s37", + "heading": "codeSelectタグ", "rst_labels": [] }, { - "section_id": "s4", - "heading": "メール送信要求", + "section_id": "s38", + "heading": "codeRadioButtonsタグ", "rst_labels": [] }, { - "section_id": "s5", - "heading": "メール送信要求実装例", + "section_id": "s39", + "heading": "codeCheckboxesタグ", "rst_labels": [] }, { - "section_id": "s6", - "heading": "共通設定項目", + "section_id": "s40", + "heading": "codeCheckboxタグ", "rst_labels": [] }, { - "section_id": "s7", - "heading": "メール送信要求API用設定項目", + "section_id": "s41", + "heading": "codeタグ", "rst_labels": [] }, { - "section_id": "s8", - "heading": "逐次メール送信バッチ用設定項目", + "section_id": "s42", + "heading": "messageタグ", "rst_labels": [] }, { - "section_id": "s9", - "heading": "nablarch.common.mail.MailRequestTableの設定", + "section_id": "s43", + "heading": "writeタグ", "rst_labels": [] }, { - "section_id": "s10", - "heading": "nablarch.common.mail.MailRecipientTableの設定(全て必須)", + "section_id": "s44", + "heading": "prettyPrintタグ", "rst_labels": [] }, { - "section_id": "s11", - "heading": "nablarch.common.mail.MailAttachedFileTableの設定(すべて必須)", + "section_id": "s45", + "heading": "rawWriteタグ", "rst_labels": [] }, { - "section_id": "s12", - "heading": "nablarch.common.mail.MailTemplateTableの設定(すべて必須)", + "section_id": "s46", + "heading": "includeタグ", "rst_labels": [] }, { - "section_id": "s13", - "heading": "nablarch.common.mail.MailConfigの設定", + "section_id": "s47", + "heading": "includeParamタグ", "rst_labels": [] }, { - "section_id": "s14", - "heading": "nablarch.common.mail.MailRequestConfigの設定(すべて必須)", + "section_id": "s48", + "heading": "confirmationPageタグ", "rst_labels": [] }, { - "section_id": "s15", - "heading": "nablarch.common.mail.MailSessionConfigの設定", + "section_id": "s49", + "heading": "ignoreConfirmationタグ", + "rst_labels": [] + }, + { + "section_id": "s50", + "heading": "forInputPageタグ", + "rst_labels": [] + }, + { + "section_id": "s51", + "heading": "forConfirmationPageタグ", "rst_labels": [] } ] } ], - "generated_at": "2026-03-25T22:10:08+09:00" + "generated_at": "2026-03-31T17:27:16+09:00" } \ No newline at end of file diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s1.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s1.json index d6be750c5..db40d83e5 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s1.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s1.json @@ -83,6 +83,7 @@ "システムアカウント", "ユーザID", "ユーザIDロック", + "有効日", "グループシステムアカウント", "認可単位", "認可単位ID", @@ -98,8 +99,8 @@ "s1": "リクエストに対して認可チェックを行う機能。ハンドラとして使用される(詳細は :doc:`../../handler/PermissionCheckHandler`)。\n\n> **注意**: 通常アーキテクトが本機能を使用して認可処理を局所化するため、アプリケーションプログラマは本機能を直接使用しない。", "s2": "### グループ単位とユーザ単位を併用した権限設定\n\nグループに権限を設定し、ユーザにグループを割り当てることでグループ単位の権限管理が可能。さらにユーザに直接権限を設定することでイレギュラーな権限付与にも対応可能。\n\n### 自由度の高いテーブル定義\n\nテーブル名・カラム名を自由に設定可能。カラムのデータ型もJavaの型に変換可能であれば任意のデータ型を使用できる。プロジェクトの命名規約に従ったテーブル定義が作成できる。", "s3": "### 実装済み\n\n- 機能(任意のリクエストのかたまり)単位で認可判定の設定を行うことができる\n- ユーザに対してグループを設定でき、グループ単位で認可判定の設定を行うことができる\n- リクエストIDを設定し、特定のリクエストIDを認可判定の対象から除外できる\n- ユーザに有効日(From/To)を設定できる\n- ユーザとグループの関連に有効日(From/To)を設定できる\n- 認可判定の結果に応じて画面項目(メニューやボタンなど)の表示・非表示を切り替えることができる\n\n### 未実装\n\n- 本機能で使用するマスタデータをメンテナンスできる\n- 本機能で使用するマスタの初期データを一括登録できる\n- 認証機能によりユーザIDがロックされているユーザの認可判定を失敗にできる\n\n### 未検討\n\n- データへのアクセスを制限できる\n- 機能単位の権限に有効日(From/To)を設定できる", - "s4": "リクエストIDを使用して認可判定を行う。リクエストIDの体系はアプリケーション毎に設計する。\n\n**認可単位**: ユーザが機能として認識する最小単位の概念。認可単位には認可を実現するために必要なリクエスト(Webアプリであれば画面のイベント)が複数紐付く。\n\n- グループに認可単位を紐付け → グループ権限\n- ユーザに認可単位を直接紐付け → ユーザ権限\n\n> **注意**: グループ権限とユーザ権限が異なる場合は、双方の権限に紐づく認可単位が足し合わされる。\n\n> **注意**: 通常はグループ権限を登録しユーザにグループを割り当てることで権限設定を行う。ユーザ権限はイレギュラーな権限付与に対応するために使用する。", - "s5": "**インタフェース**:\n\n| インタフェース名 | 概要 |\n|---|---|\n| `nablarch.common.permission.Permission` | 認可インタフェース。認可判定の実現方法毎に実装クラスを作成する |\n| `nablarch.common.permission.PermissionFactory` | Permission生成インタフェース。認可情報の取得先毎に実装クラスを作成する |\n\n**実装クラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.permission.BasicPermission` | 保持しているリクエストIDを使用して認可を行うPermissionの基本実装クラス |\n| `nablarch.common.permission.BasicPermissionFactory` | BasicPermissionを生成するPermissionFactoryの基本実装クラス。DBのユーザ・グループ毎の認可単位テーブル構造からユーザに紐付く認可情報を取得する |\n| `nablarch.common.handler.PermissionCheckHandler` | 認可判定を行うハンドラ |\n| `nablarch.common.permission.PermissionUtil` | 権限管理に使用するユーティリティ |", + "s4": "リクエストIDを使用して認可判定を行う。リクエストIDの体系はアプリケーション毎に設計する。\n\n**認可単位**: ユーザが機能として認識する最小単位の概念。認可単位には認可を実現するために必要なリクエスト(Webアプリであれば画面のイベント)が複数紐付く。\n\n- グループに認可単位を紐付け → グループ権限\n- ユーザに認可単位を直接紐付け → ユーザ権限\n\nグループ権限とユーザ権限の例:\n\n| ユーザ | 説明 |\n|---|---|\n| Aさん | 人事部グループに紐づいているので、社員登録・社員削除・社員検索・社員情報変更を使用できる。 |\n| Bさん | 社員グループに紐づいているので、社員検索・社員情報変更を使用できる。 |\n| Cさん | パートナーグループに紐づいているので、社員情報変更のみ使用できる。 |\n| Xさん | 部長グループと社員グループに紐づいているので、社員登録・社員削除・社員検索・社員情報変更を使用できる。 |\n| Yさん | 社員グループに紐づいているので、社員検索・社員情報変更を使用できる。さらにDさんは、社員登録認可単位に直接紐づいているので、社員登録も使用できる。 |\n\n> **注意**: Yさんのようにグループ権限とユーザ権限が異なる場合は、双方の権限に紐づく認可単位が足し合わされる。\n\n> **注意**: 通常はグループ権限を登録しユーザにグループを割り当てることで権限設定を行う。ユーザ権限はイレギュラーな権限付与に対応するために使用する。", + "s5": "**インタフェース**:\n\n| インタフェース名 | 概要 |\n|---|---|\n| `nablarch.common.permission.Permission` | 認可インタフェース。認可判定の実現方法毎に実装クラスを作成する |\n| `nablarch.common.permission.PermissionFactory` | Permission生成インタフェース。認可情報の取得先毎に実装クラスを作成する |\n\n**Permissionの実装クラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.permission.BasicPermission` | 保持しているリクエストIDを使用して認可を行うPermissionの基本実装クラス |\n\n**PermissionFactoryの実装クラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.permission.BasicPermissionFactory` | BasicPermissionを生成するPermissionFactoryの基本実装クラス。DBのユーザ・グループ毎の認可単位テーブル構造からユーザに紐付く認可情報を取得する |\n\n**その他のクラス**:\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.handler.PermissionCheckHandler` | 認可判定を行うハンドラ |\n| `nablarch.common.permission.PermissionUtil` | 権限管理に使用するユーティリティ |", "s6": "1. PermissionCheckHandlerは、リクエスト毎にユーザに紐付くPermissionを取得し、認可判定後にPermissionをスレッドローカルに格納する\n2. 個別アプリケーションで認可判定が必要な場合は、PermissionUtilからPermissionを取得して認可判定を行う\n3. 認証機能によりユーザIDがロックされている場合は認可失敗となる\n4. 認可判定の対象リクエストのチェックには、設定で指定されたリクエストIDを使用して行う(:ref:`ignoreRequestIdsSetting` 参照)\n5. ユーザIDとリクエストIDはPermissionCheckHandlerより先に処理するハンドラでThreadContextに設定する(:ref:`ThreadContextHandler` が行う)", "s7": "テーブル名・カラム名はBasicPermissionFactoryの設定で指定するため任意の名前を使用できる。DBの型もJavaの型に変換可能であれば任意の型を使用できる。\n\n> **注意**: システムアカウントテーブルは認証機能と同じテーブルを使用することを想定しているため、認証機能で使用するデータ項目(パスワード等)が含まれる。\n\n**グループ**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| グループID | java.lang.String | ユニークキー |\n\n**システムアカウント**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| ユーザID | java.lang.String | ユニークキー |\n| ユーザIDロック | boolean | |\n| 有効日(From) | java.lang.String | 書式 yyyyMMdd。指定しない場合は\"19000101\" |\n| 有効日(To) | java.lang.String | 書式 yyyyMMdd。指定しない場合は\"99991231\" |\n\n**グループシステムアカウント**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| グループID | java.lang.String | ユニークキー |\n| ユーザID | java.lang.String | ユニークキー |\n| 有効日(From) | java.lang.String | ユニークキー。書式 yyyyMMdd。指定しない場合は\"19000101\" |\n| 有効日(To) | java.lang.String | 書式 yyyyMMdd。指定しない場合は\"99991231\" |\n\n**認可単位**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| 認可単位ID | java.lang.String | ユニークキー |\n\n**認可単位リクエスト**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| 認可単位ID | java.lang.String | ユニークキー |\n| リクエストID | java.lang.String | ユニークキー |\n\n**グループ権限**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| グループID | java.lang.String | ユニークキー |\n| 認可単位ID | java.lang.String | ユニークキー |\n\n**システムアカウント権限**:\n\n| 定義 | Javaの型 | 制約 |\n|---|---|---|\n| ユーザID | java.lang.String | ユニークキー |\n| 認可単位ID | java.lang.String | ユニークキー |" } diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s10.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s10.json index 443b34a7b..92d1e60c6 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s10.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-04_Permission--s10.json @@ -22,6 +22,8 @@ "BasicBusinessDateProvider", "SimpleDbTransactionManager", "BasicApplicationInitializer", + "BusinessDateProvider", + "Initializable", "permissionFactory", "ignoreRequestIds", "dbManager", @@ -75,6 +77,6 @@ "sections": { "s1": "**クラス**: `nablarch.common.handler.PermissionCheckHandler`, `nablarch.common.permission.BasicPermissionFactory`\n\nDIコンテナの機能を使用して、PermissionCheckHandlerとBasicPermissionFactoryの設定を行い使用する。\n\n### PermissionCheckHandlerの設定\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| permissionFactory | ○ | Permissionを生成するPermissionFactory |\n| ignoreRequestIds | | 認可判定を行わないリクエストID(カンマ区切りで複数指定可) |\n\n### BasicPermissionFactoryの設定\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| dbManager | ○ | DBトランザクション制御。`nablarch.core.db.transaction.SimpleDbTransactionManager`インスタンスを指定。詳細は :doc:`../01_Core/04_DbAccessSpec` 参照 |\n| groupTableSchema | ○ | グループテーブルのスキーマ情報。GroupTableSchemaクラスのインスタンス |\n| systemAccountTableSchema | ○ | システムアカウントテーブルのスキーマ情報。SystemAccountTableSchemaクラスのインスタンス |\n| groupSystemAccountTableSchema | ○ | グループシステムアカウントテーブルのスキーマ情報。GroupSystemAccountTableSchemaクラスのインスタンス |\n| permissionUnitTableSchema | ○ | 認可単位テーブルのスキーマ情報。PermissionUnitTableSchemaクラスのインスタンス |\n| permissionUnitRequestTableSchema | ○ | 認可単位リクエストテーブルのスキーマ情報。PermissionUnitRequestTableSchemaクラスのインスタンス |\n| groupAuthorityTableSchema | ○ | グループ権限テーブルのスキーマ情報。GroupAuthorityTableSchemaクラスのインスタンス |\n| systemAccountAuthorityTableSchema | ○ | システムアカウント権限テーブルのスキーマ情報。SystemAccountAuthorityTableSchemaクラスのインスタンス |\n| businessDateProvider | ○ | 業務日付取得(有効日From/Toチェックに使用)。`nablarch.core.date.BusinessDateProvider`実装クラスを指定。詳細は :ref:`BusinessDateProvider-label` 参照 |\n\nXML設定例:\n\n```xml\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n```\n\n### スキーマクラスのプロパティ\n\n**GroupTableSchema** (`nablarch.common.permission.schema.GroupTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| groupIdColumnName | ○ | グループIDカラムの名前 |\n\n**SystemAccountTableSchema** (`nablarch.common.permission.schema.SystemAccountTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| userIdColumnName | ○ | ユーザIDカラムの名前 |\n| userIdLockedColumnName | ○ | ユーザIDロックカラムの名前 |\n| failedCountColumnName | ○ | 認証失敗回数カラムの名前 |\n| effectiveDateFromColumnName | ○ | 有効日(From)カラムの名前 |\n| effectiveDateToColumnName | ○ | 有効日(To)カラムの名前 |\n\n**GroupSystemAccountTableSchema** (`nablarch.common.permission.schema.GroupSystemAccountTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| groupIdColumnName | ○ | グループIDカラムの名前 |\n| userIdColumnName | ○ | ユーザIDカラムの名前 |\n| effectiveDateFromColumnName | ○ | 有効日(From)カラムの名前 |\n| effectiveDateToColumnName | ○ | 有効日(To)カラムの名前 |\n\n**PermissionUnitTableSchema** (`nablarch.common.permission.schema.PermissionUnitTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n\n**PermissionUnitRequestTableSchema** (`nablarch.common.permission.schema.PermissionUnitRequestTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n| requestIdColumnName | ○ | リクエストIDカラムの名前 |\n\n**GroupAuthorityTableSchema** (`nablarch.common.permission.schema.GroupAuthorityTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| groupIdColumnName | ○ | グループIDカラムの名前 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n\n**SystemAccountAuthorityTableSchema** (`nablarch.common.permission.schema.SystemAccountAuthorityTableSchema`):\n\n| プロパティ名 | 必須 | 説明 |\n|---|---|---|\n| tableName | ○ | テーブル名 |\n| userIdColumnName | ○ | ユーザIDカラムの名前 |\n| permissionUnitIdColumnName | ○ | 認可単位IDカラムの名前 |\n\n### 初期化設定\n\nBasicPermissionFactoryクラスは初期化が必要なため :ref:`repository_initialize` に従いInitializableインタフェースを実装している。permissionFactoryが初期化されるよう下記の設定を行うこと。\n\n```xml\n\n \n \n \n \n \n\n```", "s2": "ログイン処理など、一部の処理のみ認可判定の対象から除外したい場合は、PermissionCheckHandlerの設定でignoreRequestIdsプロパティを指定する。\n\nリクエストIDがRW11AA0101とRW11AA0102を認可判定の対象から除外する場合の設定例:\n\n```xml\n\n\n \n \n\n```", - "s3": "> **注意**: 下記のコードはフレームワークが行う処理であり、通常のアプリケーションでは実装する必要がない。\n\nPermissionCheckHandlerにより、スレッドローカルにPermissionが保持されている。`nablarch.common.permission.PermissionUtil`からPermissionを取得し、リクエストIDを指定して認可判定を行う。\n\n```java\n// PermissionUtilからPermissionを取得する\nPermission permission = PermissionUtil.getPermission();\n\n// リクエストIDを指定して認可判定を行う。\nif (permission.permit(\"リクエストID\")) {\n\n // 認可に成功した場合の処理\n\n} else {\n\n // 認可に失敗した場合の処理\n\n}\n```" + "s3": "> **注意**: 下記のコードはフレームワークが行う処理であり、通常のアプリケーションでは実装する必要がない。\n\nPermissionCheckHandlerにより、スレッドローカルにPermissionが保持されている。PermissionUtilからPermissionを取得し、リクエストIDを指定して認可判定を行う。\n\n```java\n// PermissionUtilからPermissionを取得する\nPermission permission = PermissionUtil.getPermission();\n\n// リクエストIDを指定して認可判定を行う。\nif (permission.permit(\"リクエストID\")) {\n\n // 認可に成功した場合の処理\n\n} else {\n\n // 認可に失敗した場合の処理\n\n}\n```" } } \ No newline at end of file diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-05_MessagingLog--s1.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-05_MessagingLog--s1.json deleted file mode 100644 index a9f849ebd..000000000 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-05_MessagingLog--s1.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "id": "libraries-05_MessagingLog--s1", - "title": "メッセージングログの出力", - "no_knowledge_content": false, - "official_doc_urls": [], - "index": [ - { - "id": "s1", - "title": "メッセージングログの出力", - "hints": [ - "MessagingLogUtil", - "MessagingLogFormatter", - "MessagingContext", - "HttpMessagingRequestParsingHandler", - "HttpMessagingResponseBuildingHandler", - "HttpMessagingClient", - "messagingLogFormatter.maskingPatterns", - "messagingLogFormatter.maskingChar", - "messagingLogFormatter.sentMessageFormat", - "messagingLogFormatter.receivedMessageFormat", - "messagingLogFormatter.httpSentMessageFormat", - "messagingLogFormatter.httpReceivedMessageFormat", - "messagingLogFormatter.className", - "メッセージングログ設定", - "メッセージボディマスク", - "MOMメッセージング", - "HTTPメッセージング", - "個人情報マスク", - "MOM応答不要" - ] - }, - { - "id": "s2", - "title": "MOM送信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$replyTo$", - "$timeToLive$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "MOM送信メッセージフォーマット", - "sentMessageFormat", - "SENT MESSAGE" - ] - }, - { - "id": "s3", - "title": "MOM受信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$replyTo$", - "$timeToLive$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "MOM受信メッセージフォーマット", - "receivedMessageFormat", - "RECEIVED MESSAGE" - ] - }, - { - "id": "s4", - "title": "HTTP送信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "$messageHeader$", - "HTTP送信メッセージフォーマット", - "httpSentMessageFormat", - "HTTP SENT MESSAGE" - ] - }, - { - "id": "s5", - "title": "HTTP受信メッセージのログ出力に使用するフォーマット", - "hints": [ - "$threadName$", - "$messageId$", - "$destination$", - "$correlationId$", - "$messageBody$", - "$messageBodyHex$", - "$messageBodyLength$", - "$messageHeader$", - "HTTP受信メッセージフォーマット", - "httpReceivedMessageFormat", - "HTTP RECEIVED MESSAGE" - ] - } - ], - "sections": { - "s1": "## 出力方針\n\nログレベル: INFO、ロガー名: MESSAGINGとしてアプリケーションログへ出力する。\n\nlog.propertiesの設定例:\n```bash\nwriterNames=appFile\n\nwriter.appFile.className=nablarch.core.log.basic.FileLogWriter\nwriter.appFile.filePath=/var/log/app/app.log\nwriter.appFile.encoding=UTF-8\nwriter.appFile.maxFileSize=10000\nwriter.appFile.formatter.className=nablarch.core.log.basic.BasicLogFormatter\nwriter.appFile.formatter.format=<アプリケーションログ用のフォーマット>\n\navailableLoggersNamesOrder=MESSAGING,ROO\n\nloggers.ROO.nameRegex=.*\nloggers.ROO.level=INFO\nloggers.ROO.writerNames=appFile\n\nloggers.MESSAGING.nameRegex=MESSAGING\nloggers.MESSAGING.level=INFO\nloggers.MESSAGING.writerNames=appFile\n```\n\n## 出力項目\n\n| 項目名 | 説明 |\n|---|---|\n| 出力日時 | ログ出力時のシステム日時 |\n| 起動プロセスID | アプリケーションを起動したプロセス名。実行環境の特定に使用する |\n| 処理方式区分 | 処理方式の特定に使用する |\n| リクエストID | 処理を一意に識別するID |\n| 実行時ID | 処理の実行を一意に識別するID |\n| ユーザID | ログインユーザのユーザID |\n| スレッド名 | 処理を実行したスレッド名 |\n| メッセージID | メッセージに設定されているメッセージID |\n| 送信宛先 | メッセージに設定されている送信宛先 |\n| 関連メッセージID | メッセージに設定されている関連メッセージID |\n| 応答宛先 | メッセージに設定されている応答宛先 |\n| 有効期間 | メッセージに設定されている有効期間 |\n| メッセージヘッダ | メッセージに設定されているヘッダ |\n| メッセージボディ | メッセージボディ部のダンプ。個人情報・機密情報はマスクして出力(マスク設定が必要) |\n| メッセージボディのヘキサダンプ | メッセージボディ部のヘキサダンプ。マスク対象部分はマスク文字列のヘキサダンプを出力(マスク設定が必要) |\n| メッセージボディのバイト長 | メッセージボディ部のバイト長 |\n\n個別項目(スレッド名〜メッセージボディのバイト長)以外の共通項目は :ref:`Log_BasicLogFormatter` で指定する。共通項目と個別項目を組み合わせたフォーマットは :ref:`AppLog_Format` を参照。\n\n## 出力に使用するクラス\n\n![メッセージングログクラス図](assets/libraries-05_MessagingLog--s1/Log_MessagingLog_ClassDiagram.jpg)\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.fw.messaging.MessagingContext` | MOMメッセージ送受信処理で要求/応答メッセージの相互変換と送受信を行う。実際の送受信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.handler.HttpMessagingRequestParsingHandler` | HTTPリクエストを解析して要求メッセージへ変換するハンドラ。受信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.handler.HttpMessagingResponseBuildingHandler` | 応答メッセージをHTTPレスポンスへ変換するハンドラ。送信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.realtime.http.client.HttpMessagingClient` | 要求メッセージからHTTPリクエストへの変換およびHTTPレスポンスの応答メッセージへの変換を行う。送受信メッセージ内容をログ出力する |\n| `nablarch.fw.messaging.logging.MessagingLogUtil` | メッセージング処理中のログ出力内容に関連した処理を行う |\n| `nablarch.fw.messaging.logging.MessagingLogFormatter` | メッセージングログの個別項目をフォーマットする |\n\n各クラスはMessagingLogUtilを使用してメッセージングログを整形し、Loggerを使用してログ出力を行う。\n\n処理シーケンス:\n- MOM同期応答メッセージ受信: ![MOM受信シーケンス図](assets/libraries-05_MessagingLog--s1/Log_MessagingLog_SequenceDiagram_mom_incoming.jpg)\n - MOM応答不要メッセージ受信処理では、MOM受信ログの出力および業務アクションの呼び出しまでの処理が行われる(シーケンス図省略)\n- MOM同期応答メッセージ送信: ![MOM送信シーケンス図](assets/libraries-05_MessagingLog--s1/Log_MessagingLog_SequenceDiagram_mom_outgoing.jpg)\n - MOM応答不要メッセージ送信処理では、MOM送信ログの出力および要求キューメッセージの送信までの処理が行われる(シーケンス図省略)\n- HTTPメッセージ受信: ![HTTP受信シーケンス図](assets/libraries-05_MessagingLog--s1/Log_MessagingLog_SequenceDiagram_http_incoming.jpg)\n- HTTPメッセージ送信: ![HTTP送信シーケンス図](assets/libraries-05_MessagingLog--s1/Log_MessagingLog_SequenceDiagram_http_outgoing.jpg)\n\n## 設定方法\n\nMessagingLogUtilはapp-log.propertiesを読み込みMessagingLogFormatterオブジェクトを生成して個別項目のフォーマット処理を委譲する。プロパティファイルのパス指定や実行時設定変更は :ref:`AppLog_Config` を参照。\n\napp-log.propertiesの設定例:\n```bash\nmessagingLogFormatter.className=nablarch.fw.messaging.logging.MessagingLogFormatter\nmessagingLogFormatter.maskingChar=#\nmessagingLogFormatter.maskingPatterns=(.+?),(.+?)\n\nmessagingLogFormatter.sentMessageFormat=@@@@ SENT MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\treply_to = [$replyTo$]\\n\\ttime_to_live = [$timeToLive$]\\n\\tmessage_body = [$messageBody$]\nmessagingLogFormatter.receivedMessageFormat=@@@@ RECEIVED MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\treply_to = [$replyTo$]\\n\\tmessage_body = [$messageBody$]\nmessagingLogFormatter.httpSentMessageFormat=@@@@ HTTP SENT MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_body = [$messageBody$]\nmessagingLogFormatter.httpReceivedMessageFormat=@@@@ HTTP RECEIVED MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_body = [$messageBody$]\n```\n\n| プロパティ名 | 説明 |\n|---|---|\n| messagingLogFormatter.className | MessagingLogFormatterのクラス名。差し替える場合に指定 |\n| messagingLogFormatter.maskingPatterns | メッセージ本文のマスク対象文字列を正規表現で指定。最初のキャプチャ部分(括弧で囲まれた部分)がマスク対象。複数指定はカンマ区切り。Pattern.CASE_INSENSITIVEでコンパイルされる |\n| messagingLogFormatter.maskingChar | マスクに使用する文字。デフォルトは'*' |\n| messagingLogFormatter.sentMessageFormat | MOM送信メッセージのログ出力フォーマット |\n| messagingLogFormatter.receivedMessageFormat | MOM受信メッセージのログ出力フォーマット |\n| messagingLogFormatter.httpSentMessageFormat | HTTP送信メッセージのログ出力フォーマット |\n| messagingLogFormatter.httpReceivedMessageFormat | HTTP受信メッセージのログ出力フォーマット |\n\n## 出力例\n\ncnoタグ内容をマスクするHTTPメッセージ受信処理の例。\n\napp-log.propertiesの設定例:\n```bash\nmessagingLogFormatter.maskingChar=#\nmessagingLogFormatter.maskingPatterns=(.*?)\nmessagingLogFormatter.httpSentMessageFormat=@@@@ SENT MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_length = [$messageBodyLength$]\\n\\tmessage_body = [$messageBody$]\\n\\tmessage_bodyhex= [$messageBodyHex$]\nmessagingLogFormatter.httpReceivedMessageFormat=@@@@ RECEIVED MESSAGE @@@@\\n\\tthread_name = [$threadName$]\\n\\tmessage_id = [$messageId$]\\n\\tdestination = [$destination$]\\n\\tcorrelation_id = [$correlationId$]\\n\\tmessage_header = [$messageHeader$]\\n\\tmessage_length = [$messageBodyLength$]\\n\\tmessage_body = [$messageBody$]\\n\\tmessage_bodyhex= [$messageBodyHex$]\n```\n\nlog.propertiesの設定例:\n```bash\nwriterNames=appFile\n\nwriter.appFile.className=nablarch.core.log.basic.FileLogWriter\nwriter.appFile.filePath=./app.log\nwriter.appFile.encoding=UTF-8\nwriter.appFile.maxFileSize=10000\nwriter.appFile.formatter.className=nablarch.core.log.basic.BasicLogFormatter\nwriter.appFile.formatter.format=$date$ -$logLevel$- $loggerName$ [$executionId$] boot_proc = [$bootProcess$] proc_sys = [$processingSystem$] req_id = [$requestId$] usr_id = [$userId$] $message$$information$$stackTrace$\n\navailableLoggersNamesOrder=MESSAGING\n\nloggers.MESSAGING.nameRegex=MESSAGING\nloggers.MESSAGING.level=INFO\nloggers.MESSAGING.writerNames=appFile\n```\n\n出力例(cnoタグの内容はmaskingCharで指定した文字にマスクされ、ヘキサダンプ部分もマスク文字列のヘキサダンプが出力される):\n```\n2014-06-27 11:07:51.314 -INFO- MESSAGING [null] boot_proc = [] proc_sys = [] req_id = [RM11AC0102] usr_id = [unitTest] @@@@ HTTP RECEIVED MESSAGE @@@@\n thread_name = [main]\n message_id = [1403834871251]\n destination = [null]\n correlation_id = [null]\n message_header = [{x-message-id=1403834871251, MessageId=1403834871251, ReplyTo=/action/RM11AC0102}]\n message_length = [216]\n message_body = [<_nbctlhdr>unitTest0nablarchナブラーク****************]\n message_bodyhex= [3C3F786D6C...(マスク文字列のヘキサダンプ)]\n2014-06-27 11:07:51.329 -INFO- MESSAGING [null] boot_proc = [] proc_sys = [] req_id = [RM11AC0102] usr_id = [unitTest] @@@@ HTTP SENT MESSAGE @@@@\n thread_name = [main]\n message_id = [null]\n destination = [/action/RM11AC0102]\n correlation_id = [1403834871251]\n message_header = [{CorrelationId=1403834871251, Destination=/action/RM11AC0102}]\n message_length = [145]\n message_body = [<_nbctlhdr>200success]\n message_bodyhex= [3C3F786D6C...(ヘキサダンプ)]\n```", - "s2": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信宛先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| 応答宛先 | $replyTo$ |\n| 有効期間 | $timeToLive$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ SENT MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\treply_to = [$replyTo$]\n \\n\\ttime_to_live = [$timeToLive$]\n \\n\\tmessage_body = [$messageBody$]\n```", - "s3": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信宛先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| 応答宛先 | $replyTo$ |\n| 有効期間 | $timeToLive$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ RECEIVED MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\treply_to = [$replyTo$]\n \\n\\tmessage_body = [$messageBody$]\n```", - "s4": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n| メッセージのヘッダ | $messageHeader$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ HTTP SENT MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\tmessage_header = [$messageHeader$]\n \\n\\tmessage_body = [$messageBody$]\n```", - "s5": "## プレースホルダ一覧\n\n| 項目名 | プレースホルダ |\n|---|---|\n| スレッド名 | $threadName$ |\n| メッセージID | $messageId$ |\n| 送信先 | $destination$ |\n| 関連メッセージID | $correlationId$ |\n| メッセージボディの内容 | $messageBody$ |\n| メッセージボディのヘキサダンプ | $messageBodyHex$ |\n| メッセージボディのバイト長 | $messageBodyLength$ |\n| メッセージのヘッダ | $messageHeader$ |\n\n## デフォルトフォーマット\n\n```bash\n@@@@ HTTP RECEIVED MESSAGE @@@@\n \\n\\tthread_name = [$threadName$]\n \\n\\tmessage_id = [$messageId$]\n \\n\\tdestination = [$destination$]\n \\n\\tcorrelation_id = [$correlationId$]\n \\n\\tmessage_header = [$messageHeader$]\n \\n\\tmessage_body = [$messageBody$]\n```" - } -} \ No newline at end of file diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s1.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s1.json index 0e60c1984..72e346eb0 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s1.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s1.json @@ -16,6 +16,84 @@ "checkboxタグ", "selectタグ", "submitタグ", + "compositeKeyRadioButtonタグ", + "CompositeKeyRadioButtonTag", + "fileタグ", + "FileTag", + "hiddenタグ", + "HiddenTag", + "plainHiddenタグ", + "PlainHiddenTag", + "radiobuttonsタグ", + "RadioButtonsTag", + "checkboxesタグ", + "CheckboxesTag", + "buttonタグ", + "ButtonTag", + "submitLinkタグ", + "SubmitLinkTag", + "popupSubmitタグ", + "PopupSubmitTag", + "popupButtonタグ", + "PopupButtonTag", + "popupLinkタグ", + "PopupLinkTag", + "downloadSubmitタグ", + "DownloadSubmitTag", + "downloadButtonタグ", + "DownloadButtonTag", + "downloadLinkタグ", + "DownloadLinkTag", + "paramタグ", + "ParamTag", + "changeParamNameタグ", + "ChangeParamNameTag", + "aタグ", + "ATag", + "imgタグ", + "ImgTag", + "linkタグ", + "LinkTag", + "scriptタグ", + "ScriptTag", + "errorsタグ", + "ErrorsTag", + "errorタグ", + "ErrorTag", + "noCacheタグ", + "NoCacheTag", + "codeSelectタグ", + "CodeSelectTag", + "codeRadioButtonsタグ", + "CodeRadioButtonsTag", + "codeCheckboxesタグ", + "CodeCheckboxesTag", + "codeCheckboxタグ", + "CodeCheckboxTag", + "codeタグ", + "CodeTag", + "messageタグ", + "MessageTag", + "writeタグ", + "WriteTag", + "prettyPrintタグ", + "PrettyPrintTag", + "rawWriteタグ", + "RawWriteTag", + "setタグ", + "SetTag", + "includeタグ", + "IncludeTag", + "includeParamタグ", + "IncludeParamTag", + "confirmationPageタグ", + "ConfirmationPageTag", + "ignoreConfirmationタグ", + "IgnoreConfirmationTag", + "forInputPageタグ", + "ForInputPageTag", + "forConfirmationPageタグ", + "ForConfirmationPageTag", "カスタムタグ", "WebView", "サブミット制御", diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s11.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s11.json index 5f9853a57..c58be0545 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s11.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s11.json @@ -13,6 +13,10 @@ "valueObject", "keyNames", "namePrefix", + "autofocus", + "label", + "disabled", + "onchange", "errorCss", "nameAlias", "複合キーチェックボックス", @@ -29,6 +33,10 @@ "valueObject", "keyNames", "namePrefix", + "autofocus", + "label", + "disabled", + "onchange", "errorCss", "nameAlias", "複合キーラジオボタン", @@ -44,7 +52,12 @@ "name", "disabled", "readonly", + "size", + "maxlength", + "onselect", + "onchange", "accept", + "autofocus", "multiple", "errorCss", "nameAlias", @@ -81,9 +94,19 @@ "title": "selectタグ", "hints": [ "select", + "name", "listName", "elementLabelProperty", "elementValueProperty", + "size", + "multiple", + "disabled", + "tabindex", + "onfocus", + "onblur", + "onchange", + "autofocus", + "nameAlias", "elementLabelPattern", "listFormat", "withNoneOption", @@ -99,9 +122,14 @@ "title": "radioButtonsタグ", "hints": [ "radioButtons", + "name", "listName", "elementLabelProperty", "elementValueProperty", + "disabled", + "onchange", + "autofocus", + "nameAlias", "elementLabelPattern", "listFormat", "errorCss", @@ -115,9 +143,14 @@ "title": "checkboxesタグ", "hints": [ "checkboxes", + "name", "listName", "elementLabelProperty", "elementValueProperty", + "disabled", + "onchange", + "autofocus", + "nameAlias", "elementLabelPattern", "listFormat", "errorCss", @@ -152,6 +185,11 @@ "title": "buttonタグ", "hints": [ "button", + "name", + "value", + "type", + "disabled", + "autofocus", "uri", "allowDoubleSubmission", "secure", @@ -167,6 +205,7 @@ "title": "submitLinkタグ", "hints": [ "submitLink", + "name", "uri", "allowDoubleSubmission", "secure", @@ -183,6 +222,10 @@ "title": "popupSubmitタグ", "hints": [ "popupSubmit", + "name", + "disabled", + "value", + "autofocus", "type", "uri", "popupWindowName", @@ -204,6 +247,11 @@ "title": "popupButtonタグ", "hints": [ "popupButton", + "name", + "value", + "type", + "disabled", + "autofocus", "uri", "popupWindowName", "popupOption", diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s24.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s24.json index 893654152..b4469ea08 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s24.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s24.json @@ -14,7 +14,10 @@ "popupOption", "displayMethod", "secure", - "uri" + "uri", + "name", + "shape", + "coords" ] }, { @@ -27,7 +30,16 @@ "二重サブミット", "displayMethod", "secure", - "uri" + "uri", + "name", + "type", + "disabled", + "value", + "src", + "alt", + "usemap", + "align", + "autofocus" ] }, { @@ -40,7 +52,12 @@ "二重サブミット", "displayMethod", "secure", - "uri" + "uri", + "name", + "value", + "type", + "disabled", + "autofocus" ] }, { @@ -53,7 +70,10 @@ "二重サブミット", "displayMethod", "secure", - "uri" + "uri", + "name", + "shape", + "coords" ] }, { @@ -63,7 +83,9 @@ "param", "paramName", "サブミットパラメータ", - "パラメータ名" + "パラメータ名", + "name", + "value" ] }, { @@ -85,7 +107,14 @@ "href", "hreflang", "secure", - "target" + "target", + "charset", + "type", + "name", + "rel", + "rev", + "shape", + "coords" ] }, { @@ -97,7 +126,16 @@ "src", "alt", "secure", - "usemap" + "usemap", + "name", + "longdesc", + "height", + "width", + "ismap", + "align", + "border", + "hspace", + "vspace" ] }, { @@ -109,7 +147,12 @@ "href", "media", "secure", - "rel" + "rel", + "charset", + "hreflang", + "type", + "rev", + "target" ] }, { @@ -121,7 +164,11 @@ "src", "xmlSpace", "secure", - "defer" + "defer", + "type", + "id", + "charset", + "language" ] }, { @@ -136,7 +183,11 @@ "ValidationResultMessage", "global", "infoCss", - "warnCss" + "warnCss", + "errorCss", + "nablarch_error", + "nablarch_info", + "nablarch_warn" ] }, { @@ -147,7 +198,8 @@ "エラーメッセージ", "messageFormat", "errorCss", - "nablarch_error" + "nablarch_error", + "name" ] }, { @@ -202,17 +254,17 @@ } ], "sections": { - "s1": "## popupLinkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| popupWindowName | | | ポップアップのウィンドウ名。window.open関数の第2引数(JavaScript)に指定する |\n| popupOption | | | ポップアップのオプション情報。window.open関数の第3引数(JavaScript)に指定する |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |", + "s1": "## popupLinkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| popupWindowName | | | ポップアップのウィンドウ名。新しいウィンドウを開く際にwindwo.open関数の第2引数(JavaScript)に指定する |\n| popupOption | | | ポップアップのオプション情報。新しいウィンドウを開く際にwindwo.open関数の第3引数(JavaScript)に指定する |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |", "s2": "## downloadSubmitタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| type | ○ | | XHTMLのtype属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| disabled | | | XHTMLのdisabled属性 |\n| value | | | XHTMLのvalue属性 |\n| src | | | XHTMLのsrc属性 |\n| alt | | | XHTMLのalt属性 |\n| usemap | | | XHTMLのusemap属性 |\n| align | | | XHTMLのalign属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| allowDoubleSubmission | | true | 二重サブミットを許可するか否か。許可する場合はtrue、許可しない場合はfalse |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |", "s3": "## downloadButtonタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| value | | | XHTMLのvalue属性 |\n| type | | | XHTMLのtype属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| allowDoubleSubmission | | true | 二重サブミットを許可するか否か。許可する場合はtrue、許可しない場合はfalse |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |", "s4": "## downloadLinkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | | | XHTMLのname属性 |\n| uri | ○ | | URI。:ref:`WebView_SpecifyUri` を参照 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| allowDoubleSubmission | | true | 二重サブミットを許可するか否か。許可する場合はtrue、許可しない場合はfalse |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |\n| displayMethod | | | 認可判定と開閉局判定の結果による表示制御方法。NODISPLAY(非表示)/ DISABLED(非活性)/ NORMAL(通常表示) |", "s5": "## paramタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| paramName | ○ | | サブミット時に使用するパラメータの名前 |\n| name | | | 値を取得するための名前。name属性とvalue属性のどちらか一方を指定する |\n| value | | | 値。直接値を指定する場合に使用する。name属性とvalue属性のどちらか一方を指定する |", "s6": "## changeParamNameタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| paramName | ○ | | サブミット時に使用するパラメータの名前 |\n| inputName | ○ | | 変更元となる元画面のinput要素のname属性 |", "s7": "## aタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| charset | | | XHTMLのcharset属性 |\n| type | | | XHTMLのtype属性 |\n| name | | | XHTMLのname属性 |\n| href | | | XHTMLのhref属性。:ref:`WebView_SpecifyUri` を参照 |\n| hreflang | | | XHTMLのhreflang属性 |\n| rel | | | XHTMLのrel属性 |\n| rev | | | XHTMLのrev属性 |\n| shape | | | XHTMLのshape属性 |\n| coords | | | XHTMLのcoords属性 |\n| target | | | XHTMLのtarget属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |", - "s8": "## imgタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| src | ○ | | XHTMLのsrc属性。:ref:`WebView_SpecifyUri` を参照 |\n| alt | ○ | | XHTMLのalt属性 |\n| name | | | XHTMLのname属性 |\n| longdesc | | | XHTMLのlongdesc属性 |\n| height | | | XHTMLのheight属性 |\n| width | | | XHTMLのwidth属性 |\n| usemap | | | XHTMLのusemap属性 |\n| ismap | | | XHTMLのismap属性 |\n| align | | | XHTMLのalign属性 |\n| border | | | XHTMLのborder属性 |\n| hspace | | | XHTMLのhspace属性 |\n| vspace | | | XHTMLのvspace属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |", + "s8": "## imgタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| src | ○ | | XHTMLのcharsrc属性。:ref:`WebView_SpecifyUri` を参照 |\n| alt | ○ | | XHTMLのalt属性 |\n| name | | | XHTMLのname属性 |\n| longdesc | | | XHTMLのlongdesc属性 |\n| height | | | XHTMLのheight属性 |\n| width | | | XHTMLのwidth属性 |\n| usemap | | | XHTMLのusemap属性 |\n| ismap | | | XHTMLのismap属性 |\n| align | | | XHTMLのalign属性 |\n| border | | | XHTMLのborder属性 |\n| hspace | | | XHTMLのhspace属性 |\n| vspace | | | XHTMLのvspace属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |", "s9": "## linkタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| charset | | | XHTMLのcharset属性 |\n| href | | | XHTMLのhref属性。:ref:`WebView_SpecifyUri` を参照 |\n| hreflang | | | XHTMLのhreflang属性 |\n| type | | | XHTMLのtype属性 |\n| rel | | | XHTMLのrel属性 |\n| rev | | | XHTMLのrev属性 |\n| media | | | XHTMLのmedia属性 |\n| target | | | XHTMLのtarget属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |", "s10": "## scriptタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| type | ○ | | XHTMLのtype属性 |\n| id | | | XHTMLのid属性 |\n| charset | | | XHTMLのcharset属性 |\n| language | | | XHTMLのlanguage属性 |\n| src | | | XHTMLのsrc属性。:ref:`WebView_SpecifyUri` を参照 |\n| defer | | | XHTMLのdefer属性 |\n| xmlSpace | | | XHTMLのxml:space属性 |\n| secure | | | URIをhttpsにするか否か。httpsにする場合はtrue、しない場合はfalse |", - "s11": "## errorsタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| cssClass | | nablarch_errors | リスト表示においてulタグに使用するCSSクラス名 |\n| infoCss | | nablarch_info | 情報レベルのメッセージに使用するCSSクラス名 |\n| warnCss | | nablarch_warn | 警告レベルのメッセージに使用するCSSクラス名 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| filter | | all | リストに含めるメッセージのフィルタ条件。all(全てのメッセージを表示)/ global(ValidationResultMessageのプロパティ名が入っているメッセージを取り除いて出力) |", + "s11": "## errorsタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| cssClass | | nablarch_errors | リスト表示においてulタグに使用するCSSクラス名 |\n| infoCss | | nablarch_info | 情報レベルのメッセージに使用するCSSクラス名 |\n| warnCss | | nablarch_warn | 警告レベルのメッセージに使用するCSSクラス名 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| filter | | all | リストに含めるメッセージのフィルタ条件。all(全てのメッセージを表示)/ global(入力項目に対応しないメッセージのみを表示。ValidationResultMessageのプロパティ名が入っているメッセージを取り除いて出力) |", "s12": "## errorタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | エラーメッセージを表示する入力項目のname属性 |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| messageFormat | | div | メッセージ表示時に使用するフォーマット。div(divタグ)/ span(spanタグ) |", "s13": "## noCacheタグ\n\n属性なし。", "s14": "## codeSelectタグ\n\n| 属性名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| name | ○ | | XHTMLのname属性 |\n| codeId | ○ | | コードID |\n| size | | | XHTMLのsize属性 |\n| multiple | | | XHTMLのmultiple属性 |\n| disabled | | | XHTMLのdisabled属性 |\n| tabindex | | | XHTMLのtabindex属性 |\n| onfocus | | | XHTMLのonfocus属性 |\n| onblur | | | XHTMLのonblur属性 |\n| onchange | | | XHTMLのonchange属性 |\n| autofocus | | | HTML5のautofocus属性 |\n| pattern | | 指定なし | 使用するパターンのカラム名 |\n| optionColumnName | | | 取得するオプション名称のカラム名 |\n| labelPattern | | $NAME$ | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)/ $SHORTNAME$(略称)/ $OPTIONALNAME$(オプション名称、使用時はoptionColumnName必須)/ $VALUE$(コード値) |\n| listFormat | | br | リスト表示時のフォーマット。br / div / span / ul / ol / sp(スペース区切り) |\n| withNoneOption | | false | リスト先頭に選択なしのオプションを追加するか否か |\n| noneOptionLabel | | \"\" | withNoneOptionがtrueの場合に使用する選択なしオプションのラベル |\n| errorCss | | nablarch_error | エラーレベルのメッセージに使用するCSSクラス名 |\n| nameAlias | | | name属性のエイリアス。複数指定する場合はカンマ区切り |", diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s39.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s39.json index 5019a1c8c..0328bc9a8 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s39.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-07_TagReference--s39.json @@ -68,6 +68,7 @@ "メッセージID", "HTMLエスケープ", "messageId", + "option0~option9", "htmlEscape", "withHtmlFormat", "var", @@ -177,8 +178,8 @@ "s1": "## codeCheckboxesタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | id属性は指定不可。 |\n| :ref:`WebView_FocusAttributesTag` | | | accesskey属性は指定不可。 |\n| name | ○ | | XHTMLのname属性。 |\n| codeId | ○ | | コードID。 |\n| disabled | | | XHTMLのdisabled属性。 |\n| onchange | | | XHTMLのonchange属性。 |\n| autofocus | | | HTML5のautofocus属性。選択肢のうち、先頭要素のみautofocus属性を出力する。 |\n| pattern | | 指定なし | 使用するパターンのカラム名。 |\n| optionColumnName | | | 取得するオプション名称のカラム名。 |\n| labelPattern | | \"$NAME$\" | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)、$SHORTNAME$(略称)、$OPTIONALNAME$(オプション名称、optionColumnName必須)、$VALUE$(コード値)。 |\n| listFormat | | br | リスト表示フォーマット。br/div/span/ul/ol/sp のいずれかを指定。 |\n| errorCss | | \"nablarch_error\" | エラーレベルのメッセージに使用するCSSクラス名。 |\n| nameAlias | | | name属性のエイリアス。複数指定はカンマ区切り。 |", "s2": "## codeCheckboxタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| :ref:`WebView_GenericAttributesTag` | | | |\n| :ref:`WebView_FocusAttributesTag` | | | |\n| name | ○ | | XHTMLのname属性。 |\n| value | | \"1\" | XHTMLのvalue属性。チェックありの場合に使用するコード値。 |\n| autofocus | | | HTML5のautofocus属性。 |\n| codeId | ○ | | コードID。 |\n| optionColumnName | | | 取得するオプション名称のカラム名。 |\n| labelPattern | | \"$NAME$\" | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)、$SHORTNAME$(略称)、$OPTIONALNAME$(オプション名称、optionColumnName必須)、$VALUE$(コード値)。 |\n| offCodeValue | | | チェックなしの場合に使用するコード値。未指定時はcodeId属性の値からチェックなしコード値を検索。検索結果が2件かつ1件がvalue属性値の場合、残り1件を使用。見つからない場合はデフォルト値\"0\"を使用。 |\n| disabled | | | XHTMLのdisabled属性。 |\n| onchange | | | XHTMLのonchange属性。 |\n| errorCss | | \"nablarch_error\" | エラーレベルのメッセージに使用するCSSクラス名。 |\n| nameAlias | | | name属性のエイリアス。複数指定はカンマ区切り。 |", "s3": "## codeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | | | 表示対象のコード値を変数スコープから取得する名前。省略時はcodeId属性とpattern属性で絞り込んだコードの一覧を表示する。 |\n| codeId | ○ | | コードID。 |\n| pattern | | 指定なし | 使用するパターンのカラム名。 |\n| optionColumnName | | | 取得するオプション名称のカラム名。 |\n| labelPattern | | \"$NAME$\" | ラベルを整形するパターン。プレースホルダ: $NAME$(コード名称)、$SHORTNAME$(略称)、$OPTIONALNAME$(オプション名称、optionColumnName必須)、$VALUE$(コード値)。 |\n| listFormat | | br | リスト表示フォーマット。br/div/span/ul/ol/sp のいずれかを指定。 |", - "s4": "## messageタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| messageId | ○ | | メッセージID。 |\n| option0~option9 | | | メッセージフォーマットに使用するオプション引数(インデックス0~9)。最大10個まで指定可能。 |\n| language | | スレッドコンテキストの言語 | メッセージの言語。 |\n| var | | | リクエストスコープに格納する変数名。指定した場合はメッセージを出力せずリクエストスコープに設定する。この場合はHTMLエスケープとHTMLフォーマットを行わない。 |\n| htmlEscape | | true | HTMLエスケープするか否か(true/false)。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。htmlEscape=trueの場合のみ有効。 |", - "s5": "## writeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。HTMLエスケープをする場合のみ有効。 |\n| valueFormat | | | 出力時のフォーマット。`データタイプ{パターン}`形式で指定。 |\n\n**valueFormatのデータタイプ**:\n\n- **yyyymmdd**: 年月日フォーマット。値はyyyyMMdd形式またはパターン形式の文字列。パターン文字はy(年)、M(月)、d(日)のみ指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定可。\n ```\n valueFormat=\"yyyymmdd\"\n valueFormat=\"yyyymmdd{yyyy/MM/dd}\"\n ```\n\n- **yyyymm**: 年月フォーマット。値はyyyyMM形式の文字列。使用方法はyyyymmddと同様。\n\n- **dateTime**: 日時フォーマット(**writeタグのみで使用可能**)。値はjava.util.Date型。パターンはjava.text.SimpleDateFormat構文。ThreadContextのタイムゾーンを使用。区切り文字\"|\"でパターンにタイムゾーンを直接指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定と区切り文字変更可。\n ```\n valueFormat=\"datetime\"\n valueFormat=\"datetime{|Asia/Tokyo}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss|Asia/Tokyo}\"\n ```\n\n- **decimal**: 10進数フォーマット。値はjava.lang.Number型または数字の文字列。文字列の場合、言語に対応する1000区切り文字を除去後にフォーマット。パターンはjava.text.DecimalFormat構文。ThreadContextの言語を使用。区切り文字\"|\"でパターンに言語を直接指定可能。:ref:`WebView_CustomTagConfig` で区切り文字変更可。\n ```\n valueFormat=\"decimal{###,###,###.000}\"\n valueFormat=\"decimal{###,###,###.000|ja}\"\n ```", + "s4": "## messageタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| messageId | ○ | | メッセージID。 |\n| option0~option9 | | | メッセージフォーマットに使用するインデックスが0~9のオプション引数。最大10個まで指定可能。 |\n| language | | スレッドコンテキストの言語 | メッセージの言語。 |\n| var | | | リクエストスコープに格納する変数名。指定した場合はメッセージを出力せずリクエストスコープに設定する。この場合はHTMLエスケープとHTMLフォーマットを行わない。 |\n| htmlEscape | | true | HTMLエスケープするか否か(true/false)。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。htmlEscape=trueの場合のみ有効。 |", + "s5": "## writeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |\n| withHtmlFormat | | true | HTMLフォーマット(改行と半角スペースの変換)をするか否か。HTMLエスケープをする場合のみ有効。 |\n| valueFormat | | | 出力時のフォーマット。`データタイプ{パターン}`形式で指定。 |\n\n**valueFormatのデータタイプ**:\n\n- **yyyymmdd**: 年月日フォーマット。値はyyyyMMdd形式またはパターン形式の文字列。パターン文字はy(年)、M(月)、d(日)のみ指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定可。\n ```\n valueFormat=\"yyyymmdd\"\n valueFormat=\"yyyymmdd{yyyy/MM/dd}\"\n ```\n\n- **yyyymm**: 年月フォーマット。値はyyyyMM形式またはパターン形式の文字列を指定する。使用方法は、yyyymmddと同様。\n\n- **dateTime**: 日時フォーマット(**writeタグのみで使用可能**)。値はjava.util.Date型。パターンはjava.text.SimpleDateFormat構文。ThreadContextのタイムゾーンを使用。区切り文字\"|\"でパターンにタイムゾーンを直接指定可能。:ref:`WebView_CustomTagConfig` でデフォルトパターン設定と区切り文字変更可。\n ```\n valueFormat=\"datetime\"\n valueFormat=\"datetime{|Asia/Tokyo}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss}\"\n valueFormat=\"datetime{yy/MM/dd HH:mm:ss|Asia/Tokyo}\"\n ```\n\n- **decimal**: 10進数フォーマット。値はjava.lang.Number型または数字の文字列。文字列の場合、言語に対応する1000区切り文字を除去後にフォーマット。パターンはjava.text.DecimalFormat構文。ThreadContextの言語を使用。区切り文字\"|\"でパターンに言語を直接指定可能。:ref:`WebView_CustomTagConfig` で区切り文字変更可。\n ```\n valueFormat=\"decimal{###,###,###.000}\"\n valueFormat=\"decimal{###,###,###.000|ja}\"\n ```", "s6": "## prettyPrintタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |", "s7": "## rawWriteタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| name | ○ | | 表示対象の値を変数スコープから取得する名前。 |\n\n### setタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| var | ○ | | リクエストスコープに格納する変数名。 |\n| name | | | 値を取得するための名前。name属性とvalue属性のどちらか一方を指定する。 |\n| value | | | 値。直接値を指定する場合に使用する。name属性とvalue属性のどちらか一方を指定する。 |\n| scope | | リクエストスコープ | 変数を格納するスコープ。page(ページスコープ)またはrequest(リクエストスコープ)。 |\n| bySingleValue | | true | name属性に対応する値を単一値として取得するか否か。 |", "s8": "## includeタグ\n\n| 属性 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| path | ○ | | インクルード先のパス。 |", diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s1.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s1.json index 4986d7a16..d3ec183ea 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s1.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s1.json @@ -69,24 +69,17 @@ }, { "id": "s6", - "title": "RequestIdAttributeの設定", + "title": "RequestIdAttribute / InternalRequestIdAttributeの設定", "hints": [ "RequestIdAttribute", - "リクエストID設定", - "設定プロパティ" - ] - }, - { - "id": "s7", - "title": "InternalRequestIdAttributeの設定", - "hints": [ "InternalRequestIdAttribute", + "リクエストID設定", "内部リクエストID設定", "設定プロパティ" ] }, { - "id": "s8", + "id": "s7", "title": "使用方法", "hints": [ "ThreadContextHandler", @@ -96,13 +89,15 @@ "LanguageAttribute", "TimeZoneAttribute", "ExecutionIdAttribute", + "ForwardingHandler", + "FwHeaderReader", "言語切り替え", "タイムゾーン切り替え", "国際化" ] }, { - "id": "s9", + "id": "s8", "title": "LanguageAttribute選択基準", "hints": [ "LanguageAttribute", @@ -117,6 +112,21 @@ "ログイン時言語取得" ] }, + { + "id": "s9", + "title": "TimeZoneAttribute選択基準", + "hints": [ + "TimeZoneAttribute", + "TimeZoneAttributeInHttpCookie", + "TimeZoneAttributeInHttpSession", + "TimeZoneAttributeInHttpSupport", + "TimeZoneAttributeInHttpUtil", + "タイムゾーン選択", + "国際化", + "タイムゾーン切り替え", + "ログイン時タイムゾーン取得" + ] + }, { "id": "s10", "title": "TimeZoneAttribute選択基準", @@ -149,15 +159,15 @@ } ], "sections": { - "s1": "スレッドコンテキストはスレッドローカル変数上の変数スコープ。ユーザIDやリクエストIDなど、実行コンテキスト経由での引き回しが難しいパラメータを格納する。\n\n- 多くの値は:doc:`../handler/ThreadContextHandler`によって設定される\n- 子スレッドを起動した場合、親スレッドの値が暗黙的に引き継がれる\n- 子スレッドで値を変更する場合は、明示的に子スレッドで値を設定すること\n\n![クラス図](assets/libraries-thread_context--s1/thread_context.jpg)", + "s1": "スレッドコンテキストはスレッドローカル変数上の変数スコープ。ユーザIDやリクエストIDなど、実行コンテキスト経由での引き回しが難しいパラメータを格納する。\n\n- 多くの値は:doc:`../handler/ThreadContextHandler`によって設定される\n- それ以外ハンドラでも、スレッドコンテキストに変数を設定するものが存在する\n- 業務アクションハンドラから任意の変数を設定することも可能\n- 子スレッドを起動した場合、親スレッドの値が暗黙的に引き継がれる\n- 子スレッドで値を変更する場合は、明示的に子スレッドで値を設定すること\n\n![クラス図](assets/libraries-thread_context--s1/thread_context.jpg)", "s2": "| クラス・インタフェース名 | 概要 |\n|---|---|\n| `nablarch.common.handler.threadcontext.ThreadContextAttribute` | スレッドコンテキストに属性を設定するインタフェース。実装クラスはコンテキストから属性値を取得する責務を持つ。 |", "s3": "## コアクラス\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.handler.threadcontext.ThreadContextHandler` | スレッドコンテキストを初期化するハンドラ |\n| `nablarch.common.handler.threadcontext.RequestIdAttribute` | :ref:`リクエストID`をスレッドコンテキストに設定するThreadContextAttribute |\n| `nablarch.common.handler.threadcontext.InternalRequestIdAttribute` | :ref:`内部リクエストID`をリクエストIDと同じ値に初期設定する |\n| `nablarch.common.handler.threadcontext.UserIdAttribute` | ログインユーザのユーザIDをスレッドコンテキストに設定するThreadContextAttribute。未ログイン時は未認証ユーザIDを設定 |\n| `nablarch.common.handler.threadcontext.LanguageAttribute` | 言語をスレッドコンテキストに設定するThreadContextAttribute |\n| `nablarch.common.handler.threadcontext.TimeZoneAttribute` | タイムゾーンをスレッドコンテキストに設定するThreadContextAttribute |\n| `nablarch.common.handler.threadcontext.ExecutionIdAttribute` | :ref:`実行時ID`をスレッドコンテキストに設定するThreadContextAttribute |\n\n## LanguageAttributeのサブクラスとユーティリティ\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.web.handler.threadcontext.HttpLanguageAttribute` | HTTPヘッダ(Accept-Language)から言語を取得するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSupport` | HTTP上で言語の選択と保持を行うThreadContextAttributeの実装をサポートするクラス |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpCookie` | クッキーを使用して言語を保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSession` | HTTPセッションを使用して言語を保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpUtil` | HTTP上で選択された言語を保持する処理を提供するユーティリティクラス |\n\n## TimeZoneAttributeのサブクラスとユーティリティ\n\n| クラス名 | 概要 |\n|---|---|\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSupport` | HTTP上で選択されたタイムゾーンの保持を行うThreadContextAttributeの実装をサポートするクラス |\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpCookie` | クッキーを使用してタイムゾーンを保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSession` | HTTPセッションを使用してタイムゾーンを保持するThreadContextAttribute |\n| `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpUtil` | HTTP上で選択されたタイムゾーンを保持する処理を提供するユーティリティクラス |", "s4": "| プロパティ名 | 設定内容 |\n|---|---|\n| attributes | ThreadContextAttributeインタフェースを実装したクラスのリストを設定する |", "s5": "| プロパティ名 | 設定内容 |\n|---|---|\n| sessionKey | セッションからユーザIDを取得する際のキーを設定する。設定しなかった場合、\"USER_ID\"がキーとして使用される |\n| anonymousId | 未ログインユーザに対して設定するユーザIDを設定する。設定しなかった場合、未ログインユーザのユーザIDは設定されない |", - "s6": "RequestIdAttributeには設定値は存在しない。", - "s7": "InternalRequestIdAttributeには設定値は存在しない。", - "s8": "ThreadContextHandlerは、リクエスト毎にスレッドコンテキストの初期化を行う。実際にスレッドコンテキストに設定する値を取得する責務は、ThreadContextAttributeインタフェース実装クラスが持つ。\n\n## フレームワークが提供するThreadContextAttribute実装クラス\n\n- :ref:`リクエストID`\n- :ref:`内部リクエストID`\n- ユーザID\n- 言語\n- タイムゾーン\n- :ref:`実行時ID`\n\n## ThreadContextHandler以外での属性更新\n\n| 属性 | 更新状況 |\n|---|---|\n| :ref:`リクエストID` | :doc:`../architectural_pattern/messaging` のみ、:doc:`../reader/FwHeaderReader` によって更新 |\n| :ref:`内部リクエストID` | Web GUIでは内部フォワード時に:doc:`../handler/ForwardingHandler`で更新。メッセージングでは:doc:`../reader/FwHeaderReader`で更新 |\n| ユーザID | :doc:`../architectural_pattern/messaging` のみ、:doc:`../reader/FwHeaderReader` によって更新 |\n\n## 各属性クラスの仕様\n\n**RequestIdAttribute**: URLの最後の\"/\"から\".\"の間の文字列をリクエストIDとする。\n\n**InternalRequestIdAttribute**: リクエストIDと同じ値に初期設定する。\n\n**UserIdAttribute**: HttpセッションからユーザIDを取得してスレッドコンテキストに設定する。取得できない場合は未ログインを示す特別なユーザIDを設定する。認証処理ではセッションにユーザIDを設定しておく必要がある。\n\n> **注意**: HttpセッションからユーザIDを取得するキーと未ログインユーザIDはプロパティで変更可能。\n\n**ExecutionIdAttribute**: 実行時IDをスレッドコンテキストに設定する。詳細は:ref:`execution_id`参照。", - "s9": "LanguageAttributeクラスは、スレッドコンテキストに設定する言語を取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## LanguageAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| LanguageAttribute | リポジトリの設定で指定された言語をスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトロケールが使用される |\n| HttpLanguageAttribute | HTTPヘッダ(Accept-Language)から取得した言語をスレッドコンテキストに設定する。サポート対象の言語が取得できない場合は親クラスのLanguageAttributeに委譲 |\n| LanguageAttributeInHttpCookie | クッキーを使用した言語の保持を行う。サポート対象の言語が取得できない場合は親クラスのHttpLanguageAttributeに委譲 |\n| LanguageAttributeInHttpSession | HTTPセッションを使用した言語の保持を行う。言語の保持にHTTPセッションを使用することを除き、具体的な処理はLanguageAttributeInHttpCookieと同じ |\n| LanguageAttributeInHttpUtil | LanguageAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択した言語を保持する処理(言語選択処理やログイン処理でのクッキー/HTTPセッションへの言語設定)を提供するユーティリティクラス。リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | 言語の選択 | 言語の保存 | 説明 |\n|---|---|---|---|\n| LanguageAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。言語は常に固定となる。アプリ実装不要 |\n| HttpLanguageAttribute | ブラウザの言語設定 | ブラウザの言語設定 | ブラウザ設定に応じて切り替え。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。アプリ実装不要 |\n| LanguageAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリが言語選択画面を提供。ログイン前でも有効。ブラウザ単位で保持。選択言語をクッキーに設定する処理はLanguageAttributeInHttpUtilが提供 |\n| LanguageAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリが言語選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じ言語が適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づく言語の取得処理(HTTPセッションへの言語設定はLanguageAttributeInHttpUtilが提供)、②ユーザに言語を選択させる画面処理(選択言語のHTTPセッション設定はLanguageAttributeInHttpUtilが提供)、③選択された言語をユーザに紐付けてデータベースに保存する処理 |\n\nLanguageAttributeInHttpUtilを使用する場合、リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録すること。", + "s6": "RequestIdAttributeには設定値は存在しない。\n\nInternalRequestIdAttributeには設定値は存在しない。", + "s7": "ThreadContextHandlerは、リクエスト毎にスレッドコンテキストの初期化を行う。実際にスレッドコンテキストに設定する値を取得する責務は、ThreadContextAttributeインタフェース実装クラスが持つ。\n\n## フレームワークが提供するThreadContextAttribute実装クラス\n\n- :ref:`リクエストID`\n- :ref:`内部リクエストID`\n- ユーザID\n- 言語\n- タイムゾーン\n- :ref:`実行時ID`\n\n## ThreadContextHandler以外での属性更新\n\n| 属性 | 更新状況 |\n|---|---|\n| :ref:`リクエストID` | :doc:`../architectural_pattern/messaging` のみ、:doc:`../reader/FwHeaderReader` によって更新 |\n| :ref:`内部リクエストID` | Web GUIでは内部フォワード時に:doc:`../handler/ForwardingHandler`で更新。メッセージングでは:doc:`../reader/FwHeaderReader`で更新 |\n| ユーザID | :doc:`../architectural_pattern/messaging` のみ、:doc:`../reader/FwHeaderReader` によって更新 |\n\n## 各属性クラスの仕様\n\n**RequestIdAttribute**: URLの最後の\"/\"から\".\"の間の文字列をリクエストIDとする。\n\n**InternalRequestIdAttribute**: リクエストIDと同じ値に初期設定する。\n\n**UserIdAttribute**: HttpセッションからユーザIDを取得してスレッドコンテキストに設定する。取得できない場合は未ログインを示す特別なユーザIDを設定する。認証処理ではセッションにユーザIDを設定しておく必要がある。\n\n> **注意**: HttpセッションからユーザIDを取得するキーと未ログインユーザIDはプロパティで変更可能。\n\n**ExecutionIdAttribute**: 実行時IDをスレッドコンテキストに設定する。詳細は:ref:`execution_id`参照。", + "s8": "LanguageAttributeクラスは、スレッドコンテキストに設定する言語を取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## LanguageAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| LanguageAttribute | リポジトリの設定で指定された言語をスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトロケールが使用される |\n| HttpLanguageAttribute | HTTPヘッダ(Accept-Language)から取得した言語をスレッドコンテキストに設定する。サポート対象の言語が取得できない場合は親クラスのLanguageAttributeに委譲 |\n| LanguageAttributeInHttpCookie | クッキーを使用した言語の保持を行う。サポート対象の言語が取得できない場合は親クラスのHttpLanguageAttributeに委譲 |\n| LanguageAttributeInHttpSession | HTTPセッションを使用した言語の保持を行う。言語の保持にHTTPセッションを使用することを除き、具体的な処理はLanguageAttributeInHttpCookieと同じ |\n| LanguageAttributeInHttpUtil | LanguageAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択した言語を保持する処理(言語選択処理やログイン処理でのクッキー/HTTPセッションへの言語設定)を提供するユーティリティクラス。リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | 言語の選択 | 言語の保存 | 説明 |\n|---|---|---|---|\n| LanguageAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。言語は常に固定となる。アプリ実装不要 |\n| HttpLanguageAttribute | ブラウザの言語設定 | ブラウザの言語設定 | ブラウザ設定に応じて切り替え。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。アプリ実装不要 |\n| LanguageAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリが言語選択画面を提供。ログイン前でも有効。ブラウザ単位で保持。選択言語をクッキーに設定する処理はLanguageAttributeInHttpUtilが提供 |\n| LanguageAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリが言語選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じ言語が適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づく言語の取得処理(HTTPセッションへの言語設定はLanguageAttributeInHttpUtilが提供)、②ユーザに言語を選択させる画面処理(選択言語のHTTPセッション設定はLanguageAttributeInHttpUtilが提供)、③選択された言語をユーザに紐付けてデータベースに保存する処理 |\n\nLanguageAttributeInHttpUtilを使用する場合、リポジトリにLanguageAttributeInHttpSupportのサブクラスを\"languageAttribute\"という名前で登録すること。", + "s9": "TimeZoneAttributeクラスは、スレッドコンテキストに設定するタイムゾーンを取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## TimeZoneAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| TimeZoneAttribute | リポジトリの設定で指定されたタイムゾーンをスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトタイムゾーンが使用される |\n| TimeZoneAttributeInHttpCookie | クッキーを使用したタイムゾーンの保持を行う。サポート対象のタイムゾーンが取得できない場合は親クラスのTimeZoneAttributeに委譲 |\n| TimeZoneAttributeInHttpSession | HTTPセッションを使用したタイムゾーンの保持を行う。タイムゾーンの保持にHTTPセッションを使用することを除き、具体的な処理はTimeZoneAttributeInHttpCookieと同じ |\n| TimeZoneAttributeInHttpUtil | TimeZoneAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択したタイムゾーンを保持する処理(タイムゾーン選択処理やログイン処理でのクッキー/HTTPセッションへのタイムゾーン設定)を提供するユーティリティクラス。リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | タイムゾーンの選択 | タイムゾーンの保存 | 説明 |\n|---|---|---|---|\n| TimeZoneAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。タイムゾーンは常に固定となる。アプリ実装不要 |\n| TimeZoneAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリがタイムゾーン選択画面を提供。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。選択タイムゾーンをクッキーに設定する処理はTimeZoneAttributeInHttpUtilが提供 |\n| TimeZoneAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリがタイムゾーン選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じタイムゾーンが適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づくタイムゾーンの取得処理(HTTPセッションへのタイムゾーン設定はTimeZoneAttributeInHttpUtilが提供)、②ユーザにタイムゾーンを選択させる画面処理(選択タイムゾーンのHTTPセッション設定はTimeZoneAttributeInHttpUtilが提供)、③選択されたタイムゾーンをユーザに紐付けてデータベースに保存する処理 |\n\nTimeZoneAttributeInHttpUtilを使用する場合、リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録すること。", "s10": "TimeZoneAttributeクラスは、スレッドコンテキストに設定するタイムゾーンを取得する責務を持つ。国際化を行うアプリケーション向けにサブクラスを提供する。\n\n## TimeZoneAttributeおよびサブクラスの説明\n\n| クラス名 | 説明 |\n|---|---|\n| TimeZoneAttribute | リポジトリの設定で指定されたタイムゾーンをスレッドコンテキストに設定する。明示的に指定しなかった場合、システムのデフォルトタイムゾーンが使用される |\n| TimeZoneAttributeInHttpCookie | クッキーを使用したタイムゾーンの保持を行う。サポート対象のタイムゾーンが取得できない場合は親クラスのTimeZoneAttributeに委譲 |\n| TimeZoneAttributeInHttpSession | HTTPセッションを使用したタイムゾーンの保持を行う。タイムゾーンの保持にHTTPセッションを使用することを除き、具体的な処理はTimeZoneAttributeInHttpCookieと同じ |\n| TimeZoneAttributeInHttpUtil | TimeZoneAttributeInHttpSupportのサブクラスを使用するアプリケーション向けに、ユーザが選択したタイムゾーンを保持する処理(タイムゾーン選択処理やログイン処理でのクッキー/HTTPセッションへのタイムゾーン設定)を提供するユーティリティクラス。リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録する必要がある |\n\n## 選択基準\n\n| クラス名 | タイムゾーンの選択 | タイムゾーンの保存 | 説明 |\n|---|---|---|---|\n| TimeZoneAttribute | なし | なし | 国際化を行わないアプリケーションで使用する。タイムゾーンは常に固定となる。アプリ実装不要 |\n| TimeZoneAttributeInHttpCookie | 選択画面やリンクなど | クッキー | アプリがタイムゾーン選択画面を提供。ログイン前でも有効。ブラウザ(IE、Firefoxなど)単位で保持。選択タイムゾーンをクッキーに設定する処理はTimeZoneAttributeInHttpUtilが提供 |\n| TimeZoneAttributeInHttpSession | 選択画面やリンクなど | データベース | アプリがタイムゾーン選択画面を提供。ログイン後のみ有効。ユーザ単位で保持(複数マシンからの利用でも同じタイムゾーンが適用)。アプリでは以下の実装が必要: ①ログイン時にユーザに紐づくタイムゾーンの取得処理(HTTPセッションへのタイムゾーン設定はTimeZoneAttributeInHttpUtilが提供)、②ユーザにタイムゾーンを選択させる画面処理(選択タイムゾーンのHTTPセッション設定はTimeZoneAttributeInHttpUtilが提供)、③選択されたタイムゾーンをユーザに紐付けてデータベースに保存する処理 |\n\nTimeZoneAttributeInHttpUtilを使用する場合、リポジトリにTimeZoneAttributeInHttpSupportのサブクラスを\"timeZoneAttribute\"という名前で登録すること。", "s11": "基本的な属性を設定する場合の設定記述例:\n\n```xml\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n```" } diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s9.json b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s9.json index 45ad0cbc4..b5547205a 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s9.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/component/libraries/libraries-thread_context--s9.json @@ -13,6 +13,7 @@ "LanguageAttributeInHttpCookie", "LanguageAttributeInHttpSession", "LanguageAttributeInHttpUtil", + "I18nHandler", "defaultLanguage", "supportedLanguages", "cookieName", @@ -34,6 +35,7 @@ "TimeZoneAttributeInHttpCookie", "TimeZoneAttributeInHttpSession", "TimeZoneAttributeInHttpUtil", + "I18nHandler", "defaultTimeZone", "supportedTimeZones", "cookieName", @@ -58,8 +60,8 @@ } ], "sections": { - "s1": "## LanguageAttribute\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n\n## HttpLanguageAttribute\n\n**クラス**: `nablarch.common.web.handler.threadcontext.HttpLanguageAttribute`\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | String | ○ | | サポート対象言語 |\n\n## LanguageAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpCookie`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | String | ○ | | サポート対象言語 |\n| cookieName | String | | nablarch_language | 言語を保持するクッキー名 |\n| cookiePath | String | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | String | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | int | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | boolean | | false(secure属性なし) | クッキーのsecure属性 |\n\n`LanguageAttributeInHttpUtil.keepLanguage(request, context, language)`を呼び出すと、クッキーとスレッドコンテキストの両方に言語が設定される。指定された言語がサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramで言語選択リンク):\n\n```jsp\n\n 英語\n \n\n\n 日本語\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String language = getLanguage(request, \"user.language\");\n if (StringUtil.hasValue(language)) {\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## LanguageAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSession`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultLanguage | String | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | String | ○ | | サポート対象言語 |\n| sessionKey | String | | LanguageAttributeのgetKeyメソッドの戻り値 | 言語が格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づく言語をHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String language = // DBから取得\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", - "s2": "## TimeZoneAttribute\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n\n## TimeZoneAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpCookie`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | String | ○ | | サポート対象タイムゾーン |\n| cookieName | String | | nablarch_timeZone | タイムゾーンを保持するクッキー名 |\n| cookiePath | String | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | String | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | int | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | boolean | | false(secure属性なし) | クッキーのsecure属性 |\n\n`TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone)`を呼び出すと、クッキーとスレッドコンテキストの両方にタイムゾーンが設定される。指定されたタイムゾーンがサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramでタイムゾーン選択リンク):\n\n```jsp\n\n ニューヨーク\n \n\n\n 東京\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String timeZone = getTimeZone(request, \"user.timeZone\");\n if (StringUtil.hasValue(timeZone)) {\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## TimeZoneAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSession`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 型 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|---|\n| defaultTimeZone | String | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | String | ○ | | サポート対象タイムゾーン |\n| sessionKey | String | | TimeZoneAttributeのgetKeyメソッドの戻り値 | タイムゾーンが格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づくタイムゾーンをHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String timeZone = // DBから取得\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", + "s1": "## LanguageAttribute\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n\n## HttpLanguageAttribute\n\n**クラス**: `nablarch.common.web.handler.threadcontext.HttpLanguageAttribute`\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | ○ | | サポート対象言語 |\n\n## LanguageAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpCookie`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | ○ | | サポート対象言語 |\n| cookieName | | nablarch_language | 言語を保持するクッキー名 |\n| cookiePath | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | | (secure属性なし) | クッキーのsecure属性 |\n\n`LanguageAttributeInHttpUtil.keepLanguage(request, context, language)`を呼び出すと、クッキーとスレッドコンテキストの両方に言語が設定される。指定された言語がサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramで言語選択リンク):\n\n```jsp\n\n 英語\n \n\n\n 日本語\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String language = getLanguage(request, \"user.language\");\n if (StringUtil.hasValue(language)) {\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## LanguageAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.LanguageAttributeInHttpSession`\n\n> **重要**: `LanguageAttributeInHttpUtil`を使用するため、コンポーネント名を`languageAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultLanguage | | システムデフォルトロケール | デフォルト言語 |\n| supportedLanguages | ○ | | サポート対象言語 |\n| sessionKey | | LanguageAttributeのgetKeyメソッドの戻り値 | 言語が格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づく言語をHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String language = // DBから取得\n LanguageAttributeInHttpUtil.keepLanguage(request, context, language);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", + "s2": "## TimeZoneAttribute\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n\n## TimeZoneAttributeInHttpCookie\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpCookie`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | ○ | | サポート対象タイムゾーン |\n| cookieName | | nablarch_timeZone | タイムゾーンを保持するクッキー名 |\n| cookiePath | | コンテキストパス | クッキーのURIパス階層 |\n| cookieDomain | | リクエストURLのドメイン名 | クッキーのドメイン階層 |\n| cookieMaxAge | | ブラウザ終了まで | クッキーの最長存続期間(秒) |\n| cookieSecure | | (secure属性なし) | クッキーのsecure属性 |\n\n`TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone)`を呼び出すと、クッキーとスレッドコンテキストの両方にタイムゾーンが設定される。指定されたタイムゾーンがサポート対象外の場合は設定されない。\n\nJSP実装例(n:submitLinkとn:paramでタイムゾーン選択リンク):\n\n```jsp\n\n ニューヨーク\n \n\n\n 東京\n \n\n```\n\nハンドラ実装例:\n\n```java\npublic class I18nHandler implements HttpRequestHandler {\n public HttpResponse handle(HttpRequest request, ExecutionContext context) {\n String timeZone = getTimeZone(request, \"user.timeZone\");\n if (StringUtil.hasValue(timeZone)) {\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n }\n return context.handleNext(request);\n }\n}\n```\n\n> **注意**: I18nHandlerはアプリケーション共通ハンドラとして使用を想定しているため、`HttpRequest`の`getParamMap`/`getParam`メソッドで直接リクエストパラメータにアクセスしている。業務機能をアクションで実装する場合はバリデーション機能でリクエストパラメータを取得すること。\n\n## TimeZoneAttributeInHttpSession\n\n**クラス**: `nablarch.common.web.handler.threadcontext.TimeZoneAttributeInHttpSession`\n\n> **重要**: `TimeZoneAttributeInHttpUtil`を使用するため、コンポーネント名を`timeZoneAttribute`にする必要がある。\n\n```xml\n\n \n \n\n```\n\n| プロパティ名 | 必須 | デフォルト値 | 説明 |\n|---|---|---|---|\n| defaultTimeZone | | システムデフォルトタイムゾーン | デフォルトタイムゾーン |\n| supportedTimeZones | ○ | | サポート対象タイムゾーン |\n| sessionKey | | TimeZoneAttributeのgetKeyメソッドの戻り値 | タイムゾーンが格納されるセッション上のキー名 |\n\nログイン処理でユーザに紐づくタイムゾーンをHTTPセッションに設定する実装例:\n\n```java\npublic HttpResponse doLOGIN00101(HttpRequest request, ExecutionContext context) {\n String timeZone = // DBから取得\n TimeZoneAttributeInHttpUtil.keepTimeZone(request, context, timeZone);\n return new HttpResponse(\"/MENU00101.jsp\");\n}\n```", "s3": "ExecutionIdAttributeには設定値は存在しない。" } } \ No newline at end of file diff --git a/tools/knowledge-creator/.cache/v1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator--s13.json b/tools/knowledge-creator/.cache/v1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator--s13.json index 0fb6d52bf..89eb64d1a 100644 --- a/tools/knowledge-creator/.cache/v1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator--s13.json +++ b/tools/knowledge-creator/.cache/v1.4/knowledge/development-tools/toolbox/toolbox-01_DefInfoGenerator--s13.json @@ -152,7 +152,9 @@ "エスケープ処理", "JSON出力仕様", "Apache POI", - "キャメル変換" + "キャメル変換", + "数値型セル書式", + ".0付与" ] }, { @@ -180,7 +182,7 @@ "s9": "コード設計情報の出力フォーマット。コード定義情報は、コードIDに対応する各セルの値を \"|\" で結合して出力する。キーに含まれる \".\" 以下の文字列(codeValue、sortOrderなど)は固定。\n\n```javascript\ndefine(function(){ return {\"\": \"\"\n\n// コードID情報\n, \"コードID\": [\"コード名称\", \"説明\"]\n\n// コード定義情報\n, \"コードID.codeValue\": [\"コード値\"]\n, \"コードID.sortOrder\": [\"ソート順\"]\n, \"コードID.codeValueName\": [\"名称\"]\n, \"コードID.SHORT_NAME\": [\"略称\"]\n, \"コードID.OPTIONAL_NAME01\": [\"オプション名称1\"]\n// OPTIONAL_NAME02〜09は省略\n, \"コードID.OPTIONAL_NAME10\": [\"オプション名称10\"]\n, \"コードID.PATTERN01\": [\"パターン1\"]\n// PATTERN02〜19は省略\n, \"コードID.PATTERN20\": [\"パターン20\"]\n\n};});\n```\n\n> **注意**: セルの書式が数値型の場合、整数を指定しても自動的に \".0\" が付与される。整数をそのまま取得したい場合は、セルの書式を標準または文字列にすること。", "s10": "外部インターフェース設計情報の出力フォーマット。階層構造型とそれ以外の設計書、どちらが入力の場合も同一フォーマットで出力する。入力設計書に存在しない項目は空文字で出力。\n\n親要素名の設定ルール:\n- 非階層構造型レコード: レコードタイプ名\n- 階層構造型レコード: オブジェクト定義行(項目IDが `[]` で囲まれた行)の項目IDから `[` と `]` を除去した値\n\n```javascript\ndefine(function(){ return {\"\": \"\"\n\n// 外部インターフェース仕様情報\n, \"ファイルIDまたは電文ID\": [\"相手先\", \"入出力取引ID/名称\"]\n\n// データレイアウト情報(プロパティ定義行のみ出力)\n, \"ファイルIDまたは電文ID.親要素名.項目ID\": [\"項目名\", \"ドメイン名\", \"データタイプ\", \"デフォルト値\", \"備考\", \"必須\", \"Byte\", \"開始位置\", \"パディング\", \"小数点位置\", \"フォーマット仕様\", \"寄せ字\", \"属性\", \"多重度\"]\n\n};});\n```", "s11": "自動生成ツールの出力に関する仕様を定義するセクション。各設計書のJSONフォーマット(出力形式)と定義データ出力時のエスケープ処理規則(定義データの出力仕様)を含む。", - "s12": "定義データをJSON形式で出力する際の仕様。エスケープ処理の規則は「エスケープ処理」セクションを参照。設計書ごとにキャメル変換などは行わず、Apache POIで取得した値をそのまま出力する。", - "s13": "定義データをJSON形式で出力する際、以下の文字をエスケープ処理する:\n\n- `\\`(バックスラッシュ)\n- `\"`(ダブルクォート)\n- `/`(スラッシュ)\n- `\\b`(バックスペース)\n- `\\f`(フォームフィード)\n- `\\t`(タブ)\n- `\\n`(改行LF)\n- `\\r`(改行CR)\n\n> **注意**: `\\r` と `\\n` は除去される(エスケープ後の文字列から削除)。" + "s12": "定義データをJSON形式で出力する際の仕様。エスケープ処理の規則は「エスケープ処理」セクションを参照。設計書ごとにキャメル変換などは行わず、Apache POIで取得した値をそのまま出力する。\n\nそのため、セルの書式が数値型の場合に整数を指定しても自動的に\".0\"が付与される。整数をそのまま取得したい場合、当該セルの書式を標準や文字列にすること。", + "s13": "定義データをJSON形式で出力する際、以下の文字をエスケープ処理する:\n\n- `\\`(バックスラッシュ)\n- `\"`(ダブルクォート)\n- `/`(スラッシュ)\n- `\\b`(バックスペース)\n- `\\f`(フォームフィード)\n- `\\t`(タブ)\n- `\\n`(改行LF)\n- `\\r`(改行CR)\n\n> **注意**: `\\r` と `\\n` は除去される。" } } \ No newline at end of file diff --git a/tools/knowledge-creator/prompts/content_check.md b/tools/knowledge-creator/prompts/content_check.md index d55bf2929..d5ed242e7 100644 --- a/tools/knowledge-creator/prompts/content_check.md +++ b/tools/knowledge-creator/prompts/content_check.md @@ -32,12 +32,67 @@ If the source justifies the current state (e.g., the source section is genuinely {CONTENT_WARNINGS} +## Prior Round Findings and Exclusion Rules + +The following findings were reported in the previous round: + +{PRIOR_FINDINGS} + +**CRITICAL: Exclusion rule for this round** + +For each finding in the prior round, extract its `(location, category)` pair. +Skip reporting a new finding if ALL of the following conditions are met: +1. The `location` string matches a prior finding's location (exact match) +2. The `category` matches a prior finding's category (exact match) +3. The source content at that location has NOT changed since the previous round + +**How to determine if content has changed:** +- For `hints_missing`: Content changes if the source text (not the hints array) has been modified. Adding hints to the knowledge file does NOT count as "content changed" — the source text is what matters. +- For `section_count`: Content changes if the number of source sections/headings has changed. +- For `cross_reference`: Content changes if the referenced target or source text has changed. +- For all other categories: Apply the same principle: judge based on source content, not knowledge file content. + +**Example 1 (SKIP reporting):** +``` +Prior finding: {location: "sections.s1 / index[0].hints", category: "hints_missing", description: "BusinessDateProvider missing"} +Current cache: index[0].hints now contains BusinessDateProvider ✅ +Source s1 text: Unchanged (still mentions "nablarch.core.date.BusinessDateProvider") +Action: SKIP this finding → Do NOT report it again +``` + +**Example 2 (REPORT new finding):** +``` +Prior finding: {location: "sections.s1 / index[0].hints", category: "hints_missing", description: "BusinessDateProvider missing"} +Current cache: index[0].hints now contains BusinessDateProvider ✅ +Source s1 text: NEW mention of "Initializable" added +Action: REPORT if Initializable is missing from index[0].hints (different location in hints, or new requirement) +``` + +**Implementation:** +Before generating findings, build a set of (location, category) pairs from prior_round_findings. +Then, for each finding you identify, check if it matches this set. If it matches AND source content is unchanged, skip it. + +## General Rules + +**D-1: Severity stability rule** + +Apply severity criteria consistently across all checks (V1–V5). +If a location was clean in the previous round and the knowledge file content at that location has not changed, do not report a new finding for it now. +Justify every severity assignment in the description field using the criteria below (e.g., "critical: missing required configuration property"). + +**Severity defaults by check type:** +- **V3 and V4 findings are minor by definition**: Section-level structural issues (count mismatches, sequential ID violations, incomplete hints) do not affect content correctness or usability. They are formatting/completeness issues. + ## Validation Checklist -### V1: Omission Check (severity: critical) +### V1: Omission Check Read the source file section by section. Identify every piece of information that an AI agent would need to make correct implementation decisions. For each one, confirm it exists in the knowledge file. +**Severity assignment:** +- **critical**: The missing information would cause an AI agent to give incorrect or incomplete implementation guidance (e.g., missing required configuration, missing constraint, missing API specification). +- **minor**: The missing information is supplementary (e.g., optional usage notes, redundant examples, style preferences). + **What counts as decision-necessary information:** - Constraints and prerequisites (ordering, required configurations, preconditions) - Warnings about incorrect behavior or failure modes @@ -64,10 +119,14 @@ Knowledge files are optimized for AI assistants to answer questions. **Accept om **Rule:** If an element serves only as navigation and contains no substantive explanation, code examples, or constraints → **accept its omission**. The detailed content in target sections is sufficient for AI to answer questions. -### V2: Fabrication Check (severity: critical) +### V2: Fabrication Check Read the knowledge file section by section. For every statement, confirm it has a basis in the source file. +**Severity assignment:** +- **critical**: The fabricated content states an incorrect fact, rule, or constraint that an AI agent would follow when giving implementation guidance. +- **minor**: The fabricated content is harmless (e.g., a generic introductory sentence, metadata that does not affect implementation decisions). + **Check each of these:** - Every sentence in description fields — does the source say this? - Every item in warnings/notes arrays — does the source contain this warning or note? @@ -78,14 +137,16 @@ Read the knowledge file section by section. For every statement, confirm it has For each fabrication found, record: "FABRICATION: section {section_id} — {the statement in knowledge file} — no basis found in source" -### V3: Section Issues (severity: minor) +### V3: Section Issues + +All findings in this section are minor by definition. - Count split-level headings in source (RST: h2=text+------, MD: ##). Compare with knowledge section count. - Check if any section has < 50 characters. - For RST: if h2 has >= 2000 chars plain text AND h3 exists but knowledge doesn't split → report. - Check that section IDs follow sequential format: `s1`, `s2`, `s3`, ... If any section ID is not in this format, report as issue. -### V4: Hints Completeness (severity: minor) +### V4: Hints Completeness For each section, check hints include: - PascalCase class names from content diff --git a/tools/knowledge-creator/prompts/fix.md b/tools/knowledge-creator/prompts/fix.md index 2bddca8a5..c1898fcf6 100644 --- a/tools/knowledge-creator/prompts/fix.md +++ b/tools/knowledge-creator/prompts/fix.md @@ -30,6 +30,47 @@ For each finding, apply the fix: - **section_issue**: Fix the section structure as described in the finding. - **no_knowledge_content_invalid**: The file was incorrectly marked as `no_knowledge_content: true` but the source has Layer A/B content. Set `no_knowledge_content: false`, then extract all Layer A/B content from the source into proper sections following the same rules as generate.md Steps 2-6. Build index[] and sections{} normally. +**E-2: Verbatim extraction rule** + +When adding content to fix an omission, extract the exact wording from the source. +Do not paraphrase, summarize, or expand beyond what the source says. +Decision rule: if you cannot find the exact text in the source, do not add it. + +**E-5: No fabrication from patterns rule** + +Do not infer explicit rules, constraints, or requirements from patterns observed in code examples or implicit usage. +Only state something as a rule if the source explicitly declares it as one (e.g., "must", "should", "required", "do not"). +If the source only shows an example without commentary, reproduce the example — do not convert it into a stated rule. + +**E-3: Preserve source notation** + +Do not correct RST special syntax, typos, or non-standard notation found in the source. +If the source contains `.. code-block:: jave` (typo), preserve it as-is. +Your role is to extract information faithfully, not to fix source errors. + +**E-4: Adjacent content preservation (CRITICAL)** + +When editing content within a section to fix a finding, preserve all text outside the edited location exactly as it appears. +Do not alter sentences, values, terms, or word order that are not directly related to the finding being fixed. + +Critical examples of WRONG edits: +- Finding: `hints_missing: [Validator]` + - Source: "The **Validator** and **Processor** are used in validation." + - WRONG FIX: "The **Processor** is used in validation." (deleted "Validator" from adjacent text) + - CORRECT: "The **Validator** and **Processor** are used in validation. [Added hint: Validator]" + +- Finding: hints incomplete + - Source: "normal termination of the request" + - WRONG FIX: "abnormal termination of the request" (word inversion) + - CORRECT: Keep "normal termination" and add the missing hint or clarification separately + +Verify after editing: Read the fixed section aloud. Does it convey the same information as before, with only the targeted issue fixed? + +**Scope constraint** + +Only modify sections referenced in the findings above. +Do not change sections that have no finding. Copy them exactly from the current knowledge file. + After all fixes, verify: - Every index[].id has a matching key in sections and vice versa - Section IDs follow sequential format: `s1`, `s2`, `s3`, ... diff --git a/tools/knowledge-creator/reports/20260331T171824-files.md b/tools/knowledge-creator/reports/20260331T171824-files.md new file mode 100644 index 000000000..0eb98aaaf --- /dev/null +++ b/tools/knowledge-creator/reports/20260331T171824-files.md @@ -0,0 +1,559 @@ +# ファイル別詳細 + +対象ファイル数: 553 + +| ファイルID | RST(B/KB) | JSON(B/KB) | サイズ比 | B_ターン数 | B_実行時間(秒) | B_コスト($) | B_入力tok(K) | B_cache作成tok(K) | B_cache読込tok(K) | B_出力tok(K) | C構造チェック | D1_結果 | D1_重大 | D1_軽微 | D1_ターン数 | D1_実行時間(秒) | D1_コスト($) | E1_ターン数 | E1_実行時間(秒) | E1_コスト($) | D2_結果 | D2_重大 | D2_軽微 | D2_ターン数 | D2_実行時間(秒) | D2_コスト($) | E2_ターン数 | E2_実行時間(秒) | E2_コスト($) | D3_結果 | D3_重大 | D3_軽微 | D3_ターン数 | D3_実行時間(秒) | D3_コスト($) | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | +| about-nablarch-top--s1 | 6.7 | 3.7 | 0.56 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-support_service--s1 | 5.3 | 5.4 | 1.01 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-contents | 13.6 | 5.4 | 0.40 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-versionup_policy--s1 | 19.1 | 12.1 | 0.63 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-concept-about_nablarch--s1 | 2.7 | 2.3 | 0.83 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-restriction | 3.6 | 2.3 | 0.64 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-contents_type | 3.5 | 1.7 | 0.48 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-development_policy--s1 | 5.1 | 6.5 | 1.26 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-platform--s1 | 1.6 | 2.2 | 1.33 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-document | 264 | 174 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-glossary--s1 | 11.2 | 11.9 | 1.06 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-guide--s1 | 5.8 | 193 | 0.03 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-aboutThis--s1 | 2.0 | 2.6 | 1.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_UnitTestOutline--s1 | 23.3 | 10.3 | 0.44 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_UnitTestOutline--s6 | 23.3 | 2.9 | 0.12 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-03_dbInputBatch | 9.3 | 7.1 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-05_fileOutputBatch | 6.0 | 4.8 | 0.79 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-01_userDeleteBatchSpec | 9.1 | 6.3 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-02_basic--s1 | 14.4 | 10.3 | 0.72 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-04_Explanation_batch | 1.2 | 222 | 0.18 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-01_userInputBatchSpec | 8.3 | 5.9 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-06_residentBatch | 2.5 | 1.7 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-04_fileInputBatch--s1 | 19.8 | 13.2 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-04_fileInputBatch--s4 | 19.8 | 6.1 | 0.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-05_UnitTestGuide | 1.4 | 182 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-mail | 1.4 | 1.5 | 1.07 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-02_RequestUnitTest-02_RequestUnitTest--s1 | 37.9 | 10.2 | 0.27 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-02_RequestUnitTest--s12 | 37.9 | 12.0 | 0.32 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-fileupload--s1 | 4.2 | 3.7 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-delayed_receive--s1 | 2.6 | 2.4 | 0.93 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-http_send_sync-02_RequestUnitTest--s1 | 3.0 | 4.0 | 1.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-http_real--s1 | 8.1 | 5.0 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-delayed_send--s1 | 5.0 | 4.5 | 0.90 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-batch-02_RequestUnitTest--s1 | 29.1 | 10.6 | 0.36 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-batch--s10 | 29.1 | 8.2 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-send_sync-02_RequestUnitTest--s1 | 15.1 | 9.9 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-real--s1 | 13.1 | 8.4 | 0.64 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-03_DealUnitTest | 1.6 | 1.6 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-delayed_receive | 390 | 235 | 0.60 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-http_send_sync-03_DealUnitTest--s1 | 2.9 | 2.5 | 0.84 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-delayed_send | 387 | 763 | 1.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-batch-03_DealUnitTest--s1 | 6.8 | 4.0 | 0.59 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-send_sync-03_DealUnitTest--s1 | 18.7 | 8.5 | 0.45 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-real | 1.6 | 1.2 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_entityUnitTest--s1 | 38.5 | 10.1 | 0.26 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_entityUnitTest--s7 | 38.5 | 9.9 | 0.26 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_entityUnitTest--s12 | 38.5 | 3.8 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_ClassUnitTest | 203 | 194 | 0.96 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-02_componentUnitTest--s1 | 17.9 | 8.1 | 0.45 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_Explanation_other | 313 | 217 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_sendUserResisteredMailSpec | 1.4 | 1.2 | 0.81 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_basic | 5.4 | 4.0 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_Explanation_mail | 787 | 222 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-03_sendUserRegisterdMail | 12.4 | 5.5 | 0.44 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-02_WindowScope | 3.3 | 3.1 | 0.92 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-08_TestTools | 298 | 192 | 0.64 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-02-MasterDataSetup | 176 | 180 | 1.02 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-02_ConfigMasterDataSetupTool--s1 | 3.2 | 2.8 | 0.87 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_MasterDataSetupTool--s1 | 3.1 | 2.8 | 0.89 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| java-static-analysis-02_JspStaticAnalysisInstall--s1 | 5.8 | 4.3 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| java-static-analysis-04_JspStaticAnalysis | 151 | 186 | 1.23 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| java-static-analysis-01_JspStaticAnalysis--s1 | 14.0 | 10.6 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01-HttpDumpTool | 189 | 189 | 1.00 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-02_SetUpHttpDumpTool--s1 | 3.3 | 3.7 | 1.12 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_HttpDumpTool--s1 | 3.7 | 5.5 | 1.48 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-03-HtmlCheckTool--s1 | 8.2 | 7.7 | 0.94 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| java-static-analysis-05_JavaStaticAnalysis | 2.3 | 1.9 | 0.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| java-static-analysis-UnpublishedApi--s1 | 16.9 | 12.0 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-01_NablarchOutline | 14.5 | 9.6 | 0.67 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-06_initial_view--s1 | 9.9 | 6.5 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-03_datasetup--s1 | 2.9 | 2.4 | 0.84 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-03_DevelopmentStep | 1.8 | 1.7 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-08_complete--s1 | 11.3 | 4.2 | 0.38 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-05_create_form--s1 | 8.8 | 4.3 | 0.49 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-07_confirm_view--s1 | 6.8 | 4.4 | 0.64 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_spec--s1 | 7.6 | 4.2 | 0.56 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-04_generate_form_base--s1 | 4.6 | 3.4 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-04_Explanation_messaging | 536 | 237 | 0.44 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-01_userRegisterMessageReceiveSpec--s1 | 4.5 | 3.7 | 0.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-02_basic-04_Explanation_delayed_receive--s1 | 2.6 | 2.3 | 0.90 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-04_Explanation_delayed_receive | 882 | 255 | 0.29 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-03_mqDelayedReceive--s1 | 11.1 | 8.4 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-02_basic-04_Explanation_http_send_sync | 2.5 | 2.4 | 0.96 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-04_Explanation_http_send_sync | 889 | 259 | 0.29 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-01_userSendSyncMessageSpec | 9.2 | 5.7 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-03_userSendSyncMessageAction--s1 | 15.4 | 10.0 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-02_basic-04_Explanation_delayed_send--s1 | 4.1 | 3.7 | 0.90 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-04_Explanation_delayed_send | 878 | 252 | 0.29 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-01_userDeleteInfoMessageSendSpec--s1 | 3.9 | 3.0 | 0.79 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-03_mqDelayedSend--s1 | 12.3 | 8.2 | 0.67 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-02_basic | 4.5 | 2.7 | 0.59 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-04_Explanation_send_sync | 877 | 249 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-01_userSendSyncMessageSpec | 8.5 | 5.7 | 0.67 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-03_userSendSyncMessageAction--s1 | 8.1 | 7.2 | 0.89 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-03_userQueryMessageAction | 4.5 | 3.7 | 0.83 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-01_userResisterMessageSpec | 9.0 | 7.2 | 0.80 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-02_basic-04_Explanation_http_real | 1.6 | 1.7 | 1.02 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-04_Explanation_http_real | 886 | 254 | 0.29 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-03_userQueryMessageAction | 4.5 | 3.7 | 0.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-01_userResisterMessageSpec | 8.9 | 6.7 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-02_basic-04_Explanation_real--s1 | 6.4 | 7.6 | 1.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-04_Explanation_real | 874 | 244 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-02_DbAccessTest--s1 | 21.5 | 10.5 | 0.49 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-02_DbAccessTest--s14 | 21.5 | 5.2 | 0.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-RequestUnitTest_real--s1 | 10.7 | 8.1 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-06_TestFWGuide | 394 | 204 | 0.52 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-RequestUnitTest_send_sync--s1 | 8.4 | 6.8 | 0.81 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-04_MasterDataRestore--s1 | 7.0 | 6.9 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-RequestUnitTest_http_send_sync | 1.3 | 1.0 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_Abstract--s1 | 33.9 | 5.5 | 0.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-01_Abstract--s8 | 33.9 | 10.4 | 0.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-02_RequestUnitTest-06_TestFWGuide--s1 | 33.8 | 10.5 | 0.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-02_RequestUnitTest--s7 | 33.8 | 8.6 | 0.25 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-RequestUnitTest_batch--s1 | 12.4 | 9.2 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-03_Tips--s1 | 30.8 | 6.2 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-03_Tips--s10 | 30.8 | 11.3 | 0.37 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-03_Tips--s31 | 30.8 | 2.9 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_sampleApplicationExplanation--s1 | 8.7 | 7.0 | 0.81 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-09_examples | 475 | 187 | 0.39 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-04_validation--s1 | 30.6 | 8.9 | 0.29 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-04_validation--s8 | 30.6 | 8.3 | 0.27 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-02_basic--s1 | 11.4 | 8.1 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-04_Explanation | 1.1 | 229 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-06_sharingInputAndConfirmationJsp--s1 | 6.1 | 5.2 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-07_insert--s1 | 21.8 | 10.5 | 0.48 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-07_insert--s9 | 21.8 | 168 | 0.01 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-12_keitai--s1 | 8.1 | 4.4 | 0.54 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-05_screenTransition--s1 | 4.3 | 5.2 | 1.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-08_utilities | 613 | 571 | 0.93 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-03_listSearch--s1 | 22.6 | 8.7 | 0.38 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-03_listSearch--s10 | 22.6 | 5.5 | 0.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-11_exclusiveControl--s1 | 9.9 | 5.5 | 0.55 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-10_submitParameter--s1 | 7.6 | 6.7 | 0.89 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-Other--s1 | 21.1 | 5.8 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-Other--s14 | 21.1 | 4.0 | 0.19 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-Validation--s1 | 15.6 | 8.5 | 0.54 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-Validation--s10 | 15.6 | 4.3 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-Log | 45 | 146 | 3.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-Web_Log--s1 | 6.7 | 5.2 | 0.77 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-DB | 62 | 157 | 2.53 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_DbAccessSpec_Example--s1 | 53.9 | 7.9 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_DbAccessSpec_Example--s8 | 53.9 | 5.5 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_DbAccessSpec_Example--s12 | 53.9 | 7.9 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_DbAccessSpec_Example--s16 | 53.9 | 1.9 | 0.04 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_DbAccessSpec_Example--s18 | 53.9 | 14.5 | 0.27 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-01_DbAccessSpec_Example--s19 | 53.9 | 248 | 0.00 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-CustomTag--s1 | 1.7 | 192 | 0.11 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-basic--s1 | 36.5 | 5.7 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-basic--s8 | 36.5 | 10.7 | 0.29 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-basic--s9 | 36.5 | 1.2 | 0.03 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-screenTransition--s1 | 24.2 | 7.5 | 0.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-screenTransition--s8 | 24.2 | 6.8 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-function--s1 | 62.6 | 6.3 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-function--s4 | 62.6 | 9.0 | 0.14 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-function--s10 | 62.6 | 10.2 | 0.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-function--s11 | 62.6 | 6.3 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-inputAndOutput--s1 | 50.1 | 6.5 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-inputAndOutput--s3 | 50.1 | 6.5 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-inputAndOutput--s8 | 50.1 | 8.2 | 0.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-source--s1 | 1.8 | 173 | 0.09 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-faq--s1 | 916 | 152 | 0.17 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-1-faq | 140 | 150 | 1.07 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-1 | 140 | 149 | 1.06 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-1-faq | 140 | 145 | 1.04 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-1-faq | 140 | 150 | 1.07 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-1-faq | 425 | 190 | 0.45 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-doc--s1 | 22.7 | 7.2 | 0.32 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-tool | 5.8 | 4.2 | 0.72 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_EntityGenerator--s1 | 25.7 | 17.5 | 0.68 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_EntityGenerator--s15 | 25.7 | 5.3 | 0.21 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_JspVerifier--s1 | 10.1 | 7.9 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-PublishedApiConfigGenerator--s1 | 6.7 | 4.3 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-ShellGenerator | 1.0 | 1.5 | 1.52 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-02_SetUpJspGeneratorTool--s1 | 3.6 | 4.4 | 1.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_JspGenerator | 10.8 | 8.8 | 0.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_AuthGenerator--s1 | 12.8 | 11.1 | 0.87 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-ConfigGenerator--s1 | 8.4 | 7.6 | 0.90 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-fw--s1 | 3.3 | 185 | 0.05 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-determining_stereotypes | 5.1 | 3.1 | 0.61 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-basic_policy | 437 | 160 | 0.37 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-introduction | 16.3 | 4.1 | 0.25 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-overview_of_NAF--s1 | 11.3 | 5.3 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-platform | 882 | 1.8 | 2.09 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-link | 9.7 | 159 | 0.02 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-bigdecimal | 1.5 | 1.6 | 1.11 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-PostResubmitPreventHandler--s1 | 6.9 | 5.0 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-ForwardingHandler--s1 | 5.9 | 4.3 | 0.72 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-ProcessStopHandler--s1 | 7.8 | 5.3 | 0.68 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-MessagingAction--s1 | 6.2 | 4.6 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-ThreadContextHandler--s1 | 4.8 | 4.3 | 0.88 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpResponseHandler--s1 | 20.2 | 9.4 | 0.46 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-RequestHandlerEntry--s1 | 10.0 | 5.8 | 0.58 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpMessagingResponseBuildingHandler--s1 | 6.5 | 5.0 | 0.77 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-FileBatchAction--s1 | 8.2 | 6.0 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-LoopHandler--s1 | 8.6 | 5.6 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-KeitaiAccessHandler--s1 | 5.9 | 3.8 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-handler | 1.9 | 167 | 0.09 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-ResourceMapping--s1 | 10.4 | 6.3 | 0.60 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpRequestJavaPackageMapping--s1 | 4.3 | 2.8 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-AsyncMessageReceiveAction--s1 | 8.3 | 4.7 | 0.57 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-MessagingContextHandler--s1 | 5.1 | 3.4 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-MultiThreadExecutionHandler--s1 | 9.7 | 5.9 | 0.61 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-Main--s1 | 11.3 | 7.9 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-AsyncMessageSendAction--s1 | 10.3 | 7.1 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-SessionConcurrentAccessHandler--s1 | 7.6 | 4.7 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-BatchAction--s1 | 10.0 | 7.2 | 0.72 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpErrorHandler--s1 | 13.2 | 6.8 | 0.52 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-NablarchTagHandler--s1 | 10.5 | 6.3 | 0.60 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpCharacterEncodingHandler--s1 | 5.2 | 4.0 | 0.77 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpMessagingErrorHandler--s1 | 14.0 | 7.5 | 0.54 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-NoInputDataBatchAction--s1 | 5.8 | 5.0 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpRewriteHandler--s1 | 21.3 | 10.6 | 0.50 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-RequestPathJavaPackageMapping--s1 | 16.1 | 8.2 | 0.51 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-ThreadContextClearHandler--s1 | 2.2 | 2.3 | 1.04 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-NablarchServletContextListener--s1 | 4.3 | 3.2 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpMethodBinding--s1 | 25.8 | 13.3 | 0.52 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpMethodBinding--s8 | 25.8 | 5.7 | 0.22 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-PermissionCheckHandler--s1 | 6.6 | 4.7 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpAccessLogHandler--s1 | 4.5 | 3.3 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-HttpMessagingRequestParsingHandler--s1 | 7.0 | 5.5 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-WebFrontController--s1 | 4.3 | 3.4 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-ProcessResidentHandler--s1 | 6.6 | 5.0 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-DbConnectionManagementHandler--s1 | 6.3 | 3.8 | 0.59 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-FileRecordWriterDisposeHandler--s1 | 3.0 | 2.7 | 0.91 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-MessageReplyHandler--s1 | 6.5 | 4.5 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-MultipartHandler--s1 | 9.4 | 6.4 | 0.68 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-DuplicateProcessCheckHandler--s1 | 7.1 | 4.9 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-MessageResendHandler--s1 | 11.9 | 8.2 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-ServiceAvailabilityCheckHandler--s1 | 5.6 | 3.8 | 0.68 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-RetryHandler--s1 | 11.9 | 6.9 | 0.58 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-StatusCodeConvertHandler--s1 | 4.0 | 2.8 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-GlobalErrorHandler--s1 | 8.9 | 4.3 | 0.49 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-TransactionManagementHandler--s1 | 10.7 | 7.0 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-RequestThreadLoopHandler--s1 | 13.5 | 6.4 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| handlers-DataReadHandler--s1 | 5.8 | 4.7 | 0.81 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-05_ServiceAvailability--s1 | 15.9 | 12.7 | 0.80 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_ExclusiveControl--s1 | 34.6 | 12.1 | 0.35 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_ExclusiveControl--s17 | 34.6 | 9.5 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_CodeManager--s1 | 33.9 | 13.4 | 0.39 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_CodeManager--s21 | 33.9 | 9.9 | 0.29 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-99_Utility--s1 | 9.9 | 4.0 | 0.40 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_WebView--s1 | 8.7 | 7.8 | 0.89 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-06_IdGenerator--s1 | 20.0 | 11.7 | 0.59 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_HowToSettingCustomTag--s1 | 18.1 | 6.8 | 0.37 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_DisplayTag--s1 | 61.5 | 10.4 | 0.17 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_DisplayTag--s8 | 61.5 | 5.9 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_DisplayTag--s12 | 61.5 | 6.9 | 0.11 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_DisplayTag--s20 | 61.5 | 4.2 | 0.07 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_CustomTag--s1 | 6.7 | 5.3 | 0.79 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_SubmitTag--s1 | 54.6 | 9.6 | 0.18 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_SubmitTag--s14 | 54.6 | 11.1 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_SubmitTag--s18 | 54.6 | 8.0 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_FormTag--s1 | 30.2 | 14.7 | 0.49 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_FormTag--s16 | 30.2 | 7.4 | 0.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_FacilitateTag--s1 | 6.9 | 6.1 | 0.88 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_BasicRules--s1 | 14.2 | 10.0 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_OtherTag | 2.4 | 1.9 | 0.77 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_FormTagList--s1 | 25.5 | 12.1 | 0.48 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_FormTagList--s12 | 25.5 | 4.2 | 0.17 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_DbAccessSpec--s1 | 22.0 | 9.9 | 0.45 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_DbAccessSpec--s2 | 22.0 | 6.1 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_Repository--s1 | 10.6 | 8.4 | 0.80 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-05_StaticDataCache--s1 | 28.1 | 13.3 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-05_StaticDataCache--s22 | 28.1 | 7.1 | 0.25 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-06_SystemTimeProvider--s1 | 19.3 | 11.8 | 0.61 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-03_TransactionManager--s1 | 4.6 | 4.5 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_Log--s1 | 99.1 | 14.6 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_Log--s13 | 99.1 | 8.0 | 0.08 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_Log--s17 | 99.1 | 17.2 | 0.17 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_Log--s26 | 99.1 | 15.2 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_Message--s1 | 21.5 | 9.8 | 0.45 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_Message--s18 | 21.5 | 4.2 | 0.19 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_Validation--s1 | 6.7 | 5.2 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_SqlLog--s1 | 27.0 | 14.4 | 0.53 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_SqlLog--s17 | 27.0 | 6.6 | 0.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-03_PerformanceLog--s1 | 11.1 | 7.9 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_HttpAccessLog--s1 | 26.2 | 14.1 | 0.54 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_HttpAccessLog--s6 | 26.2 | 5.4 | 0.21 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_04_Repository_override--s1 | 18.8 | 15.5 | 0.83 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_04_Repository_override--s17 | 18.8 | 1.1 | 0.06 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_01_Repository_config--s1 | 64.8 | 8.6 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_01_Repository_config--s10 | 64.8 | 7.4 | 0.11 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_01_Repository_config--s18 | 64.8 | 13.3 | 0.21 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_01_Repository_config--s28 | 64.8 | 7.3 | 0.11 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_02_Repository_initialize | 3.9 | 2.4 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-02_03_Repository_factory | 2.4 | 2.3 | 0.96 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_TransactionConnectionName--s1 | 9.0 | 6.3 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_QueryCache--s1 | 24.8 | 11.4 | 0.46 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_QueryCache--s14 | 24.8 | 10.0 | 0.40 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_TransactionTimeout--s1 | 9.8 | 5.3 | 0.54 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_Connection--s1 | 31.2 | 10.2 | 0.33 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_Connection--s6 | 31.2 | 7.0 | 0.23 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_Statement--s1 | 34.4 | 9.5 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_Statement--s7 | 34.4 | 5.6 | 0.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_ObjectSave--s1 | 51.5 | 2.6 | 0.05 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_ObjectSave--s4 | 51.5 | 11.1 | 0.21 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_ObjectSave--s5 | 51.5 | 11.4 | 0.22 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_03_validation_recursive--s1 | 18.6 | 10.3 | 0.55 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_03_validation_recursive--s8 | 18.6 | 4.0 | 0.21 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_01_validation_architecture--s1 | 12.9 | 9.3 | 0.72 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_05_custom_validator--s1 | 12.5 | 8.3 | 0.67 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_06_direct_call_of_validators--s1 | 2.4 | 2.4 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_04_validation_form_inheritance--s1 | 14.0 | 6.5 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_02_validation_usage--s1 | 31.8 | 11.1 | 0.35 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-08_02_validation_usage--s8 | 31.8 | 6.3 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-06_FileUpload | 936 | 1.0 | 1.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-05_FileDownload--s1 | 34.5 | 17.0 | 0.49 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-05_FileDownload--s15 | 34.5 | 1.7 | 0.05 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-07_UserAgent--s1 | 9.1 | 5.6 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-messaging | 1.4 | 1.8 | 1.30 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-messaging_receive--s1 | 17.6 | 10.7 | 0.61 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-batch_resident_thread_sync--s1 | 27.5 | 6.8 | 0.25 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| http-messaging-messaging_http--s1 | 16.1 | 10.4 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| mom-messaging-messaging_request_reply--s1 | 23.5 | 15.5 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-concept-architectural_pattern--s1 | 58.1 | 7.7 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-concept--s8 | 58.1 | 11.6 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-concept--s13 | 58.1 | 11.2 | 0.19 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-web_gui--s1 | 16.5 | 9.8 | 0.60 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-batch_resident--s1 | 24.2 | 13.9 | 0.57 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-batch-architectural_pattern | 791 | 994 | 1.26 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-batch_single_shot--s1 | 12.2 | 7.9 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-04_RDBMS_Policy--s1 | 9.9 | 4.8 | 0.49 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-reader | 312 | 171 | 0.55 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-ResumeDataReader--s1 | 9.5 | 6.4 | 0.67 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-MessageReader | 4.5 | 2.8 | 0.63 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-DatabaseRecordReader | 2.0 | 1.6 | 0.80 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-FwHeaderReader | 5.2 | 3.2 | 0.63 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-ValidatableFileDataReader--s1 | 15.5 | 7.8 | 0.50 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-FileDataReader | 2.3 | 1.6 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| readers-DatabaseTableQueueReader | 3.4 | 2.5 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-file_access--s1 | 10.7 | 5.0 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-messaging_sender_util--s1 | 25.4 | 14.0 | 0.55 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-enterprise_messaging_mom--s1 | 34.3 | 9.7 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-enterprise_messaging_mom--s10 | 34.3 | 9.0 | 0.26 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-validation_basic_validators--s1 | 31.9 | 10.2 | 0.32 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-validation_basic_validators--s6 | 31.9 | 9.9 | 0.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-enterprise_messaging_overview--s1 | 3.9 | 2.8 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-enterprise_messaging_http--s1 | 18.2 | 8.6 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-enterprise_messaging_http--s12 | 18.2 | 3.7 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-validation_advanced_validators--s1 | 7.0 | 4.7 | 0.67 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-messaging_sending_batch--s1 | 15.3 | 6.6 | 0.43 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-record_format--s1 | 93.2 | 5.1 | 0.06 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-record_format--s6 | 93.2 | 7.3 | 0.08 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-record_format--s7 | 93.2 | 12.0 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-record_format--s9 | 93.2 | 6.7 | 0.07 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-record_format--s11 | 93.2 | 15.2 | 0.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-validation-core_library | 1.8 | 187 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-FAQ | 732 | 151 | 0.21 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-batch-batch | 138 | 171 | 1.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-4 | 3.2 | 2.4 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-8 | 1.2 | 1.0 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-9 | 991 | 1.4 | 1.41 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-5 | 1.8 | 1.7 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-2 | 2.7 | 2.1 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-7 | 2.2 | 1.4 | 0.65 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-3 | 1.0 | 1013 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-1-FAQ | 4.5 | 2.7 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| nablarch-batch-6 | 945 | 937 | 0.99 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-test | 108 | 167 | 1.55 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-4 | 2.4 | 1.1 | 0.45 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-5 | 3.5 | 2.0 | 0.55 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| testing-framework-3 | 2.5 | 1.6 | 0.64 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-validation-validation | 130 | 188 | 1.45 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-2 | 1.2 | 1.0 | 0.88 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-3 | 1.8 | 1.4 | 0.77 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-1-FAQ | 2.3 | 1.3 | 0.57 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-all | 125 | 165 | 1.32 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-4 | 693 | 807 | 1.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-5 | 1.7 | 1.1 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-2 | 1.0 | 856 | 0.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-3 | 3.3 | 1.1 | 0.32 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-1-FAQ | 1.8 | 1.6 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-6 | 7.0 | 4.0 | 0.56 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-11 | 1.2 | 1.2 | 0.96 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-14 | 1.1 | 1.1 | 0.98 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-web | 193 | 182 | 0.94 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-15 | 2.0 | 1.7 | 0.83 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-4 | 867 | 791 | 0.91 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-12 | 2.6 | 1.9 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-13 | 2.4 | 2.0 | 0.83 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-8 | 963 | 772 | 0.80 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-9 | 2.3 | 1.9 | 0.85 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-5 | 1.4 | 812 | 0.56 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-7 | 671 | 231 | 0.34 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-3 | 1.7 | 1.3 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-10 | 3.0 | 2.6 | 0.87 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-1-FAQ | 2.3 | 2.0 | 0.87 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-6 | 1.2 | 1.2 | 1.00 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-16 | 858 | 1.1 | 1.26 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-source--s1 | 724 | 179 | 0.25 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-about--s1 | 1.7 | 1.7 | 1.00 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-00_Introduction--s1 | 4.1 | 3.9 | 0.94 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-01_Utility--s1 | 23.9 | 5.3 | 0.22 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-01_Utility--s6 | 23.9 | 11.3 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-01_Encryption--s1 | 8.5 | 6.2 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-01_ConnectionFramework--s1 | 17.6 | 8.5 | 0.48 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-01_ConnectionFramework--s10 | 17.6 | 2.6 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-doc-workflow--s1 | 6.1 | 5.6 | 0.92 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-toc-workflow | 38 | 150 | 3.95 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowInstanceElement--s1 | 2.8 | 3.4 | 1.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowProcessElement--s1 | 10.0 | 10.3 | 1.03 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowArchitecture--s1 | 67.2 | 6.8 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowArchitecture--s2 | 67.2 | 10.5 | 0.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowArchitecture--s6 | 67.2 | 8.5 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowApplicationApi--s1 | 33.5 | 11.4 | 0.34 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowApplicationApi--s22 | 33.5 | 9.1 | 0.27 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-WorkflowProcessSample--s1 | 9.3 | 9.6 | 1.03 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-doc | 2.2 | 1.5 | 0.68 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-toc-sample_application | 38 | 183 | 4.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-SampleApplicationViewImplementation--s1 | 7.2 | 4.3 | 0.60 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-SampleApplicationExtension--s1 | 2.7 | 2.3 | 0.88 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-SampleApplicationDesign--s1 | 4.6 | 5.6 | 1.22 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-SampleApplicationImplementation--s1 | 13.7 | 8.4 | 0.61 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| workflow-doc-tool--s1 | 26.5 | 19.4 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-0402_ExtendedFieldType--s1 | 8.2 | 7.0 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-02_ExtendedValidation--s1 | 11.5 | 9.0 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-doc | 714 | 172 | 0.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-useragent_sample--s1 | 16.2 | 5.3 | 0.33 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-useragent_sample--s3 | 16.2 | 9.0 | 0.56 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-06_Captcha--s1 | 19.3 | 10.3 | 0.53 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-01_Authentication--s1 | 17.6 | 11.0 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-03_ListSearchResult--s1 | 73.4 | 7.6 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-03_ListSearchResult--s16 | 73.4 | 7.4 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-03_ListSearchResult--s18 | 73.4 | 9.8 | 0.13 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-03_ListSearchResult--s24 | 73.4 | 14.6 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-08_HtmlMail--s1 | 17.5 | 14.2 | 0.81 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-07_UserAgent--s1 | 20.3 | 12.3 | 0.60 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-04_ExtendedFormatter--s1 | 7.5 | 6.2 | 0.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-0401_ExtendedDataFormatter--s1 | 9.5 | 8.2 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-05_DbFileManagement--s1 | 10.5 | 8.1 | 0.77 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-0101_PBKDF2PasswordEncryptor--s1 | 9.6 | 5.0 | 0.52 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-known_issues | 542 | 161 | 0.30 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-doc | 1.5 | 170 | 0.11 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-plugin_build--s1 | 47.6 | 11.4 | 0.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-plugin_build--s12 | 47.6 | 11.3 | 0.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-plugin_build--s24 | 47.6 | 5.6 | 0.12 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-reference_js_framework--s1 | 1.7 | 3.1 | 1.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-related_documents | 1022 | 1.2 | 1.24 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-about_this_book | 345 | 164 | 0.48 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-book_layout | 1.3 | 160 | 0.12 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-testing--s1 | 11.4 | 9.6 | 0.84 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-directory_layout | 7.5 | 4.8 | 0.64 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-plugins--s1 | 10.1 | 8.0 | 0.79 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-reference_ui_plugin | 35.0 | 21.7 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-reference_ui_standard--s1 | 28.4 | 14.1 | 0.50 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-reference_ui_standard--s20 | 28.4 | 5.5 | 0.19 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-box_title | 2.4 | 1.9 | 0.79 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-column_label | 10.5 | 5.7 | 0.55 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_label_block | 3.9 | 2.0 | 0.51 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_condition | 7.5 | 5.3 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-column_checkbox | 8.1 | 5.7 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_checkbox | 6.7 | 4.9 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-button_submit--s1 | 8.4 | 7.8 | 0.93 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_send_request | 6.0 | 4.4 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-reference_jsp_widgets | 1.7 | 187 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_alert | 4.4 | 3.7 | 0.84 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_label_id_value | 4.2 | 3.1 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-column_radio | 6.4 | 4.9 | 0.75 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_label | 6.4 | 4.4 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-table_row | 7.8 | 7.2 | 0.92 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-button_block | 1.8 | 2.0 | 1.12 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-column_code | 10.4 | 6.1 | 0.58 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_hint | 2.8 | 2.8 | 0.98 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_toggle_readonly | 4.2 | 3.8 | 0.91 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-column_link | 7.7 | 5.6 | 0.72 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-box_img | 11.9 | 7.0 | 0.58 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_desc | 1.5 | 1.4 | 0.95 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_password | 5.6 | 4.2 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_pulldown | 6.6 | 4.7 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_listen_subwindow | 4.3 | 3.2 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_block | 6.6 | 4.1 | 0.61 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_file | 3.5 | 2.6 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-link_submit--s1 | 4.4 | 4.1 | 0.92 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_code_pulldown | 8.4 | 5.5 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_textarea | 5.5 | 4.0 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_write_to | 5.0 | 3.4 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_author | 2.4 | 2.5 | 1.04 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_base | 3.0 | 3.0 | 1.02 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_listen | 9.8 | 7.0 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_code_radio | 8.0 | 4.9 | 0.61 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_layout | 4.2 | 3.4 | 0.80 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_calendar | 6.0 | 4.3 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-table_search_result | 6.6 | 4.8 | 0.73 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_confirm | 4.6 | 4.1 | 0.88 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_updated_date | 2.4 | 2.6 | 1.07 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_listbuilder | 6.2 | 4.7 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_toggle_property | 4.1 | 3.1 | 0.74 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-tab_group--s1 | 5.6 | 3.7 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_toggle_disabled | 631 | 887 | 1.41 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-table_treelist | 8.6 | 7.2 | 0.84 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_radio | 6.3 | 4.5 | 0.71 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-box_content | 2.3 | 1.8 | 0.81 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-table_plain | 7.1 | 5.6 | 0.79 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_created_date | 2.4 | 2.4 | 0.97 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_text | 6.9 | 4.6 | 0.67 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_validation | 4.8 | 4.1 | 0.86 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_label_code | 7.1 | 4.9 | 0.69 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-event_window_close | 2.4 | 1.9 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-field_code_checkbox | 8.0 | 4.9 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-spec_updated_by | 2.4 | 2.6 | 1.08 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-ui_development_workflow--s1 | 2.8 | 1.9 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-required_knowledge | 84 | 173 | 2.06 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-grand_design--s1 | 5.8 | 3.7 | 0.64 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-intention--s1 | 8.7 | 8.3 | 0.95 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-jsp_widgets--s1 | 20.8 | 12.2 | 0.59 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-configuration_files--s1 | 2.5 | 2.2 | 0.90 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-css_framework--s1 | 13.1 | 10.3 | 0.78 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-inbrowser_jsp_rendering--s1 | 15.0 | 7.2 | 0.48 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-multicol_css_framework--s1 | 19.6 | 7.2 | 0.37 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-multicol_css_framework--s10 | 19.6 | 5.2 | 0.27 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-jsp_page_templates--s1 | 21.6 | 12.9 | 0.60 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-generating_form_class-internals--s1 | 48.8 | 9.6 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-showing_specsheet_view--s1 | 5.6 | 3.9 | 0.70 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-js_framework--s1 | 23.1 | 12.3 | 0.53 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-js_framework--s15 | 23.1 | 5.7 | 0.25 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-architecture_overview--s1 | 8.1 | 4.7 | 0.58 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-modifying_code_and_testing--s1 | 9.3 | 7.6 | 0.82 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-initial_setup--s1 | 18.2 | 9.9 | 0.54 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-initial_setup--s7 | 18.2 | 1.9 | 0.10 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-update_bundle_plugin--s1 | 9.1 | 6.0 | 0.66 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-redistribution--s1 | 5.0 | 6.1 | 1.23 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-guide--s1 | 2.7 | 2.8 | 1.04 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-template_list--s1 | 18.4 | 5.7 | 0.31 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-develop_environment--s1 | 1.8 | 1.7 | 0.94 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-widget_list | 9.1 | 4.3 | 0.47 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-project_structure | 4.0 | 2.0 | 0.50 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-create_screen_item_list | 1.7 | 1.4 | 0.85 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-generating_form_class-widget_usage--s1 | 1.8 | 2.0 | 1.11 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| ui-framework-create_with_widget--s1 | 12.6 | 10.2 | 0.81 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| biz-samples-doc--s1 | 7.5 | 8.8 | 1.17 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-top-nablarch--s1 | 33.0 | 178 | 0.01 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-top-nablarch--s2 | 33.0 | 5.0 | 0.15 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-top-nablarch--s3 | 33.0 | 1.8 | 0.05 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-09_confirm_operation | 856 | 1.2 | 1.46 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| web-application-02_flow | 270 | 582 | 2.16 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_FailureLog--s1 | 45.9 | 15.8 | 0.34 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_FailureLog--s7 | 45.9 | 8.0 | 0.17 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-01_FailureLog--s11 | 45.9 | 4.2 | 0.09 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| about-nablarch-02_I18N | 10.5 | 8.0 | 0.76 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-file_upload_utility | 18.7 | 9.9 | 0.53 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-mail--s1 | 39.7 | 11.1 | 0.28 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-mail--s6 | 39.7 | 18.5 | 0.46 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_DefInfoGenerator--s1 | 26.8 | 16.8 | 0.62 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| toolbox-01_DefInfoGenerator--s13 | 26.8 | 12.4 | 0.46 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-thread_context--s1 | 53.0 | 21.4 | 0.40 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-thread_context--s9 | 53.0 | 10.6 | 0.20 | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-05_MessagingLog | 23.8 | - | - | - | - | - | - | - | - | - | skip | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | +| libraries-04_Permission--s1 | 38.3 | 9.9 | 0.26 | - | - | - | - | - | - | - | pass | - | - | - | 2 | 97 | 0.3420 | 2 | 47 | 0.3247 | - | - | - | 2 | 58 | 0.2190 | - | - | - | clean | 0 | 0 | 2 | 54 | 0.1866 | +| libraries-04_Permission--s10 | 38.3 | 12.8 | 0.33 | - | - | - | - | - | - | - | pass | - | - | - | 2 | 54 | 0.3023 | 2 | 41 | 0.3236 | - | - | - | 2 | 36 | 0.2001 | 2 | 45 | 0.2515 | clean | 0 | 0 | 2 | 39 | 0.1760 | +| libraries-07_TagReference--s1 | 102.6 | 22.1 | 0.22 | - | - | - | - | - | - | - | pass | - | - | - | 2 | 98 | 0.4011 | 2 | 91 | 0.4653 | - | - | - | 2 | 66 | 0.2657 | - | - | - | has_issues | 0 | 2 | 2 | 132 | 0.3320 | +| libraries-07_TagReference--s11 | 102.6 | 16.7 | 0.16 | - | - | - | - | - | - | - | pass | - | - | - | 2 | 58 | 0.3305 | 2 | 58 | 0.3959 | - | - | - | 2 | 94 | 0.3009 | 2 | 57 | 0.3109 | clean | 0 | 0 | 2 | 70 | 0.2366 | +| libraries-07_TagReference--s24 | 102.6 | 15.5 | 0.15 | - | - | - | - | - | - | - | pass | - | - | - | 2 | 50 | 0.2069 | - | - | - | - | - | - | 2 | 42 | 0.1818 | - | - | - | clean | 0 | 0 | 2 | 43 | 0.1925 | +| libraries-07_TagReference--s39 | 102.6 | 11.7 | 0.11 | - | - | - | - | - | - | - | pass | - | - | - | 2 | 63 | 0.2156 | - | - | - | - | - | - | 2 | 49 | 0.1861 | - | - | - | clean | 0 | 0 | 2 | 48 | 0.1859 | diff --git a/tools/knowledge-creator/reports/20260331T171824.json b/tools/knowledge-creator/reports/20260331T171824.json new file mode 100644 index 000000000..5c47bf8cd --- /dev/null +++ b/tools/knowledge-creator/reports/20260331T171824.json @@ -0,0 +1,161 @@ +{ + "meta": { + "run_id": "20260331T171824", + "version": "1.4", + "started_at": "2026-03-31T08:18:24.883740+00:00", + "phases": "ACDEM", + "max_rounds": 2, + "concurrency": 4, + "test_mode": false, + "finished_at": "2026-03-31T08:27:16.154388+00:00", + "duration_sec": 531 + }, + "phase_b": null, + "phase_c": { + "total": 6, + "pass": 6, + "fail": 0, + "pass_rate": 1.0 + }, + "phase_d_rounds": [ + { + "round": 1, + "total": 6, + "clean": 2, + "has_issues": 4, + "clean_rate": 0.333, + "findings": { + "total": 14, + "critical": 0, + "minor": 14, + "by_category": { + "hints_missing": 13, + "omission": 1 + } + }, + "metrics": { + "count": 6, + "tokens": { + "input": 18, + "cache_creation": 321463, + "cache_read": 410983, + "output": 31302 + }, + "cost_usd": 1.7984, + "avg_turns": 2.0, + "avg_duration_sec": 70.4, + "p95_duration_sec": 97.0 + } + }, + { + "round": 2, + "total": 6, + "clean": 4, + "has_issues": 2, + "clean_rate": 0.667, + "findings": { + "total": 3, + "critical": 0, + "minor": 3, + "by_category": { + "hints_missing": 3 + } + }, + "metrics": { + "count": 12, + "tokens": { + "input": 36, + "cache_creation": 544405, + "cache_read": 922366, + "output": 55570 + }, + "cost_usd": 3.1519, + "avg_turns": 2.0, + "avg_duration_sec": 64.2, + "p95_duration_sec": 97.0 + } + } + ], + "phase_e_rounds": [ + { + "round": 1, + "fixed": 4, + "error": 0, + "metrics": { + "count": 4, + "tokens": { + "input": 12, + "cache_creation": 286130, + "cache_read": 233637, + "output": 24423 + }, + "cost_usd": 1.5095, + "avg_turns": 2.0, + "avg_duration_sec": 59.8, + "p95_duration_sec": 58.8 + } + }, + { + "round": 2, + "fixed": 1, + "error": 1, + "metrics": { + "count": 6, + "tokens": { + "input": 18, + "cache_creation": 376364, + "cache_read": 397818, + "output": 36072 + }, + "cost_usd": 2.0718, + "avg_turns": 2.0, + "avg_duration_sec": 57.1, + "p95_duration_sec": 58.8 + } + } + ], + "totals": { + "tokens": { + "input": 84, + "cache_creation": 1528362, + "cache_read": 1964804, + "output": 147367 + }, + "cost_usd": 8.5316 + }, + "final_verification": { + "round": 3, + "phase_c": { + "total": 6, + "pass": 6, + "fail": 0 + }, + "phase_d": { + "total": 6, + "clean": 5, + "has_issues": 1, + "findings": { + "total": 2, + "critical": 0, + "minor": 2, + "by_category": { + "omission": 1, + "hints_missing": 1 + } + }, + "metrics": { + "count": 18, + "tokens": { + "input": 54, + "cache_creation": 742661, + "cache_read": 1458513, + "output": 82589 + }, + "cost_usd": 4.4615, + "avg_turns": 2.0, + "avg_duration_sec": 64.4, + "p95_duration_sec": 98.4 + } + } + } +} \ No newline at end of file diff --git a/tools/knowledge-creator/reports/20260331T171824.md b/tools/knowledge-creator/reports/20260331T171824.md new file mode 100644 index 000000000..43cd6168f --- /dev/null +++ b/tools/knowledge-creator/reports/20260331T171824.md @@ -0,0 +1,118 @@ +# Knowledge Creator レポート + +| 項目 | 値 | +|------|-------| +| 実行ID | `20260331T171824` | +| 開始時刻 | 2026-03-31 17:18:24 JST | +| 終了時刻 | 2026-03-31 17:27:16 JST | +| 実行時間 | 531秒 | +| バージョン | nabledge-1.4 | +| フェーズ | ACDEM | +| 最大ラウンド数 | 2 | +| 並列数 | 4 | +| テストモード | なし | + +## フェーズC: 構造チェック + +| 指標 | 値 | +|--------|-------| +| 対象件数 | 6 | +| 合格件数 | 6 | +| 不合格件数 | 0 | +| 合格率 | 100.0% | + +## フェーズD/E: 内容チェックと修正 + +### ラウンド 1 + +**フェーズD (内容チェック)** + +| 指標 | 値 | +|--------|-------| +| 対象件数 | 6 | +| 問題なし件数 | 2 | +| 問題あり件数 | 4 | +| 問題なし率 | 33.3% | +| 指摘事項 合計 | 14 | +| 指摘事項 重大 | 0 | +| 指摘事項 軽微 | 14 | +| カテゴリ別 | hints_missing:13, omission:1 | +| APIコスト | $1.7984 | +| 平均ターン数 | 2.0 | +| 平均実行時間 | 70.4秒 | + +**フェーズE (修正)** + +| 指標 | 値 | +|--------|-------| +| 修正件数 | 4 | +| エラー件数 | 0 | +| APIコスト | $1.5095 | +| 平均ターン数 | 2.0 | +| 平均実行時間 | 59.8秒 | + +### ラウンド 2 + +**フェーズD (内容チェック)** + +| 指標 | 値 | +|--------|-------| +| 対象件数 | 6 | +| 問題なし件数 | 4 | +| 問題あり件数 | 2 | +| 問題なし率 | 66.7% | +| 指摘事項 合計 | 3 | +| 指摘事項 重大 | 0 | +| 指摘事項 軽微 | 3 | +| カテゴリ別 | hints_missing:3 | +| APIコスト | $3.1519 | +| 平均ターン数 | 2.0 | +| 平均実行時間 | 64.2秒 | + +**フェーズE (修正)** + +| 指標 | 値 | +|--------|-------| +| 修正件数 | 1 | +| エラー件数 | 1 | +| APIコスト | $2.0718 | +| 平均ターン数 | 2.0 | +| 平均実行時間 | 57.1秒 | + +## ファイルサイズ比較 (RST -> JSON) + +| 指標 | 値 | +|--------|-------| +| サイズデータありファイル数 | 552 | +| RST合計サイズ | 9297.4KB | +| JSON合計サイズ | 3141.0KB | +| 全体比率 (JSON/RST) | 0.34 | +| RST平均サイズ | 16.8KB | +| JSON平均サイズ | 5.7KB | + +## 合計 + +| 指標 | 値 | +|--------|-------| +| 総APIコスト | $8.5316 | +| トークン数 入力 | 84 | +| トークン数 キャッシュ作成 | 1528.4K | +| トークン数 キャッシュ読込 | 1964.8K | +| トークン数 出力 | 147.4K | + +## 最終検証 (Round 3) + +**Phase C**: 6/6 pass, 0 fail + +**Phase D**: 5/6 clean, 1 has_issues + +| 指標 | 値 | +|--------|-------| +| 指摘事項 合計 | 2 | +| 指摘事項 重大 | 0 | +| 指摘事項 軽微 | 2 | +| カテゴリ別 | omission:1, hints_missing:1 | + +--- + +*ファイル別詳細は `20260331T171824-files.md` を参照してください。* diff --git a/tools/knowledge-creator/scripts/phase_d_content_check.py b/tools/knowledge-creator/scripts/phase_d_content_check.py index 4ff83463d..0afb4d04d 100644 --- a/tools/knowledge-creator/scripts/phase_d_content_check.py +++ b/tools/knowledge-creator/scripts/phase_d_content_check.py @@ -79,7 +79,7 @@ def _compute_content_warnings(self, knowledge, source_content, source_format, fi return warnings - def _build_prompt(self, file_info, knowledge, source_content, warnings=None): + def _build_prompt(self, file_info, knowledge, source_content, warnings=None, prior_findings=None): prompt = self.prompt_template prompt = prompt.replace("{SOURCE_PATH}", file_info["source_path"]) prompt = prompt.replace("{FORMAT}", file_info["format"]) @@ -92,8 +92,40 @@ def _build_prompt(self, file_info, knowledge, source_content, warnings=None): "\n".join(f"- {w}" for w in warnings)) else: prompt = prompt.replace("{CONTENT_WARNINGS}", "なし") + if prior_findings is not None: + findings_list = prior_findings.get("findings", []) + if findings_list: + lines = [json.dumps(f, ensure_ascii=False) for f in findings_list] + prompt = prompt.replace("{PRIOR_FINDINGS}", "\n".join(lines)) + else: + prompt = prompt.replace("{PRIOR_FINDINGS}", "なし(前ラウンドはクリーン)") + else: + prompt = prompt.replace("{PRIOR_FINDINGS}", "なし(初回チェック)") return prompt + def _detect_severity_flips(self, current_findings, prev_findings_path): + """Log a warning for each finding whose severity changed since the previous round. + + current_findings: findings dict for the current round + prev_findings_path: path to the previous round's findings JSON file + """ + if not os.path.exists(prev_findings_path): + return + + prev = load_json(prev_findings_path) + prev_map = {} + for f in prev.get("findings", []): + key = (f.get("location", ""), f.get("category", "")) + prev_map[key] = f.get("severity", "") + + for f in current_findings.get("findings", []): + key = (f.get("location", ""), f.get("category", "")) + if key in prev_map and prev_map[key] != f.get("severity", ""): + self.logger.warning( + f"Severity flip: {key[0]} [{key[1]}]: " + f"{prev_map[key]} → {f.get('severity')}" + ) + def check_one(self, file_info) -> dict: file_id = file_info["id"] findings_path = f"{self.ctx.findings_dir}/{file_id}_r{self.round_num}.json" @@ -118,7 +150,12 @@ def check_one(self, file_info) -> dict: source = "\n".join(lines[sr["start_line"]:sr["end_line"]]) warnings = self._compute_content_warnings(knowledge, source, file_info["format"], file_info) - prompt = self._build_prompt(file_info, knowledge, source, warnings=warnings) + prior_findings = None + if self.round_num > 1: + prev_path = f"{self.ctx.findings_dir}/{file_id}_r{self.round_num - 1}.json" + if os.path.exists(prev_path): + prior_findings = load_json(prev_path) + prompt = self._build_prompt(file_info, knowledge, source, warnings=warnings, prior_findings=prior_findings) try: result = self.run_claude( @@ -130,9 +167,12 @@ def check_one(self, file_info) -> dict: if result.returncode == 0: findings = json.loads(result.stdout) write_json(findings_path, findings) + if self.round_num > 1: + prev_path = f"{self.ctx.findings_dir}/{file_id}_r{self.round_num - 1}.json" + self._detect_severity_flips(findings, prev_path) return findings - except Exception: - pass + except Exception as e: + self.logger.error(f"check_one failed for {file_id}: {e}") return {"file_id": file_id, "status": "error", "findings": []} diff --git a/tools/knowledge-creator/scripts/phase_e_fix.py b/tools/knowledge-creator/scripts/phase_e_fix.py index 7e52b2a87..e7f194fe9 100644 --- a/tools/knowledge-creator/scripts/phase_e_fix.py +++ b/tools/knowledge-creator/scripts/phase_e_fix.py @@ -4,11 +4,111 @@ """ import os +import re import json from concurrent.futures import ThreadPoolExecutor, as_completed from common import load_json, write_json, read_file, run_claude as _default_run_claude, aggregate_cc_metrics from logger import get_logger + +def _extract_allowed_sections(findings): + """Return (section_ids, is_full_rebuild) from findings list. + + section_ids: set of section IDs (e.g. {'s1', 's3'}) that Phase E is + allowed to modify. Derived from the 'location' field of each finding. + + is_full_rebuild: True when a no_knowledge_content_invalid finding is + present, meaning the entire file may be restructured. + """ + section_ids = set() + is_full_rebuild = False + + for f in findings: + cat = f.get("category", "") + if cat == "no_knowledge_content_invalid": + # Full rebuild bypasses the guard entirely; section_ids are not needed + is_full_rebuild = True + break + loc = f.get("location", "") + # Extract sN identifiers from the location string + extracted = [f"s{m}" for m in re.findall(r'\bs(\d+)\b', loc)] + if cat == "section_issue" and not extracted: + # section_issue describes structural changes (e.g. "S9: Section count 2 < source + # headings 3") that may not reference a specific sN location. When no section + # ID can be parsed, we cannot safely scope the fix to individual sections, so + # treat this as a full rebuild to avoid the guard nullifying the fix. + is_full_rebuild = True + break + section_ids.update(extracted) + + return section_ids, is_full_rebuild + + +def _apply_diff_guard(input_knowledge, output_knowledge, allowed_sections, + is_full_rebuild=False): + """Revert any changes outside the scope of the fix instruction. + + For sections not listed in allowed_sections, the output is overwritten + with the input value — making collateral damage physically impossible. + + Index hints follow the same rule: only entries whose section ID is in + allowed_sections may change. + + Top-level metadata (id, title, official_doc_urls, no_knowledge_content) + is always restored from the input unless is_full_rebuild is True. + + Returns the guarded knowledge object. + """ + if is_full_rebuild: + # no_knowledge_content_invalid: allow the LLM to fully restructure + return output_knowledge + + guarded = dict(output_knowledge) + + # Protect metadata + for field in ("id", "title", "no_knowledge_content", "official_doc_urls"): + if field in input_knowledge: + guarded[field] = input_knowledge[field] + + # Protect sections not in scope + input_sections = input_knowledge.get("sections", {}) + output_sections = dict(output_knowledge.get("sections", {})) + + # Revert out-of-scope sections to input values + for sid, content in input_sections.items(): + if sid not in allowed_sections: + output_sections[sid] = content + + # Remove any new sections added by the LLM that were not in the input + # and are not in allowed_sections; new sections in scope are kept. + for sid in list(output_sections.keys()): + if sid not in input_sections and sid not in allowed_sections: + del output_sections[sid] + + guarded["sections"] = output_sections + + # Protect index hints for sections not in scope + input_index = {entry["id"]: entry for entry in input_knowledge.get("index", [])} + output_index = list(output_knowledge.get("index", [])) + guarded_index = [] + + seen = set() + for entry in output_index: + sid = entry.get("id") + seen.add(sid) + if sid not in allowed_sections and sid in input_index: + guarded_index.append(dict(input_index[sid])) + else: + guarded_index.append(entry) + + # Restore index entries removed by the LLM that are not in scope + for sid, entry in input_index.items(): + if sid not in allowed_sections and sid not in seen: + guarded_index.append(dict(entry)) + + guarded["index"] = guarded_index + return guarded + KNOWLEDGE_SCHEMA = { "type": "object", "required": ["id", "title", "no_knowledge_content", "official_doc_urls", "index", "sections"], @@ -93,6 +193,31 @@ def fix_one(self, file_info) -> dict: return {"status": "error", "id": file_id, "error": f"Output too small: {output_sec_chars}/{input_sec_chars} chars"} + # Diff guard: revert changes outside the scope of findings + finding_list = findings.get("findings", []) + allowed_sections, is_full_rebuild = _extract_allowed_sections(finding_list) + fixed = _apply_diff_guard(knowledge, fixed, allowed_sections, + is_full_rebuild=is_full_rebuild) + + # Reject if no authorized sections or index entries actually changed + if not is_full_rebuild: + input_sections = knowledge.get("sections", {}) + sections_changed = sum( + 1 for sid in allowed_sections + if input_sections.get(sid) != fixed.get("sections", {}).get(sid) + ) + # Also check index hints (hints_missing findings only touch index, not sections) + input_index = {e["id"]: e for e in knowledge.get("index", []) if "id" in e} + output_index = {e["id"]: e for e in fixed.get("index", []) if "id" in e} + index_changed = sum( + 1 for sid in allowed_sections + if input_index.get(sid) != output_index.get(sid) + ) + if sections_changed == 0 and index_changed == 0: + self.logger.warning(f" WARNING: {file_id}: diff guard found no changes in allowed sections") + return {"status": "error", "id": file_id, + "error": "Diff guard: no changes in allowed sections"} + write_json( f"{self.ctx.knowledge_cache_dir}/{file_info['output_path']}", fixed ) @@ -100,7 +225,8 @@ def fix_one(self, file_info) -> dict: except Exception as e: return {"status": "error", "id": file_id, "error": str(e)} - return {"status": "error", "id": file_id} + # LLM returned non-zero exit code + return {"status": "error", "id": file_id, "error": "CC returned non-zero exit code"} def run(self, target_ids, round_num=1) -> dict: classified = load_json(self.ctx.classified_list_path) diff --git a/tools/knowledge-creator/scripts/run.py b/tools/knowledge-creator/scripts/run.py index bfef1007b..1b0945184 100755 --- a/tools/knowledge-creator/scripts/run.py +++ b/tools/knowledge-creator/scripts/run.py @@ -566,7 +566,7 @@ def _run_pipeline(ctx, args): and len(report.get("phase_e_rounds", [])) == len(report.get("phase_d_rounds", [])) ) if loop_ended_with_fix and "D" in phases: - final_result = _run_final_verification(ctx, ctx.max_rounds, phases) + final_result = _run_final_verification(ctx, ctx.max_rounds, phases, effective_target) report["final_verification"] = final_result # Phase M (replaces G+F in default flow) @@ -608,7 +608,7 @@ def _run_pipeline(ctx, args): logger.info(f"\n 📄 Reports saved: {ctx.reports_dir}/{ctx.run_id}.*") -def _run_final_verification(ctx, max_rounds, phases): +def _run_final_verification(ctx, max_rounds, phases, target_ids=None): """最終検証: CDE ループ後に C→D を 1 回実行。E(修正)は呼ばない。""" logger = get_logger() final_round = max_rounds + 1 @@ -620,7 +620,7 @@ def _run_final_verification(ctx, max_rounds, phases): if "C" in phases: logger.info("\n✅Phase C: Structure Check (Final)") from phase_c_structure_check import PhaseCStructureCheck - c_result = PhaseCStructureCheck(ctx).run() + c_result = PhaseCStructureCheck(ctx).run(target_ids=target_ids) result["phase_c"] = { "total": c_result.get("total", 0), "pass": c_result.get("pass", 0), @@ -631,8 +631,16 @@ def _run_final_verification(ctx, max_rounds, phases): logger.info("\n🔍Phase D: Content Check (Final)") from phase_d_content_check import PhaseDContentCheck pass_ids = c_result.get("pass_ids") if c_result else None + # Intersect with target_ids if specified + if target_ids and pass_ids is not None: + target_set = set(target_ids) + effective_ids = [fid for fid in pass_ids if fid in target_set] + elif target_ids: + effective_ids = target_ids + else: + effective_ids = pass_ids d_result = PhaseDContentCheck(ctx).run( - target_ids=pass_ids, round_num=final_round + target_ids=effective_ids, round_num=final_round ) findings_summary = _aggregate_findings(ctx, round_num=final_round) result["phase_d"] = { diff --git a/tools/knowledge-creator/tests/e2e/test_e2e.py b/tools/knowledge-creator/tests/e2e/test_e2e.py index 2c6b81d0b..cbd6d4707 100644 --- a/tools/knowledge-creator/tests/e2e/test_e2e.py +++ b/tools/knowledge-creator/tests/e2e/test_e2e.py @@ -302,20 +302,27 @@ def mock_fn(prompt, json_schema=None, log_dir=None, file_id=None, **kwargs): ) elif "findings" in schema_str: - # Phase D: always has_issues + # Phase D: always has_issues, one finding per section so diff guard + # allows Phase E to fix all sections. counter["D"].append(file_id) + knowledge = expected_knowledge_cache.get(file_id, {}) + section_ids = list(knowledge.get("sections", {}).keys()) or ["s1"] + findings = [ + { + "category": "omission", + "severity": "minor", + "location": sid, + "description": "Missing detail", + } + for sid in section_ids + ] return subprocess.CompletedProcess( args=["claude"], returncode=0, stdout=json.dumps({ "file_id": file_id, "status": "has_issues", - "findings": [{ - "category": "omission", - "severity": "minor", - "location": "s1", - "description": "Missing detail", - }], + "findings": findings, }), stderr="", ) diff --git a/tools/knowledge-creator/tests/ut/test_diff_guard.py b/tools/knowledge-creator/tests/ut/test_diff_guard.py new file mode 100644 index 000000000..8d2028a32 --- /dev/null +++ b/tools/knowledge-creator/tests/ut/test_diff_guard.py @@ -0,0 +1,274 @@ +"""Phase E diff guard unit tests. + +Tests for _extract_allowed_sections and _apply_diff_guard, plus +integration tests verifying fix_one() applies the guard correctly. +""" +import os +import json +import subprocess +import pytest +import sys + +TOOL_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +sys.path.insert(0, os.path.join(TOOL_DIR, "scripts")) + +from conftest import load_fixture +from common import load_json, write_json + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def _make_knowledge(sections=None, index=None, extra=None): + k = { + "id": "test-file", + "title": "Test", + "no_knowledge_content": False, + "official_doc_urls": ["https://example.com"], + "index": index or [ + {"id": "s1", "title": "Section 1", "hints": ["Hint1"]}, + {"id": "s2", "title": "Section 2", "hints": ["Hint2"]}, + ], + "sections": sections or { + "s1": "original s1 content here that is long enough", + "s2": "original s2 content here that is long enough", + }, + } + if extra: + k.update(extra) + return k + + +def _mock_fn(output): + def fn(prompt, json_schema=None, log_dir=None, file_id=None, **kwargs): + return subprocess.CompletedProcess( + args=["claude"], returncode=0, + stdout=json.dumps(output), stderr="" + ) + return fn + + +# --------------------------------------------------------------------------- +# _extract_allowed_sections +# --------------------------------------------------------------------------- + +class TestExtractAllowedSections: + + def test_extracts_section_ids_from_locations(self): + from phase_e_fix import _extract_allowed_sections + findings = [ + {"category": "omission", "severity": "critical", + "location": "s1", "description": "missing"}, + {"category": "fabrication", "severity": "critical", + "location": "s3", "description": "fabricated"}, + ] + ids, is_full_rebuild = _extract_allowed_sections(findings) + assert "s1" in ids + assert "s3" in ids + assert not is_full_rebuild + + def test_no_knowledge_content_invalid_is_full_rebuild(self): + from phase_e_fix import _extract_allowed_sections + findings = [ + {"category": "no_knowledge_content_invalid", "severity": "critical", + "location": "file", "description": "has content"}, + ] + ids, is_full_rebuild = _extract_allowed_sections(findings) + assert is_full_rebuild + + def test_hints_missing_extracts_section_id(self): + from phase_e_fix import _extract_allowed_sections + findings = [ + {"category": "hints_missing", "severity": "minor", + "location": "s2", "description": "missing hints"}, + ] + ids, is_full_rebuild = _extract_allowed_sections(findings) + assert "s2" in ids + assert not is_full_rebuild + + def test_empty_findings_returns_empty_set(self): + from phase_e_fix import _extract_allowed_sections + ids, is_full_rebuild = _extract_allowed_sections([]) + assert len(ids) == 0 + assert not is_full_rebuild + + def test_section_issue_with_v3_description_location_triggers_full_rebuild(self): + """section_issue finding with V3-style location (no sN ID) must trigger full rebuild. + + When LLM returns a location like "S9: Section count 2 < source headings 3", + the sN regex extracts nothing. Without the full-rebuild fallback the diff guard + would block the structural fix entirely. This test verifies the fallback fires. + """ + from phase_e_fix import _extract_allowed_sections + findings = [ + {"category": "section_issue", "severity": "minor", + "location": "S9: Section count 2 < source headings 3", + "description": "knowledge has 2 sections but source has 3 h2 headings"}, + ] + ids, is_full_rebuild = _extract_allowed_sections(findings) + assert is_full_rebuild, "section_issue with no sN location must fall back to full rebuild" + + def test_section_issue_with_sn_location_extracts_section_id(self): + """section_issue finding with a plain sN location is handled normally.""" + from phase_e_fix import _extract_allowed_sections + findings = [ + {"category": "section_issue", "severity": "minor", + "location": "s3", "description": "section too short"}, + ] + ids, is_full_rebuild = _extract_allowed_sections(findings) + assert "s3" in ids + assert not is_full_rebuild + + +# --------------------------------------------------------------------------- +# _apply_diff_guard — reverts unscoped, keeps scoped +# --------------------------------------------------------------------------- + +class TestDiffGuardReverts: + + def test_diff_guard_reverts_unscoped_sections(self): + """Changes to sections not in allowed_sections are reverted to input.""" + from phase_e_fix import _apply_diff_guard + input_k = _make_knowledge() + output_k = _make_knowledge(sections={ + "s1": "CHANGED s1 — not in scope", + "s2": "FIXED s2 — in scope", + }) + guarded = _apply_diff_guard(input_k, output_k, {"s2"}) + assert guarded["sections"]["s1"] == "original s1 content here that is long enough" + assert guarded["sections"]["s2"] == "FIXED s2 — in scope" + + def test_diff_guard_preserves_scoped_sections(self): + """Changes to sections in allowed_sections are kept.""" + from phase_e_fix import _apply_diff_guard + input_k = _make_knowledge() + output_k = _make_knowledge(sections={ + "s1": "original s1 content here that is long enough", + "s2": "FIXED s2 content with new info that is long enough", + }) + guarded = _apply_diff_guard(input_k, output_k, {"s2"}) + assert guarded["sections"]["s2"] == "FIXED s2 content with new info that is long enough" + + def test_diff_guard_protects_metadata(self): + """Top-level fields (id, title, official_doc_urls) are preserved from input.""" + from phase_e_fix import _apply_diff_guard + input_k = _make_knowledge() + output_k = _make_knowledge(sections={ + "s1": "FIXED s1 content here that is long enough", + "s2": "original s2 content here that is long enough", + }) + output_k["id"] = "CHANGED-id" + output_k["title"] = "CHANGED title" + output_k["official_doc_urls"] = [] + guarded = _apply_diff_guard(input_k, output_k, {"s1"}) + assert guarded["id"] == "test-file" + assert guarded["title"] == "Test" + assert guarded["official_doc_urls"] == ["https://example.com"] + + def test_diff_guard_allows_hints_update(self): + """hints_missing finding (section in allowed_sections) allows hints modification.""" + from phase_e_fix import _apply_diff_guard + input_k = _make_knowledge() + output_k = _make_knowledge(index=[ + {"id": "s1", "title": "Section 1", "hints": ["Hint1", "NewHint"]}, # allowed + {"id": "s2", "title": "Section 2", "hints": ["CHANGED"]}, # not allowed + ]) + guarded = _apply_diff_guard(input_k, output_k, {"s1"}) + s1_entry = next(e for e in guarded["index"] if e["id"] == "s1") + s2_entry = next(e for e in guarded["index"] if e["id"] == "s2") + assert "NewHint" in s1_entry["hints"] + assert s2_entry["hints"] == ["Hint2"] + + def test_diff_guard_full_rebuild_passes_through(self): + """no_knowledge_content_invalid: entire output passes through unchanged.""" + from phase_e_fix import _apply_diff_guard + input_k = {"id": "x", "title": "X", "no_knowledge_content": True, + "official_doc_urls": [], "index": [], "sections": {}} + output_k = {"id": "x", "title": "X rebuilt", "no_knowledge_content": False, + "official_doc_urls": ["https://example.com"], + "index": [{"id": "s1", "title": "S1", "hints": ["H1"]}], + "sections": {"s1": "new content"}} + # For full rebuild, caller should pass all_sections; guard accepts it as-is + guarded = _apply_diff_guard(input_k, output_k, set(), is_full_rebuild=True) + assert guarded["no_knowledge_content"] is False + assert guarded["sections"]["s1"] == "new content" + + +# --------------------------------------------------------------------------- +# fix_one() integration — diff guard wired in +# --------------------------------------------------------------------------- + +class TestDiffGuardIntegratedInFixOne: + + def _setup_file(self, ctx, file_id, knowledge): + file_info = { + "id": file_id, + "source_path": f".lw/nab-official/v6/nablarch-document/ja/{file_id}.rst", + "output_path": f"component/handlers/{file_id}.json", + "format": "rst", + } + src = f"{ctx.repo}/{file_info['source_path']}" + os.makedirs(os.path.dirname(src), exist_ok=True) + with open(src, "w") as f: + f.write("source content") + kpath = f"{ctx.knowledge_cache_dir}/{file_info['output_path']}" + os.makedirs(os.path.dirname(kpath), exist_ok=True) + write_json(kpath, knowledge) + return file_info, kpath + + def test_diff_guard_integrated_in_fix_one(self, ctx): + """fix_one reverts unscoped sections, keeps scoped changes.""" + from phase_e_fix import PhaseEFix + + input_knowledge = _make_knowledge(sections={ + "s1": "original s1 content here that is long enough", + "s2": "original s2 content here that is long enough", + }) + # LLM changes both s1 (scoped) and s2 (not scoped) + fix_output = _make_knowledge(sections={ + "s1": "FIXED s1 content here that is long enough", + "s2": "COLLATERAL DAMAGE to s2 should be reverted", + }) + + file_info, kpath = self._setup_file(ctx, "guard-int-test", input_knowledge) + + os.makedirs(ctx.findings_dir, exist_ok=True) + write_json(f"{ctx.findings_dir}/guard-int-test_r1.json", { + "file_id": "guard-int-test", "status": "has_issues", + "findings": [{"category": "omission", "severity": "critical", + "location": "s1", "description": "missing info"}] + }) + + fixer = PhaseEFix(ctx, run_claude_fn=_mock_fn(fix_output)) + fixer.round_num = 1 + result = fixer.fix_one(file_info) + + assert result["status"] == "fixed" + saved = load_json(kpath) + assert saved["sections"]["s1"] == "FIXED s1 content here that is long enough" + assert saved["sections"]["s2"] == "original s2 content here that is long enough" + + def test_diff_guard_rejects_empty_fix(self, ctx): + """fix_one returns error when LLM makes no changes in allowed sections.""" + from phase_e_fix import PhaseEFix + + input_knowledge = _make_knowledge() + # LLM returns unchanged content for s1 (the scoped section) + fix_output = _make_knowledge() # identical to input + + file_info, kpath = self._setup_file(ctx, "empty-fix-test", input_knowledge) + + os.makedirs(ctx.findings_dir, exist_ok=True) + write_json(f"{ctx.findings_dir}/empty-fix-test_r1.json", { + "file_id": "empty-fix-test", "status": "has_issues", + "findings": [{"category": "omission", "severity": "critical", + "location": "s1", "description": "missing info"}] + }) + + fixer = PhaseEFix(ctx, run_claude_fn=_mock_fn(fix_output)) + fixer.round_num = 1 + result = fixer.fix_one(file_info) + + assert result["status"] == "error" + assert "no changes" in result.get("error", "").lower() diff --git a/tools/knowledge-creator/tests/ut/test_severity_flip.py b/tools/knowledge-creator/tests/ut/test_severity_flip.py new file mode 100644 index 000000000..7a03ec19e --- /dev/null +++ b/tools/knowledge-creator/tests/ut/test_severity_flip.py @@ -0,0 +1,150 @@ +"""Phase D severity flip detection unit tests.""" +import os +import json +import logging +import pytest +import sys + +TOOL_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +sys.path.insert(0, os.path.join(TOOL_DIR, "scripts")) + +from common import write_json + + +class TestSeverityFlipDetection: + + def test_severity_flip_detection(self, ctx, caplog): + """Same location+category with different severity across rounds → logged as warning.""" + from phase_d_content_check import PhaseDContentCheck + + os.makedirs(ctx.findings_dir, exist_ok=True) + write_json(f"{ctx.findings_dir}/flip-test_r1.json", { + "file_id": "flip-test", "status": "has_issues", + "findings": [ + {"category": "omission", "severity": "critical", + "location": "s1", "description": "old finding"}, + ] + }) + + checker = PhaseDContentCheck(ctx) + # Ensure propagation AFTER init (setup_logger resets it to False) + logging.getLogger("knowledge_creator").propagate = True + current = { + "file_id": "flip-test", "status": "has_issues", + "findings": [ + {"category": "omission", "severity": "minor", + "location": "s1", "description": "same location, flipped severity"}, + ] + } + prev_path = f"{ctx.findings_dir}/flip-test_r1.json" + + with caplog.at_level(logging.WARNING, logger="knowledge_creator"): + checker._detect_severity_flips(current, prev_path) + + assert any( + "flip" in r.message.lower() or "severity" in r.message.lower() + for r in caplog.records + ) + + def test_no_flip_when_severity_same(self, ctx, caplog): + """Same severity in both rounds → no warning.""" + from phase_d_content_check import PhaseDContentCheck + + os.makedirs(ctx.findings_dir, exist_ok=True) + write_json(f"{ctx.findings_dir}/stable-test_r1.json", { + "file_id": "stable-test", "status": "has_issues", + "findings": [ + {"category": "fabrication", "severity": "critical", + "location": "s2", "description": "same"}, + ] + }) + + checker = PhaseDContentCheck(ctx) + current = { + "file_id": "stable-test", "status": "has_issues", + "findings": [ + {"category": "fabrication", "severity": "critical", + "location": "s2", "description": "same content"}, + ] + } + prev_path = f"{ctx.findings_dir}/stable-test_r1.json" + + with caplog.at_level(logging.WARNING, logger="knowledge_creator"): + checker._detect_severity_flips(current, prev_path) + + assert len(caplog.records) == 0 + + def test_no_flip_when_prev_file_missing(self, ctx, caplog): + """No warning when previous round file does not exist.""" + from phase_d_content_check import PhaseDContentCheck + + checker = PhaseDContentCheck(ctx) + current = { + "file_id": "new-file", "status": "has_issues", + "findings": [ + {"category": "omission", "severity": "critical", + "location": "s1", "description": "first time"}, + ] + } + prev_path = f"{ctx.findings_dir}/nonexistent_r1.json" + + with caplog.at_level(logging.WARNING, logger="knowledge_creator"): + checker._detect_severity_flips(current, prev_path) + + assert len(caplog.records) == 0 + + def test_flip_detection_wired_in_check_one(self, ctx, caplog): + """check_one calls flip detection for round >= 2.""" + from phase_d_content_check import PhaseDContentCheck + import subprocess + + os.makedirs(ctx.findings_dir, exist_ok=True) + # Round 1 findings: critical + write_json(f"{ctx.findings_dir}/wire-test_r1.json", { + "file_id": "wire-test", "status": "has_issues", + "findings": [ + {"category": "omission", "severity": "critical", + "location": "s1", "description": "r1 finding"}, + ] + }) + + # Round 2 LLM output: same location but minor + findings_r2 = { + "file_id": "wire-test", "status": "has_issues", + "findings": [ + {"category": "omission", "severity": "minor", + "location": "s1", "description": "r2 finding"}, + ] + } + + def mock_fn(prompt, json_schema=None, log_dir=None, file_id=None, **kwargs): + return subprocess.CompletedProcess( + args=["claude"], returncode=0, + stdout=json.dumps(findings_r2), stderr="" + ) + + checker = PhaseDContentCheck(ctx, run_claude_fn=mock_fn) + checker.round_num = 2 + + file_info = { + "id": "wire-test", + "source_path": ".lw/nab-official/v6/nablarch-document/ja/wire-test.rst", + "output_path": "component/handlers/wire-test.json", + "format": "rst", + } + src = f"{ctx.repo}/{file_info['source_path']}" + os.makedirs(os.path.dirname(src), exist_ok=True) + with open(src, "w") as f: + f.write("source content") + kpath = f"{ctx.knowledge_cache_dir}/{file_info['output_path']}" + os.makedirs(os.path.dirname(kpath), exist_ok=True) + write_json(kpath, {"id": "wire-test", "title": "T", "no_knowledge_content": False, + "official_doc_urls": [], "index": [], "sections": {"s1": "content"}}) + + with caplog.at_level(logging.WARNING, logger="knowledge_creator"): + checker.check_one(file_info) + + assert any( + "flip" in r.message.lower() or "severity" in r.message.lower() + for r in caplog.records + )