-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Content - Wet-boew working examples #3
Includes: - Footnotes - Form Validation - Menu - Multimedia - Overlay - Paginate - Prettify - Session-Timeout - Share
- Loading branch information
1 parent
91947fc
commit a761d37
Showing
9 changed files
with
431 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Footnotes", | ||
"fr": "Notes de bas de page" | ||
}, | ||
"description": { | ||
"en": "This plugin allows developers to easily embed footnotes into their Web pages, and helps to achieve WCAG 2.0 compliance when providing such footnotes", | ||
"fr": "Ce plugin permet aux développeurs d'intégrer facilement des notes de bas de page dans leurs pages Web et contribue à atteindre la conformité WCAG 2.0 lors de la fourniture de ces notes" | ||
}, | ||
"modified": "2024-05-16", | ||
"componentName": "footnotes", | ||
"status": "stable", | ||
"pages": { | ||
"examples": [ | ||
{ | ||
"title": "Footnotes", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/footnotes/footnotes-en.html" | ||
}, | ||
{ | ||
"title": "Notes de bas de page", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/footnotes/footnotes-fr.html" | ||
} | ||
], | ||
"docs": [ | ||
{ | ||
"title": "Footnotes", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/footnotes/footnotes-en.html" | ||
}, | ||
{ | ||
"title": "Notes de bas de page", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/footnotes/footnotes-fr.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Form validation", | ||
"fr": "Validation de formulaires" | ||
}, | ||
"description": { | ||
"en": "This component provides generic validation and error message handling for Web forms", | ||
"fr": "Ce composant fournit une validation générique et une gestion des messages d'erreur pour les formulaires Web" | ||
}, | ||
"modified": "2024-05-16", | ||
"componentName": "formvalid", | ||
"status": "stable", | ||
"pages": { | ||
"examples": [ | ||
{ | ||
"title": "Form validation", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/formvalid/formvalid-en.html" | ||
}, | ||
{ | ||
"title": "Validation de formulaires", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/formvalid/formvalid-fr.html" | ||
} | ||
], | ||
"docs": [ | ||
{ | ||
"title": "Form validation", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/formvalid/formvalid-en.html" | ||
}, | ||
{ | ||
"title": "Validation de formulaires", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/formvalid/formvalid-fr.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Menu", | ||
"fr": "Menu" | ||
}, | ||
"description": { | ||
"en": "Provides an interactive menu with optional sub-menus. Implements the WAI-ARIA menu design pattern", | ||
"fr": "Fournit un menu interactif avec des sous-menus facultatifs. Implémente le modèle de conception de menu WAI-ARIA" | ||
}, | ||
"modified": "2024-07-10", | ||
"componentName": "menu", | ||
"status": "stable", | ||
"pages": { | ||
"docs": [ | ||
{ | ||
"title": "Menu", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/menu/menu-en.html" | ||
}, | ||
{ | ||
"title": "Menu", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/menu/menu-fr.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Multimedia", | ||
"fr": "Multimédia" | ||
}, | ||
"description": { | ||
"en": "Provides an accessible multimedia player for embedding video and audio into web pages", | ||
"fr": "Fournit un lecteur multimédia accessible pour intégrer des vidéos et de l'audio dans les pages web" | ||
}, | ||
"modified": "2024-07-10", | ||
"componentName": "multimedia", | ||
"status": "stable", | ||
"pages": { | ||
"examples": [ | ||
{ | ||
"title": "Multimedia Player - Video", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/multimedia/multimedia-en.html" | ||
}, | ||
{ | ||
"title": "Lecteur multimédia - Vidéo", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/multimedia/multimedia-fr.html" | ||
}, | ||
{ | ||
"title": "Multimedia Player - Audio-only", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/multimedia/multimedia-audio-en.html" | ||
}, | ||
{ | ||
"title": "Lecteur multimédia - Audio seulement", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/multimedia/multimedia-audio-fr.html" | ||
}, | ||
{ | ||
"title": "Multimedia Player - Youtube", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/multimedia/multimedia-youtube-en.html" | ||
}, | ||
{ | ||
"title": "Lecteur multimédia - Youtube", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/multimedia/multimedia-youtube-fr.html" | ||
} | ||
], | ||
"docs": [ | ||
{ | ||
"title": "Multimedia Player", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/multimedia/multimedia-en.html" | ||
}, | ||
{ | ||
"title": "Lecteur multimédia", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/multimedia/multimedia-fr.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Overlay", | ||
"fr": "Contenu superposé" | ||
}, | ||
"description": { | ||
"en": "A flexible, responsive overlay plugin. Implements the WAI-ARIA Dialog (Modal) design pattern", | ||
"fr": "Un plugin de superposition flexible et réactif. Implémente le modèle de conception WAI-ARIA Dialog (Modal)" | ||
}, | ||
"modified": "2024-05-16", | ||
"componentName": "overlay", | ||
"status": "stable", | ||
"pages": { | ||
"examples": [ | ||
{ | ||
"title": "Overlay", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/overlay/overlay-en.html" | ||
}, | ||
{ | ||
"title": "Contenu superposé", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/overlay/overlay-fr.html" | ||
} | ||
], | ||
"docs": [ | ||
{ | ||
"title": "Overlay", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/overlay/overlay-en.html" | ||
}, | ||
{ | ||
"title": "Contenu superposé", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/overlay/overlay-fr.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Paginate", | ||
"fr": "Paginer" | ||
}, | ||
"description": { | ||
"en": "Adds pagination at the bottom of a list of items", | ||
"fr": "Ajoute une pagination en bas d'une liste d'éléments" | ||
}, | ||
"modified": "2024-07-10", | ||
"componentName": "paginate", | ||
"status": "provisional", | ||
"pages": { | ||
"examples": [ | ||
{ | ||
"title": "Paginate", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/paginate/paginate-en.html" | ||
}, | ||
{ | ||
"title": "Paginer", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/paginate/paginate-fr.html" | ||
} | ||
], | ||
"docs": [ | ||
{ | ||
"title": "Paginate", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/paginate/paginate-en.html" | ||
}, | ||
{ | ||
"title": "Paginer", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/paginate/paginate-fr.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Prettify", | ||
"fr": "Prettify" | ||
}, | ||
"description": { | ||
"en": "Syntax highlighting of source code snippets in an html page using google-code-prettify", | ||
"fr": "Mise en surbrillance de la syntaxe des extraits de code source dans une page HTML en utilisant google-code-prettify" | ||
}, | ||
"modified": "2024-05-16", | ||
"componentName": "prettify", | ||
"status": "stable", | ||
"pages": { | ||
"examples": [ | ||
{ | ||
"title": "Prettify", | ||
"language": "en", | ||
"type": "general", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/prettify/prettify-en.html" | ||
}, | ||
{ | ||
"title": "Prettify", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/prettify/prettify-fr.html" | ||
} | ||
], | ||
"docs": [ | ||
{ | ||
"title": "Prettify", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/prettify/prettify-en.html" | ||
}, | ||
{ | ||
"title": "Prettify", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/prettify/prettify-fr.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"@context": { | ||
"@version": 1.1, | ||
"dct": "http://purl.org/dc/terms/", | ||
"title": { "@id": "dct:title", "@container": "@language" }, | ||
"description": { "@id": "dct:description", "@container": "@language" }, | ||
"modified": "dct:modified" | ||
}, | ||
"title": { | ||
"en": "Session Timeout", | ||
"fr": "Expiration de la session" | ||
}, | ||
"description": { | ||
"en": "Create a session inactivity timeout that warns users when their session is about to expire", | ||
"fr": "Crée un délai d'expiration d'inactivité de session qui avertit les utilisateurs lorsque leur session est sur le point d'expirer" | ||
}, | ||
"modified": "2024-07-10", | ||
"componentName": "session-timeout", | ||
"status": "stable", | ||
"pages": { | ||
"examples": [ | ||
{ | ||
"title": "Session Timeout", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/session-timeout/session-timeout-en.html" | ||
}, | ||
{ | ||
"title": "Expiration de la session", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/session-timeout/session-timeout-fr.html" | ||
} | ||
], | ||
"docs": [ | ||
{ | ||
"title": "Session Timeout", | ||
"language": "en", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/session-timeout/session-timeout-en.html" | ||
}, | ||
{ | ||
"title": "Expiration de la session", | ||
"language": "fr", | ||
"url": "https://wet-boew.github.io/wet-boew/docs/ref/session-timeout/session-timeout-fr.html" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.