{5} Assigned, Active Tickets by Owner (Full Description) (37 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

SkorPiun (1 match)

Ticket Summary Component Milestone Type Created
Description
#314 CFUnit cfunit 1.5 enhancement 07/05/07

With so many projects, and having a few servers as well as per application mappings. I believe that the CFunit -> facade should be set at a per project level and not a global level.


denny (2 matches)

Ticket Summary Component Milestone Type Created
Description
#343 Mark Occurrences feature for CFEclipse cfeclipse - general None enhancement 08/02/07

All occurrences of any word (tag/variable/method) under the cursor are highlighted within an open file. This would be useful when tracking usage of variables/tags in .cfm and .cfc files. This functionality would be similar to Mark Occurrences feature in Java editor and JSEclipse plug-in.


#363 double-click text selection cfeclipse - general None enhancement 09/15/07

Currently the double-click event isn't handled for eclipse 3.3+.

It was moved to dnd, and we don't add the dnd Selection listener if we're in 3.3+.

I've created a patch that adds the original double-click stuff back, with the addition of a crappy keyListener for checking if control is being held.

There are way, way better ways of doing this, I can feel it in my bones, but oh well. Actually this patch is probably pretty useless, since we probably want to get the selectionListener stuff added back in- looks like it handles shift+click tag selection stuff, etc.

But, for posterity, here's what I had come up with, ugly as it is. =]


markd (30 matches)

Ticket Summary Component Milestone Type Created
Description
#328 Project listing disappears after clicking on a file to open it. cfeclipse - general None defect 07/18/07

WHen I click on a file (in the navigator) to open it, the whole diretory listing and files disappear in a project. When I refresh it, I get a couple of directories and sometimes a few files that had been recently changed. I have attached a screen shot to show what I mean...this is a before and after shot of when I try to open a file


#152 Drastic response slowdown as file size increases editor 1.3.2 defect 09/21/06

As the file size grows, response time while editing that file gets slower and slower. More than 1000 lines is slow to the point of being irksome, while more than 3000 lines is completely unusable. I have some preliminary documentation and testing results on my blog:

http://rickosborne.org/blog/?p=80

I've tried:

  • Adjusting the VM heap size
  • Enabling/disabling each of the code completion options, parser errors, and other options available via the preferences window
  • Adjusting the infotip/insight delay
  • Using different VMs

All to no avail.

It does appear to be CFE-specific, as editing files of similar size but different type, not handled by CFE, do not appear to suffer from the same problems.


#102 Function insite inside cftag editor 1.4 defect 09/21/06

function insight - not working when inside a tag For example when I type this : <cfapplication applicationtimeout="#createTimeSpan(">

nothing happens. I get code hints for cfapplication and applicationtimeout but not for createtimespan though when I'm not inside a tag i get the function insite

Is there something I'm doing wrong or is this a bug? Also I seem to remember getting this to work in an older verson (can't remember which) when there was a space before and after the = but that's a nogo on 1.1.17. I've finally quit using cfstudio and I'm using CFEcliplse for everything now and this would ge really good to get working.

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=229


#103 checking out a file with VSS plugin screws up color coding syntax highlighting 1.4 defect 09/21/06

If you have a file that is part of a VSS repository open in the editor and you use the Team | Check Out function to check out the file, color coding in the file goes haywire and mostly just stops working. Closing the file and opening it again (still checked out) fixes the problem.

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=283


#104 Code Coloring Improperly with syntax highlighting 1.4 defect 09/21/06

Code color displays improperly when using

or <br/> (or any other html tag)

within a hint attribute:

<cffunction name="writeExceptionLog" access="public" output="false" returntype="void" hint="Write an exception to the log file.<br/> Throws: nothing">

Put the above snip in cfeclipse and you'll notice that everything after the <br/> is in black instead of red (or whatever colors you have choosen).

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=289


#134 Error when Reloading Syntax Dictionary tag insight defect 09/21/06

When clicking on the Reload Sytax Dictionary, I get this error message. "Dictionary com.rohanclan.cfml.dictionary.CFMLMX could not be loaded.

