gina 0.1.6-alpha.99 → 0.1.7

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 (453) hide show
  1. package/.claudeignore +68 -0
  2. package/CHANGELOG.md +83 -0
  3. package/LICENSE +1 -1
  4. package/README.md +134 -108
  5. package/bin/cli +4 -4
  6. package/bin/cli-debug +4 -3
  7. package/bin/gina +2 -2
  8. package/bin/gina-container +235 -0
  9. package/framework/{v0.1.6-alpha.99 → v0.1.7}/LICENSE +1 -1
  10. package/framework/v0.1.7/VERSION +1 -0
  11. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/css/gina.min.css.br +0 -0
  12. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/css/gina.min.css.gz +0 -0
  13. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/html/toolbar.html.br +0 -0
  14. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/html/toolbar.html.gz +0 -0
  15. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/plugin/dist/vendor/gina/js/gina.js +6128 -5548
  16. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/js/gina.min.js +790 -0
  17. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/js/gina.min.js.br +0 -0
  18. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/js/gina.min.js.gz +0 -0
  19. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js +9 -0
  20. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.br +0 -0
  21. package/framework/v0.1.7/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.gz +0 -0
  22. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/config.js +312 -76
  23. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/index.js +100 -31
  24. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/connector.v3.js +167 -124
  25. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/connector.v4.js +89 -105
  26. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/session-store.v3.js +3 -3
  27. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/session-store.v4.js +7 -4
  28. package/framework/v0.1.7/core/content.encoding +9 -0
  29. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/controller/controller.framework.js +32 -6
  30. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/controller/controller.js +1662 -1885
  31. package/framework/v0.1.7/core/controller/controller.render-json.js +343 -0
  32. package/framework/v0.1.7/core/controller/controller.render-swig.js +1256 -0
  33. package/framework/v0.1.7/core/controller/controller.render-v1.js +916 -0
  34. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/controller/index.js +5 -0
  35. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/dev/index.js +1 -1
  36. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/dev/lib/factory.js +1 -1
  37. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/gna.js +224 -38
  38. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/locales/index.js +1 -1
  39. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/model/entity.js +140 -39
  40. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/model/index.js +51 -11
  41. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/model/template/entityFactory.js +1 -1
  42. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/model/template/index.js +2 -2
  43. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/index.js +1 -1
  44. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/file/package.json +1 -1
  45. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/intl/package.json +1 -1
  46. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/storage/package.json +1 -1
  47. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/validator/package.json +1 -1
  48. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/validator/src/form-validator.js +15 -4
  49. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/validator/src/main.js +138 -35
  50. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/router.js +65 -41
  51. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/server.express.js +32 -1
  52. package/framework/v0.1.7/core/server.isaac.js +1059 -0
  53. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/server.js +461 -62
  54. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/command/gina.tpl +1 -1
  55. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/conf/env.json +11 -2
  56. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/conf/settings.json +18 -5
  57. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/console.js +1 -1
  58. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/context.js +182 -82
  59. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/data/package.json +1 -1
  60. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/data/src/main.js +1 -1
  61. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/dateFormat.js +1 -1
  62. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/index.js +1 -1
  63. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/json/package.json +1 -1
  64. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/json/src/main.js +2 -1
  65. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/path.js +51 -29
  66. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/plugins/package.json +1 -1
  67. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/plugins/src/main.js +1 -1
  68. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/prototypes.js +8 -1
  69. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/text.js +1 -1
  70. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/archiver/package.json +1 -1
  71. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/archiver/src/main.js +1 -1
  72. package/framework/v0.1.7/lib/cache/README.md +158 -0
  73. package/framework/v0.1.7/lib/cache/package.json +20 -0
  74. package/framework/v0.1.7/lib/cache/src/main.js +491 -0
  75. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/add.js +80 -29
  76. package/framework/v0.1.7/lib/cmd/bundle/build.js +293 -0
  77. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/copy.js +3 -0
  78. package/framework/v0.1.7/lib/cmd/bundle/cp.js +6 -0
  79. package/framework/v0.1.7/lib/cmd/bundle/help.js +49 -0
  80. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/list.js +49 -4
  81. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/remove.js +54 -3
  82. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/rename.js +3 -0
  83. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/restart.js +53 -5
  84. package/framework/v0.1.7/lib/cmd/bundle/rm.js +6 -0
  85. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/start.js +77 -20
  86. package/framework/{v0.1.6-alpha.99/lib/cmd/project → v0.1.7/lib/cmd/bundle}/status.js +3 -0
  87. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/stop.js +39 -5
  88. package/framework/v0.1.7/lib/cmd/cache/stats.js +230 -0
  89. package/framework/v0.1.7/lib/cmd/env/add.js +390 -0
  90. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/env/get.js +28 -14
  91. package/framework/v0.1.7/lib/cmd/env/help.js +50 -0
  92. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/env/link-dev.js +51 -2
  93. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/env/list.js +61 -2
  94. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/env/remove.js +49 -2
  95. package/framework/v0.1.7/lib/cmd/env/rm.js +6 -0
  96. package/framework/v0.1.7/lib/cmd/env/set.js +110 -0
  97. package/framework/v0.1.7/lib/cmd/env/unset.js +78 -0
  98. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/env/use.js +58 -2
  99. package/framework/v0.1.7/lib/cmd/framework/arguments.json +7 -0
  100. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/build.js +35 -7
  101. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/dot.js +51 -2
  102. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/help.js +14 -1
  103. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/init.js +71 -11
  104. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/link-node-modules.js +42 -5
  105. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/link.js +41 -9
  106. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/open.js +24 -2
  107. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/restart.js +54 -13
  108. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/set.js +81 -5
  109. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/start.js +33 -3
  110. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/status.js +43 -4
  111. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/stop.js +37 -5
  112. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/tail.js +36 -12
  113. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/version.js +23 -1
  114. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/helper.js +367 -143
  115. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/index.js +44 -9
  116. package/framework/v0.1.7/lib/cmd/minion/help.js +49 -0
  117. package/framework/v0.1.7/lib/cmd/port/help.js +49 -0
  118. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/port/inc/scan.js +31 -7
  119. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/port/list.js +76 -9
  120. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/port/reset.js +56 -10
  121. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/add.js +252 -62
  122. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/arguments.json +2 -1
  123. package/framework/v0.1.7/lib/cmd/project/build.js +287 -0
  124. package/framework/v0.1.7/lib/cmd/project/help.js +49 -0
  125. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/help.txt +9 -1
  126. package/framework/v0.1.7/lib/cmd/project/import.js +8 -0
  127. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/list.js +37 -7
  128. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/remove.js +43 -2
  129. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/rename.js +39 -2
  130. package/framework/v0.1.7/lib/cmd/project/rm.js +6 -0
  131. package/framework/v0.1.7/lib/cmd/protocol/help.js +48 -0
  132. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/protocol/list.js +62 -5
  133. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/protocol/set.js +6 -3
  134. package/framework/v0.1.7/lib/cmd/scope/add.js +239 -0
  135. package/framework/v0.1.7/lib/cmd/scope/help.js +49 -0
  136. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/scope/link-local.js +54 -2
  137. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/scope/link-production.js +54 -2
  138. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/scope/list.js +74 -5
  139. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/scope/remove.js +50 -2
  140. package/framework/v0.1.7/lib/cmd/scope/rm.js +6 -0
  141. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/scope/use.js +51 -2
  142. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/view/add.js +71 -24
  143. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/collection/package.json +1 -1
  144. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/collection/src/main.js +80 -42
  145. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/config.js +17 -7
  146. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cron/package.json +1 -1
  147. package/framework/v0.1.7/lib/domain/dist/public_suffix_list.dat.br +0 -0
  148. package/framework/v0.1.7/lib/domain/dist/public_suffix_list.dat.gz +0 -0
  149. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/domain/package.json +1 -1
  150. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/domain/src/main.js +76 -21
  151. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/generator/index.js +1 -1
  152. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/index.js +46 -10
  153. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/inherits/LICENSE +1 -1
  154. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/inherits/package.json +1 -1
  155. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/inherits/src/main.js +36 -12
  156. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/package.json +1 -1
  157. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/containers/file/index.js +2 -0
  158. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/containers/mq/listener.js +1 -1
  159. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/helper.js +1 -1
  160. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/main.js +14 -3
  161. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/math/index.js +1 -1
  162. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/merge/package.json +1 -1
  163. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/merge/src/main.js +35 -5
  164. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/model.js +16 -7
  165. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/proc.js +73 -24
  166. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/routing/package.json +1 -1
  167. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/routing/src/main.js +172 -11
  168. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/session-store.js +23 -1
  169. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/shell.js +40 -11
  170. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/swig-filters/package.json +1 -1
  171. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/swig-filters/src/main.js +37 -85
  172. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/url/index.js +16 -1
  173. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/validator.js +22 -15
  174. package/migration_note.md +257 -0
  175. package/package.json +8 -6
  176. package/resources/etc/init.d/debian/gina +1 -1
  177. package/resources/home/settings.json +1 -0
  178. package/resources/package.json.template +1 -1
  179. package/script/lib.js +2 -2
  180. package/script/post_install.js +9 -120
  181. package/script/pre_install.js +4 -4
  182. package/script/pre_publish.js +207 -0
  183. package/utils/helper.js +48 -15
  184. package/utils/prototypes.json_clone.js +0 -88
  185. package/README-4Contributors.md +0 -132
  186. package/bin/gina.bat +0 -8
  187. package/framework/v0.1.6-alpha.99/VERSION +0 -1
  188. package/framework/v0.1.6-alpha.99/core/asset/plugin/dist/vendor/gina/css/gina.min.css.map +0 -1
  189. package/framework/v0.1.6-alpha.99/core/asset/plugin/dist/vendor/gina/js/gina.min.js +0 -777
  190. package/framework/v0.1.6-alpha.99/core/asset/plugin/dist/vendor/gina/js/gina.min.js.map +0 -8
  191. package/framework/v0.1.6-alpha.99/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js +0 -8
  192. package/framework/v0.1.6-alpha.99/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.map +0 -8
  193. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/.github/workflows/ci.yml +0 -24
  194. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/.github/workflows/lint.yml +0 -23
  195. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/bench/bench-multipart-fields-100mb-big.js +0 -149
  196. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/bench/bench-multipart-fields-100mb-small.js +0 -143
  197. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/bench/bench-multipart-files-100mb-big.js +0 -154
  198. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/bench/bench-multipart-files-100mb-small.js +0 -148
  199. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/bench/bench-urlencoded-fields-100pairs-small.js +0 -101
  200. package/framework/v0.1.6-alpha.99/core/deps/busboy-1.6.0/bench/bench-urlencoded-fields-900pairs-small-alt.js +0 -84
  201. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/.travis.yml +0 -4
  202. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/bool.js +0 -10
  203. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/boolean_double.js +0 -7
  204. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/boolean_single.js +0 -7
  205. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/default_hash.js +0 -8
  206. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/default_singles.js +0 -7
  207. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/divide.js +0 -8
  208. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/line_count.js +0 -20
  209. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/line_count_options.js +0 -29
  210. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/line_count_wrap.js +0 -29
  211. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/nonopt.js +0 -4
  212. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/reflect.js +0 -2
  213. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/short.js +0 -3
  214. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/string.js +0 -11
  215. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/usage-options.js +0 -19
  216. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/example/xup.js +0 -10
  217. package/framework/v0.1.6-alpha.99/core/deps/optimist-0.6.1/package.json.dist +0 -39
  218. package/framework/v0.1.6-alpha.99/core/deps/swig-1.4.2/bin/swig.js.dist +0 -161
  219. package/framework/v0.1.6-alpha.99/core/deps/swig-1.4.2/dist/swig.min.js.map +0 -8
  220. package/framework/v0.1.6-alpha.99/core/deps/swig-1.4.2/package.json.dist +0 -61
  221. package/framework/v0.1.6-alpha.99/core/locales/src/make.js +0 -316
  222. package/framework/v0.1.6-alpha.99/core/locales/src/resources/currency.csv +0 -433
  223. package/framework/v0.1.6-alpha.99/core/locales/src/resources/region.csv +0 -252
  224. package/framework/v0.1.6-alpha.99/core/locales/src/resources/region.mapping.json +0 -43
  225. package/framework/v0.1.6-alpha.99/core/server.isaac.js +0 -561
  226. package/framework/v0.1.6-alpha.99/lib/cmd/bundle/cp.js +0 -2
  227. package/framework/v0.1.6-alpha.99/lib/cmd/bundle/help.js +0 -28
  228. package/framework/v0.1.6-alpha.99/lib/cmd/bundle/rm.js +0 -2
  229. package/framework/v0.1.6-alpha.99/lib/cmd/env/add.js +0 -475
  230. package/framework/v0.1.6-alpha.99/lib/cmd/env/help.js +0 -30
  231. package/framework/v0.1.6-alpha.99/lib/cmd/env/rm.js +0 -2
  232. package/framework/v0.1.6-alpha.99/lib/cmd/env/set.js +0 -57
  233. package/framework/v0.1.6-alpha.99/lib/cmd/env/unset.js +0 -44
  234. package/framework/v0.1.6-alpha.99/lib/cmd/minion/help.js +0 -28
  235. package/framework/v0.1.6-alpha.99/lib/cmd/port/help.js +0 -28
  236. package/framework/v0.1.6-alpha.99/lib/cmd/project/build.js +0 -155
  237. package/framework/v0.1.6-alpha.99/lib/cmd/project/help.js +0 -28
  238. package/framework/v0.1.6-alpha.99/lib/cmd/project/import.js +0 -2
  239. package/framework/v0.1.6-alpha.99/lib/cmd/project/rm.js +0 -2
  240. package/framework/v0.1.6-alpha.99/lib/cmd/protocol/help.js +0 -27
  241. package/framework/v0.1.6-alpha.99/lib/cmd/scope/add.js +0 -129
  242. package/framework/v0.1.6-alpha.99/lib/cmd/scope/help.js +0 -28
  243. package/framework/v0.1.6-alpha.99/lib/cmd/scope/rm.js +0 -2
  244. package/framework/v0.1.6-alpha.99/lib/domain/exemples/backend.js +0 -12
  245. package/framework/v0.1.6-alpha.99/lib/domain/exemples/frontend.html +0 -0
  246. package/framework/v0.1.6-alpha.99/lib/inherits/example/inheriting_eventemitter.js +0 -54
  247. package/framework/v0.1.6-alpha.99/lib/inherits/example/protected_inheritance.js +0 -53
  248. package/framework/v0.1.6-alpha.99/lib/inherits/example/simple_inheritance.js +0 -48
  249. package/framework/v0.1.6-alpha.99/lib/inherits/example/super_attribute_overridden_by_child_on_init.js +0 -28
  250. package/framework/v0.1.6-alpha.99/lib/merge/example/merge.js +0 -28
  251. package/framework/v0.1.6-alpha.99/lib/merge/example/merge_2_literal objects.js +0 -64
  252. package/framework/v0.1.6-alpha.99/lib/merge/example/merge_and_preserve_first.js +0 -90
  253. package/framework/v0.1.6-alpha.99/lib/url/mocks.json +0 -205
  254. package/framework/v0.1.6-alpha.99/lib/url/test.js +0 -58
  255. package/services/.gna/67fdf1b224a2ed5597e63d4b64283834468e05e3.txt +0 -0
  256. package/services/.gna/arch +0 -1
  257. package/services/.gna/locals.json +0 -14
  258. package/services/.gna/platform +0 -1
  259. package/services/configure +0 -6
  260. package/services/env.json +0 -18
  261. package/services/manifest.json +0 -30
  262. package/services/package.json +0 -11
  263. package/services/src/proxy/config/app.json +0 -6
  264. package/services/src/proxy/config/routing.json +0 -11
  265. package/services/src/proxy/config/settings.json +0 -9
  266. package/services/src/proxy/config/settings.server.json +0 -31
  267. package/services/src/proxy/config/statics.json +0 -3
  268. package/services/src/proxy/controllers/controller.content.js +0 -58
  269. package/services/src/proxy/controllers/controller.js +0 -30
  270. package/services/src/proxy/controllers/setup.js +0 -111
  271. package/services/src/proxy/index.js +0 -31
  272. package/services/src/proxy/lib/domain/README.md +0 -48
  273. package/services/src/proxy/lib/domain/src/config/public_suffix_list.dat +0 -14186
  274. package/services/src/toolbar/config/app.json +0 -6
  275. package/services/src/toolbar/config/routing.json +0 -11
  276. package/services/src/toolbar/config/settings.json +0 -9
  277. package/services/src/toolbar/config/settings.server.json +0 -30
  278. package/services/src/toolbar/controllers/controller.content.js +0 -39
  279. package/services/src/toolbar/controllers/controller.js +0 -30
  280. package/services/src/toolbar/controllers/setup.js +0 -111
  281. package/services/src/toolbar/index.js +0 -43
  282. package/framework/{v0.1.6-alpha.99 → v0.1.7}/AUTHORS +0 -0
  283. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/html/nolayout.html +0 -0
  284. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/html/static.html +0 -0
  285. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/img/android-chrome-192x192.png +0 -0
  286. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/img/android-chrome-512x512.png +0 -0
  287. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/img/apple-touch-icon.png +0 -0
  288. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/img/favicon-16x16.png +0 -0
  289. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/img/favicon-32x32.png +0 -0
  290. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/img/favicon.ico +0 -0
  291. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/plugin/README.md +0 -0
  292. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/plugin/dist/vendor/gina/css/gina.min.css +0 -0
  293. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/plugin/dist/vendor/gina/html/toolbar.html +0 -0
  294. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/asset/plugin/uuid.json +0 -0
  295. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/connector.js +0 -0
  296. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/connector.v2.js +0 -0
  297. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/n1ql.js +0 -0
  298. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/session-store.js +0 -0
  299. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/connectors/couchbase/lib/session-store.v2.js +0 -0
  300. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/busboy-1.6.0/LICENSE +0 -0
  301. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/busboy-1.6.0/README.md +0 -0
  302. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/busboy-1.6.0/lib/index.js +0 -0
  303. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/busboy-1.6.0/lib/types/multipart.js +0 -0
  304. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/busboy-1.6.0/lib/types/urlencoded.js +0 -0
  305. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/busboy-1.6.0/lib/utils.js +0 -0
  306. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/busboy-1.6.0/package.json +0 -0
  307. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/optimist-0.6.1/LICENSE +0 -0
  308. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/optimist-0.6.1/index.js +0 -0
  309. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/optimist-0.6.1/package.json +0 -0
  310. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/optimist-0.6.1/readme.markdown +0 -0
  311. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/HISTORY.md +0 -0
  312. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/LICENSE +0 -0
  313. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/README.md +0 -0
  314. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/bin/swig.js +0 -0
  315. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/dist/swig.min.js +0 -0
  316. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/index.js +0 -0
  317. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/dateformatter.js +0 -0
  318. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/filters.js +0 -0
  319. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/lexer.js +0 -0
  320. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/loaders/filesystem.js +0 -0
  321. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/loaders/index.js +0 -0
  322. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/loaders/memory.js +0 -0
  323. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/parser.js +0 -0
  324. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/swig.js +0 -0
  325. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/autoescape.js +0 -0
  326. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/block.js +0 -0
  327. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/else.js +0 -0
  328. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/elseif.js +0 -0
  329. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/extends.js +0 -0
  330. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/filter.js +0 -0
  331. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/for.js +0 -0
  332. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/if.js +0 -0
  333. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/import.js +0 -0
  334. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/include.js +0 -0
  335. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/index.js +0 -0
  336. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/macro.js +0 -0
  337. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/parent.js +0 -0
  338. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/raw.js +0 -0
  339. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/set.js +0 -0
  340. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/tags/spaceless.js +0 -0
  341. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/lib/utils.js +0 -0
  342. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-1.4.2/package.json +0 -0
  343. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-client/swig-2.0.0.min.js +0 -0
  344. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/deps/swig-client/swig.js +0 -0
  345. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/dev/lib/class.js +0 -0
  346. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/dev/lib/tools.js +0 -0
  347. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/locales/README.md +0 -0
  348. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/locales/currency.json +0 -0
  349. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/locales/dist/language/en.json +0 -0
  350. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/locales/dist/language/fr.json +0 -0
  351. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/locales/dist/region/en.json +0 -0
  352. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/locales/dist/region/fr.json +0 -0
  353. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/mime.types +0 -0
  354. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/README.md +0 -0
  355. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/file/README.md +0 -0
  356. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/file/build.json +0 -0
  357. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/intl/README.md +0 -0
  358. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/intl/build.json +0 -0
  359. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/intl/src/main.js +0 -0
  360. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/storage/README.md +0 -0
  361. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/storage/build.json +0 -0
  362. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/storage/src/main.js +0 -0
  363. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/validator/README.md +0 -0
  364. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/plugins/lib/validator/build.json +0 -0
  365. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/status.codes +0 -0
  366. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/_gitignore +0 -0
  367. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/config/app.json +0 -0
  368. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/config/routing.json +0 -0
  369. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/config/settings.json +0 -0
  370. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/config/settings.server.json +0 -0
  371. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/config/templates.json +0 -0
  372. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/controllers/controller.content.js +0 -0
  373. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/controllers/controller.js +0 -0
  374. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/controllers/setup.js +0 -0
  375. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle/index.js +0 -0
  376. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_namespace/controllers/controller.js +0 -0
  377. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_public/css/default.css +0 -0
  378. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_public/css/vendor/readme.md +0 -0
  379. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_public/favicon.ico +0 -0
  380. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_public/js/vendor/readme.md +0 -0
  381. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_public/readme.md +0 -0
  382. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_templates/handlers/main.js +0 -0
  383. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_templates/html/content/homepage.html +0 -0
  384. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_templates/html/includes/error-msg-noscript.html +0 -0
  385. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_templates/html/includes/error-msg-outdated-browser.html +0 -0
  386. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/boilerplate/bundle_templates/html/layouts/main.html +0 -0
  387. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/command/gina.bat.tpl +0 -0
  388. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/conf/manifest.json +0 -0
  389. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/conf/package.json +0 -0
  390. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/conf/statics.json +0 -0
  391. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/conf/templates.json +0 -0
  392. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/error/client/json/401.json +0 -0
  393. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/error/client/json/403.json +0 -0
  394. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/error/client/json/404.json +0 -0
  395. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/error/server/html/50x.html +0 -0
  396. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/error/server/json/500.json +0 -0
  397. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/error/server/json/503.json +0 -0
  398. package/framework/{v0.1.6-alpha.99 → v0.1.7}/core/template/extensions/logger/config.json +0 -0
  399. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/data/LICENSE +0 -0
  400. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/data/README.md +0 -0
  401. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/json/LICENSE +0 -0
  402. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/json/README.md +0 -0
  403. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/plugins/README.md +0 -0
  404. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/plugins/src/api-error.js +0 -0
  405. package/framework/{v0.1.6-alpha.99 → v0.1.7}/helpers/task.js +0 -0
  406. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/archiver/README.md +0 -0
  407. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/archiver/build.json +0 -0
  408. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/archiver/src/dep/jszip.min.js +0 -0
  409. package/framework/{v0.1.6-alpha.99/lib/collection → v0.1.7/lib/cache}/build.json +0 -0
  410. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/aliases.json +0 -0
  411. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/arguments.json +0 -0
  412. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/bundle/help.txt +0 -0
  413. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/env/help.txt +0 -0
  414. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/get.js +0 -0
  415. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/help.txt +0 -0
  416. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/msg.json +0 -0
  417. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/framework/update.js +0 -0
  418. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/gina-dev.1.md +0 -0
  419. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/gina-framework.1.md +0 -0
  420. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/gina.1.md +0 -0
  421. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/minion/help.txt +0 -0
  422. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/msg.json +0 -0
  423. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/port/help.txt +0 -0
  424. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/port/set.js +0 -0
  425. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/move.js +0 -0
  426. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/restart.js +0 -0
  427. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/start.js +0 -0
  428. package/framework/{v0.1.6-alpha.99/lib/cmd/bundle → v0.1.7/lib/cmd/project}/status.js +0 -0
  429. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/project/stop.js +0 -0
  430. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/protocol/help.txt +0 -0
  431. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cmd/scope/help.txt +0 -0
  432. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/collection/README.md +0 -0
  433. package/framework/{v0.1.6-alpha.99/lib/routing → v0.1.7/lib/collection}/build.json +0 -0
  434. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cron/README.md +0 -0
  435. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/cron/src/main.js +0 -0
  436. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/domain/LICENSE +0 -0
  437. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/domain/README.md +0 -0
  438. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/domain/dist/2025-03-14_13-41-20_UTC.dat +0 -0
  439. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/domain/dist/public_suffix_list.dat +0 -0
  440. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/inherits/README.md +0 -0
  441. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/README.md +0 -0
  442. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/containers/default/index.js +0 -0
  443. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/containers/file/lib/logrotator/README.md +0 -0
  444. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/containers/file/lib/logrotator/index.js +0 -0
  445. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/containers/mq/index.js +0 -0
  446. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/logger/src/containers/mq/speaker.js +0 -0
  447. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/merge/README.md +0 -0
  448. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/routing/README.md +0 -0
  449. package/{Icon/r → framework/v0.1.7/lib/routing/build.json} +0 -0
  450. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/swig-filters/README.md +0 -0
  451. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/url/README.md +0 -0
  452. package/framework/{v0.1.6-alpha.99 → v0.1.7}/lib/url/routing.json +0 -0
  453. package/framework/{v0.1.6-alpha.99 → v0.1.7}/package.json +1 -1
