k2hr3-api 1.0.11 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/ChangeLog +24 -0
  2. package/app.js +7 -4
  3. package/bin/run.sh +218 -172
  4. package/bin/watcher +7 -4
  5. package/bin/www +7 -4
  6. package/config/default.json +7 -4
  7. package/config/development.json +7 -4
  8. package/config/dummyuser.json +8 -5
  9. package/config/extdata-dummy.sh.templ +12 -9
  10. package/config/k2hr3-cloud-config.txt.templ +7 -4
  11. package/config/k2hr3-init-error.sh.templ +8 -5
  12. package/config/k2hr3-init.sh.templ +127 -207
  13. package/config/keystone_v2.json +7 -4
  14. package/config/keystone_v3.json +7 -4
  15. package/lib/basicipcheck.js +7 -4
  16. package/lib/cacerts.js +7 -4
  17. package/lib/dbglogging.js +7 -4
  18. package/lib/dummyuserapi.js +7 -4
  19. package/lib/ipwatch.js +7 -4
  20. package/lib/k2hr3acrutil.js +7 -5
  21. package/lib/k2hr3apiutil.js +7 -4
  22. package/lib/k2hr3cliutil.js +7 -4
  23. package/lib/k2hr3config.js +7 -4
  24. package/lib/k2hr3cryptutil.js +7 -4
  25. package/lib/k2hr3dkc.js +7 -4
  26. package/lib/k2hr3extdata.js +7 -4
  27. package/lib/k2hr3keys.js +7 -4
  28. package/lib/k2hr3resutil.js +7 -4
  29. package/lib/k2hr3template.js +7 -4
  30. package/lib/k2hr3tokens.js +7 -4
  31. package/lib/k2hr3userdata.js +8 -5
  32. package/lib/k8soidc.js +1 -1
  33. package/lib/openstackapiv2.js +7 -4
  34. package/lib/openstackapiv3.js +7 -4
  35. package/lib/openstackep.js +7 -4
  36. package/package.json +73 -72
  37. package/routes/acr.js +7 -4
  38. package/routes/debugVerify.js +7 -4
  39. package/routes/extdata.js +7 -4
  40. package/routes/list.js +7 -4
  41. package/routes/policy.js +7 -4
  42. package/routes/resource.js +7 -4
  43. package/routes/role.js +7 -4
  44. package/routes/service.js +7 -4
  45. package/routes/userTokens.js +7 -4
  46. package/routes/userdata.js +7 -4
  47. package/routes/version.js +7 -4
  48. package/templ/Dockerfile.templ +35 -52
  49. package/{test → tests}/auto_acr.js +7 -4
  50. package/{test → tests}/auto_acr_spec.js +7 -4
  51. package/{test → tests}/auto_all_spec.js +7 -4
  52. package/{test → tests}/auto_common.js +7 -4
  53. package/tests/auto_control_subprocess.sh +239 -0
  54. package/{test → tests}/auto_extdata.js +7 -4
  55. package/{test → tests}/auto_extdata_spec.js +7 -4
  56. package/tests/auto_init_config_json.sh +275 -0
  57. package/{test → tests}/auto_k2hdkc_server.ini +7 -4
  58. package/{test → tests}/auto_k2hdkc_slave.ini +7 -4
  59. package/{test → tests}/auto_list.js +7 -4
  60. package/{test → tests}/auto_list_spec.js +7 -4
  61. package/{test → tests}/auto_policy.js +7 -4
  62. package/{test → tests}/auto_policy_spec.js +7 -4
  63. package/{test → tests}/auto_resource.js +7 -4
  64. package/{test → tests}/auto_resource_spec.js +7 -4
  65. package/{test → tests}/auto_role.js +7 -4
  66. package/{test → tests}/auto_role_spec.js +7 -4
  67. package/{test → tests}/auto_service.js +7 -4
  68. package/{test → tests}/auto_service_spec.js +7 -4
  69. package/{test → tests}/auto_subprocesses.js +14 -11
  70. package/tests/auto_template.sh +126 -0
  71. package/{test → tests}/auto_token_util.js +7 -4
  72. package/{test → tests}/auto_userdata.js +7 -4
  73. package/{test → tests}/auto_userdata_spec.js +7 -4
  74. package/{test → tests}/auto_usertokens.js +7 -4
  75. package/{test → tests}/auto_usertokens_spec.js +7 -4
  76. package/{test → tests}/auto_version.js +7 -4
  77. package/{test → tests}/auto_version_spec.js +7 -4
  78. package/{test → tests}/auto_watcher.js +7 -4
  79. package/{test → tests}/auto_watcher_spec.js +7 -4
  80. package/{test → tests}/k2hdkc_test.data +7 -4
  81. package/tests/k2hdkc_test_load.sh +255 -0
  82. package/{test → tests}/k2hr3template_test.js +7 -4
  83. package/tests/k2hr3template_test.sh +339 -0
  84. package/{test → tests}/k2hr3template_test_async.js +7 -4
  85. package/{test → tests}/k2hr3template_test_template.result +14 -8
  86. package/{test → tests}/k2hr3template_test_template.txt +7 -4
  87. package/{test → tests}/k2hr3template_test_vars.js +7 -4
  88. package/{test → tests}/manual_acr_delete.js +7 -4
  89. package/{test → tests}/manual_acr_get.js +7 -4
  90. package/{test → tests}/manual_acr_postput.js +7 -4
  91. package/{test → tests}/manual_allusertenant_get.js +7 -4
  92. package/{test → tests}/manual_extdata_get.js +7 -4
  93. package/{test → tests}/manual_k2hr3keys_get.js +7 -4
  94. package/{test → tests}/manual_list_gethead.js +7 -4
  95. package/{test → tests}/manual_policy_delete.js +7 -4
  96. package/{test → tests}/manual_policy_gethead.js +7 -4
  97. package/{test → tests}/manual_policy_postput.js +7 -4
  98. package/{test → tests}/manual_resource_delete.js +7 -4
  99. package/{test → tests}/manual_resource_gethead.js +7 -4
  100. package/{test → tests}/manual_resource_postput.js +7 -4
  101. package/{test → tests}/manual_role_delete.js +7 -4
  102. package/{test → tests}/manual_role_gethead.js +7 -4
  103. package/{test → tests}/manual_role_postput.js +7 -4
  104. package/{test → tests}/manual_service_delete.js +7 -4
  105. package/{test → tests}/manual_service_gethead.js +7 -4
  106. package/{test → tests}/manual_service_postput.js +7 -4
  107. package/tests/manual_test.sh +338 -0
  108. package/{test → tests}/manual_userdata_get.js +7 -4
  109. package/{test → tests}/manual_usertoken_gethead.js +7 -4
  110. package/{test → tests}/manual_usertoken_postput.js +7 -4
  111. package/{test → tests}/manual_version_get.js +7 -4
  112. package/tests/run_local_test_k2hdkc.sh +174 -0
  113. package/tests/test.sh +331 -0
  114. package/test/auto_control_subprocess.sh +0 -170
  115. package/test/auto_init_config_json.sh +0 -246
  116. package/test/auto_template.sh +0 -127
  117. package/test/auto_test.sh +0 -321
  118. package/test/k2hdkc_test_load.sh +0 -198
  119. package/test/k2hr3template_test.sh +0 -296
  120. package/test/manual_test.sh +0 -321
  121. package/test/run_local_test_k2hdkc.sh +0 -154
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -34,7 +34,10 @@
34
34
  }
