Skip to content

Commit

Permalink
improve md
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 6, 2024
1 parent 53b4de3 commit eec3cdb
Show file tree
Hide file tree
Showing 63 changed files with 1,605 additions and 161 deletions.
4 changes: 2 additions & 2 deletions docs/recipes/application-context-update.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Update current Application Context",
"id": "cookbook-application-context-update",
"id": "update-application-context",
"related": [
"tag-application"
],
Expand All @@ -19,7 +19,7 @@
]
}
-->
# Update Application Context
# Application Context update

Lucee allows you to update the existing application context defined for example in [cookbook-application-context-basic].

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Creating and deploying Lucee Archives (.lar files)",
"id": "deploy-archives",
"id": "archives-creating-and-deploy",
"description": "This document explains how to deploy an Application on a live server without using a single CFML file.",
"keywords": [
"Lucee",
Expand All @@ -15,7 +15,7 @@
]
}
-->
# Creating and deploying Lucee Archives (.lar files)
# Archives - Creating and deploying Lucee Archives (.lar files)

This document explains how to deploy an Application on a live server without using a single CFML file.

Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/basic-date.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
]
}
-->
# Output the current date
# Basic Date - Output the current date

The following examples show you how to output the current date.

Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/cached-within-request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Cache a query for the current request",
"id": "cookbook-cached-within-request",
"id": "cache-a-query-for-the-curr-context",
"related": [
"tag-query"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Adding Caches via Application.cfc",
"id": "cookbook-caches-in-application-cfc",
"id": "caches-defined-in-application-cfc",
"related": [
"tag-application"
],
Expand All @@ -21,7 +21,7 @@
]
}
-->
# Adding Caches via Application.cfc
# Caches defined in Application.cfc

It is possible to add cache connections in Lucee 5.1+ on a per-application basis by adding configuration to your `Application.cfc`. You can also select the default object cache, query cache, function cache, etc. Note if these caches use an extension that provides the cache driver, the extension must be installed already.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Convert a CFML Function/Component to use in Java",
"id": "convert-cfml-to-java",
"id": "convert-a-cfml-func-to-java",
"description": "Learn how to convert user-defined functions or components in Lucee to use them in Java. This guide demonstrates how to define components to implement Java interfaces, pass components to Java methods, explicitly define interfaces, and use the onMissingMethod feature. It also shows how to convert user-defined functions to Java lambdas.",
"since": "6.0",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Datasources",
"id": "cookbook-datasource-define-datasource",
"id": "datasource-how-to-define-them",
"description": "How to define a Datasource in Lucee.",
"keywords": [
"Datasource",
Expand All @@ -13,7 +13,7 @@
]
}
-->
# How to define a Datasource
# Datasource - How to define them

To execute queries, you need a datasource definition, which points to a specific local or remote datasource. There are different ways to do so.

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/recipes/event-gateway-create.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Custom Event Gateways",
"id": "create-event-gateway",
"id": "custom-event-gateways",
"categories": [
"gateways"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Event Handling in Application.cfc",
"id": "cookbook-event-handling",
"id": "event-gateway-in-app-cfc",
"related": [
"tag-application",
"function-onrequest",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Event Gateways",
"id": "event-gateways-overview",
"id": "event-gateways-how-they-work",
"categories": [
"gateways"
],
Expand All @@ -16,7 +16,7 @@
]
}
-->
# How does an Event Gateway work?
# Event Gateway - How they work?

An event gateway is a background process that continuously runs.

Expand Down
4 changes: 2 additions & 2 deletions docs/recipes/event-gateways.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Event Gateways in Lucee",
"id": "event-gateways-lucee",
"id": "event-gateways",
"related": [
"function-sendgatewaymessage"
],
Expand All @@ -20,7 +20,7 @@
]
}
-->
# Lucee Event Gateways
# Event Gateways

First of all, it is necessary to explain how Event Gateways (EG) are working in the first place. EG's are another way to communicate with your Lucee server and are kind of a service running on Lucee, reacting to certain events. These kinds of events could be something along the lines of:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Event Handling in Application.cfc",
"id": "cookbook-event-handling",
"id": "event-handling-in-app-cfc",
"related": [
"tag-application",
"function-onrequest",
Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/exception-output.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
]
}
-->
# Output Exceptions
# Exceptions Output

How to catch and display exceptions

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Function SystemOutput",
"id": "systemoutput_function",
"id": "function-systemoutput",
"description": "This document explains the systemoutput function with some simple examples.",
"keywords": [
"SystemOutput function",
Expand Down
124 changes: 0 additions & 124 deletions docs/recipes/gateways-overview.md

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "List existing Cache Connections",
"id": "cookbook-cache-list",
"id": "list-existing-cache-conn",
"categories": [
"cache"
],
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Sending Emails",
"id": "cookbook-mail-send",
"id": "mail-how-to-send-a-mail",
"related": [
"tag-imap",
"tag-mail",
Expand All @@ -19,7 +19,7 @@
]
}
-->
# How to send a Mail
# Mail - How to send a Mail

The following example shows you how you can send a mail. Before you can use this functionality, you have to define a Mail server in the Lucee Administrator.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Define a mapping",
"id": "cookbook-filesystem-mapping-define-mapping",
"id": "mappings-how-to-define-a-reg-mapping",
"related": [
"tag-application",
"function-expandpath",
Expand All @@ -21,7 +21,7 @@
]
}
-->
# How to define a regular Mapping
# Mappings - How to define a regular Mapping

Lucee allows you to define a mapping to a specific location in a filesystem, so you don't always have to use the full path. In most cases, the full path is not working anyway, for example with [tag-include] which does not work with a full path.

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Flying Saucer PDF Engine - CFDOCUMENT",
"id": "flying_saucer",
"id": "pdf-engine-flying-saucer",
"related": [
"tag-document"
],
Expand All @@ -18,7 +18,7 @@
]
}
-->
# Flying Saucer PDF Engine - CFDOCUMENT
# PDF Engine - Flying Saucer (CFDocument)
This document provides information about the new PDF engine, [Flying Saucer](https://github.com/flyingsaucerproject/flyingsaucer) (FS) in Lucee 5.3

Flying saucer is a new PDF engine in Lucee. PDF engines are mainly used to convert HTML to PDF format.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Query of Queries sometimes it rocks, sometimes it sucks",
"id": "QOQ_Sucks",
"id": "query-of-query-sometime",
"related": [
"tag-query",
"function-queryexecute",
Expand All @@ -21,7 +21,7 @@
]
}
-->
# The good, the bad and the ugly
# Query of Queries sometimes it rocks, sometimes it sucks

This document explains why Query of Queries (QoQ) may or may not be the best approach for your use case.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
{
"title": "Query return type",
"id": "query_return_type",
"id": "query-return-type",
"categories": [
"query"
],
Expand Down
Loading

0 comments on commit eec3cdb

Please sign in to comment.