Search found 6 matches

by alexbevi
Wed Nov 06, 2013 9:16 pm
Forum: LEGACY scripting
Topic: Custom Configurators
Replies: 2
Views: 3641

Custom Configurators

Is it possible to write our own configurators for Switch? For example, if we wanted to wrap something like curl, but filter results by response code?



I know you can sort of do this using the scripting tools, but if we want to build some reusable components.
by alexbevi
Fri Sep 13, 2013 5:28 pm
Forum: LEGACY scripting
Topic: Query an API for XML Job Ticket
Replies: 4
Views: 8103

Query an API for XML Job Ticket

A little late to the party here, but all the APIs we work with we tend to use either curl or wget in a javascript script (via Process.execute), then store the results (depending on the desired action).
by alexbevi
Thu Apr 25, 2013 5:32 pm
Forum: Flows
Topic: [suggestion] use a different icon for auto-managed folders
Replies: 6
Views: 7983

[suggestion] use a different icon for auto-managed folders

Since some flows can get extremely large and have multiple folders (absolute and auto-managed), it would be useful if you could visually differentiate between the two.



If you have a feature request section, I'd be happy to submit it there instead ;)
by alexbevi
Tue Feb 19, 2013 3:38 pm
Forum: LEGACY scripting
Topic: How to include external scripts
Replies: 3
Views: 5776

How to include external scripts

Thanks for the feedback Freddy.



I've been using the global data approach to accomplish the equivalent of 'Environment Variables', but what I really want is an attachable source file that would allow for common script functions to be defined.
by alexbevi
Thu Feb 14, 2013 7:11 pm
Forum: LEGACY scripting
Topic: How to include external scripts
Replies: 3
Views: 5776

How to include external scripts

In case any Enfocus developers read this, there's an interesting article at https://github.com/amdjs/amdjs-api/wiki/AMD that may help facilitate this (and similar) requests in the future.
by alexbevi
Thu Feb 14, 2013 6:54 pm
Forum: LEGACY scripting
Topic: How to include external scripts
Replies: 3
Views: 5776

How to include external scripts

In a lot of scripts that require interacting with external systems, I'm forced to hardcode URLs, connection information, usernames, passwords ... etc. Is there a way to maintain a single script that can be included in other scripts? This way if I need to update a constant, I do it once and know it w...