35
35
 
36
36
  /*
37
- * VIM modelines
38
- *
39
- * vim:set ts=4 fenc=utf-8:
37
+ * Local variables:
38
+ * tab-width: 4
39
+ * c-basic-offset: 4
40
+ * End:
41
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
42
+ * vim<600: noexpandtab sw=4 ts=4
40
43
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -34,7 +34,10 @@
34
34
  }
35
35
 
36
36
  /*
37
- * VIM modelines
38
- *
39
- * vim:set ts=4 fenc=utf-8:
37
+ * Local variables:
38
+ * tab-width: 4
39
+ * c-basic-offset: 4
40
+ * End:
41
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
42
+ * vim<600: noexpandtab sw=4 ts=4
40
43
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -367,7 +367,10 @@ exports.checkAddressesAlive = function(ipdatas, chkipconfig)
367
367
  };
368
368
 
369
369
  /*
370
- * VIM modelines
371
- *
372
- * vim:set ts=4 fenc=utf-8:
370
+ * Local variables:
371
+ * tab-width: 4
372
+ * c-basic-offset: 4
373
+ * End:
374
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
375
+ * vim<600: noexpandtab sw=4 ts=4
373
376
  */
package/lib/cacerts.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -61,7 +61,10 @@ function loadCACert()
61
61
  exports.ca = loadCACert();
62
62
 
63
63
  /*
64
- * VIM modelines
65
- *
66
- * vim:set ts=4 fenc=utf-8:
64
+ * Local variables:
65
+ * tab-width: 4
66
+ * c-basic-offset: 4
67
+ * End:
68
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
69
+ * vim<600: noexpandtab sw=4 ts=4
67
70
  */
package/lib/dbglogging.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -142,7 +142,10 @@ exports.dump = function(obj)
142
142
  };
143
143
 
