Doc: Fix some bad URLs, inconsistant naming

This commit is contained in:
nathan 2024-04-11 08:32:42 -06:00
parent ee5f202f35
commit 5c6313448e
2 changed files with 5 additions and 8 deletions

View File

@ -6,8 +6,6 @@
<li><a href="https://github.com/EGroupware/egroupware/wiki/#Development">Development</a></li>
<li><a href="/getting-started/widgets">Widgets</a></li>
<li><a href="/getting-started/styling">Styling</a></li>
<li><a href="/getting-started/customizing">Customizing</a></li>
<li><a href="/getting-started/localization">Localization</a></li>
</ul>
</li>
<li>
@ -40,10 +38,9 @@
<h2>Tutorials</h2>
<ul>
<li><a href="/tutorials/creating-a-widget">Creating a widget</a></li>
<li><a href="/tutorials/converting-to-webcomponents.md">Converting to WebComponent</a></li>
<li><a href="/tutorials/automatic-testing.md">Automatic testing</a></li>
<li><a href="/tutorials/integrating-with-egw">Integrating with EGroupware</a></li>
<li><a href="/tutorials/link-system">Implementing the linking system</a></li>
<li><a href="/tutorials/converting-to-webcomponents">Converting to WebComponent</a></li>
<li><a href="/tutorials/automatic-testing">Automatic testing</a></li>
<li><a href="https://github.com/EGroupware/example/tree/step5?tab=readme-ov-file">Implementing the linking system</a></li>
</ul>
</li>
</ul>

View File

@ -1,9 +1,9 @@
## Creating a component
## Creating a widget
ETemplate components are [LitElements](https://lit.dev/docs/) that are wrapped with
our [Et2Widget](https://github.com/EGroupware/egroupware/blob/master/api/js/etemplate/Et2Widget/Et2Widget.ts) mixin,
which adds properties and methods to support loading from our template files and returning values to the server. They
should (relatively) stand-alone.
should be (relatively) stand-alone.
Common components are in `api/js/etemplate/`. You can add application specific components in `<appname>/js/`.