Questions tagged [epic]

EPIC - Eclipse Perl Plugin (IDE)

EPIC - Perl Editor and IDE for Eclipse

EPIC is an open source Perl IDE (including editor and debugger) based on the Eclipse platform, compatible with Windows, Linux and Mac OS X. Whether you are into CGI scripting or full-fledged Perl projects with hundreds of modules, EPIC is the most feature-rich and extensible free Perl IDE available today, thanks to a seamless integration with all the major features and GUI conventions of Eclipse. (Homepage)

119 questions
2
votes
1 answer

Perl not executing command when in debugger or as a Win32::Daemon

Synopsis I execute a shell command from Perl and when run from the command line it works, but when run in the debugger it does not work. Running it as a Win32::Daemon shows the same behaviour. The Source Code I execute a command either with…
javex
  • 7,198
  • 7
  • 41
  • 60
2
votes
1 answer

perl projects not running eclipse

I am using Ubuntu 12.04. I have installed epic on my Eclipse as a plugin (the latest 0.6 version). Now the installation seems to be fine. But whenever I try and run the project using the run button at the top, it does not run. Rather I get a…
user590849
  • 11,655
  • 27
  • 84
  • 125
2
votes
1 answer

Perl EPIC on Eclipse: "\Perl\Directory is not a valid location for linked resources"

I am trying to debug a Perl script under EPIC on Eclipse (on Windows 7). When stepping along in the debugger, when it reaches the place where is has to jump to another package (called "Utilities.pm") due to a subroutine call, it gives the following…
Helen Craigman
  • 1,443
  • 3
  • 16
  • 25
1
vote
1 answer

Scriptrunner Create issue and assign to existing epic

While creating a new issue using scriptrunner, I would like to assign it an existing epic. it seems the issue.setCustomFieldValue(epicLinkCustomField) is not working. any help would be greatly appreciated. everything else works fine, im able to set…
Mikeshift
  • 45
  • 5
1
vote
1 answer

Epic on FHIR - PHP-JWT

I am trying to get the jwt token, but i am getting errors everytime with everything that i try. Below are th things that i have tried. I do get the jwt-token without the package but when i use the jwt.io to check the signature verification,it fails…
ternary
  • 41
  • 4
1
vote
1 answer

Azure DevOps Work items board, cant show nesting / hierarchy

I am new to DevOps and Scrum/Agile. My question is about nesting of parent-child work items. I am on Azure DevOps. I am on the Work items board (not "Boards" or "Backlogs" or "Sprints") I have added two Epics. I have added a Feature and made it a…
user1210140
  • 47
  • 2
  • 7
1
vote
1 answer

The tree structure of epics and features in TFS has been lost after publish from Excel Add in

I use excel for reporting from TFS, but one day after publishing, the structure of epics and features was destroyed and now all user stories belong to an incorrect feature, resulting in a mess. I think the problem was that I ordered the list before…
1
vote
0 answers

How do I create an eclipse Run Configuration that applies to all script files that match a pattern?

I am using eclipse with Perl EPIC for Perl scripting. It appears I have to create an individual Run Configuration for each script file I want to run, which seems overkill: Is there a way to create a Run Configuration that is always applied to…
skeetastax
  • 1,016
  • 8
  • 18
1
vote
1 answer

Is it possible to take selector from reselect in epics?

I'm using react-observable and reselect in my React project. All I want to achieve is something like that: // SELECTORS export const getItem = createSelector(getItemsState, state => state.item); and now in Epics, I want to make something like…
Restir
  • 129
  • 4
  • 12
1
vote
0 answers

Store downloaded gzip for future use by React JS

I was trying to write a React JS code that would download gzip - file from server once per day, and if the file was already downloaded today - use the downloaded one. The code for downloading files was pretty easy and it works. import FileSaver from…
E F
  • 474
  • 3
  • 15
1
vote
1 answer

Epic FHIR AppOrchard OAuth

How can I get Auth Token from AppOrchard? Is there an easier/better method than…
1
vote
3 answers

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?
Alex SH
  • 11
  • 1
1
vote
0 answers

Create react redux actions in typescript using generics

I was trying to create a common function for generating actions inside redux. I used typescript generics to restrict the type. Please see the following code and tell me if it is correct or not. Right now, it is throwing an error on the payload The…
1
vote
1 answer

Azure DevOps project setup - 1 team - 1 board 3 projects is this possible?

I am working with azure dev ops and I am trying to organize 3 different projects with the same team with one board. Is this possible in Azure DevOps? Because if I use a planning board for each project (but the people are the same in each project)…
bommel
  • 11
  • 1
1
vote
2 answers

Testing redux-observable Epic with debounce operator

Having the following redux-observable epic: export const mouseEventEpic = (action$, store) => action$ ::filter(action => action.type === MOUSE_OUT || action.type === MOUSE_OVER) ::debounceTime(200) ::map(action =>…
CharlieH
  • 21
  • 4