144
144
  /*
145
- * VIM modelines
146
- *
147
- * vim:set ts=4 fenc=utf-8:
145
+ * Local variables:
146
+ * tab-width: 4
147
+ * c-basic-offset: 4
148
+ * End:
149
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
150
+ * vim<600: noexpandtab sw=4 ts=4
148
151
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -757,7 +757,10 @@ exports.getUserTenantList = function(unscopedtoken, userid, callback)
757
757
  };
758
758
 
759
759
  /*
760
- * VIM modelines
761
- *
762
- * vim:set ts=4 fenc=utf-8:
760
+ * Local variables:
761
+ * tab-width: 4
762
+ * c-basic-offset: 4
763
+ * End:
764
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
765
+ * vim<600: noexpandtab sw=4 ts=4
763
766
  */
package/lib/ipwatch.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -370,7 +370,10 @@ exports.watchAddressesAlive = function(oneshotCB)
370
370
  };
371
371
 
372
372
  /*
373
- * VIM modelines
374
- *
375
- * vim:set ts=4 fenc=utf-8:
373
+ * Local variables:
374
+ * tab-width: 4
375
+ * c-basic-offset: 4
376
+ * End:
377
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
378
+ * vim<600: noexpandtab sw=4 ts=4
376
379
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -508,9 +508,11 @@ exports.getACRSendVerify = function(token, user, passwd, tenant, verifyurl, call
508
508
  return rawACRSendVerify(token, user, passwd, tenant, verifyurl, callback);
509
509
  };
510
510
 
511
-
512
511
  /*
513
- * VIM modelines
514
- *
515
- * vim:set ts=4 fenc=utf-8:
512
+ * Local variables:
513
+ * tab-width: 4
514
+ * c-basic-offset: 4
515
+ * End:
516
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
517
+ * vim<600: noexpandtab sw=4 ts=4
516
518
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -1485,7 +1485,10 @@ exports.checkMakeDir = function(path)
1485
1485
  };
1486
1486
 
1487
1487
  /*
1488
- * VIM modelines
1489
- *
1490
- * vim:set ts=4 fenc=utf-8:
1488
+ * Local variables:
1489
+ * tab-width: 4
1490
+ * c-basic-offset: 4
1491
+ * End:
1492
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
1493
+ * vim<600: noexpandtab sw=4 ts=4
1491
1494
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -182,7 +182,10 @@ exports.inputObjectData = function(is_string, callback)
182
182
  };
183
183
 
184
184
  /*
185
- * VIM modelines
186
- *
187
- * vim:set ts=4 fenc=utf-8:
185
+ * Local variables:
186
+ * tab-width: 4
187
+ * c-basic-offset: 4
188
+ * End:
189
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
190
+ * vim<600: noexpandtab sw=4 ts=4
188
191
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -805,7 +805,10 @@ exports.chkipType = chkipconfigType;
805
805
  exports.r3ApiConfig = R3ApiConfig;
806
806
 
807
807
  /*
808
- * VIM modelines
809
- *
810
- * vim:set ts=4 fenc=utf-8:
808
+ * Local variables:
809
+ * tab-width: 4
810
+ * c-basic-offset: 4
811
+ * End:
812
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
813
+ * vim<600: noexpandtab sw=4 ts=4
811
814
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2018 Yahoo! Japan Corporation.
4
+ * Copyright 2018 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -243,7 +243,10 @@ exports.r3Gunzip = function(bin, callback)
243
243
  };
244
244
 
245
245
  /*
246
- * VIM modelines
247
- *
248
- * vim:set ts=4 fenc=utf-8:
246
+ * Local variables:
247
+ * tab-width: 4
248
+ * c-basic-offset: 4
249
+ * End:
250
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
251
+ * vim<600: noexpandtab sw=4 ts=4
249
252
  */
package/lib/k2hr3dkc.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -11565,7 +11565,10 @@ exports.getAllUsers = function()
11565
11565
  };
11566
11566
 
11567
11567
  /*
11568
- * VIM modelines
11569
- *
11570
- * vim:set ts=4 fenc=utf-8:
11568
+ * Local variables:
11569
+ * tab-width: 4
11570
+ * c-basic-offset: 4
11571
+ * End:
11572
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
11573
+ * vim<600: noexpandtab sw=4 ts=4
11571
11574
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2018 Yahoo! Japan Corporation.
4
+ * Copyright 2018 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -189,7 +189,10 @@ var ExtdataProcess = (function()
189
189
  exports.extdataProcess = ExtdataProcess;
190
190
 
191
191
  /*
192
- * VIM modelines
193
- *
194
- * vim:set ts=4 fenc=utf-8:
192
+ * Local variables:
193
+ * tab-width: 4
194
+ * c-basic-offset: 4
195
+ * End:
196
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
197
+ * vim<600: noexpandtab sw=4 ts=4
195
198
  */
package/lib/k2hr3keys.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -224,7 +224,10 @@ exports.getK2hr3Keys = function(user, tenant, service)
224
224
  };
225
225
 
226
226
  /*
227
- * VIM modelines
228
- *
229
- * vim:set ts=4 fenc=utf-8:
227
+ * Local variables:
228
+ * tab-width: 4
229
+ * c-basic-offset: 4
230
+ * End:
231
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
232
+ * vim<600: noexpandtab sw=4 ts=4
230
233
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -91,7 +91,10 @@ exports.errResponse = function(req, res, status, msgbody, strType)
91
91
  };
92
92
 
93
93
  /*
94
- * VIM modelines
95
- *
96
- * vim:set ts=4 fenc=utf-8:
94
+ * Local variables:
95
+ * tab-width: 4
96
+ * c-basic-offset: 4
97
+ * End:
98
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
99
+ * vim<600: noexpandtab sw=4 ts=4
97
100
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -6914,7 +6914,10 @@ var K2hr3TemplateEngine = (function()
6914
6914
  exports.r3template = K2hr3TemplateEngine;
6915
6915
 
6916
6916
  /*
6917
- * VIM modelines
6918
- *
6919
- * vim:set ts=4 fenc=utf-8:
6917
+ * Local variables:
6918
+ * tab-width: 4
6919
+ * c-basic-offset: 4
6920
+ * End:
6921
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
6922
+ * vim<600: noexpandtab sw=4 ts=4
6920
6923
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -2703,7 +2703,10 @@ exports.checkToken = function(req, is_scoped, is_user)
2703
2703
  };
2704
2704
 
2705
2705
  /*
2706
- * VIM modelines
2707
- *
2708
- * vim:set ts=4 fenc=utf-8:
2706
+ * Local variables:
2707
+ * tab-width: 4
2708
+ * c-basic-offset: 4
2709
+ * End:
2710
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
2711
+ * vim<600: noexpandtab sw=4 ts=4
2709
2712
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2018 Yahoo! Japan Corporation.
4
+ * Copyright 2018 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -37,7 +37,7 @@ var EmptyScriptContents = [
37
37
  '#',
38
38
  '# K2HR3 Frontend Web Application',
39
39
  '#',
40
- '# Copyright(C) 2018 Yahoo! Japan Corporation.',
40
+ '# Copyright(C) 2018 Yahoo Japan Corporation.',
41
41
  '#',
42
42
  '# K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers',
43
43
  '# common management information for the cloud.',
@@ -303,7 +303,10 @@ var UserdataProcess = (function()
303
303
  exports.userdataProcess = UserdataProcess;
304
304
 
305
305
  /*
306
- * VIM modelines
307
- *
308
- * vim:set ts=4 fenc=utf-8:
306
+ * Local variables:
307
+ * tab-width: 4
308
+ * c-basic-offset: 4
309
+ * End:
310
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
311
+ * vim<600: noexpandtab sw=4 ts=4
309
312
  */
package/lib/k8soidc.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -756,7 +756,10 @@ exports.getUserTenantList = function(unscopedtoken, userid, callback)
756
756
  };
757
757
 
758
758
  /*
759
- * VIM modelines
760
- *
761
- * vim:set ts=4 fenc=utf-8:
759
+ * Local variables:
760
+ * tab-width: 4
761
+ * c-basic-offset: 4
762
+ * End:
763
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
764
+ * vim<600: noexpandtab sw=4 ts=4
762
765
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -1023,7 +1023,10 @@ exports.getUserTenantList = function(unscopedtoken, userid, callback)
1023
1023
  };
1024
1024
 
1025
1025
  /*
1026
- * VIM modelines
1027
- *
1028
- * vim:set ts=4 fenc=utf-8:
1026
+ * Local variables:
1027
+ * tab-width: 4
1028
+ * c-basic-offset: 4
1029
+ * End:
1030
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
1031
+ * vim<600: noexpandtab sw=4 ts=4
1029
1032
  */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * K2HR3 REST API
3
3
  *
4
- * Copyright 2017 Yahoo! Japan Corporation.
4
+ * Copyright 2017 Yahoo Japan Corporation.
5
5
  *
6
6
  * K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
7
7
  * common management information for the cloud.
@@ -544,7 +544,10 @@ exports.getKeystoneEndpoint = function(callback, is_v3, is_test, timeout)
544
544
  };
545
545
 
546
546
  /*
547
- * VIM modelines
548
- *
549
- * vim:set ts=4 fenc=utf-8:
547
+ * Local variables:
548
+ * tab-width: 4
549
+ * c-basic-offset: 4
550
+ * End:
551
+ * vim600: noexpandtab sw=4 ts=4 fdm=marker
552
+ * vim<600: noexpandtab sw=4 ts=4
550
553
  */