Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there a way to change the order of context variables after you created them? The only way how I could do it - is to export data and import again. But it is a lot of hassle. Is there an easy way to do it?
The other question - is there a way to create context variables on the project level? I have the same variables for each job (like $_context{DATA_DIR} or $_context{BIN_DIR}) and have to drop the context in each job separately. Is there an easier way to handle this?
$_context{PROJECT_NAME} = 'myProject';
$_context{PROJECT_DIR} = '/tmp';
$_context{PROJECT_FILEPATH} = $_context{PROJECT_DIR}.'/'.$_context{PROJECT_NAME};
1;
I will have to abandon the whole "context" system and use my own script, which is sad, because context looks pretty handy and user-friendly
it just missing this small features that I want.