-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from test-fullautomation/namsonx/task/stabi_b…
…ranch Namsonx/task/stabi branch
- Loading branch information
Showing
6 changed files
with
373 additions
and
209 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,6 +135,18 @@ | |
| ``jsonpStr = \u007b\"A\" : 1,\n \"[import]\" : \"./imported_file.jsonp\", // relative path of imported file \n \"B\" : 2\u007d`` | ||
| ``json_preprocessor = CJsonPreprocessor()`` | ||
| ``json_preprocessor.jsonLoads(jsonpStr, referenceDir=\"path_to_reference_dir\")`` | ||
|
||
* Added a naming convention check for key names within .jsonp files processed by the JsonPreprocessor | ||
|
||
Key names have to start with a character, digit, or underscore and must not contain these special characters !#$%^&()=[]{}|;',?`~ | ||
|
||
**Example:** | ||
|
||
Valid key names could be \"abcParam\", \"01_Param\", \"__param+1\", \"param-1\", \"[email protected]\", etc. | ||
|
||
Invalid key names could be \"+param01\", \"param$01\", \"abc#Param\", etc. | ||
|
||
* Error handling deviation improvement. | ||
" | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters