0
votes
2answers
23 views
Test modules with Test::Unit
I encountered a problem when trying to test a module with Test::Unit. What I used to do is this:
my_module.rb:
class MyModule
def my_func
5 # return some value
end
end
…
0
votes
1answer
11 views
Drupal node.save and JSONP
I am having an issue with call Drupal node.save using MooTool's JSONP. Here is an example.
Here is my request:
callback Request.JSONP.request_map.request_1
method node.save
sessi …
1
vote
3answers
51 views
Drupal section accessible by role.
I need to limit access of content on Drupal site based on the Drupal User's Role.
http://site.com/managers/intro
http://site.com/managers/reviews
http://site.com/managers/up-fo …
1
vote
1answer
21 views
Alternative for View Filter Block for Drupal 6?
I am looking for a way to get the same functionality as "Views Filter Block" ( see http://drupal.org/project/views%5Ffilterblock) but for Drupal 6. Taken from the description:
…
2
votes
4answers
125 views
Why doesn’t my Perl script find my module even after I adjust @INC with FindBin?
I want to be able to use a module kept in the lib directory of my source code repository, and I want the only prerequisite for a developer to use the scripts that I'm writing is to …
3
votes
5answers
141 views
Can a python module have a __repr__?
Can a python module have a __repr__? The idea would be to do something like:
import mymodule
print mymodule
EDIT: precision: I mean a user-defined repr!
2
votes
3answers
78 views
How to find where a function was imported from in Python?
I have a Python module with a function in it:
== bar.py ==
def foo(): pass
== EOF ==
And then I import it into the global namespace like so:
from bar import *
So now th …
0
votes
2answers
54 views
Strange behavior with python import
So I am trying to import a module "foo" that contains directories "bar" and "wiz". "bar" contains python files a.py, b.py, and c.py. "wiz" contains python files x.py, y.py and z. …
-1
votes
3answers
54 views
Can someone fix this python problem for me? (cannot find a module…)
I installed Yahoo BOSS (it's a python installation that allows you to use their search features). I followed everything perfectly. However, when I run the example, to confirm tha …
0
votes
1answer
77 views
How can I make Module::Build install both X and X::Y?
If I have a distribution with X and X::Y also in it, how do I make Module::Build install both the modules? I have put X.pm in lib, written a file Build.PL with the line
my $build …
1
vote
0answers
40 views
Joomla module works locally but displays nothing when hosted
Hello, I am new to joomla and I need to work on a joomla website for a school project. I modified an existing module to make it display featured projects and it does that flawlessl …
0
votes
2answers
43 views
Wiring two modules in Verilog
I have written two modules DLatch and RSLatch and i want to write verilog code to join those two to match the diagram here: (
http://img130.imageshack.us/i/mod.tif/
However i d …
0
votes
1answer
58 views
OCaml modules and performance
Some functions are really easy to implement in OCaml (for example, map from a list) but you may use the map of the OCaml library: List.map
However, we can wonder which code will b …
3
votes
1answer
25 views
How do you organise your NInject modules?
NInject's module architecture seems useful but I'm worried that it is going to get in a bit of a mess.
How do you organise your modules? Which assembly do you keep them in and ho …
5
votes
3answers
99 views
Ruby: class C includes module M; including module N in M does not affect C. What gives?
More verbosely, I have a module Narf, which provides essential features to a range of classes. Specifically, I want to affect all classes that inherit Enumerable. So I include Narf …