This may cause CFEclipse to work unpredictably or, in some cases, not at all.

Try closing Eclipse and starting it from the command line with -clean as a command line argument."

Eclipse 3.2. Windows XP

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=390


#143 Line Start: String index error when have code folded at end editor 1.3.2 defect 09/21/06

I have a page that has code commented out at the end, with an extra line afterwards. Comment starts at line 539, ends at line 567; also has line 568. If the comment is collapsed, and I'm on the last line (568), hitting Home btn results in this error:

"Line Start" did not complete normally. Please see the log for more information. Reason: String index out of range 2 (or 3, 5 etc depending on how much other text on the line)

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=401


#178 missing tags after cfmodule views - outline 1.4 defect 01/08/07

outline view is missing tags after cfmodule


#187 HTML in strings do not parse correctly cfeclipse - general 1.3.2 defect 01/26/07

I have this in a CFC:

<cfreturn "<th style=""width:10px;"">&nbsp;</th>" />

CFE reports an error: "Attribute 'style' is not valid".

I have about 100 of these reported in my project :)

Here's another:

<cfreturn "<td><input type=""checkbox"" name=""#variables.id#"" value=""{#variables.id#}"" /></td>" />

Error: "Attribute 'value' is not defined / Attribute 'name' is not defined" / Attribute 'value' is not defined"


#329 Methods View not working for quote combinations cfeclipse - general 1.3.2 defect 07/19/07

&t If you use the following code (or similar) in a CFC the Methods View will not work:

<cfif spareTxt eq '"'>
...
</cfif>

The key trigger is the double quote within a single quote. Here is a small sample CFC:

<cfcomponent name="fireService" output="false">

	<cffunction name="init" access="public" returntype="fireService" output="false" hint="Setup stuff."> 
		<cfargument name="minLadderSize" required="true" type="Numeric" />
		
		<cfset var spareTxt = "" />
		<cfset var containsQuote = false />
		
		<cfset VARIABLES.minLadderSize = ARGUMENTS.minLadderSize />
		
		<!--- This code causes CFEclipse Methods View () to fail --->
		<cfif spareTxt eq '"'>
			;cfset containsQuote = true />
		</cfif>
		
		<!--- This code is OK --->
		<!--- <cfif spareTxt eq 'a'>
			<cfset containsQuote = true />
		</cfif> --->
		
		<cfreturn this />
	</cffunction>
	
</cfcomponent>

PS: After changing code, refresh methods view each time to see impact.


#333 line numbers and editor toolbar weren't enabled by default editor 1.3.2 defect 07/23/07

line numbers and editor toolbar weren't enabled by default. for line numbers i had right clicked in the gutter then clicked line numbers in the context menu, and it did nothing. i eventually found out i had to go into the preferences of cfeclipse and check off line numbers, then go back to the doc and right click in the gutter and then click on line numbers in the context menu. it would have been nice if line numbers and the editor toolbar were enabled by default. I was trying to follow along with the #2 video tutorial, but couldn't because if these problems.


#349 Exceptions with CF Frameworks Explorer cf_frameworks 1.3.2 defect 08/16/07

The following are seen with a new installation of Eclipse 3.3 (Eclipse IDE for Java EE Developers package), with latest release versions of CFEclipse / CF Frameworks explorer

I was previously getting the same exceptions with Eclipse 3.2

I have also tried this with a new workspace - just in case there was something in my existing workspace.

I also have the following plugins installed:

  • Mylyn Trac integration
  • Subclipse (with Mylyn integration)
  • VSS plugin

When loading Eclipse, I get the following exceptions:

Parent Exception

eclipse.buildId=I20070625-1500
java.version=1.6.0_02
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
Command-line arguments:  -os win32 -ws win32 -arch x86 -data C:\Documents and Settings\lancelotd\workspace

Warning
Thu Aug 16 10:09:02 BST 2007
A handler conflict occurred.  This may disable some commands.

Child Error 1:

