{5} Accepted, Active Tickets by Owner (Full Description) (9 matches)
List tickets accepted, group by ticket owner. This report demonstrates the use of full-row display.
kroche (4 matches)
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #273 | ColdSpring Templates: Support in Gateway for joins to child and iterator. | Scaffolding | enhancement | 09/28/07 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Update code template for the basic Gateway to support joins to child and iterator. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #274 | ColdSpring Templates: Support for JSON/AJAX. | Scaffolding | enhancement | 09/28/07 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
ColdSpring Templates: Create dsp_ code templates for JSON AJAX support. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #280 | Support for non integer Primary Keys | Scaffolding | enhancement | 09/30/07 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Templates should produce code that will handle UUIDs or other fields as a primary key. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #281 | Support for non identity Primary Keys | Scaffolding | enhancement | 09/30/07 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Code generated should be able to work when there is a non identity primary key. Perhaps when the key is assigned by calling a routine which assigns the next key. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
scorfield (5 matches)
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #244 | PATCH: parameterizable wrapping of fuses in CFOUTPUT | Extensions: Lexicons/Plugins | Fusebox 5.6 | enhancement | 08/14/07 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
For whitespace reasons, I don't want my fuses to be automatically wrapped in CFOUTPUT by the include verb. I've enclosed a patch below (against that source:/trunk@492) that uses a fusebox parameter named 'wrapIncludeInCfoutput' to control this behaviour. Index: C:/JRun4/servers/cfusion/cfusion-ear/cfusion-war/gpsracr/fusebox/verbs/include.cfm
===================================================================
--- C:/JRun4/servers/cfusion/cfusion-ear/cfusion-war/gpsracr/fusebox/verbs/include.cfm (revision 492)
+++ C:/JRun4/servers/cfusion/cfusion-ear/cfusion-war/gpsracr/fusebox/verbs/include.cfm (working copy)
@@ -133,17 +133,24 @@
if (fb_.verbInfo.attributes.contentvariable is not "" and not fb_.verbInfo.attributes.overwrite) {
fb_appendLine('<cfif not isDefined("#fb_.verbInfo.attributes.contentvariable#")>');
}
+ if (NOT structKeyExists(fb_.app, "wrapIncludeInCfoutput") OR NOT isBoolean(fb_.app.wrapIncludeInCfoutput) OR fb_.app.wrapIncludeInCfoutput) {
+ fb_.openCfoutput = "<cfoutput>";
+ fb_.closeCfoutput = "</cfoutput>";
+ } else {
+ fb_.openCfoutput = "";
+ fb_.closeCfoutput = "";
+ }
fb_appendLine("<cftry>");
if (fb_.verbInfo.attributes.contentvariable is not "") {
if (fb_.verbInfo.attributes.append) {
- fb_appendLine('<cfparam name="#fb_.verbInfo.attributes.contentvariable#" default=""><cfsavecontent variable="#fb_.verbInfo.attributes.contentvariable#"><cfoutput>###fb_.verbInfo.attributes.contentvariable###<cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#"></cfoutput></cfsavecontent>');
+ fb_appendLine('<cfparam name="#fb_.verbInfo.attributes.contentvariable#" default=""><cfsavecontent variable="#fb_.verbInfo.attributes.contentvariable#"><cfoutput>###fb_.verbInfo.attributes.contentvariable###</cfoutput>#fb_.openCfoutput#<cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#">#fb_.closeCfoutput#</cfsavecontent>');
} else if (fb_.verbInfo.attributes.prepend) {
- fb_appendLine('<cfparam name="#fb_.verbInfo.attributes.contentvariable#" default=""><cfsavecontent variable="#fb_.verbInfo.attributes.contentvariable#"><cfoutput><cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#">###fb_.verbInfo.attributes.contentvariable###</cfoutput></cfsavecontent>');
+ fb_appendLine('<cfparam name="#fb_.verbInfo.attributes.contentvariable#" default=""><cfsavecontent variable="#fb_.verbInfo.attributes.contentvariable#">#fb_.openCfoutput#<cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#">#fb_.closeCfoutput#<cfoutput>###fb_.verbInfo.attributes.contentvariable###</cfoutput></cfsavecontent>');
} else {
- fb_appendLine('<cfsavecontent variable="#fb_.verbInfo.attributes.contentvariable#"><cfoutput><cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#"></cfoutput></cfsavecontent>');
+ fb_appendLine('<cfsavecontent variable="#fb_.verbInfo.attributes.contentvariable#">#fb_.openCfoutput#<cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#">#fb_.closeCfoutput#</cfsavecontent>');
}
} else {
- fb_appendLine('<cfoutput><cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#"></cfoutput>');
+ fb_appendLine('#fb_.openCfoutput#<cfinclude template="#fb_.verbInfo.action.getCircuit().getApplication().parseRootPath##fb_.targetCircuit.getRelativePath()##fb_.template#">#fb_.closeCfoutput#');
}
fb_appendLine('<cfcatch type="missingInclude"><cfif len(cfcatch.MissingFileName) gte #fb_.templateLen# and right(cfcatch.MissingFileName,#fb_.templateLen#) is "#fb_.template#">');
if (fb_.verbInfo.attributes.required) {
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #261 | Implicit fuseactions as XML files is not implemented | Miscellaneous | Fusebox 5.6 | defect | 09/08/07 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
You cannot write someaction.xml (containing just a <fuseaction> tag). It's not clear how valuable this would be. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #267 | <cfsetting enablecfoutputonly="true" doesn't work in fusebox | Miscellaneous | Fusebox 5.6 | enhancement | 09/19/07 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
When you specify <cfsetting enablecfoutputonly="true"> in fusebox, it doesn't have any effect.. Well, actually it does, but because fusebox wraps all includes with a cfoutput tag, it has not effect. is it possible to remove the cfoutputs from round the cfincludes? |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #314 | Lexicon, ErrorTemplates, and PluginsPaths all relative to application root | Extensions: Lexicons/Plugins | Web Site 1 | enhancement | 12/20/07 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
If the documentation could include a note that the paths in the fusebox.xml <parameter> block for Plugins, Lexicons, ErrorTemplates? and parsed files are relative to the application root and that you CANNOT use mappings, it would help clarify things mightily. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #331 | Ability to force a parse of all fuseactions in a single circuit | Miscellaneous | Fusebox 5.6 | enhancement | 03/20/08 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
A feature that fits in between parse and parseall as URL parameters. Parse parases only the current fuseaction. Parseall parses the entire application. I'd like to be able to specify a single circuit for parseing. Perhaps parseCircuit=true would be reasonable syntax? This would assist in development, and catch missing referenced fuseactions,etc without taking the 1/2 hour to parse the whole application. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
