├── .vscode └── settings.json ├── COPYING3 ├── LICENSE.txt ├── Makefile ├── Makefile.defaults ├── NEWS.md ├── NOTICE.txt ├── README.md ├── alire-setup.sh ├── alire.toml ├── bin └── argouml.sh ├── config ├── argouml-0.35.5.jar ├── argouml.properties ├── commands │ ├── add-ajax-form.xml │ ├── add-form.xml │ ├── add-module-operation.xml │ ├── add-module.xml │ ├── add-permission.xml │ ├── add-query.xml │ ├── add-service.xml │ └── add-test.xml ├── db │ ├── create-database.xml │ └── dynamo-sql.sql ├── extract-doc-markdown.xsl ├── extract-doc.xsl ├── generator.properties.in ├── hibernate-mapping-3.0.dtd ├── log4j.properties ├── mappings │ ├── AdaMappings.xml │ ├── MySQLMappings.xml │ ├── PostgresqlMappings.xml │ └── SQLiteMappings.xml ├── sqlite-exit.sql ├── templates │ ├── add-ajax-form │ │ ├── form-response.xhtml │ │ └── form.xhtml │ ├── add-form │ │ ├── form-response.xhtml │ │ ├── form.xhtml │ │ ├── page.xhtml │ │ └── patch-form-navigation.xhtml │ ├── add-model │ │ └── table-model.xhtml │ ├── add-module-operation │ │ ├── patch-module-body-1.xhtml │ │ ├── patch-module-body-2.xhtml │ │ ├── patch-module-body-3.xhtml │ │ ├── patch-module-spec-1.xhtml │ │ └── patch-module-spec-2.xhtml │ ├── add-module │ │ ├── module-beans-body.xhtml │ │ ├── module-beans-spec.xhtml │ │ ├── module-bundles.xhtml │ │ ├── module-config.xhtml │ │ ├── module-module-body-common.xhtml │ │ ├── module-module-body.xhtml │ │ ├── module-module-spec-common.xhtml │ │ ├── module-module-spec.xhtml │ │ ├── module-spec.xhtml │ │ ├── patch-application-body-1.xhtml │ │ ├── patch-application-spec-1.xhtml │ │ └── patch-application-spec-2.xhtml │ ├── add-permission │ │ ├── patch-module-config-1.xhtml │ │ ├── patch-module-spec-1.xhtml │ │ └── patch-module-spec-2.xhtml │ ├── add-query │ │ └── query.xhtml │ ├── add-service │ │ ├── service-body.xhtml │ │ └── service-spec.xhtml │ ├── add-test │ │ ├── alire.toml.xhtml │ │ ├── patch-testsuite-body-1.xhtml │ │ ├── patch-testsuite-body-2.xhtml │ │ ├── test-body.xhtml │ │ ├── test-harness.xhtml │ │ ├── test-spec.xhtml │ │ ├── test-testsuite-body.xhtml │ │ ├── test-testsuite-spec.xhtml │ │ └── tests.gpr.xhtml │ ├── beans │ │ ├── package-bean-get_impl.xhtml │ │ ├── package-bean-operations-set-member.xhtml │ │ ├── package-bean-operations.xhtml │ │ ├── package-bean-serialize.xhtml │ │ ├── package-body-bean-impl.xhtml │ │ ├── package-body-beans.xhtml │ │ ├── package-body.xhtml │ │ ├── package-spec-bean-decl.xhtml │ │ ├── package-spec-beans.xhtml │ │ └── package-spec.xhtml │ ├── create-plugin-ada │ │ ├── Makefile.xhtml │ │ ├── distrib │ │ │ └── gnat.xhtml │ │ ├── gnat.xhtml │ │ └── src │ │ │ ├── plugin-module-body.xhtml │ │ │ ├── plugin-module.xhtml │ │ │ └── plugin.xhtml │ ├── create-plugin-web │ │ └── Makefile.xhtml │ ├── layout │ │ └── layout.xhtml │ ├── licenses │ │ ├── apache2 │ │ │ ├── LICENSE.txt │ │ │ └── apache-2_0.xhtml │ │ ├── bsd3 │ │ │ ├── LICENSE │ │ │ └── bsd3.xhtml │ │ ├── gpl │ │ │ ├── COPYING │ │ │ ├── COPYING3 │ │ │ ├── gpl-2_0.xhtml │ │ │ └── gpl-3_0.xhtml │ │ ├── license-ada.xhtml │ │ ├── mit │ │ │ ├── LICENSE │ │ │ └── mit.xhtml │ │ └── proprietary.xhtml │ ├── model │ │ ├── package-body-objects.xhtml │ │ ├── package-body-queries.xhtml │ │ ├── package-body.xhtml │ │ ├── package-spec-enums.xhtml │ │ ├── package-spec-objects-private.xhtml │ │ ├── package-spec-objects.xhtml │ │ ├── package-spec-queries-private.xhtml │ │ ├── package-spec-query.xhtml │ │ ├── package-spec-record-decl.xhtml │ │ └── package-spec.xhtml │ ├── page │ │ └── index.xhtml │ ├── project-ado │ │ ├── COPYING.xhtml │ │ ├── LICENSE.xhtml │ │ ├── Makefile.defaults │ │ ├── Makefile.xhtml │ │ ├── alire.toml.xhtml │ │ ├── config.gpr.xhtml │ │ ├── project.gpr.xhtml │ │ ├── server.properties.xhtml │ │ └── src │ │ │ ├── model │ │ │ └── README │ │ │ ├── project-main.xhtml │ │ │ └── project.xhtml │ ├── project-gtk │ │ ├── COPYING.xhtml │ │ ├── LICENSE.xhtml │ │ ├── Makefile.defaults │ │ ├── Makefile.xhtml │ │ ├── alire.toml.xhtml │ │ ├── config.gpr.xhtml │ │ ├── project.gpr.xhtml │ │ └── src │ │ │ ├── project-body.xhtml │ │ │ ├── project-main.xhtml │ │ │ └── project.xhtml │ ├── project-lib │ │ ├── COPYING.xhtml │ │ ├── LICENSE.xhtml │ │ ├── Makefile.defaults │ │ ├── Makefile.xhtml │ │ ├── alire.toml.xhtml │ │ ├── config.gpr.xhtml │ │ ├── project.gpr.xhtml │ │ └── src │ │ │ └── project.xhtml │ ├── project-tool │ │ ├── COPYING.xhtml │ │ ├── LICENSE.xhtml │ │ ├── Makefile.defaults │ │ ├── Makefile.xhtml │ │ ├── alire.toml.xhtml │ │ ├── config.gpr.xhtml │ │ ├── project.gpr.xhtml │ │ ├── server.properties.xhtml │ │ └── src │ │ │ ├── project-main.xhtml │ │ │ └── project.xhtml │ ├── project │ │ ├── COPYING.xhtml │ │ ├── LICENSE.xhtml │ │ ├── Makefile.defaults │ │ ├── Makefile.xhtml │ │ ├── alire.toml.xhtml │ │ ├── bundles │ │ │ └── bundle.xhtml │ │ ├── config.gpr.xhtml │ │ ├── config │ │ │ └── project.xml.xhtml │ │ ├── package.xml.xhtml │ │ ├── project.gpr.xhtml │ │ ├── server.properties.xhtml │ │ ├── src │ │ │ ├── model │ │ │ │ └── README │ │ │ ├── project-applications-body.xhtml │ │ │ ├── project-applications-spec.xhtml │ │ │ ├── project-server.xhtml │ │ │ └── project.xhtml │ │ └── web │ │ │ ├── WEB-INF │ │ │ └── layouts │ │ │ │ └── layout.xhtml │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── images │ │ │ └── ok48.png │ │ │ ├── index.xhtml │ │ │ └── robots.txt │ └── sql │ │ ├── create-mysql-sql.xhtml │ │ ├── create-postgresql-sql.xhtml │ │ ├── create-sqlite-sql.xhtml │ │ ├── drop-mysql-sql.xhtml │ │ ├── drop-postgresql-sql.xhtml │ │ └── drop-sqlite-sql.xhtml └── uml │ ├── Dynamo.xmi │ ├── Dynamo.zargo │ ├── argouml-profiles.conf │ └── default-uml14.xmi ├── coverage.sh ├── dynamo.xml ├── dynamo_config.gpr ├── dynamo_tool.gpr ├── man └── man1 │ └── dynamo.1 ├── regtests ├── alire.toml ├── check_build │ ├── check_build.gpr │ ├── gen-events.ads │ ├── gen-permissions.ads │ ├── gen-tests-packages.ads │ ├── gen-tests.ads │ ├── gen-users.ads │ ├── gen.ads │ ├── test-tblog.ads │ ├── test-tuser.ads │ └── test.ads ├── dynamo_tests.gpr ├── files │ ├── Permission.hbm.xml │ ├── Queues.hbm.xml │ ├── User.hbm.xml │ ├── dist-web.zip │ ├── email.yaml │ ├── package.xml │ ├── permissions.xml │ ├── queue-messages.xml │ ├── serialize.xml │ └── users.yaml ├── src │ ├── dynamo_harness.adb │ ├── gen-artifacts-xmi-tests.adb │ ├── gen-artifacts-xmi-tests.ads │ ├── gen-artifacts-yaml-tests.adb │ ├── gen-artifacts-yaml-tests.ads │ ├── gen-integration-tests.adb │ ├── gen-integration-tests.ads │ ├── gen-integration.ads │ ├── gen-testsuite.adb │ └── gen-testsuite.ads ├── support │ ├── closure │ ├── pngcrush │ └── yui-compressor └── uml │ ├── dynamo-test-associations.xmi │ ├── dynamo-test-associations.zargo │ ├── dynamo-test-beans.xmi │ ├── dynamo-test-beans.zargo │ ├── dynamo-test-dependencies.zargo │ ├── dynamo-test-enum.xmi │ ├── dynamo-test-enum.zargo │ ├── dynamo-test-errors.zargo │ ├── dynamo-test-packages.zargo │ ├── dynamo-test-serialize.zargo │ ├── dynamo-test-table-beans.zargo │ ├── dynamo-test-table.xmi │ ├── dynamo-test-table.zargo │ ├── dynamo-test-types.xmi │ └── dynamo-test-types.zargo └── src ├── dynamo.adb ├── gen-artifacts-distribs-bundles.adb ├── gen-artifacts-distribs-bundles.ads ├── gen-artifacts-distribs-concat.adb ├── gen-artifacts-distribs-concat.ads ├── gen-artifacts-distribs-copies.adb ├── gen-artifacts-distribs-copies.ads ├── gen-artifacts-distribs-exec.adb ├── gen-artifacts-distribs-exec.ads ├── gen-artifacts-distribs-libs.adb ├── gen-artifacts-distribs-libs.ads ├── gen-artifacts-distribs-merges.adb ├── gen-artifacts-distribs-merges.ads ├── gen-artifacts-distribs.adb ├── gen-artifacts-distribs.ads ├── gen-artifacts-docs-googlecode.adb ├── gen-artifacts-docs-googlecode.ads ├── gen-artifacts-docs-markdown.adb ├── gen-artifacts-docs-markdown.ads ├── gen-artifacts-docs.adb ├── gen-artifacts-docs.ads ├── gen-artifacts-hibernate.adb ├── gen-artifacts-hibernate.ads ├── gen-artifacts-mappings.adb ├── gen-artifacts-mappings.ads ├── gen-artifacts-query.adb ├── gen-artifacts-query.ads ├── gen-artifacts-xmi.adb ├── gen-artifacts-xmi.ads ├── gen-artifacts-yaml.adb ├── gen-artifacts-yaml.ads ├── gen-artifacts.adb ├── gen-artifacts.ads ├── gen-commands-database.adb ├── gen-commands-database.ads ├── gen-commands-distrib.adb ├── gen-commands-distrib.ads ├── gen-commands-docs.adb ├── gen-commands-docs.ads ├── gen-commands-generate.adb ├── gen-commands-generate.ads ├── gen-commands-info.adb ├── gen-commands-info.ads ├── gen-commands-layout.adb ├── gen-commands-layout.ads ├── gen-commands-model.adb ├── gen-commands-model.ads ├── gen-commands-page.adb ├── gen-commands-page.ads ├── gen-commands-plugins.adb ├── gen-commands-plugins.ads ├── gen-commands-project.adb ├── gen-commands-project.ads ├── gen-commands-propset.adb ├── gen-commands-propset.ads ├── gen-commands-templates.adb ├── gen-commands-templates.ads ├── gen-commands.adb ├── gen-commands.ads ├── gen-configs.gpb ├── gen-database.ads ├── gen-generator.adb ├── gen-generator.ads ├── gen-model-beans.adb ├── gen-model-beans.ads ├── gen-model-enums.adb ├── gen-model-enums.ads ├── gen-model-list.adb ├── gen-model-list.ads ├── gen-model-mappings.adb ├── gen-model-mappings.ads ├── gen-model-operations.adb ├── gen-model-operations.ads ├── gen-model-packages.adb ├── gen-model-packages.ads ├── gen-model-projects.adb ├── gen-model-projects.ads ├── gen-model-queries.adb ├── gen-model-queries.ads ├── gen-model-stypes.adb ├── gen-model-stypes.ads ├── gen-model-tables.adb ├── gen-model-tables.ads ├── gen-model-xmi.adb ├── gen-model-xmi.ads ├── gen-model.adb ├── gen-model.ads ├── gen-utils-gnat.ads ├── gen-utils.adb ├── gen-utils.ads ├── gen.ads ├── gen.gpb ├── gnat ├── adaint.c ├── adaint.h ├── ali.adb ├── ali.ads ├── alloc.ads ├── aspects.adb ├── aspects.ads ├── atree.adb ├── atree.ads ├── auto-host.h ├── butil.adb ├── butil.ads ├── casing.adb ├── casing.ads ├── config.h ├── csets.adb ├── csets.ads ├── debug.adb ├── debug.ads ├── einfo.adb ├── einfo.ads ├── elists.adb ├── elists.ads ├── err_vars.ads ├── errout.adb ├── errout.ads ├── erroutc.adb ├── erroutc.ads ├── errutil.adb ├── errutil.ads ├── fmap.adb ├── fmap.ads ├── fname-uf.adb ├── fname-uf.ads ├── fname.adb ├── fname.ads ├── gen-utils-gnat.adb ├── gnatvsn.adb ├── gnatvsn.ads ├── hostparm.ads ├── hwint.h ├── krunch.adb ├── krunch.ads ├── lib-list.adb ├── lib-sort.adb ├── lib.adb ├── lib.ads ├── link.c ├── makeutl.adb ├── makeutl.ads ├── mingw32.h ├── mlib-fil.adb ├── mlib-fil.ads ├── mlib-tgt-specific.adb ├── mlib-tgt-specific.ads ├── mlib-tgt.adb ├── mlib-tgt.ads ├── mlib-utl.adb ├── mlib-utl.ads ├── mlib.adb ├── mlib.ads ├── namet.adb ├── namet.ads ├── nlists.adb ├── nlists.ads ├── opt.adb ├── opt.ads ├── osint.adb ├── osint.ads ├── output.adb ├── output.ads ├── prefix.c ├── prefix.h ├── prj-attr-pm.adb ├── prj-attr-pm.ads ├── prj-attr.adb ├── prj-attr.ads ├── prj-com.ads ├── prj-conf.adb ├── prj-conf.ads ├── prj-dect.adb ├── prj-dect.ads ├── prj-env.adb ├── prj-env.ads ├── prj-err.adb ├── prj-err.ads ├── prj-ext.adb ├── prj-ext.ads ├── prj-makr.adb ├── prj-makr.ads ├── prj-nmsc.adb ├── prj-nmsc.ads ├── prj-pars.adb ├── prj-pars.ads ├── prj-part.adb ├── prj-part.ads ├── prj-pp.adb ├── prj-pp.ads ├── prj-proc.adb ├── prj-proc.ads ├── prj-strt.adb ├── prj-strt.ads ├── prj-tree.adb ├── prj-tree.ads ├── prj-util.adb ├── prj-util.ads ├── prj.adb ├── prj.ads ├── repinfo.adb ├── repinfo.ads ├── rident.ads ├── scans.adb ├── scans.ads ├── scng.adb ├── scng.ads ├── sdefault.adb ├── sdefault.ads ├── sem_aux.adb ├── sem_aux.ads ├── sinfo.adb ├── sinfo.ads ├── sinput-c.adb ├── sinput-c.ads ├── sinput-p.adb ├── sinput-p.ads ├── sinput.adb ├── sinput.ads ├── snames.adb ├── snames.ads ├── stand.adb ├── stand.ads ├── stringt.adb ├── stringt.ads ├── styleg.adb ├── styleg.ads ├── stylesw.adb ├── stylesw.ads ├── system.h ├── table.adb ├── table.ads ├── targparm.adb ├── targparm.ads ├── tempdir.adb ├── tempdir.ads ├── tree_in.adb ├── tree_in.ads ├── tree_io.adb ├── tree_io.ads ├── types.adb ├── types.ads ├── uintp.adb ├── uintp.ads ├── uname.adb ├── uname.ads ├── urealp.adb ├── urealp.ads ├── version.c ├── version.h ├── widechar.adb └── widechar.ads ├── gpr └── gen-utils-gnat.adb ├── model └── gen-database-model.ads └── yaml ├── copying.txt ├── lexer-base.adb ├── lexer-base.ads ├── lexer-source-file.adb ├── lexer-source-file.ads ├── lexer-source.ads ├── lexer.ads ├── text-builder.adb ├── text-builder.ads ├── text-pool.adb ├── text-pool.ads ├── text.adb ├── text.ads ├── yaml-lexer-evaluation.adb ├── yaml-lexer-evaluation.ads ├── yaml-lexer.adb ├── yaml-lexer.ads ├── yaml-parser.adb ├── yaml-parser.ads ├── yaml-source.ads ├── yaml-stacks.adb ├── yaml-stacks.ads ├── yaml-tags.ads ├── yaml-text_set.adb ├── yaml-text_set.ads ├── yaml.adb └── yaml.ads /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/COPYING3 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/Makefile.defaults -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/NEWS.md -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/README.md -------------------------------------------------------------------------------- /alire-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/alire-setup.sh -------------------------------------------------------------------------------- /alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/alire.toml -------------------------------------------------------------------------------- /bin/argouml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/bin/argouml.sh -------------------------------------------------------------------------------- /config/argouml-0.35.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/argouml-0.35.5.jar -------------------------------------------------------------------------------- /config/argouml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/argouml.properties -------------------------------------------------------------------------------- /config/commands/add-ajax-form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-ajax-form.xml -------------------------------------------------------------------------------- /config/commands/add-form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-form.xml -------------------------------------------------------------------------------- /config/commands/add-module-operation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-module-operation.xml -------------------------------------------------------------------------------- /config/commands/add-module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-module.xml -------------------------------------------------------------------------------- /config/commands/add-permission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-permission.xml -------------------------------------------------------------------------------- /config/commands/add-query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-query.xml -------------------------------------------------------------------------------- /config/commands/add-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-service.xml -------------------------------------------------------------------------------- /config/commands/add-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/commands/add-test.xml -------------------------------------------------------------------------------- /config/db/create-database.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/db/create-database.xml -------------------------------------------------------------------------------- /config/db/dynamo-sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/db/dynamo-sql.sql -------------------------------------------------------------------------------- /config/extract-doc-markdown.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/extract-doc-markdown.xsl -------------------------------------------------------------------------------- /config/extract-doc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/extract-doc.xsl -------------------------------------------------------------------------------- /config/generator.properties.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/generator.properties.in -------------------------------------------------------------------------------- /config/hibernate-mapping-3.0.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/hibernate-mapping-3.0.dtd -------------------------------------------------------------------------------- /config/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/log4j.properties -------------------------------------------------------------------------------- /config/mappings/AdaMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/mappings/AdaMappings.xml -------------------------------------------------------------------------------- /config/mappings/MySQLMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/mappings/MySQLMappings.xml -------------------------------------------------------------------------------- /config/mappings/PostgresqlMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/mappings/PostgresqlMappings.xml -------------------------------------------------------------------------------- /config/mappings/SQLiteMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/mappings/SQLiteMappings.xml -------------------------------------------------------------------------------- /config/sqlite-exit.sql: -------------------------------------------------------------------------------- 1 | .exit 2 | -------------------------------------------------------------------------------- /config/templates/add-ajax-form/form-response.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-ajax-form/form-response.xhtml -------------------------------------------------------------------------------- /config/templates/add-ajax-form/form.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-ajax-form/form.xhtml -------------------------------------------------------------------------------- /config/templates/add-form/form-response.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-form/form-response.xhtml -------------------------------------------------------------------------------- /config/templates/add-form/form.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-form/form.xhtml -------------------------------------------------------------------------------- /config/templates/add-form/page.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-form/page.xhtml -------------------------------------------------------------------------------- /config/templates/add-form/patch-form-navigation.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-form/patch-form-navigation.xhtml -------------------------------------------------------------------------------- /config/templates/add-model/table-model.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-model/table-model.xhtml -------------------------------------------------------------------------------- /config/templates/add-module-operation/patch-module-body-1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module-operation/patch-module-body-1.xhtml -------------------------------------------------------------------------------- /config/templates/add-module-operation/patch-module-body-2.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module-operation/patch-module-body-2.xhtml -------------------------------------------------------------------------------- /config/templates/add-module-operation/patch-module-body-3.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module-operation/patch-module-body-3.xhtml -------------------------------------------------------------------------------- /config/templates/add-module-operation/patch-module-spec-1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module-operation/patch-module-spec-1.xhtml -------------------------------------------------------------------------------- /config/templates/add-module-operation/patch-module-spec-2.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module-operation/patch-module-spec-2.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-beans-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-beans-body.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-beans-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-beans-spec.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-bundles.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-bundles.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-config.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-config.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-module-body-common.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-module-body-common.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-module-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-module-body.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-module-spec-common.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-module-spec-common.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-module-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-module-spec.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/module-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/module-spec.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/patch-application-body-1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/patch-application-body-1.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/patch-application-spec-1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/patch-application-spec-1.xhtml -------------------------------------------------------------------------------- /config/templates/add-module/patch-application-spec-2.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-module/patch-application-spec-2.xhtml -------------------------------------------------------------------------------- /config/templates/add-permission/patch-module-config-1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-permission/patch-module-config-1.xhtml -------------------------------------------------------------------------------- /config/templates/add-permission/patch-module-spec-1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-permission/patch-module-spec-1.xhtml -------------------------------------------------------------------------------- /config/templates/add-permission/patch-module-spec-2.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-permission/patch-module-spec-2.xhtml -------------------------------------------------------------------------------- /config/templates/add-query/query.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-query/query.xhtml -------------------------------------------------------------------------------- /config/templates/add-service/service-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-service/service-body.xhtml -------------------------------------------------------------------------------- /config/templates/add-service/service-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-service/service-spec.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/alire.toml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/alire.toml.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/patch-testsuite-body-1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/patch-testsuite-body-1.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/patch-testsuite-body-2.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/patch-testsuite-body-2.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/test-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/test-body.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/test-harness.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/test-harness.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/test-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/test-spec.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/test-testsuite-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/test-testsuite-body.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/test-testsuite-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/test-testsuite-spec.xhtml -------------------------------------------------------------------------------- /config/templates/add-test/tests.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/add-test/tests.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-bean-get_impl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-bean-get_impl.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-bean-operations-set-member.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-bean-operations-set-member.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-bean-operations.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-bean-operations.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-bean-serialize.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-bean-serialize.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-body-bean-impl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-body-bean-impl.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-body-beans.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-body-beans.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-body.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-spec-bean-decl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-spec-bean-decl.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-spec-beans.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-spec-beans.xhtml -------------------------------------------------------------------------------- /config/templates/beans/package-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/beans/package-spec.xhtml -------------------------------------------------------------------------------- /config/templates/create-plugin-ada/Makefile.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/create-plugin-ada/Makefile.xhtml -------------------------------------------------------------------------------- /config/templates/create-plugin-ada/distrib/gnat.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/create-plugin-ada/distrib/gnat.xhtml -------------------------------------------------------------------------------- /config/templates/create-plugin-ada/gnat.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/create-plugin-ada/gnat.xhtml -------------------------------------------------------------------------------- /config/templates/create-plugin-ada/src/plugin-module-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/create-plugin-ada/src/plugin-module-body.xhtml -------------------------------------------------------------------------------- /config/templates/create-plugin-ada/src/plugin-module.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/create-plugin-ada/src/plugin-module.xhtml -------------------------------------------------------------------------------- /config/templates/create-plugin-ada/src/plugin.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/create-plugin-ada/src/plugin.xhtml -------------------------------------------------------------------------------- /config/templates/create-plugin-web/Makefile.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/create-plugin-web/Makefile.xhtml -------------------------------------------------------------------------------- /config/templates/layout/layout.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/layout/layout.xhtml -------------------------------------------------------------------------------- /config/templates/licenses/apache2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/apache2/LICENSE.txt -------------------------------------------------------------------------------- /config/templates/licenses/apache2/apache-2_0.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/apache2/apache-2_0.xhtml -------------------------------------------------------------------------------- /config/templates/licenses/bsd3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/bsd3/LICENSE -------------------------------------------------------------------------------- /config/templates/licenses/bsd3/bsd3.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/bsd3/bsd3.xhtml -------------------------------------------------------------------------------- /config/templates/licenses/gpl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/gpl/COPYING -------------------------------------------------------------------------------- /config/templates/licenses/gpl/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/gpl/COPYING3 -------------------------------------------------------------------------------- /config/templates/licenses/gpl/gpl-2_0.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/gpl/gpl-2_0.xhtml -------------------------------------------------------------------------------- /config/templates/licenses/gpl/gpl-3_0.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/gpl/gpl-3_0.xhtml -------------------------------------------------------------------------------- /config/templates/licenses/license-ada.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/license-ada.xhtml -------------------------------------------------------------------------------- /config/templates/licenses/mit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/mit/LICENSE -------------------------------------------------------------------------------- /config/templates/licenses/mit/mit.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/mit/mit.xhtml -------------------------------------------------------------------------------- /config/templates/licenses/proprietary.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/licenses/proprietary.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-body-objects.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-body-objects.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-body-queries.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-body-queries.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-body.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-spec-enums.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-spec-enums.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-spec-objects-private.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-spec-objects-private.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-spec-objects.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-spec-objects.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-spec-queries-private.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-spec-queries-private.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-spec-query.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-spec-query.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-spec-record-decl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-spec-record-decl.xhtml -------------------------------------------------------------------------------- /config/templates/model/package-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/model/package-spec.xhtml -------------------------------------------------------------------------------- /config/templates/page/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/page/index.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/COPYING.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/COPYING.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/LICENSE.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/LICENSE.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/Makefile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/Makefile.defaults -------------------------------------------------------------------------------- /config/templates/project-ado/Makefile.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/Makefile.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/alire.toml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/alire.toml.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/config.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/config.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/project.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/project.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/server.properties.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/server.properties.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/src/model/README: -------------------------------------------------------------------------------- 1 | This directory contains generated files. 2 | -------------------------------------------------------------------------------- /config/templates/project-ado/src/project-main.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/src/project-main.xhtml -------------------------------------------------------------------------------- /config/templates/project-ado/src/project.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-ado/src/project.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/COPYING.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/COPYING.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/LICENSE.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/LICENSE.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/Makefile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/Makefile.defaults -------------------------------------------------------------------------------- /config/templates/project-gtk/Makefile.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/Makefile.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/alire.toml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/alire.toml.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/config.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/config.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/project.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/project.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/src/project-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/src/project-body.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/src/project-main.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/src/project-main.xhtml -------------------------------------------------------------------------------- /config/templates/project-gtk/src/project.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-gtk/src/project.xhtml -------------------------------------------------------------------------------- /config/templates/project-lib/COPYING.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/COPYING.xhtml -------------------------------------------------------------------------------- /config/templates/project-lib/LICENSE.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/LICENSE.xhtml -------------------------------------------------------------------------------- /config/templates/project-lib/Makefile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/Makefile.defaults -------------------------------------------------------------------------------- /config/templates/project-lib/Makefile.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/Makefile.xhtml -------------------------------------------------------------------------------- /config/templates/project-lib/alire.toml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/alire.toml.xhtml -------------------------------------------------------------------------------- /config/templates/project-lib/config.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/config.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-lib/project.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/project.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-lib/src/project.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-lib/src/project.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/COPYING.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/COPYING.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/LICENSE.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/LICENSE.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/Makefile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/Makefile.defaults -------------------------------------------------------------------------------- /config/templates/project-tool/Makefile.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/Makefile.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/alire.toml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/alire.toml.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/config.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/config.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/project.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/project.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/server.properties.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/server.properties.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/src/project-main.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/src/project-main.xhtml -------------------------------------------------------------------------------- /config/templates/project-tool/src/project.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project-tool/src/project.xhtml -------------------------------------------------------------------------------- /config/templates/project/COPYING.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/COPYING.xhtml -------------------------------------------------------------------------------- /config/templates/project/LICENSE.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/LICENSE.xhtml -------------------------------------------------------------------------------- /config/templates/project/Makefile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/Makefile.defaults -------------------------------------------------------------------------------- /config/templates/project/Makefile.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/Makefile.xhtml -------------------------------------------------------------------------------- /config/templates/project/alire.toml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/alire.toml.xhtml -------------------------------------------------------------------------------- /config/templates/project/bundles/bundle.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/bundles/bundle.xhtml -------------------------------------------------------------------------------- /config/templates/project/config.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/config.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project/config/project.xml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/config/project.xml.xhtml -------------------------------------------------------------------------------- /config/templates/project/package.xml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/package.xml.xhtml -------------------------------------------------------------------------------- /config/templates/project/project.gpr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/project.gpr.xhtml -------------------------------------------------------------------------------- /config/templates/project/server.properties.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/server.properties.xhtml -------------------------------------------------------------------------------- /config/templates/project/src/model/README: -------------------------------------------------------------------------------- 1 | This directory contains generated files. 2 | -------------------------------------------------------------------------------- /config/templates/project/src/project-applications-body.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/src/project-applications-body.xhtml -------------------------------------------------------------------------------- /config/templates/project/src/project-applications-spec.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/src/project-applications-spec.xhtml -------------------------------------------------------------------------------- /config/templates/project/src/project-server.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/src/project-server.xhtml -------------------------------------------------------------------------------- /config/templates/project/src/project.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/src/project.xhtml -------------------------------------------------------------------------------- /config/templates/project/web/WEB-INF/layouts/layout.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/web/WEB-INF/layouts/layout.xhtml -------------------------------------------------------------------------------- /config/templates/project/web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/web/css/main.css -------------------------------------------------------------------------------- /config/templates/project/web/images/ok48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/web/images/ok48.png -------------------------------------------------------------------------------- /config/templates/project/web/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/project/web/index.xhtml -------------------------------------------------------------------------------- /config/templates/project/web/robots.txt: -------------------------------------------------------------------------------- 1 | #User-agent: * 2 | #Disallow: 3 | -------------------------------------------------------------------------------- /config/templates/sql/create-mysql-sql.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/sql/create-mysql-sql.xhtml -------------------------------------------------------------------------------- /config/templates/sql/create-postgresql-sql.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/sql/create-postgresql-sql.xhtml -------------------------------------------------------------------------------- /config/templates/sql/create-sqlite-sql.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/sql/create-sqlite-sql.xhtml -------------------------------------------------------------------------------- /config/templates/sql/drop-mysql-sql.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/sql/drop-mysql-sql.xhtml -------------------------------------------------------------------------------- /config/templates/sql/drop-postgresql-sql.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/sql/drop-postgresql-sql.xhtml -------------------------------------------------------------------------------- /config/templates/sql/drop-sqlite-sql.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/templates/sql/drop-sqlite-sql.xhtml -------------------------------------------------------------------------------- /config/uml/Dynamo.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/uml/Dynamo.xmi -------------------------------------------------------------------------------- /config/uml/Dynamo.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/uml/Dynamo.zargo -------------------------------------------------------------------------------- /config/uml/argouml-profiles.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/uml/argouml-profiles.conf -------------------------------------------------------------------------------- /config/uml/default-uml14.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/config/uml/default-uml14.xmi -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/coverage.sh -------------------------------------------------------------------------------- /dynamo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/dynamo.xml -------------------------------------------------------------------------------- /dynamo_config.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/dynamo_config.gpr -------------------------------------------------------------------------------- /dynamo_tool.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/dynamo_tool.gpr -------------------------------------------------------------------------------- /man/man1/dynamo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/man/man1/dynamo.1 -------------------------------------------------------------------------------- /regtests/alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/alire.toml -------------------------------------------------------------------------------- /regtests/check_build/check_build.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/check_build.gpr -------------------------------------------------------------------------------- /regtests/check_build/gen-events.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/gen-events.ads -------------------------------------------------------------------------------- /regtests/check_build/gen-permissions.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/gen-permissions.ads -------------------------------------------------------------------------------- /regtests/check_build/gen-tests-packages.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/gen-tests-packages.ads -------------------------------------------------------------------------------- /regtests/check_build/gen-tests.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/gen-tests.ads -------------------------------------------------------------------------------- /regtests/check_build/gen-users.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/gen-users.ads -------------------------------------------------------------------------------- /regtests/check_build/gen.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/gen.ads -------------------------------------------------------------------------------- /regtests/check_build/test-tblog.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/test-tblog.ads -------------------------------------------------------------------------------- /regtests/check_build/test-tuser.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/test-tuser.ads -------------------------------------------------------------------------------- /regtests/check_build/test.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/check_build/test.ads -------------------------------------------------------------------------------- /regtests/dynamo_tests.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/dynamo_tests.gpr -------------------------------------------------------------------------------- /regtests/files/Permission.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/Permission.hbm.xml -------------------------------------------------------------------------------- /regtests/files/Queues.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/Queues.hbm.xml -------------------------------------------------------------------------------- /regtests/files/User.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/User.hbm.xml -------------------------------------------------------------------------------- /regtests/files/dist-web.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/dist-web.zip -------------------------------------------------------------------------------- /regtests/files/email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/email.yaml -------------------------------------------------------------------------------- /regtests/files/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/package.xml -------------------------------------------------------------------------------- /regtests/files/permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/permissions.xml -------------------------------------------------------------------------------- /regtests/files/queue-messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/queue-messages.xml -------------------------------------------------------------------------------- /regtests/files/serialize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/serialize.xml -------------------------------------------------------------------------------- /regtests/files/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/files/users.yaml -------------------------------------------------------------------------------- /regtests/src/dynamo_harness.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/dynamo_harness.adb -------------------------------------------------------------------------------- /regtests/src/gen-artifacts-xmi-tests.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-artifacts-xmi-tests.adb -------------------------------------------------------------------------------- /regtests/src/gen-artifacts-xmi-tests.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-artifacts-xmi-tests.ads -------------------------------------------------------------------------------- /regtests/src/gen-artifacts-yaml-tests.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-artifacts-yaml-tests.adb -------------------------------------------------------------------------------- /regtests/src/gen-artifacts-yaml-tests.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-artifacts-yaml-tests.ads -------------------------------------------------------------------------------- /regtests/src/gen-integration-tests.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-integration-tests.adb -------------------------------------------------------------------------------- /regtests/src/gen-integration-tests.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-integration-tests.ads -------------------------------------------------------------------------------- /regtests/src/gen-integration.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-integration.ads -------------------------------------------------------------------------------- /regtests/src/gen-testsuite.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-testsuite.adb -------------------------------------------------------------------------------- /regtests/src/gen-testsuite.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/src/gen-testsuite.ads -------------------------------------------------------------------------------- /regtests/support/closure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/support/closure -------------------------------------------------------------------------------- /regtests/support/pngcrush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/support/pngcrush -------------------------------------------------------------------------------- /regtests/support/yui-compressor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/support/yui-compressor -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-associations.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-associations.xmi -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-associations.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-associations.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-beans.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-beans.xmi -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-beans.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-beans.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-dependencies.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-dependencies.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-enum.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-enum.xmi -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-enum.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-enum.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-errors.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-errors.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-packages.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-packages.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-serialize.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-serialize.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-table-beans.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-table-beans.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-table.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-table.xmi -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-table.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-table.zargo -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-types.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-types.xmi -------------------------------------------------------------------------------- /regtests/uml/dynamo-test-types.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/regtests/uml/dynamo-test-types.zargo -------------------------------------------------------------------------------- /src/dynamo.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/dynamo.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-bundles.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-bundles.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-bundles.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-bundles.ads -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-concat.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-concat.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-concat.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-concat.ads -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-copies.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-copies.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-copies.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-copies.ads -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-exec.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-exec.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-exec.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-exec.ads -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-libs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-libs.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-libs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-libs.ads -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-merges.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-merges.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs-merges.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs-merges.ads -------------------------------------------------------------------------------- /src/gen-artifacts-distribs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs.adb -------------------------------------------------------------------------------- /src/gen-artifacts-distribs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-distribs.ads -------------------------------------------------------------------------------- /src/gen-artifacts-docs-googlecode.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-docs-googlecode.adb -------------------------------------------------------------------------------- /src/gen-artifacts-docs-googlecode.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-docs-googlecode.ads -------------------------------------------------------------------------------- /src/gen-artifacts-docs-markdown.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-docs-markdown.adb -------------------------------------------------------------------------------- /src/gen-artifacts-docs-markdown.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-docs-markdown.ads -------------------------------------------------------------------------------- /src/gen-artifacts-docs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-docs.adb -------------------------------------------------------------------------------- /src/gen-artifacts-docs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-docs.ads -------------------------------------------------------------------------------- /src/gen-artifacts-hibernate.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-hibernate.adb -------------------------------------------------------------------------------- /src/gen-artifacts-hibernate.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-hibernate.ads -------------------------------------------------------------------------------- /src/gen-artifacts-mappings.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-mappings.adb -------------------------------------------------------------------------------- /src/gen-artifacts-mappings.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-mappings.ads -------------------------------------------------------------------------------- /src/gen-artifacts-query.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-query.adb -------------------------------------------------------------------------------- /src/gen-artifacts-query.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-query.ads -------------------------------------------------------------------------------- /src/gen-artifacts-xmi.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-xmi.adb -------------------------------------------------------------------------------- /src/gen-artifacts-xmi.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-xmi.ads -------------------------------------------------------------------------------- /src/gen-artifacts-yaml.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-yaml.adb -------------------------------------------------------------------------------- /src/gen-artifacts-yaml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts-yaml.ads -------------------------------------------------------------------------------- /src/gen-artifacts.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts.adb -------------------------------------------------------------------------------- /src/gen-artifacts.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-artifacts.ads -------------------------------------------------------------------------------- /src/gen-commands-database.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-database.adb -------------------------------------------------------------------------------- /src/gen-commands-database.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-database.ads -------------------------------------------------------------------------------- /src/gen-commands-distrib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-distrib.adb -------------------------------------------------------------------------------- /src/gen-commands-distrib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-distrib.ads -------------------------------------------------------------------------------- /src/gen-commands-docs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-docs.adb -------------------------------------------------------------------------------- /src/gen-commands-docs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-docs.ads -------------------------------------------------------------------------------- /src/gen-commands-generate.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-generate.adb -------------------------------------------------------------------------------- /src/gen-commands-generate.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-generate.ads -------------------------------------------------------------------------------- /src/gen-commands-info.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-info.adb -------------------------------------------------------------------------------- /src/gen-commands-info.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-info.ads -------------------------------------------------------------------------------- /src/gen-commands-layout.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-layout.adb -------------------------------------------------------------------------------- /src/gen-commands-layout.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-layout.ads -------------------------------------------------------------------------------- /src/gen-commands-model.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-model.adb -------------------------------------------------------------------------------- /src/gen-commands-model.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-model.ads -------------------------------------------------------------------------------- /src/gen-commands-page.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-page.adb -------------------------------------------------------------------------------- /src/gen-commands-page.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-page.ads -------------------------------------------------------------------------------- /src/gen-commands-plugins.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-plugins.adb -------------------------------------------------------------------------------- /src/gen-commands-plugins.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-plugins.ads -------------------------------------------------------------------------------- /src/gen-commands-project.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-project.adb -------------------------------------------------------------------------------- /src/gen-commands-project.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-project.ads -------------------------------------------------------------------------------- /src/gen-commands-propset.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-propset.adb -------------------------------------------------------------------------------- /src/gen-commands-propset.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-propset.ads -------------------------------------------------------------------------------- /src/gen-commands-templates.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-templates.adb -------------------------------------------------------------------------------- /src/gen-commands-templates.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands-templates.ads -------------------------------------------------------------------------------- /src/gen-commands.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands.adb -------------------------------------------------------------------------------- /src/gen-commands.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-commands.ads -------------------------------------------------------------------------------- /src/gen-configs.gpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-configs.gpb -------------------------------------------------------------------------------- /src/gen-database.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-database.ads -------------------------------------------------------------------------------- /src/gen-generator.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-generator.adb -------------------------------------------------------------------------------- /src/gen-generator.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-generator.ads -------------------------------------------------------------------------------- /src/gen-model-beans.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-beans.adb -------------------------------------------------------------------------------- /src/gen-model-beans.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-beans.ads -------------------------------------------------------------------------------- /src/gen-model-enums.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-enums.adb -------------------------------------------------------------------------------- /src/gen-model-enums.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-enums.ads -------------------------------------------------------------------------------- /src/gen-model-list.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-list.adb -------------------------------------------------------------------------------- /src/gen-model-list.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-list.ads -------------------------------------------------------------------------------- /src/gen-model-mappings.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-mappings.adb -------------------------------------------------------------------------------- /src/gen-model-mappings.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-mappings.ads -------------------------------------------------------------------------------- /src/gen-model-operations.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-operations.adb -------------------------------------------------------------------------------- /src/gen-model-operations.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-operations.ads -------------------------------------------------------------------------------- /src/gen-model-packages.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-packages.adb -------------------------------------------------------------------------------- /src/gen-model-packages.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-packages.ads -------------------------------------------------------------------------------- /src/gen-model-projects.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-projects.adb -------------------------------------------------------------------------------- /src/gen-model-projects.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-projects.ads -------------------------------------------------------------------------------- /src/gen-model-queries.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-queries.adb -------------------------------------------------------------------------------- /src/gen-model-queries.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-queries.ads -------------------------------------------------------------------------------- /src/gen-model-stypes.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-stypes.adb -------------------------------------------------------------------------------- /src/gen-model-stypes.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-stypes.ads -------------------------------------------------------------------------------- /src/gen-model-tables.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-tables.adb -------------------------------------------------------------------------------- /src/gen-model-tables.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-tables.ads -------------------------------------------------------------------------------- /src/gen-model-xmi.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-xmi.adb -------------------------------------------------------------------------------- /src/gen-model-xmi.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model-xmi.ads -------------------------------------------------------------------------------- /src/gen-model.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model.adb -------------------------------------------------------------------------------- /src/gen-model.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-model.ads -------------------------------------------------------------------------------- /src/gen-utils-gnat.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-utils-gnat.ads -------------------------------------------------------------------------------- /src/gen-utils.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-utils.adb -------------------------------------------------------------------------------- /src/gen-utils.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen-utils.ads -------------------------------------------------------------------------------- /src/gen.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen.ads -------------------------------------------------------------------------------- /src/gen.gpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gen.gpb -------------------------------------------------------------------------------- /src/gnat/adaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/adaint.c -------------------------------------------------------------------------------- /src/gnat/adaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/adaint.h -------------------------------------------------------------------------------- /src/gnat/ali.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/ali.adb -------------------------------------------------------------------------------- /src/gnat/ali.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/ali.ads -------------------------------------------------------------------------------- /src/gnat/alloc.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/alloc.ads -------------------------------------------------------------------------------- /src/gnat/aspects.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/aspects.adb -------------------------------------------------------------------------------- /src/gnat/aspects.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/aspects.ads -------------------------------------------------------------------------------- /src/gnat/atree.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/atree.adb -------------------------------------------------------------------------------- /src/gnat/atree.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/atree.ads -------------------------------------------------------------------------------- /src/gnat/auto-host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/auto-host.h -------------------------------------------------------------------------------- /src/gnat/butil.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/butil.adb -------------------------------------------------------------------------------- /src/gnat/butil.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/butil.ads -------------------------------------------------------------------------------- /src/gnat/casing.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/casing.adb -------------------------------------------------------------------------------- /src/gnat/casing.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/casing.ads -------------------------------------------------------------------------------- /src/gnat/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/config.h -------------------------------------------------------------------------------- /src/gnat/csets.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/csets.adb -------------------------------------------------------------------------------- /src/gnat/csets.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/csets.ads -------------------------------------------------------------------------------- /src/gnat/debug.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/debug.adb -------------------------------------------------------------------------------- /src/gnat/debug.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/debug.ads -------------------------------------------------------------------------------- /src/gnat/einfo.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/einfo.adb -------------------------------------------------------------------------------- /src/gnat/einfo.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/einfo.ads -------------------------------------------------------------------------------- /src/gnat/elists.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/elists.adb -------------------------------------------------------------------------------- /src/gnat/elists.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/elists.ads -------------------------------------------------------------------------------- /src/gnat/err_vars.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/err_vars.ads -------------------------------------------------------------------------------- /src/gnat/errout.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/errout.adb -------------------------------------------------------------------------------- /src/gnat/errout.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/errout.ads -------------------------------------------------------------------------------- /src/gnat/erroutc.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/erroutc.adb -------------------------------------------------------------------------------- /src/gnat/erroutc.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/erroutc.ads -------------------------------------------------------------------------------- /src/gnat/errutil.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/errutil.adb -------------------------------------------------------------------------------- /src/gnat/errutil.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/errutil.ads -------------------------------------------------------------------------------- /src/gnat/fmap.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/fmap.adb -------------------------------------------------------------------------------- /src/gnat/fmap.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/fmap.ads -------------------------------------------------------------------------------- /src/gnat/fname-uf.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/fname-uf.adb -------------------------------------------------------------------------------- /src/gnat/fname-uf.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/fname-uf.ads -------------------------------------------------------------------------------- /src/gnat/fname.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/fname.adb -------------------------------------------------------------------------------- /src/gnat/fname.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/fname.ads -------------------------------------------------------------------------------- /src/gnat/gen-utils-gnat.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/gen-utils-gnat.adb -------------------------------------------------------------------------------- /src/gnat/gnatvsn.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/gnatvsn.adb -------------------------------------------------------------------------------- /src/gnat/gnatvsn.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/gnatvsn.ads -------------------------------------------------------------------------------- /src/gnat/hostparm.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/hostparm.ads -------------------------------------------------------------------------------- /src/gnat/hwint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/hwint.h -------------------------------------------------------------------------------- /src/gnat/krunch.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/krunch.adb -------------------------------------------------------------------------------- /src/gnat/krunch.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/krunch.ads -------------------------------------------------------------------------------- /src/gnat/lib-list.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/lib-list.adb -------------------------------------------------------------------------------- /src/gnat/lib-sort.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/lib-sort.adb -------------------------------------------------------------------------------- /src/gnat/lib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/lib.adb -------------------------------------------------------------------------------- /src/gnat/lib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/lib.ads -------------------------------------------------------------------------------- /src/gnat/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/link.c -------------------------------------------------------------------------------- /src/gnat/makeutl.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/makeutl.adb -------------------------------------------------------------------------------- /src/gnat/makeutl.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/makeutl.ads -------------------------------------------------------------------------------- /src/gnat/mingw32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mingw32.h -------------------------------------------------------------------------------- /src/gnat/mlib-fil.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-fil.adb -------------------------------------------------------------------------------- /src/gnat/mlib-fil.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-fil.ads -------------------------------------------------------------------------------- /src/gnat/mlib-tgt-specific.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-tgt-specific.adb -------------------------------------------------------------------------------- /src/gnat/mlib-tgt-specific.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-tgt-specific.ads -------------------------------------------------------------------------------- /src/gnat/mlib-tgt.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-tgt.adb -------------------------------------------------------------------------------- /src/gnat/mlib-tgt.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-tgt.ads -------------------------------------------------------------------------------- /src/gnat/mlib-utl.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-utl.adb -------------------------------------------------------------------------------- /src/gnat/mlib-utl.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib-utl.ads -------------------------------------------------------------------------------- /src/gnat/mlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib.adb -------------------------------------------------------------------------------- /src/gnat/mlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/mlib.ads -------------------------------------------------------------------------------- /src/gnat/namet.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/namet.adb -------------------------------------------------------------------------------- /src/gnat/namet.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/namet.ads -------------------------------------------------------------------------------- /src/gnat/nlists.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/nlists.adb -------------------------------------------------------------------------------- /src/gnat/nlists.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/nlists.ads -------------------------------------------------------------------------------- /src/gnat/opt.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/opt.adb -------------------------------------------------------------------------------- /src/gnat/opt.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/opt.ads -------------------------------------------------------------------------------- /src/gnat/osint.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/osint.adb -------------------------------------------------------------------------------- /src/gnat/osint.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/osint.ads -------------------------------------------------------------------------------- /src/gnat/output.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/output.adb -------------------------------------------------------------------------------- /src/gnat/output.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/output.ads -------------------------------------------------------------------------------- /src/gnat/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prefix.c -------------------------------------------------------------------------------- /src/gnat/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prefix.h -------------------------------------------------------------------------------- /src/gnat/prj-attr-pm.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-attr-pm.adb -------------------------------------------------------------------------------- /src/gnat/prj-attr-pm.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-attr-pm.ads -------------------------------------------------------------------------------- /src/gnat/prj-attr.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-attr.adb -------------------------------------------------------------------------------- /src/gnat/prj-attr.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-attr.ads -------------------------------------------------------------------------------- /src/gnat/prj-com.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-com.ads -------------------------------------------------------------------------------- /src/gnat/prj-conf.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-conf.adb -------------------------------------------------------------------------------- /src/gnat/prj-conf.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-conf.ads -------------------------------------------------------------------------------- /src/gnat/prj-dect.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-dect.adb -------------------------------------------------------------------------------- /src/gnat/prj-dect.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-dect.ads -------------------------------------------------------------------------------- /src/gnat/prj-env.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-env.adb -------------------------------------------------------------------------------- /src/gnat/prj-env.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-env.ads -------------------------------------------------------------------------------- /src/gnat/prj-err.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-err.adb -------------------------------------------------------------------------------- /src/gnat/prj-err.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-err.ads -------------------------------------------------------------------------------- /src/gnat/prj-ext.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-ext.adb -------------------------------------------------------------------------------- /src/gnat/prj-ext.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-ext.ads -------------------------------------------------------------------------------- /src/gnat/prj-makr.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-makr.adb -------------------------------------------------------------------------------- /src/gnat/prj-makr.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-makr.ads -------------------------------------------------------------------------------- /src/gnat/prj-nmsc.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-nmsc.adb -------------------------------------------------------------------------------- /src/gnat/prj-nmsc.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-nmsc.ads -------------------------------------------------------------------------------- /src/gnat/prj-pars.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-pars.adb -------------------------------------------------------------------------------- /src/gnat/prj-pars.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-pars.ads -------------------------------------------------------------------------------- /src/gnat/prj-part.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-part.adb -------------------------------------------------------------------------------- /src/gnat/prj-part.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-part.ads -------------------------------------------------------------------------------- /src/gnat/prj-pp.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-pp.adb -------------------------------------------------------------------------------- /src/gnat/prj-pp.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-pp.ads -------------------------------------------------------------------------------- /src/gnat/prj-proc.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-proc.adb -------------------------------------------------------------------------------- /src/gnat/prj-proc.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-proc.ads -------------------------------------------------------------------------------- /src/gnat/prj-strt.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-strt.adb -------------------------------------------------------------------------------- /src/gnat/prj-strt.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-strt.ads -------------------------------------------------------------------------------- /src/gnat/prj-tree.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-tree.adb -------------------------------------------------------------------------------- /src/gnat/prj-tree.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-tree.ads -------------------------------------------------------------------------------- /src/gnat/prj-util.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-util.adb -------------------------------------------------------------------------------- /src/gnat/prj-util.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj-util.ads -------------------------------------------------------------------------------- /src/gnat/prj.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj.adb -------------------------------------------------------------------------------- /src/gnat/prj.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/prj.ads -------------------------------------------------------------------------------- /src/gnat/repinfo.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/repinfo.adb -------------------------------------------------------------------------------- /src/gnat/repinfo.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/repinfo.ads -------------------------------------------------------------------------------- /src/gnat/rident.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/rident.ads -------------------------------------------------------------------------------- /src/gnat/scans.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/scans.adb -------------------------------------------------------------------------------- /src/gnat/scans.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/scans.ads -------------------------------------------------------------------------------- /src/gnat/scng.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/scng.adb -------------------------------------------------------------------------------- /src/gnat/scng.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/scng.ads -------------------------------------------------------------------------------- /src/gnat/sdefault.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sdefault.adb -------------------------------------------------------------------------------- /src/gnat/sdefault.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sdefault.ads -------------------------------------------------------------------------------- /src/gnat/sem_aux.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sem_aux.adb -------------------------------------------------------------------------------- /src/gnat/sem_aux.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sem_aux.ads -------------------------------------------------------------------------------- /src/gnat/sinfo.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinfo.adb -------------------------------------------------------------------------------- /src/gnat/sinfo.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinfo.ads -------------------------------------------------------------------------------- /src/gnat/sinput-c.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinput-c.adb -------------------------------------------------------------------------------- /src/gnat/sinput-c.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinput-c.ads -------------------------------------------------------------------------------- /src/gnat/sinput-p.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinput-p.adb -------------------------------------------------------------------------------- /src/gnat/sinput-p.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinput-p.ads -------------------------------------------------------------------------------- /src/gnat/sinput.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinput.adb -------------------------------------------------------------------------------- /src/gnat/sinput.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/sinput.ads -------------------------------------------------------------------------------- /src/gnat/snames.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/snames.adb -------------------------------------------------------------------------------- /src/gnat/snames.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/snames.ads -------------------------------------------------------------------------------- /src/gnat/stand.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/stand.adb -------------------------------------------------------------------------------- /src/gnat/stand.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/stand.ads -------------------------------------------------------------------------------- /src/gnat/stringt.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/stringt.adb -------------------------------------------------------------------------------- /src/gnat/stringt.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/stringt.ads -------------------------------------------------------------------------------- /src/gnat/styleg.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/styleg.adb -------------------------------------------------------------------------------- /src/gnat/styleg.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/styleg.ads -------------------------------------------------------------------------------- /src/gnat/stylesw.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/stylesw.adb -------------------------------------------------------------------------------- /src/gnat/stylesw.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/stylesw.ads -------------------------------------------------------------------------------- /src/gnat/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/system.h -------------------------------------------------------------------------------- /src/gnat/table.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/table.adb -------------------------------------------------------------------------------- /src/gnat/table.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/table.ads -------------------------------------------------------------------------------- /src/gnat/targparm.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/targparm.adb -------------------------------------------------------------------------------- /src/gnat/targparm.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/targparm.ads -------------------------------------------------------------------------------- /src/gnat/tempdir.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/tempdir.adb -------------------------------------------------------------------------------- /src/gnat/tempdir.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/tempdir.ads -------------------------------------------------------------------------------- /src/gnat/tree_in.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/tree_in.adb -------------------------------------------------------------------------------- /src/gnat/tree_in.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/tree_in.ads -------------------------------------------------------------------------------- /src/gnat/tree_io.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/tree_io.adb -------------------------------------------------------------------------------- /src/gnat/tree_io.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/tree_io.ads -------------------------------------------------------------------------------- /src/gnat/types.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/types.adb -------------------------------------------------------------------------------- /src/gnat/types.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/types.ads -------------------------------------------------------------------------------- /src/gnat/uintp.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/uintp.adb -------------------------------------------------------------------------------- /src/gnat/uintp.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/uintp.ads -------------------------------------------------------------------------------- /src/gnat/uname.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/uname.adb -------------------------------------------------------------------------------- /src/gnat/uname.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/uname.ads -------------------------------------------------------------------------------- /src/gnat/urealp.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/urealp.adb -------------------------------------------------------------------------------- /src/gnat/urealp.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/urealp.ads -------------------------------------------------------------------------------- /src/gnat/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/version.c -------------------------------------------------------------------------------- /src/gnat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/version.h -------------------------------------------------------------------------------- /src/gnat/widechar.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/widechar.adb -------------------------------------------------------------------------------- /src/gnat/widechar.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gnat/widechar.ads -------------------------------------------------------------------------------- /src/gpr/gen-utils-gnat.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/gpr/gen-utils-gnat.adb -------------------------------------------------------------------------------- /src/model/gen-database-model.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/model/gen-database-model.ads -------------------------------------------------------------------------------- /src/yaml/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/copying.txt -------------------------------------------------------------------------------- /src/yaml/lexer-base.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/lexer-base.adb -------------------------------------------------------------------------------- /src/yaml/lexer-base.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/lexer-base.ads -------------------------------------------------------------------------------- /src/yaml/lexer-source-file.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/lexer-source-file.adb -------------------------------------------------------------------------------- /src/yaml/lexer-source-file.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/lexer-source-file.ads -------------------------------------------------------------------------------- /src/yaml/lexer-source.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/lexer-source.ads -------------------------------------------------------------------------------- /src/yaml/lexer.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/lexer.ads -------------------------------------------------------------------------------- /src/yaml/text-builder.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/text-builder.adb -------------------------------------------------------------------------------- /src/yaml/text-builder.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/text-builder.ads -------------------------------------------------------------------------------- /src/yaml/text-pool.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/text-pool.adb -------------------------------------------------------------------------------- /src/yaml/text-pool.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/text-pool.ads -------------------------------------------------------------------------------- /src/yaml/text.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/text.adb -------------------------------------------------------------------------------- /src/yaml/text.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/text.ads -------------------------------------------------------------------------------- /src/yaml/yaml-lexer-evaluation.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-lexer-evaluation.adb -------------------------------------------------------------------------------- /src/yaml/yaml-lexer-evaluation.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-lexer-evaluation.ads -------------------------------------------------------------------------------- /src/yaml/yaml-lexer.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-lexer.adb -------------------------------------------------------------------------------- /src/yaml/yaml-lexer.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-lexer.ads -------------------------------------------------------------------------------- /src/yaml/yaml-parser.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-parser.adb -------------------------------------------------------------------------------- /src/yaml/yaml-parser.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-parser.ads -------------------------------------------------------------------------------- /src/yaml/yaml-source.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-source.ads -------------------------------------------------------------------------------- /src/yaml/yaml-stacks.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-stacks.adb -------------------------------------------------------------------------------- /src/yaml/yaml-stacks.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-stacks.ads -------------------------------------------------------------------------------- /src/yaml/yaml-tags.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-tags.ads -------------------------------------------------------------------------------- /src/yaml/yaml-text_set.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-text_set.adb -------------------------------------------------------------------------------- /src/yaml/yaml-text_set.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml-text_set.ads -------------------------------------------------------------------------------- /src/yaml/yaml.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml.adb -------------------------------------------------------------------------------- /src/yaml/yaml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcarrez/dynamo/HEAD/src/yaml/yaml.ads --------------------------------------------------------------------------------