Tagged Questions

3
votes
2answers
340 views

Eclipse IDE - Background color

As you all probably know, the default is plain white or should I say, glowing-eye-killer-white. I'm looking for a color scheme to make it more eye friendly, does anyone know one? (Yes tried Google ...
3
votes
1answer
339 views

How do I get code coverage of Perl CGI script when executed by Selenium?

I'm using Eclipse EPIC IDE to write some Perl CGI scripts which call some Perl modules that I have also written. The EPIC IDE lets me configure a Perl CGI "run configuration" which runs my CGI ...
3
votes
1answer
467 views

Why does the EPIC eclipse plugin not show any info in “Explain Errors/Warnings”?

I use the "EPIC" plugin to Eclipse for Perl development, but in the "Explain Errors/Warnings" view there's no info at all, even though I have some compilation errors. Do I need to do anything special ...
2
votes
1answer
104 views

Eclipse EPIC Plug-in and auto-completion/content assist on passed complex objects?

SO community, Is there a best practice coding standard on how to consistently get the auto-completion / content assist working on methods of a Perl Module when passed into a method. For example: sub ...
2
votes
2answers
138 views

Unable to view locals in Eclipse + EPIC

I just installed the Perl EPIC plugin for Eclipse 3.7. The debugger itself is working fine and I can step through my code. However I am unable to see any variables. Eclipse is reporting this error in ...
2
votes
1answer
213 views

Why is E-P-I-C unable to detect PadWalker?

I have Eclipse (3.5-32) on my Unix machine. I have installed E-P-I-C updates for the stable 0.5.x and PadWalker (1.5). Since I am a local user with no sudo rights I have installed PadWalker in a ...
2
votes
2answers
799 views

How can I run Perl test cases in Eclipse using EPIC?

I am using eclipse EPIC (Perl plug-in) to run my Perl scripts. The scripts are running fine. but I want group my scripts and run together at a go. How can I do this? The scripts I am running are test ...
2
votes
4answers
1k views

Are there any decent Perl plugins for Eclipse?

I'm using EPIC, but it seems to have some drawbacks. Are there any other Perl plugins for Eclipse?
1
vote
2answers
313 views

Why does my Perl unit test fail in EPIC but work in the debugger?

Has anyone ever experienced a unit test that fails and when they tried to debug it to find out where the failure was occurring, the unit test succeeds when running the code in the debugger? I'm ...
1
vote
3answers
1k views

How do I enable all EPIC projects to use Perl's @INC?

I have a set of intra-dependent Perl projects and would like to use EPIC to work on them. I created one Epic (Eclipse) project for each of my projects and I set dependencies among them using ...
0
votes
1answer
34 views

How to operate the Perl debugger in Eclipse/EPIC

I have installed ActivePerl, and I would like to debug a Perl program using Eclipse and EPIC. I have installed Eclipse and EPIC, they look OK. (It's doing basic syntax checking on an example Perl ...
0
votes
0answers
88 views

How do I “collapse all” folds using Perl EPIC

I see there's an option to set the hot keys for "Collapse All" in the Eclipse Preferences, but that doesn't seem to do anything. The only way I can get code to fold, other than manually, is by ...
0
votes
2answers
120 views

Eclipse + Perl: Why can't I see output from warn?

I'm new in Eclipse version Helios. Perl script: use strict; warn "Not work\n"; print STDERR "Yes it work" In the console view, I can't see the warn output. How can I fix it?
0
votes
0answers
59 views

New to IDE's — Eclipse — Have master script with many calls to sub-scripts, can IDE give me flat display of all?

Have master script with many calls to sub-scripts, can the IDE give me a flat display of all the code from the calls in the master file? This is using Perl with EPIC on Eclipse Classic on Windows. ...
0
votes
1answer
1k views

How do I get Perl::Critic to work with E.P.I.C and eclipse?

I'm running eclipse Galileo with EPIC 0.5.46 and ActiveState ActivePerl 5.10.0, on WinXP SP3. I just downloaded Perl::Critic using the package manager, and integrated it to eclipse using the ...
0
votes
1answer
133 views

Excluding code sections from EPIC/tidyperl source formatting

I in a large codebase of an application written in perl there is a lot of HTML and JS written inline in the perl file. $html_str = qq^ <A LOT OF HTML> ^; All the code development in done ...