Questions tagged [module-management]

6 questions
6
votes
3 answers

Is it okay to use modules from within subroutines?

Recently I start playing with OO Perl and I've been creating quite a bunch of new objects for a new project that I'm working on. As I'm unfamilliar with any best practice regarding OO Perl and we're kind in a tight rush to get it done :P I'm putting…
melaos
  • 8,386
  • 4
  • 56
  • 93
2
votes
5 answers

How can I efficiently manage Perl modules for code reuse?

My company develop web apps using combination of mod_perl, axkit and apache. We have tons of Perl modules, javascripts, etc, all in unix operating system. Whenever I need to write a new function, I try to do some code reuse, but the thing is all the…
melaos
  • 8,386
  • 4
  • 56
  • 93
1
vote
3 answers

What's the best way to have two modules which use functions from one another in Perl?

Unfortunately, I'm a totally noob when it comes to creating packages, exporting, etc in Perl. I tried reading some of the modules and often found myself dozing off from the long chapters. It would be helpful if I can find what I need to understand…
melaos
  • 8,386
  • 4
  • 56
  • 93
1
vote
1 answer

Best python module manager for windows

I always have to search google for some EXE or MSI to install module in python on Windows Sometimes there are precompiled modules only for win32 but not amd64 I am debating to use ActiveState Python or install some module manager. Could you advice…
Max
  • 6,286
  • 5
  • 44
  • 86
0
votes
1 answer

Alfresco amp to war: Unable to load module details from property file

This is like the 18th time I have this error. Somehow I always manage to fix it but this time I cant fix it.. When I try the following command in CMD to load my AMP file into my alfresco.war (with the module management tool) I get the following…
RobinHo
  • 565
  • 1
  • 9
  • 24
0
votes
1 answer

ZF2 load service config from module

I am still struggling in instantiating a service from a ZF2 module outside of Zend Framework (in a blank .php). I want to achieve: Instantiate + invoke a ZF2 service method from outside ZF by the use of the ServiceManager and possibly DI. What I…