Skip to content

Commit 932b59a

Browse files
committed
app layout moved to skill
1 parent 1a0b18d commit 932b59a

4 files changed

Lines changed: 0 additions & 55 deletions

File tree

models/GuidelineManager.cfc

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -492,22 +492,6 @@ component singleton {
492492

493493
var content = fileRead( corePath )
494494

495-
// For ColdBox guideline, detect template type and replace structure placeholder
496-
if ( arguments.guidelineName == "coldbox" ) {
497-
var templateType = variables.utility.detectTemplateType( arguments.directory )
498-
var structurePath = templatesPath & "core/coldbox-structure-#templateType#.md"
499-
500-
if ( fileExists( structurePath ) ) {
501-
var structureContent = fileRead( structurePath )
502-
content = replaceNoCase(
503-
content,
504-
"|STRUCTURE|",
505-
structureContent,
506-
"all"
507-
)
508-
}
509-
}
510-
511495
// Parse frontmatter to extract description
512496
var parsed = variables.utility.parseFrontmatter( content )
513497
var description = structKeyExists( parsed.frontmatter, "description" ) ? parsed.frontmatter.description : ""

templates/ai/guidelines/core/coldbox-structure-flat.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

templates/ai/guidelines/core/coldbox-structure-modern.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

templates/ai/guidelines/core/coldbox.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ description: ColdBox HMVC framework conventions, structure, handlers, models, vi
99

1010
ColdBox is a conventions-based HMVC (Hierarchical Model-View-Controller) framework for CFML and BoxLang applications. It provides a complete ecosystem for building modern, scalable web applications and REST APIs.
1111

12-
## Application Structure
13-
14-
|STRUCTURE|
15-
1612
## Event Handlers (Controllers)
1713

1814
### Handler Conventions

0 commit comments

Comments
 (0)