0
votes
1answer
26 views
Drupal module nested menu items
In implementing hook_menu for a module, I am trying to put some items into a submenu.
So far I have something like this
$items['MyModule'] = array(
//...
'page callback' => …
2
votes
3answers
100 views
How can I prevent a Python module from importing itself?
For instance, I want to make a sql alchemy plugin for another project. And I want to name that module sqlalchemy.py. The problem with this is that it prevents me from importing sqlalchemy:
…
0
votes
1answer
448 views
Components in module disappear when browser is resized (Flex 3)
We have this Flex app built on Builder 3 and we're using SuperTabNavigator from FlexLib to have some modules displayed. The thing is, whenever the user resizes the browser window all the contents on …
0
votes
2answers
74 views
Ruby Equivalent of C# ‘using’ Statement
I've been getting into Ruby over the past few months, but one thing that I haven't figured out yet is what the Ruby equivalent of C#'s (and other languages) using statement is.
I have been using the …
1
vote
3answers
84 views
How to refer to the local module in Python?
Let's say we have a module m:
var = None
def get_var():
return var
def set_var(v):
var = v
This will not work as expected, because set_var() will not store v in the module-wide var. It …
2
votes
3answers
72 views
How to make a modulino in Ruby ?
I'm trying to include the unit tests for a module in the same source file as the module itself, following the Perl modulino model.
#! /usr/bin/env ruby
require 'test/unit'
module Modulino
def …
0
votes
1answer
16 views
DotNetNuke Managing filtered words in Forum Module
Is there a way to limit the Filtered word match in the dotnetnuke forum to whole words only. For example, if the word 'bum' is a filtered word replaced by a '~' then the word 'bumble bee' is also …
3
votes
4answers
82 views
What concerns should I have when installing additional Perl modules on a server?
I would like to ask my system administrator to install various Perl modules such as Moose and Data::Alias. The system is Red Hat Enterprise Linux 5, running Perl 5.8.8. The only problem that I can …
0
votes
7answers
520 views
How do I check whether a Perl module is installed?
I'm writing a small Perl script that depends on some modules that might be available, so during the installation I would have to check if everythings there. I could just write use some::module and …
1
vote
2answers
26 views
edit/save/refresh gwt modules
Hi,
One of the best features of gwt is the edit/save/refresh development cycle. This has worked great when working with only one module. But what about when the application is broken down into …
1
vote
3answers
38 views
Magento - locate specific core files
Hiya,
I am familiar with theming and using template hints in the Magento back office to locate .phtml files.
What I am not really familiar with are the core files such as …
-4
votes
3answers
224 views
What are the top 25 core Python programming definitions? [closed]
REPHRASED
What are the most concise definitions for the key Python concepts a newbie will encounter? Think of this as linguistic 'code golf'. Feel free to offer alternatives to what you see and I will …
1
vote
4answers
855 views
asp.net, url rewrite module and web.config
Hi,
i'm using ASP.net with .NET 3.5 on IIS7 (Vista) with the URL Rewrite Module from Microsoft.
This means, that i have a
<system.webServer>
<rewrite>...</rewrite>
...
…
6
votes
6answers
535 views
How do I find which file Perl loaded when I use a module?
in Perl, when I do use < module name> < ver>, the system finds the .pm for the library somewhere in the @INC path.
Is there a reliable way to which file was actually loaded?
0
votes
2answers
26 views
how to monitor the syslog(printk) in a LKM
deal all,
i am a newbie for writing Linux Kernel Module.
i used printk function in linux kernel source code (2.4.29) for debugging and display messages.
now, i have to read all the messages i …
