displaying top 100 results
Comment on Closures cannot be declared outside of cfscript by Abram A.
Tracker Comment Comment on Lambda/Fat Arrow expression requires block body syntax when returning a function by Abram A.
Comment on Lambda/Fat Arrow expression requires block body syntax when returning a function by Abram A.
Tracker Comment Comment on booleanFormat() by External U.
2612386 CF-3516706 External U. This is a string formatting function, Abram. The result is not intended to be used as a boolean, but for various view situations when various presentations of a boolean might be required.
Think dateFormat().
Tracker Comment Comment on booleanFormat() by External U.
2612386 CF-3516706 External U. Abram/Adam - are either of you of a bug/ER to make true/false the default boolean display format? I'd vote the heck out of that.
Tracker Comment Comment on Language/Syntax Enhancement - Array/Struct Literal append/update by External U.
2608581 CF-4058829 External U. I've plus-voted this, but ti would be with two caveats:
* For there to be a += operator, there first needs to be a + operator.
* I'm not sold that the distinction Abram is making with &= works. A + operator makes sense to me; but I don't think the distinction between
Tracker Issue Bug 81452:When an entity has a data type of Date the adl
2598982 CF-3040724 Flex/Flash : AIR Integration Abram Adams Bug 81452:When an entity has a data type of Date the adl Problem:
When an entity has a data type of Date the adl.exe process does not terminate when you close the air application. The only way to terminate the process is to go
2608509 CF-4073787 Language Abram Adams Add Support for Map/Reduce/Filter/Each Functions for Query Objects Duplicate ID: CF-3713323
Title says it all. We should have Map/Reduce/Filter/Each member functions for query objects.
The query object should be treated like an array of structs, i.e: [{id
Tracker Issue cfquery/queryExecute - Add Return Type
2608511 CF-4073759 Language,Wishlist Abram Adams cfquery/queryExecute - Add Return Type Let's add a return type argument to cfquery and queryExecute that allows at least:
* query - default
* struct - array of structs, like [{id:1,name="bob"},{id:2,name="jill"}] (named struct after the undocumented
Tracker Issue Web Services not listed in CF Admin - cannot delete
2608722 CF-4017604 Web Services : Axis 2 Abram Adams Web Services not listed in CF Admin - cannot delete Problem Description:
When using createObject("webservice"...) to connect to a wsdl and consume the web service the CF Admin used to list these urls in the "Data & Services > Web Services
Tracker Comment Comment on New function request: valueArray() to complement valueList() by External U.
2612557 CF-3499033 External U. Hi Abram,
I like those ideas. +1 to query.column.toArray() and the parameter to include/exclude empties (and then query.column.toList()). I see #CF-3041672 was a CF9 java array iteration issue in CF9 but runs fine in CF11 (didn't test CF10). +1 to query
Tracker Comment Comment on New function request: valueArray() to complement valueList() by External U.
2612557 CF-3499033 External U. Abram, I'm not arguing the case of array vs list, I'm arguing that what is returned from .toArray() is not a CFML data type, so it's not an appropriate *CFML* solution.
Java arrays are immutable, so the resultant value won't behave "predictably" with any array
Tracker Issue Bug 81453:When you have a self joining entity the saveUpdateCache() method runs forever (or at least until you run out of RAM)
2598981 CF-3040725 Flex/Flash : AIR Integration Abram Adams Bug 81453:When you have a self joining entity the saveUpdateCache() method runs forever (or at least until you run out of RAM) Problem:
When you have a self joining entity the saveUpdateCache() method runs forever (or at least until you
2608547 CF-4067122 Language Abram Adams [elvis]?: Elvis operator not properly evaluating inline CFML When using ?: to set a default string value containing an inline CFML var it returns blank. If you concatenate the string & var it works. Example:
test = "VALUE THAT SHOULD OUTPUT";
result1
Tracker Issue queryExecute - Add Map function
2608510 CF-4073770 Language Abram Adams queryExecute - Add Map function This feature makes a lot more sense if https://bugbase.adobe.com/index.cfm?event=bug&id=4073759 gets emplemented as well...
It would be very useful to be able to pass in a map function to the queryExecute function that would
Tracker Issue Object Literal Syntax for Ordered/Sorted Structs
= {
"John": "Sales",
"Tom": "Finance",
"Mike": "Education"
}
(BTW, what a terrible code example)
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 4126544
External Customer Info:
External Company: CFXchange.com
External Customer Name: Abram
:
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 3040778
External Customer Info:
External Company:
External Customer Name: Abram Adams
External Customer Email: 2C58192A446E406799201549
External Test Config: 01/13/2010
2673406 CF-4126636 Language Abram Adams Language/Syntax Enhancement - Array/Struct Literal append/update Duplicate ID: CF-4058829
Quite often I’m working with arrays and structs and have the need to either add or override keys/indexes to a struct/array. To add a key, I can simply do struct
2608581 CF-4058829 Language Abram Adams Language/Syntax Enhancement - Array/Struct Literal append/update Quite often I’m working with arrays and structs and have the need to either add or override keys/indexes to a struct/array. To add a key, I can simply do struct["key"] = "something"; or struct
Tracker Issue Implement oData (Open Data Protocol) API via ORM/Hibernate to Produce and Consume oData
2610893 CF-3671657 ORM Support Abram Adams Implement oData (Open Data Protocol) API via ORM/Hibernate to Produce and Consume oData With development trends moving rapidly to mobile platforms (as well as a trend back to thick client paradigms: SPAs, web native OS, Chrome Apps, etc..) and CF's new
Tracker Comment Comment on Language/Syntax Enhancement - Array/Struct Literal append/update by CFwatson U.
2673406 CF-4126636 CFwatson U. Added By:inoel Note Added: The duplicate bug #CF-4058829 also makes the case for immutable operations if + / & for structs / arrays are implemented.
For example:
// initial struct
struct = { "a": 1, "b": 2 };
//...later
combinedStruct = struct + {
"key
2673443 CF-4126544 CFwatson U. Added By:mchandna Note Added: Supported inline Ordered Struct.
Normally inline struct is written as: {a:'a',b='b'}
and array is written as ['a','b']
Added support for inline ordered struct: [a:'a',b='b']
note that both colon and assign operators are supported
3090729 CF-4198667 Language : Expressions Abram Adams Operators not supported in evaluated expressions when inside #'s Problem Description:
When using operators such as , >= or == in an evaluated expression inside #'s it fails with an error.
Example code (also, see trycf.com examples below)
{code