Skip to content

Commit

Permalink
start with completely empty table to avoid confusion...
Browse files Browse the repository at this point in the history
  • Loading branch information
gernotstarke committed Jan 28, 2024
1 parent 92b005e commit e9b7b99
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 24 deletions.
47 changes: 23 additions & 24 deletions docs/_pages/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,42 +75,41 @@ doc-faq-quality:
</thead>
<tbody>
<tr>
<td>arc42.de</td>
<td class="cell-style">3344</td>
<td>101</td>
<td class="cell-style">3967</td>
<td>3890</td>
<td class="cell-style">9416</td>
<td>420</td>
<td class="cell-style">n/a</td>
<td></td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td></td>
<td></td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td>
</tr>
<tr>
<td>docs.arc42.org</td>
<td class="cell-style">49</td>
<td>11</td>
<td class="cell-style">67</td>
<td>90</td>
<td class="cell-style">41</td>
<td>20</td>
<td class="cell-style">n/a</td>
<td></td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>arc42.org</td>
<td class="cell-style">Sum V7Ds</td>
<td>Sum P7D</td>
<td class="cell-style">Sum V30D</td>
<td>Sum 30D</td>
<td class="cell-style">Sum V12M</td>
<td>Sum P12m</td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td>
<td></td>
<td class="cell-style"></td>
</tr>
</tfoot>
</table>

Data is beeing collected by arc42 statistics service running on
<a href="https://fly.io" target="_blank"><img src="/images/fly-logo-landscape.svg" width="60px"></a>
Data is being collected by arc42 statistics service running on <a href="https://fly.io" target="_blank"><img src="/images/fly-logo-landscape.svg" width="60px"></a>

</div>

Expand Down
37 changes: 37 additions & 0 deletions documentation/images/06-system-startup.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
@startuml
'https://plantuml.com/activity-diagram-beta

start
:ClickServlet.handleRequest();
:new page;
if (Page.onSecurityCheck) then (true)
:Page.onInit();
if (isForward?) then (no)
:Process controls;
if (continue processing?) then (no)
stop
endif

if (isPost?) then (yes)
:Page.onPost();
else (no)
:Page.onGet();
endif
:Page.onRender();
endif
else (false)
endif

if (do redirect?) then (yes)
:redirect process;
else
if (do forward?) then (yes)
:Forward request;
else (no)
:Render page template;
endif
endif

stop

@enduml

0 comments on commit e9b7b99

Please sign in to comment.