- Update main overview to add a Javadoc card with a link (requires sitegen 1.0.9)
- Update pre-reqs link in all guides
- Update OKE guide (style)
- Integ sitegen 1.0.9
* - Remove examples/guides
- Combine about and getting started nav groups
- Move quickstarts under guide
- Update links to quickstarts
* remove comment-out block in pre-reqs, break line for 80 chars
* Update getting started guides
* rename docker guide to be all lower case
* split jib and docker guides, minor update to all guides for consistency
* remove getting start card from top level overview
* Adding documentation for Jackson support. Fixing various Helidon javadoc bugs.
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Adding documentation for Jackson support. Fixing various Helidon javadoc bugs.
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Adding documentation for Jackson support. Fixing various Helidon javadoc bugs.
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Adding documentation for Jackson support. Fixing various Helidon javadoc bugs.
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Adding documentation for Jackson support. Fixing various Helidon javadoc bugs.
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Incorporating PR feedback
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Added Jackson documentation under
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Removing README.adoc instances per request
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Correcting typos
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Added Kumar's CDI extensions documentation edits.
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* Making cloning and building instructions for OCI more explicit, per feedback
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
* bump sitegen version to 1.0.8
* Split extensions into 4 documents using numbered prefix for the flow ordering.
Make the overview page use cards to describe the current extensions nicely.
* Add a guide landing page as the overview page that describes all guides using cards.
Rename se and mp guides to re-index their numbered prefix to fit in the overview page as the first one
Changed title of se and mp to be shorter
* remove cdi-extensions.adoc, since it has been split into 4 separate files
* docs comestics: use //... or #... instead of . . . where possible
* remove unused attributes
* fix sitegen version: 1.0.7 instead of 1.0.8
* Fix image reference typo
* Update the links to the now-moved guide files
* Add open blocks to fix formatting issues with [source] blocks in numbered list elements
* Update README.adoc to incorporate changes in other files
* Use release 1.0.6 of sitegen plug-in now that it is available
Fixes#297
- Implement RequestPredicate:
- change RequestPredicate from interface to public final class
- removed implements Predicate<ServerRequest>, instead made the API similar to Predicate
- Rename RequestPredicate.whenRequest to RequestPredicate.create
- add variant for method isOfMethod to accept Http.Method[]
- add variant for method hasContentType to accept MediaType[]
- update javadoc
- add a unit test to cover all the new code
- Update the javadoc of RequestHeaders.isAccepted to state the behavior when the 'Accept' header is not present.
- Minor comestic update to the javadoc of RequestHeaders.bestAccept
- Fix ReadOnlyParameters.first to handle empty list
- Enable RoutingTest, mock bareRequest/bareResponse to test routing in a meaningful way