package/.claudeignore ADDED
@@ -0,0 +1,68 @@
1
+ # .claudeignore — files excluded from Claude Code's context
2
+ # Rule of thumb: if it can't be read usefully or has nothing to do with the
3
+ # framework's own logic, exclude it.
4
+
5
+ # ── Dependencies ─────────────────────────────────────────────────────────────
6
+ node_modules/
7
+
8
+ # Nested node_modules inside vendored deps (swig's alone has ~4300 JS files)
9
+ framework/**/node_modules/
10
+
11
+ # ── Vendored dep non-essential files ─────────────────────────────────────────
12
+ # Keep the main lib source (we patch it for CVEs), exclude tests/examples/bench
13
+ framework/**/core/deps/swig-1.4.2/tests/
14
+ framework/**/core/deps/swig-1.4.2/examples/
15
+ framework/**/core/deps/swig-1.4.2/dist/
16
+ framework/**/core/deps/busboy-1.6.0/bench/
17
+ framework/**/core/deps/busboy-1.6.0/test/
18
+
19
+ # ── Build output & minified assets ───────────────────────────────────────────
20
+ framework/**/core/asset/plugin/dist/
21
+ framework/**/core/asset/plugin/build/
22
+ **/*.min.js
23
+ **/*.min.css
24
+ **/*.gz
25
+ **/*.br
26
+ **/*.map
27
+
28
+ # External jQuery copies inside the asset plugin (not framework code)
29
+ framework/**/core/asset/plugin/src/vendor/jquery/
30
+ framework/**/core/asset/plugin/src/vendor/gina/toolbar/js/jquery*.js
31
+
32
+ # ── Lock files ────────────────────────────────────────────────────────────────
33
+ package-lock.json
34
+ **/package-lock.json
35
+
36
+ # ── Locale compiled data ──────────────────────────────────────────────────────
37
+ # src/ has 5 files (the make script) — keep; dist/ is compiled output — exclude
38
+ framework/**/core/locales/dist/
39
+
40
+ # ── Test workspace ────────────────────────────────────────────────────────────
41
+ # Generated test project bootstrapped by `gina project:add` — not framework code
42
+ framework/**/test/workspace/
43
+
44
+ # ── Runtime / generated directories ──────────────────────────────────────────
45
+ logs/
46
+ **/logs/
47
+ tmp/
48
+ cache/
49
+ services/
50
+
51
+ # ── Binary & image assets ─────────────────────────────────────────────────────
52
+ resources/img/
53
+ **/*.png
54
+ **/*.ico
55
+ **/*.jpg
56
+ **/*.jpeg
57
+ **/*.gif
58
+ **/*.svg
59
+ **/*.afdesign
60
+
61
+ # ── Changelog management ──────────────────────────────────────────────────────
62
+ # Individual .yaml entries are tiny but provide zero code insight
63
+ .changes/
64
+ CHANGELOG.md
65
+
66
+ # ── Static reference data ─────────────────────────────────────────────────────
67
+ # doc/doc.json is a static CLI reference — useful to read manually, not as context
68
+ doc/
package/CHANGELOG.md ADDED
@@ -0,0 +1,83 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
6
+ and is generated by [Changie](https://github.com/miniscruff/changie).
7
+
8
+
9
+ ## 0.1.7 - 2026-03-20
10
+ ### Added
11
+ * Cache: sliding-window expiration and absolute ceiling (maxAge) for HTML and JSON response caches
12
+ * Added gina cache:stats <bundle> @<project> CLI command. Fetches and prints a grouped table of in-memory cache entries from a running bundle. Requires the bundle to be running.
13
+ * Cached routes now emit `Cache-Control` headers synchronised with the server-side TTL. A new optional `visibility` field (`"public" | "private"`, default `"private"`) in the per-route cache config controls the directive sent to browsers and CDNs. The hit path uses the remaining TTL so downstream caches do not over-serve stale content.
14
+ * Per-route outgoing query timeout: add "queryTimeout": <ms> to any routing.json rule and self.query() will use it as the request timeout budget when options.requestTimeout is not explicitly set. The hardcoded 10 s default still applies when neither is set.
15
+ ### Changed
16
+ * Cache FS writes in the JSON renderer are now asynchronous (fs.promises.writeFile), avoiding event-loop blocking on cache misses.
17
+ * routing.json queryTimeout field now accepts human-readable strings ("30s", "500ms", "2m", "1h") in addition to integer milliseconds (30000). The value is normalised to ms at parse time so req.routing.queryTimeout is always a number.
18
+ * app.json proxy target field "timeout" renamed to "requestTimeout" — unambiguous name for the per-request outgoing timeout. Update any app.json proxy target that declares a "timeout" to use "requestTimeout" instead. self.query() call sites that passed options.timeout must also be updated to options.requestTimeout.
19
+ * self.query() options field "timeout" renamed to "requestTimeout" — consistent with app.json::proxy.<service>.requestTimeout. The internal pipeline (both HTTP/1 and HTTP/2 handlers) and the defaultOptions fallback now use requestTimeout throughout
20
+ * Entity methods and Couchbase N1QL methods now return a native Promise (Option B). await entity.method(args) works directly without util.promisify. .onComplete(cb) remains fully backward-compatible. Removes the _isRegisteredFromProto guard that was silently dropping queries when a callback-path call preceded a Promise-path call on the same entity.
21
+ ### Fixed
22
+ * Sub-second TTL and maxAge values (e.g. ttl: 0.5) now work correctly in the cache. Previously, fractional seconds were truncated to zero, causing immediate eviction.
23
+ * Completed sub-second maxAge fix (#C1): both renderers were pre-truncating maxAge with ~~ before passing it to lib/cache, bypassing the Math.round fix. Removed ~~ from render-swig.js and render-json.js. Also fixed Cache-Status header calculation in server.isaac.js.
24
+ * Cache keys now include the bundle name ("static:{bundle}:{url}" and "data:{bundle}:{url}") to prevent silent cache collisions when two bundles serve the same URL path on the same server instance.
25
+ * Cache entries are now capped via LRU eviction. Cache(options) accepts a `maxEntries` option (default 0 = unlimited); when reached, the least-recently-accessed entry is evicted before each insert. The shared server cache defaults to 1000 entries, configurable via `server.cache.maxEntries` in env.json. The routing cache is capped at 5000 entries (FIFO).
26
+ * Fixed handler files returning 404 when a catch-all root statics mapping (empty key) was defined: staticResources is now sorted by descending path length so specific prefixes like /handlers/ are matched before / in the prefix-regex loop
27
+ * CORS preflight (OPTIONS) requests are now handled before routing: the server responds with HTTP 204 and the correct Access-Control-Allow-Origin header immediately, instead of forwarding to the controller action which returned an error without CORS headers. CORS response headers are now also included on all HTTP/2 JSON responses.
28
+ * self.query() queryTimeout fallback now fires correctly: moved the req.routing.queryTimeout check to before the merge with defaultOptions, which was silently overwriting timeout with the "10s" framework default before the check could run
29
+ * controller.render-swig.js: isRenderingCustomError now detected from both userData and localOptions (set by renderCustomError() in controller.js). Adds null-guard on userData. localOptions is now resolved before the flag check.
30
+ ### Security
31
+ * Removed dead framework version v0.1.1-alpha.1 from the repository. Its package.json declared sanitize-html ^2.5.0 (CVE-2021-26539, CVE-2021-26540 — XSS, high severity) and busboy ^0.2.14 (dicer ReDoS). Neither version nor its dependencies were in use.
32
+
33
+ ## 0.1.6 - 2026-03-08
34
+ ### Added
35
+ * Added JSDoc across core/controller/, core/model/, and helpers/: constructor @class/@constructor/@extends, @inner on private helpers, complete @param/@returns on all public methods, @global on the _ path helper, @module on controller/index.js
36
+ * Added JSDoc to lib/ runtime libraries: @module on all 13 files; @class/@constructor on Cache, Collection, ConfigUtil, Domain, Inherits, Merge, ModelUtil, Proc, SessionStore, Shell, Url, Validator; complete @param/@returns on all public methods; fixed @contructor typos and empty @returns stubs
37
+ * Added JSDoc to all lib/cmd/ command handlers (63 files) covering bundle, env, framework, minion, port, project, protocol, scope, view groups plus CmdHelper and the cmd dispatcher
38
+ * Added JSDoc to core/config.js, core/gna.js, core/server.js, core/server.isaac.js, and core/server.express.js
39
+ * post_publish now auto-increments the alpha version, renames the framework directory, updates ~/.gina config, and commits after each npm publish
40
+ * Added unit tests for V8 arm64 regression (const vs var object rest), routing cleanup, _isDebugLog gate, _debugLog format, and ANSI color codes in startup debug traces
41
+ * Added gina-container foreground bundle launcher for Docker/K8s containers (bin/gina-container)
42
+ ### Changed
43
+ * Replaced synchronous fs I/O in render-swig.js (readFileSync, openSync/writeSync/closeSync), server.isaac.js (execSync for brotli/gzip), and config.js (readdirSync) with async equivalents (fs.promises, child_process.exec)
44
+ * Extracted try-catch config resolution block from Router::route() into module-level resolveRouteConfig() for V8 JIT optimization (#P25)
45
+ * Replaced string += in setOptions() routing param loop with Array.push()+join() for V8 optimization (#P26)
46
+ ### Fixed
47
+ * Fixed HTTP/2 client requests crashing on retry when a request body was present, and corrected misleading undefined method/path in HTTP/2 stream error logs.
48
+ * Fixed HTTP/2 session cache growing without bound; sessions are now capped at 50 with FIFO eviction and properly removed on error, close, and goaway events
49
+ * Fixed query#complete listener accumulation: removeAllListeners() is now called before each once() registration in both HTTP/1 and HTTP/2 onComplete paths
50
+ * Fixed shared module-level EventEmitter in path helper: mkdir, cp, mv and rm now each create a per-call emitter, eliminating orphaned listener accumulation and cross-call event interference
51
+ * Fixed _maxListeners growing unbounded in entity.js: capped at 100 via Math.min to ensure Node's memory leak warning still fires if trigger accumulation goes beyond the realistic method count ceiling
52
+ * Fixed undrained http.IncomingMessage on 4xx in downloadFromURL: res.destroy() is now called before rejecting the Promise, releasing the TCP connection immediately instead of waiting for remote timeout
53
+ * Fixed HTTP/2 response chunk string concatenation: chunks are now collected as Buffers and assembled with Buffer.concat() in the end handler, halving peak memory usage for large responses
54
+ * Fixed HTTP/1 retry timer accumulation: capped maxRetry at 10 via Math.min to bound outstanding setTimeout closures under sustained connection failure regardless of user config
55
+ * Fixed req/res held in controller closure: all response-terminal exit paths in controller.js, controller.render-json.js, and controller.render-swig.js now explicitly null local.req/res/next immediately after the response is sent
56
+ * Fixed SuperController.instance._options written on every request: removed write in getInstance() and setOptions() — _options was never read (all reads go through per-request local.options/self._options), making the write a silent corruption trap for future code
57
+ * Fixed a silent ENOENT 500 on requests when the swig layout cache directory could not be created (e.g. permission denied). The renderer now clears the cache target, logs a warning on every affected request, and falls back to the original configured layout path so the page renders normally. The swig compiled-template cache and response cache are also suppressed while the failure persists, ensuring the warning remains visible until the underlying issue is resolved.
58
+ * prepare_version no longer attempts a stale recovery or a no-op rename when the working version is already in sync with the published one
59
+ * Fixed invalid JSDoc tags (@package, bare @returns) in lib/inherits and lib/logger that caused jsdoc-to-markdown parse errors
60
+ * Fixed ReferenceError: isLocalScope is not defined in SuperController.setOptions (controller.js:413) — bare call replaced with self.isLocalScope()
61
+ * Fixed post_install.js MIDDLEWARE update: .toString missing () caused comparison to always be true; added missing done() call in the already-in-sync branch to prevent hang
62
+ * Fixed HTTP/2 client stream premature close silently hanging requests: req.on('close') now emits an error when the stream closes before 'end' fires (GOAWAY race, network reset, or session timeout)
63
+ * Added stream-level timeout to HTTP/2 client requests (mirrors HTTP/1 path): streams that receive no events now time out instead of hanging indefinitely
64
+ * Added TCP keepalive and setNoDelay on HTTP/2 session socket to prevent OrbStack (ARM64) from silently dropping idle inter-container connections
65
+ * HTTP/2 stream timeout now auto-retries with a fresh session instead of surfacing a 500 error — transparent recovery when OrbStack silently drops idle inter-container connections
66
+ * Fixed null lib.generator crash in post_publish.js by initializing lib inside begin() to avoid circular dependency at module load time
67
+ * Fixed bundle crash on startup when verifyCertificate DNS lookup fails inside containers (unhandled rejection from async setTimeout callback now logs at emerg level instead of aborting the process; added 5 s timeout to ssl-checker to prevent indefinite hangs)
68
+ * Fixed credentials.ca path not expanding ~/ before fs.readFileSync in verifyCertificate (server.js) and http2Options (server.isaac.js); credentials paths use ~/ which fs.readFileSync cannot resolve — now uses _() for tilde expansion
69
+ * Fixed logger silently swallowing all log output when LOG_LEVEL is set to a level name with no hierarchy entry (e.g. 'notice', 'alert', 'crit'): init now falls back to 'info' with a warning, matching the existing setLevel() guard
70
+ * Fixed bundle crash when HTTP/2 client abruptly disconnects (ECONNRESET): added session error handler in server.isaac.js and restored ECONNRESET guard in proc.js uncaughtException handler
71
+ * Fixed bundle being SIGKILL'd by start.js stdout watchdog when a runtime uncaughtException triggered an emerg log — the emerg-detection guard in child.stdout.on('data') is now skipped once the bundle is running, letting proc.js handle the lifecycle cleanly and allowing the actual error to reach the logs
72
+ * Replaced per-request regex /^(\.|\/|\\)/.test(file) with charAt(0) checks in render-swig.js and render-v1.js
73
+ * Added bundle startup integration test validating the async render pipeline (P28-P31) works end-to-end; test skips gracefully when gina socket is not running
74
+ * Reverted async readdirSync conversion in config.js (loadWithTemplate, loadBundleConfig) — async I/O in these functions breaks the synchronous Config initialisation contract, causing bundle startup crashes with TypeError: Cannot read properties of undefined (reading 'bundlesConfiguration')
75
+ * Fixed {{ page.environment.* }} placeholders not substituted in ginaLoader (gina.onload.min.js) — ginaLoader is injected after Swig compilation so whisper() must resolve them; dic was missing page.environment.key flattened entries in render-swig.js and render-v1.js
76
+ * Fixed %s placeholders not substituted in session-store v3/v4 debug log calls (gina logger does not support printf-style formatting)
77
+ * Eliminated [DOMAIN] PSL Loaded ×2 noise per request in dev mode: removed unused Domain import and instantiation from controller.js (dead code), and removed redundant direct pre-load of controller.js from refreshCoreDependencies() in router.js
78
+ * Added graceful HTTP shutdown on SIGTERM: server.close() drains in-flight requests before exit, with configurable timeout (GINA_SHUTDOWN_TIMEOUT env var, default 10s) and closeIdleConnections() for keep-alive connections (Node 18.2+ http.Server)
79
+ * Fixed per-request "Logger instance already exists: reusing it ;)" debug noise in dev mode. Root cause: refreshCore() (server.isaac.js) deleted and re-required lib/index.js on every HTTP request, which re-ran Lib() and called _require('./logger'), evicting and re-loading the logger singleton on every request. Logger is persisted via getContext('loggerInstance') and does not benefit from hot-reload. Changed lib/index.js to use plain require('./logger') instead of _require('./logger').
80
+ ### Security
81
+ * Fixed directory traversal vulnerability (CVE-2023-25345) in the swig template engine: a malicious template using `{% extends %}` or a path starting with `./`, `/`, or `\` could read arbitrary files outside the template root.
82
+ * Removed dead framework version v0.1.1-alpha.1 from the repository. Its package.json declared sanitize-html ^2.5.0 (CVE-2021-26539, CVE-2021-26540 — XSS, high severity) and busboy ^0.2.14 (dicer ReDoS). Neither version nor its dependencies were in use.
83
+ * Removed internal development files from the npm package. The published tarball no longer includes .env, CLAUDE.md, .claude/ (internal notes), .changes/ (changie entries), .changie.yaml, services/ (WIP bundles), vendor benchmark and CI files, library example and test files, locale build sources, and stray backup files. Previously .npmignore did not cover these paths.
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2025 Rhinostone <contact@gina.io>
1
+ Copyright (c) 2009-2026 Rhinostone <contact@gina.io>
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal