-
Notifications
You must be signed in to change notification settings - Fork 38
Add the documents about configuration parameters #665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the documents about configuration parameters #665
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request adds comprehensive documentation for configuration parameters in COBOL 4J and updates the README files to link to the new document.
- Added a new documentation file (configuration-params-JP.md) detailing 63 configuration parameters.
- Updated both README_JP.md and README.md files to include a link to the new documentation.
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
File | Description |
---|---|
doc/configuration-params-JP.md | New documentation file listing configuration parameters and their details. |
README_JP.md | Updated link to the new configuration parameters documentation. |
README.md | Updated link to the new configuration parameters documentation. |
Comments suppressed due to low confidence (1)
doc/configuration-params-JP.md:30
- The allowed value list for the 'binary-size' parameter includes '1--8' with a double hyphen, which may be a typographical error. Please verify if the intended value is different.
| 11 | binary-size | `2-4-8`, `1-2-4-8`, `1--8` | `1-2-4-8` | `PIC 9(n) BINARY`の変数が確保するバイト数を設定する | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これらの設定ファイルにあるほとんどのパラメータは
default.conf
のものと同じで値が異なる(mvs.conf
にnot-reserved
というパラメータがあり、それはdefault.conf
にはない)。以下の表にあるデフォルト値はdefault.conf
のものである。
ファイル名に対応する方言を許容する設定ファイルであることを追加してください。
cobcのhelpで出てくる文言を置いてもいいと思います。
-std=<dialect> Warnings/features for a specific dialect :
cobol2002 Cobol 2002
cobol85 Cobol 85
ibm IBM Compatible
mvs MVS Compatible
bs2000 BS2000 Compatible
mf Micro Focus Compatible
default When not specified
大まかな意味でいいので、以下の設定方法の違いを記述してください
`ok`, `archaic`, `obsolete`, `skip`, `ignore`, `unconformable`, `error`
| 20 | relax-level-hierarchy |
yes
,no
|no
| データ項目の階層の数字の大小が逆になっていてもコンパイルが通るようにする | |
逆という表現が若干気になりました。
不揃いでも、くらいかなと思います
@n-isaka |
This pull request introduces a new documentation file,
configuration-params-JP.md
, that explains configuration parameters for opensource COBOL 4J. It also updatesREADME.md
andREADME_JP.md
to link to this new documentation. The most significant change is the addition of detailed explanations for each configuration parameter, including their default values, possible settings, and descriptions.Documentation Updates:
doc/confifuration-params-JP.md
to provide comprehensive details about OpenCOBOL 4J configuration parameters, including default values, descriptions, and supported options. This file covers 63 parameters and their usage.README.md
andREADME_JP.md
to include links to the newconfiguration-params-JP.md
documentation file. [1] [2]