eclipse.buildId=I20070625-1500
java.version=1.6.0_02
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
Command-line arguments:  -os win32 -ws win32 -arch x86 -data C:\Documents and Settings\lancelotd\workspace

Warning
Thu Aug 16 10:09:02 BST 2007
Conflict for 'AUTOGEN:::org.cfeclipse.cfml.mappings/org.cfeclipse.cfml.setMapping':HandlerActivation(commandId=AUTOGEN:::org.cfeclipse.cfml.mappings/org.cfeclipse.cfml.setMapping,
handler=ActionDelegateHandlerProxy(null,org.cfeclipse.cfml.ui.actions.SetMappingAction),
expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@6a435f),sourcePriority=16384)
HandlerActivation(commandId=AUTOGEN:::org.cfeclipse.cfml.mappings/org.cfeclipse.cfml.setMapping,
handler=ActionDelegateHandlerProxy(null,org.cfeclipse.cfml.ui.actions.SetMappingAction),
expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@6a435f),sourcePriority=16384)

Child Error 2:

eclipse.buildId=I20070625-1500
java.version=1.6.0_02
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
Command-line arguments:  -os win32 -ws win32 -arch x86 -data C:\Documents and Settings\lancelotd\workspace

Warning
Thu Aug 16 10:09:02 BST 2007
Conflict for 'AUTOGEN:::org.cfeclipse.cfml.frameworks.contribution1/org.cfeclipse.cfml.frameworks.newAction':

Exceptions when attempting to use Frameworks explorer

Double Click on "No Project selected icon"

eclipse.buildId=M20060629-1905
java.version=1.6.0_02
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
Command-line arguments:  -os win32 -ws win32 -arch x86
This is a continuation of log file C:\Documents and Settings\lancelotd\workspace\.metadata\.bak_0.log
Created Time: 2007-08-03 11:42:52.033

Error
Thu Aug 16 10:19:49 BST 2007
Problems occurred when invoking code from plug-in: "org.eclipse.jface".

java.lang.NullPointerException
	at org.cfeclipse.cfml.frameworks.actions.GoToFile.run(GoToFile.java:87)
	at org.cfeclipse.cfml.frameworks.views.FrameworksView$10.doubleClick(FrameworksView.java:572)
	at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:799)
	at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
	at org.eclipse.core.runtime.Platform.run(Platform.java:857)
	at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46)
	at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:193)
	at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:797)
	at org.eclipse.jface.viewers.AbstractTreeViewer.handleDoubleSelect(AbstractTreeViewer.java:1384)
	at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:1173)
	at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:237)
	at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:234)
	at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:295)
	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
	at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
	at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
	at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
	at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
	at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
	at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
	at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504)
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443)
	at org.eclipse.equinox.launcher.Main.run(Main.java:1169)

Right Click on "No Project selected icon"

eclipse.buildId=M20060629-1905
java.version=1.6.0_02
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
Command-line arguments:  -os win32 -ws win32 -arch x86
This is a continuation of log file C:\Documents and Settings\lancelotd\workspace\.metadata\.bak_0.log
Created Time: 2007-08-03 11:42:52.033

Error
Thu Aug 16 10:19:31 BST 2007
Context menu missing standard group 'org.eclipse.ui.IWorkbenchActionConstants.MB_ADDITIONS'. (menu ids = [org.cfeclipse.cfml.frameworks.views.FrameworksView])  part id = org.cfeclipse.cfml.frameworks.views.FrameworksView)

#361 Problem with cfimport tag insight None defect 09/05/07

I get an error for <cfimport> with no prefix:-

"The attribute 'prefix' is compulsory for the <cfcfimport> tag."

This is incorrect. It's only compulsory for JSP libraries, not for cfml libraries.

Also, the cfimport tag in the error message is mispelt (cfcfimport).


#31 Syntax Dictionary Improvements tag insight 1.4 enhancement 09/21/06

The syntax file needs some enhancements to allow for better logic for the parser. It needs to accomodate the following situations:

1) Certain tags can only have certain parents. eg: cfcatch can only exist within a cftry

