Skip to content

Commit 3de2d84

Browse files
authored
Merge pull request #6 from fugerit-org/feature/issue_5_v1
Feature/issue 5 v1
2 parents caed831 + a5822f5 commit 3de2d84

19 files changed

+1656
-9
lines changed

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
marsdocs.fugerit.org

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-cayman

docgen/parameters.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"title" : "Mars (Fugerit DAOGEN A.P.I.)",
33
"name": "Mars",
4-
"version" : "0.4.5",
5-
"date" : "17/01/2023",
4+
"version" : "1.0.0",
5+
"date" : "19/03/2023",
66
"organization" : {
77
"name" : "Fugerit Org",
88
"url" : "https://www.fugerit.org"

docgen/release-notes.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
0.4.4 (2023-01-17)
1+
1.0.0 (2023-03-19)
2+
------------------
3+
+ [Dropping 0. version](https://github.com/fugerit-org/fj-lib/issues/5)
4+
+ Parent pom set to fj-bom 0.2.3
5+
+ Changed fj-core version to 8.0.1
6+
7+
0.4.4 (2023-01-17)
28
------------------
39
+ Changed fj-core version to 0.8.6
410
+ Parent pom set to fj-bom 0.2.2

docs/code/DaogenBasicGenerator.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[Code Home](code.md) | [Docs Home](../../index.md)
2+
3+
### About DaogenBasicGenerator <a name="top"></a>
4+
5+
<table>
6+
<caption><a name="DaogenBasicGenerator">DaogenBasicGenerator</a></caption>
7+
<tr>
8+
<th>Type</th>
9+
<td>org.fugerit.java.daogen.base.gen.DaogenBasicGenerator</td>
10+
</tr>
11+
<tr>
12+
<th>Resources</th>
13+
<td>
14+
<a href="../../fj-daogen-base/src/main/java/org/fugerit/java/daogen/base/gen/DaogenBasicGenerator.java" target="source">src</a> -
15+
<a href="https://www.fugerit.org/data/java/javadoc/fj-daogen-base/org/fugerit/java/daogen/base/gen/DaogenBasicGenerator.html" target="javadoc">javadoc</a>
16+
</td>
17+
</tr>
18+
<tr>
19+
<th>Since</th>
20+
<td>0.4.1.11</td>
21+
</tr>
22+
</table>

docs/code/code.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[Docs Home](../../index.md)
2+
3+
## DaoGen code reference

docs/config/config.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[Docs Home](../../index.md)
2+
3+
## DaoGen configuration reference
4+
5+
&lt;daogen-config/&gt; structure :
6+
7+
```
8+
+--daogen-config
9+
+--relation(*)
10+
+--entity(*)
11+
+--field(*)
12+
```
13+
14+
Configuration reference :
15+
* [daogen-config](tag_daogen-config.md)
16+
* [relation](tag_daogen-config_relation.md)
17+
* [entity](tag_daogen-config_entity.md)
18+
* [field](tag_daogen-config_field.md)
19+
20+
21+
Additional configuration :
22+
* [Generator Catalog](file_generator-catalog.md)
23+
* [Decorator Catalog](file_decorator-catalog.md)
24+
25+
General information :
26+
* [About config path](config_path)
27+
28+
Here is a complete [sample daogen-config](../../fj-daogen-base/src/test/resources/sample/fugerit-sample-daogen-config.xml)

docs/config/config_path.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[Config Home](config.md) | [Docs Home](../../index.md)
2+
3+
### Abount config path <a name="top"></a>
4+
5+
Some properties like, for instance
6+
[generator-catalog](tag_daogen-config.md#generator-catalog)
7+
or
8+
[decorator-catalog](tag_daogen-config.md#decorator-catalog)
9+
are path that can assume following values :
10+
cl://path-in-class-loader
11+
file://path-to-physical-file
12+
13+
For instance:
14+
cl://config/default-generator-catalog.xml
15+
will try to load in the class loader the path :
16+
config/default-generator-catalog.xml
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[Config Home](config.md) | [Docs Home](../../index.md)
2+
3+
### File : Decorator Catalog <a name="top"/>
4+

0 commit comments

Comments
 (0)