Skip to content

Commit

Permalink
GitBook: [master] 4 pages and one asset modified
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano authored and gitbook-bot committed Sep 18, 2019
1 parent 6893f12 commit 70ed77a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 14 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion first-chapter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interceptors = [
**IMPORTANT** If you are using SES or URL mappings in your ColdBox 4 application, make sure that you declare the security interceptor after the SES interceptor. Interceptors require order, so security needs for the URL to be translated first. In coldbox 5 SES is handled by the Routing service, so you don't need this SES interceptor.
{% endhint %}

### Global Properties
## Global Properties

| Property | Type | Required | Default | Description |
| :--- | :--- | :--- | :--- | :--- |
Expand Down
4 changes: 0 additions & 4 deletions first-chapter/ioc-properties.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
---
description: Inversion of Control Properties
---

# IOC Properties

The following are properties used when the source of the rules is ioc or coming from an IoC module
Expand Down
4 changes: 0 additions & 4 deletions first-chapter/ocm-properties.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
---
description: ColdBox OCM (Object Cache Manager)
---

# OCM Properties

The following are properties used when the source of the rules is `ocm` or coming from the CacheBox
Expand Down
10 changes: 5 additions & 5 deletions untitled-1/sample-xml-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ that can be found in an event.
</rule>
<rule>
<match>event</match>
<match>event</match>
<whitelist></whitelist>
<securelist>^moderator</securelist>
<roles>admin,moderator</roles>
Expand All @@ -37,7 +37,7 @@ that can be found in an event.
</rule>
<rule>
<match>url</match>
<match>url</match>
<whitelist></whitelist>
<securelist>/secured.*</securelist>
<roles>admin,paid_subscriber</roles>
Expand All @@ -49,7 +49,7 @@ that can be found in an event.

> **IMPORTANT** Please remember to white list your main events \(implicit\), login and logout events if you will be securing the entire application.
### First Rule Analysis
## First Rule Analysis

As you can see from the sample, the first rule has the following elements

Expand Down Expand Up @@ -89,7 +89,7 @@ This probably means that I am doing my own security validation and apart from ha

Then if it does not validate it will use this redirect element to relocate via `setNextEvent()`

### Second Rule Analysis
## Second Rule Analysis

The second rule has the following elements:

Expand Down Expand Up @@ -129,7 +129,7 @@ This probably means that I am doing my own security validation and apart from ha

Then if it does not validate it will use this redirect element to relocate via `setNextEvent()`

### Third Rule Analysis
## Third Rule Analysis

The third rule has the following elements:

Expand Down

0 comments on commit 70ed77a

Please sign in to comment.