2) A cftry must contain at least one cfcatch

3) Warn the user about multiple cfcatches that catch the same exception

4) cfqueryparam can only occur within a cfquery block (but can occur within a file included _within_ the cfquery... this will cause problems)

5) cfswitch can only have cfcase & cfdefaultcase tags within it

6) cfswitch can only have one cfcase that has value="fred"

7) cfswitch can only have one cfdefaultcase

8) cfcase can only occur within a cfswitch

9) cfdefaultcase can only occur within a cfswitch

There are other circumstances, but at the moment these may well be sufficient.

Attached file demos proposed syntax format.

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=187


#32 Parser to attempt to parse incorrect files syntax highlighting 1.4 enhancement 09/21/06

The parser should attempt to parse incorrect files in order to collect various real-time information such as variable names, user document tree position, etc.

It should perhaps perform a multistage parse process. Stage one looks for basic tree information. Stage 2 looks for variable assignments. Stage 3 looks for current doc information (i.e. functions). Stage 4 is the document tree creation.

The implementation can use the tag match it performs for each stage. Stage 4 is the current document tree create method.

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=190


#35 Ability to add tags/customtags, functions through a wizard wizards 1.4 enhancement 09/21/06

It would be great to have a GUI/Wizard to add customtags, functions (and CFC's) to the Dictionaries. This should be relatively easy to do in a new view? As long as the dictionary format has been finalised

Regards

Mark Drew

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=215


#37 Drag and drop snippets editor 1.4 enhancement 09/21/06

It would be nice to be able to drag and drop snippets from the Snippets palette to the editing palette (like in HomeSite?).

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=237


#41 Add indicators to Navigator view and editor tab for read only files cfeclipse - general 1.4 enhancement 09/21/06

Is there an indicator for the "Navigator" view to indicate that a file is

read-only - similar to the File Explorer view with the red and green dots. Could this also be applied to the tab at the top of the editor window to remind you that this file is read only?

There isn't any indicator in the Navigator view, but we might be able to add an icon to the file tab. Can you add an ehnancement request to the issue tracker on http://cfeclipse.tigris.org

Imported from cfeclipse.tigris.com: http://cfeclipse.tigris.org/issues/show_bug.cgi?id=257


#219 Add multiple mappings to a project cfeclipse - general 1.3.2 enhancement 02/12/07

Need to add multiple mappings to a project (e.g / -> /Project/www/, cfc -> /Project/www/components etc) so that we can resolve CFC's


#279 Ability to bind key shortcuts to snippets snippets 1.4 enhancement 04/18/07

The ability to bind keyboard shortcuts to snippets would be a massive advantage, as compared to the current technique of a generic snippet key-combo.

This is my no-2 most desired feature, as key-bindable snippets enable massively streamlined coding efficiency... The current implementation lacks, in that it is impossible to wrap existing text in a snippet without using the mouse.

I am willing to financially contribute for this feature.

If allowing direct binding is too difficult, a possibly simpler approach could be to bind a key to a snippet dialogue, which displays a list of snippets and allows one to be selected; preferably allowing snippets to be navigated by entering the first few characters of their name.


#154 indent not preserved when replacing selected text with new line cfeclipse - general 1.4 defect 09/27/06

Example:

Say in your code you have a list as such indented with 1 tab:
value1, value2, value3, etc

If you put your cursor right before "value2" and hit ENTER, everything after the cursor is moved down one line and indented 1 tab to match the current indented line.

BUT...

If you select the space character before "value2" and hit ENTER, everything after the selection is moved down one line and the indentation is lost.

The expected behavior is that the indentation would be preserved and the space would be removed.


#160 Comments not recognized by 'problems' in CFC cfeclipse - general 1.4 defect 10/27/06

I have a commented function. Eclipse looks at the </cffunction>---> and reports:

'closing tag '</cffunction>' does not match the current parent item: 'cfcomponent'


#167 CFEclipse generates false error warning for convoluted cfreturn's syntax highlighting 1.4 defect 11/29/06

As an example, this valid single line:

<cfreturn "select dbinfo('sqlca.sqlerrd1') as Id from systables where tabname = '#formatObjectName(arguments.ObjectMetadata?)#'" />

produces a parse error red-squiggle saying "Attribute 'tabname' is not valid"


#170 Case Sensitivity for Case Insensitive Operating Systems cfeclipse - general 1.4 defect 12/01/06

When using the right click action "open/create" files, if the file exists under Windows but the cfinclude template's text does match the precise case it tries to create it. Of course, the creation fails because the file exists. If possible, can the "open/create" ignore case under certain operating systems (or have an option under preferences to ignore case).


#174 Pasting with Quotes in JavaScript Blocks cfeclipse - general 1.4 defect 12/12/06

Place the following code in the editor (note, only occurs within Javascript Tags):

<script language="JavaScript" TYPE="text/javascript">
	function test {
		alert("test")
	}
</script>

Paste over the text "test" with "test2" (including the quotes), you will see that the only text inserted is a quote.

Note: Auto Close Quotes is set to OFF in my IDE, however when I type a quote a second quote is still automatically entered when inside the JavaScript? tags. The above behavior is not present outside of the javascipt tags.


#199 Method selecting in method view cfeclipse - general 1.4 defect 01/31/07

When selecting a method in the method view (double click/Jump to method) you will go to that method in the editor. But when you scroll away and select the same method again nothing happens.


#208 Clean code to remove build warnings cfeclipse - general 1.4 defect 02/02/07

There are a number of build warnings and "Problems" tagged as warnings when you build CFEclipse. Need to remove unrequired imports (where most of these warnings come from) and any compatability errors


#274 Move Template (From snippets) selection to the create new CFML File wizards 1.3.2 enhancement 04/08/07

Cleaning up the wizards, so you can select a template that has been defined in the snippets. If they are .cfm in extension and have been marked as a new page item.

The next page in the wizard (if this is the selection) should be the variables, or a new popup appears.


#334 Resource searching short cut cfeclipse - general None enhancement 07/24/07

I'd like to be able to right-click on a resource (folder, project, etc.) and choose search from the context menu to open up the OS default search feature. This is a la Homesite 5.5.


#179 Preference Panels tidying up preferences 1.4 defect 01/09/07

Need to tidy up the location of some of the items in the preference panels so that they have either a new tab or moved to the correct tab (e.g. use browser tabs needs to move to the browser tab)


neilmiddleton (1 match)

Ticket Summary Component Milestone Type Created
Description
#369 Complete CF8 dictionary cfeclipse - general 1.3.2 defect 12/10/07

Currently the CF8 dictionary is incomplete and some tags and functions are missing new CF8 syntax.

Bring this up to date


sed (3 matches)

Ticket Summary Component Milestone Type Created
Description
#254 CFEclipse properties are shown on every kind of project cfeclipse - general 1.3.2 defect 03/14/07

If i right click on a project in the Eclipse navigator, and I choose "properties", in the "Properties" dialog box I see the items: "CFEclipse Properties" and "CFEMappings". The problem is that I see those items in every kind of project, not only in the CFEclipse project.

I use also PHPEclipse, and with PHPEclipse, the items in the project properties dialog box are shown only for PHPEclipse projects and not for every kind of projects.

Thanks.


#404 Preference editor to set the default CFML language version for new projects preferences 1.3.3 enhancement 05/13/08

The CFML language version is set for each project. This task creates a preference setting that will be the default language version for new projects.


#403 Rework org.cfeclipse.cfml preferences to use recommended API's preferences 1.3.2 task 05/13/08

The preferences are implemented using the pre-Eclipse 3.1 IPreferenceStore API provided by the org.eclipse.jface.preference package. This task will update the preferences implementation to use the recommended Preference interface provided by org.eclipse.core.runtime.preferences.

Also, the code for the preferences pages can be simplified by subclassing FieldEditorPreferencePage? instead of PreferencePage?.


Note: See TracReports for help on using and creating reports.