active questions tagged module - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T14:34:19Zhttp://stackoverflow.com/feeds/tag/modulehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1844109/drupal-module-nested-menu-items0Drupal module nested menu itemsDan2009-12-04T00:33:46Z2009-12-04T23:36:01Z
<p>In implementing <a href="http://api.drupal.org/api/function/hook%5Fmenu" rel="nofollow">hook_menu</a> for a module, I am trying to put some items into a submenu.</p>
<p>So far I have something like this</p>
<pre><code>$items['MyModule'] = array(
//...
'page callback' => 'system_admin_menu_block_page',
'file' => 'system.admin.inc',
'file path' => drupal_get_path('module','system'),
);
$items['MyModule/MenuItem1'] = array(
//...
);
$items['MyModule/SubMenu'] = array(
//...
'page callback' => 'system_admin_menu_block_page',
'file' => 'system.admin.inc',
'file path' => drupal_get_path('module','system'),
);
$items['MyModule/SubMenu/SubMenuItem1'] = array(
//...
);
</code></pre>
<p>I expect the <code>SubMenu</code> to appear as, well, a submenu to the <code>MyModule</code> menu, and for the <code>SubMenuItems</code> to appear under that submenu. This is the default behaviour described at the <a href="http://api.drupal.org/api/group/menu" rel="nofollow">Drupal API</a> documentation.</p>
<ul>
<li>MyModule
<ul>
<li>MenuItem1</li>
<li>SubMenu
<ul>
<li>SubMenuItem1</li>
</ul></li>
</ul></li>
</ul>
<p>However, all items appear under the <code>MyModule</code> menu.</p>
<ul>
<li>MyModule
<ul>
<li>MenuItem1</li>
<li>SubMenuItem1</li>
<li>SubMenu</li>
</ul></li>
</ul>
<p>What am I doing wrong?</p>
<p>*EDIT: A typo (which I have fixed) caused <code>SubMenu</code> to be a separate element rather than a child element of <code>MyModule</code>. I still don't understand why <code>SubMenuItem1</code> does not render under the <code>SubMenu</code>, though.</p>
http://stackoverflow.com/questions/1848268/how-can-i-prevent-a-python-module-from-importing-itself2How can I prevent a Python module from importing itself?Jason Baker2009-12-04T16:54:37Z2009-12-04T19:37:47Z
<p>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 <code>sqlalchemy</code>:</p>
<pre><code>#sqlalchemy.py
import sqlalchemy
</code></pre>
<p>This will make the module import itself. I've tried this, but it doesn't seem to work:</p>
<pre><code>import sys
#Remove the current directory from the front of sys.path
if not sys.path[0]:
sys.path.pop(0)
import sqlalchemy
</code></pre>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/865702/components-in-module-disappear-when-browser-is-resized-flex-30Components in module disappear when browser is resized (Flex 3)lporto2009-05-14T20:51:27Z2009-12-03T07:00:03Z
<p>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 any tabs open simply disappear and there's no way to get them back. This only happens the first time, so if you close these 'broken' tabs and reopen them, you can resize all you want, but you still lost all you were doing in them and this is unacceptable. I've done some testing and found the module in that tab doesn't dispatch the resize events when this happens. It's dispatched when it opens (everything is set to 100% to fit the browser window, so it resizes on startup) and every other time you resize it without 'breaking' it. It gets weirder. I've also found that resizing works perfectly as long as you resize it to a size larger than the original (i.e. you open it in a browser window that is restored and then maximized), but even after doing that, if you change its size back to something even a pixel smaller than the original, the module just disappears. Everything else remains in perfect working conditions: any components outside tabs and the tabs itself work, but (summing up) anything within any tab open at the moment you first resize the browser window to a size smaller than the original just disappears.</p>
<p>I understand that this is a weird problem and hope some of you might be able to help me. Feel free to ask any questions if anything wasn't clear.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1837738/ruby-equivalent-of-c-using-statement0Ruby Equivalent of C# 'using' StatementJason Whitehorn2009-12-03T04:55:38Z2009-12-03T05:34:06Z
<p>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) <code>using</code> statement is.</p>
<p>I have been using the <code>require</code> statement to declare my dependencies on Gems, but I am getting lazy and would prefer to not fully qualify my frequently used class names with their module (namespace) name.</p>
<p>Surely this is possible, right? I must not be using the right terminology as Google hasn't given me anything useful.</p>
http://stackoverflow.com/questions/1832626/how-to-refer-to-the-local-module-in-python1How to refer to the local module in Python?Tim Molendijk2009-12-02T12:28:54Z2009-12-02T14:42:21Z
<p>Let's say we have a module <code>m</code>:</p>
<pre><code>var = None
def get_var():
return var
def set_var(v):
var = v
</code></pre>
<p>This will not work as expected, because <code>set_var()</code> will not store <code>v</code> in the module-wide <code>var</code>. It will create a local variable <code>var</code> instead.</p>
<p>So I need a way of referring the module <code>m</code> from within <code>set_var()</code>, which itself is a member of module <code>m</code>. How should I do this?</p>
http://stackoverflow.com/questions/1827148/how-to-make-a-modulino-in-ruby2How to make a modulino in Ruby ? philippe 2009-12-01T16:02:33Z2009-12-02T12:28:15Z
<p>I'm trying to include the unit tests for a module in the same source file as the module itself, following the <a href="http://www252.pair.com/comdog/mastering%5Fperl/Chapters/18.modulinos.html" rel="nofollow">Perl modulino</a> model.</p>
<pre><code>#! /usr/bin/env ruby
require 'test/unit'
module Modulino
def modulino_function
return 0
end
end
class ModulinoTest < Test::Unit::TestCase
include Modulino
def test_modulino_function
assert_equal(0, modulino_function)
end
end
</code></pre>
<p>Now, I can run the unit-tests executing this source file.</p>
<p><strong>But</strong>, they are also run when I require/load them from another script. How can this be avoided ? </p>
<p>Is there a more idiomatic way to achieve this with Ruby, unless this practice is discouraged ?</p>
http://stackoverflow.com/questions/1798415/dotnetnuke-managing-filtered-words-in-forum-module0DotNetNuke Managing filtered words in Forum Moduleunknown (google)2009-11-25T17:07:16Z2009-12-02T05:06:24Z
<p>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 affected becoming '~ble bee'</p>
<p>I'd like to limit to a full word match rather than a partial. Any help is most appreciated.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1826578/what-concerns-should-i-have-when-installing-additional-perl-modules-on-a-server3What concerns should I have when installing additional Perl modules on a server?molecules2009-12-01T14:35:47Z2009-12-01T21:35:26Z
<p>I would like to ask my system administrator to install various Perl modules such as <code>Moose</code> and <code>Data::Alias</code>. The system is Red Hat Enterprise Linux 5, running Perl 5.8.8. The only problem that I can think of is that some already-installed modules might need to be upgraded and thus run the risk of breaking something. What else should I be concerned about?</p>
http://stackoverflow.com/questions/802107/how-do-i-check-whether-a-perl-module-is-installed0How do I check whether a Perl module is installed?tstenner2009-04-29T12:21:59Z2009-12-01T16:26:21Z
<p>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 <code>use some::module</code> and see if an error comes up, but a short message like "You need to install some::module" would be more helpful for endusers.</p>
<p>I also could just search every directory in <code>@INC</code>, but as it's Perl, there has to be an easier way.</p>
http://stackoverflow.com/questions/1799269/edit-save-refresh-gwt-modules1edit/save/refresh gwt modulesmohn33102009-11-25T19:08:59Z2009-11-30T19:49:49Z
<p>Hi,</p>
<p>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 multiple modules? </p>
<p>More specifically, we've moved towards a structure where we have a main ui module with an entry point and multiple additional modules which "hook" into it. So the main ui module inherits these other modules (libraries). The GWT Shell is always launched with the main ui, but it doesn't reflect the other module changes on refresh. We have to rebuild and relaunch the shell to see it.</p>
<p>As gwt is being used to build larger and larger apps, the architecture will tend towards breaking it down into smaller modules rather than one monolithic app. Any suggestions to overcome this limitation?</p>
<p>Thanks much,
Mohnish</p>
http://stackoverflow.com/questions/1804582/magento-locate-specific-core-files1Magento - locate specific core filesLyndsey2009-11-26T16:18:24Z2009-11-30T12:23:22Z
<p>Hiya,</p>
<p>I am familiar with theming and using template hints in the Magento back office to locate .phtml files.</p>
<p>What I am not really familiar with are the core files such as app/code/core/Mage/Catalog/Model</p>
<p>What I need to do is override a core file like I would a core phtml file by copying it to 'my theme'.</p>
<p>I basically want to amend some labels which appear on the order summary page of the Magento checkout process - domain.com/checkout/cart/</p>
<p>I followed the trail to the phtml files using template hints. Within the app/design/frontend/default/mytheme/template/checkout/cart I found the code</p>
<p>renderTotals(); ?></p>
<p>Now I managed, by accident, to stumble upon two of the files I wanted to change:</p>
<p>/httpdocs/app/code/local/Mage/Sales/Model/Quote/Address/Total/Grand.php
/httpdocs/app/code/local/Mage/Sales/Model/Quote/Address/Total/Shipping.php</p>
<p>I made local copies of these files (<a href="http://www.magentocommerce.com/wiki/how%5Fto/how%5Fto%5Fcreate%5Fa%5Flocal%5Fcopy%5Fof%5Fapp%5Fcode%5Fcore%5Fmage" rel="nofollow">http://www.magentocommerce.com/wiki/how%5Fto/how%5Fto%5Fcreate%5Fa%5Flocal%5Fcopy%5Fof%5Fapp%5Fcode%5Fcore%5Fmage</a>) to override the default labels, like I would if I was overriding a template file.</p>
<p>My question is, how can you locate core files which pertain to the 'stuff' you want to change, located in function calls such as renderTotals(); ?> in the phtml files?</p>
<p>Not being able to pinpoint stuff like I can with template hints is slowing me down, and I am struggling to find a solution as I am not up on all the vocab surrounding Magento yet.</p>
<p>Hope this makes sense and thanks in advance!</p>
http://stackoverflow.com/questions/1816229/what-are-the-top-25-core-python-programming-definitions-4What are the top 25 core Python programming definitions? [closed]galaxywatcher2009-11-29T18:04:28Z2009-11-30T05:17:53Z
<p><strong>REPHRASED</strong>
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 maintain the list accordingly. Many of these terms are applicable to other programming languages. However, that fact does not preclude the term's importance to Python. I am not looking for exclusive terms for Python. But the top 25 core terms and definitions.</p>
<ul>
<li>Function: A named sequence of statements that performs a computation.</li>
<li>Argument: The expression in parentheses of the function.</li>
<li>Parameter: A name used inside a function to refer to the value passed as an argument.</li>
<li>Module: A file that contains a collection of related functions and other definitions. </li>
<li>Object: Any data with state (attributes or value) and defined behavior (methods). Also the ultimate base class of any new-style class.</li>
<li>Class: A template for creating user-defined objects. Class definitions normally contain method definitions which operate on instances of the class.</li>
<li>Script: A file that stores code and uses the interpreter to execute the contents of the file. </li>
<li>Program: A sequence of instructions that specifies how to perform a computation.</li>
<li>Syntax: Refers to the structure of a program and the rules about that structure.</li>
<li>Variable: A name that refers to a value.</li>
<li>Operators: Special symbols that represent computations like addition and multiplication. </li>
<li>Operands: The values that to which an operator is applied.</li>
<li>Expression: A combination of values, variables, and operators. </li>
<li>Assignment: A statement that assigns a value to a variable. </li>
<li>Lambdas: Functions that can only have expressions.</li>
</ul>
http://stackoverflow.com/questions/363231/asp-net-url-rewrite-module-and-web-config1asp.net, url rewrite module and web.configChristoph2008-12-12T16:20:08Z2009-11-28T19:41:34Z
<p>Hi,</p>
<p>i'm using ASP.net with .NET 3.5 on IIS7 (Vista) with the URL Rewrite Module from Microsoft.</p>
<p>This means, that i have a </p>
<pre><code><system.webServer>
<rewrite>...</rewrite>
...
</system.webServer>
</code></pre>
<p>section within the web.config, but i get a warning, that within the system.webServer the element "rewrite" is not allowed.</p>
<p>How can i configure my system to allow (and maybe even have Intellisense) on the rewrite-part of the web.config?</p>
<p>Thank you
Christoph</p>
http://stackoverflow.com/questions/341484/how-do-i-find-which-file-perl-loaded-when-i-use-a-module6How do I find which file Perl loaded when I use a module?mmccoo2008-12-04T17:42:35Z2009-11-25T23:08:58Z
<p>in Perl, when I do use < module name> < ver>, the system finds the .pm for the library somewhere in the @INC path.</p>
<p>Is there a reliable way to which file was actually loaded?</p>
http://stackoverflow.com/questions/1783630/how-to-monitor-the-syslogprintk-in-a-lkm0how to monitor the syslog(printk) in a LKMdouglas2009-11-23T14:57:58Z2009-11-25T06:49:26Z
<p>deal all, </p>
<p>i am a newbie for writing Linux Kernel Module.</p>
<p>i used printk function in linux kernel source code (2.4.29) for debugging and display messages.</p>
<p>now, i have to read all the messages i added via httpd.</p>
<p>i tried to write the messages into a file instead of printk function, so i can read the file directly.</p>
<p>but it's not work very well.</p>
<p>so, i have a stupid question...</p>
<p>is it possible to write a LKM to monitor the syslog and rewrite into another file??</p>
<p>i mean is that possible to let a LKM the aware the messages when each time the linux kernel execute "printk"??</p>
<p>thanks a lot</p>
http://stackoverflow.com/questions/1727676/joomla-module-works-locally-but-displays-nothing-when-hosted1Joomla module works locally but displays nothing when hostedVinnie2009-11-13T07:23:04Z2009-11-24T21:03:41Z
<p>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 flawlessly when I test the site locally. However, when I uploaded my files to the hosted copy of the website, the module will load but does not display anything. It just loads the title and the area for the php output but there is nothing returned by the script. Why would this be happening? I have joomla mostly figured out but I'm stumped when it comes to this problem.</p>
<p>As far as I can tell, all files related to this module have been copied over successfully and it is setup properly in the module manager. I turned on debugging mode on the hosted copy and got this message when trying to load another page with this module on it:</p>
<blockquote>
<p>Parse error: syntax error, unexpected
T_STRING in
/home/content/s/r/s/srsgdmnet/html/components/com_rbids/rbids.html.php
on line 1</p>
</blockquote>
<p>I looked at the file and I don't have a clue what it's talking about. Line one is just "<code><?php</code>" which is fine. Is it just saying line 1 but actually referring to a problem elsewhere? This file is part of a reverse auctions component that my module interacts with. I didn't modify the code in that file with the exception of using a regular expression (search using "\n\s*(\n)", replace with "\n") to remove excessive amounts of whitespace via the replace command in Netbeans. This cut roughly 3200 lines from the file, making it much easier to navigate. I assume this did not alter anything in terms of code because it still works fine when used locally.</p>
<p>I modified my local configuration.php file to use the same database as the hosted copy to see if it was a database issue but it still worked fine so that rules that out. The php.ini files are the same on both copies with the exception of the local one having the Zend stuff commented out so I could use Xdebug (made this change after the problem occurred in an attempt to locate it). I have stepped through the code with Xdebug and haven't been able to track the issue down so I'm thinking it's a configuration problem.</p>
<p>My local copy also does not load certain modules (main menu, for one) and I can't navigate to some of the other pages, not sure if that is related. The code is the same for both copies yet each one has different results. Am I skipping vital steps for migrating the code?</p>
<p>I am using Joomla version 1.5.9. Please help!</p>
http://stackoverflow.com/questions/1791350/how-do-you-assert-an-exception-from-another-ruby-module-is-thrown-using-assert3how do you assert an exception from another ruby module is thrown? (using assert_throws)cartoonfox2009-11-24T16:47:58Z2009-11-24T17:08:01Z
<p>I'm trying to write code like this:</p>
<pre><code>assert_throws(:ExtractionFailed) { unit.extract_from('5 x 2005')}
</code></pre>
<p><code>ExtractionFailed</code> is a trivial subclass of <code>Exception</code>, and under test/unit, I'm trying to assert that it is thrown when I call unit.extract_from(... bad data...) </p>
<p>I've moved <code>ExtractionFailed</code> into the SemanticText module, so now test/unit says:</p>
<pre><code><:ExtractionFailed> expected to be thrown but
<:"SemanticText::ExtractionFailed"> was thrown.
</code></pre>
<p>I tried writing assert_throws(:SemanticText::ExtractionFailed) {...} but I got the rather confusing message: <code>TypeError: SemanticText is not a class/module</code></p>
<p>I can make it work by doing the following (although it seems like a hack):</p>
<pre><code> assert_throws(SemanticText::ExtractionFailed.to_s.to_sym) { unit.extract_from('5 x 2005')}
</code></pre>
<p>So what's the right way to say this assertion in ruby?</p>
http://stackoverflow.com/questions/1366067/how-do-i-use-perl-modules-from-their-distribution-directory1How do I use Perl modules from their distribution directory?biznez2009-09-02T06:13:04Z2009-11-24T16:55:45Z
<p>Assume I downloaded <code>Date::Calc</code> from <a href="http://guest.engelschall.com/~sb/download/" rel="nofollow">http://guest.engelschall.com/~sb/download/</a>.</p>
<p>Now, I have a script, <code>xxx.pl</code>, which resides in the same directory as the untar-ed "thing" that I downloaded from the link above
When untar-ed, it creates a "Date-Calc-5.6" folder with tons of stuff.</p>
<p>How do I include <code>Date::Calc</code> in <code>xxx.pl</code>? (I keep getting "Can't locate Date/Calc.pm in @INC" errors)</p>
http://stackoverflow.com/questions/487971/is-there-a-standard-way-to-list-names-of-python-modules-in-a-package3Is there a standard way to list names of Python modules in a package?DNS2009-01-28T15:11:32Z2009-11-24T15:00:43Z
<p>Is there a straightforward way to list the names of all modules in a package, without using <code>__all__</code>?</p>
<p>For example, given this package:</p>
<pre><code>/testpkg
/testpkg/__init__.py
/testpkg/modulea.py
/testpkg/moduleb.py
</code></pre>
<p>I'm wondering if there is a standard or built-in way to do something like this:</p>
<pre><code>>>> package_contents("testpkg")
['modulea', 'moduleb']
</code></pre>
<p>The manual approach would be to iterate through the module search paths in order to find the package's directory. One could then list all the files in that directory, filter out the uniquely-named py/pyc/pyo files, strip the extensions, and return that list. But this seems like a fair amount of work for something the module import mechanism is already doing internally. Is that functionality exposed anywhere?</p>
http://stackoverflow.com/questions/1777838/module-import-path1Module import pathNimbuz2009-11-22T04:45:40Z2009-11-22T08:08:08Z
<p>I'm unable to test-run a cssparser that I'd like to use.</p>
<p><strong>test.py</strong>:</p>
<pre><code>from css.parse import parse
data = """
em {
padding: 2px;
margin: 1em;
border-width: medium;
border-style: dashed;
line-height: 2.4em;
}
p { color: red; font-size: 12pt }
p:first-letter { color: green; font-size: 200% }
p:first-line { color: blue }"""
for rule in parse(data):
print (rule)
</code></pre>
<p>..gives an <strong>error</strong>: </p>
<pre><code>Traceback (most recent call last):
method <module> in test.py at line 1
from css.parse import parse
method <module> in test.py at line 6
from . import css, csslex, cssyacc
method <module> in test.py at line 8
from . import serialize
method <module> in test.py at line 6
from . import css
ImportError: cannot import name css
</code></pre>
<p><strong>Directory structure</strong> (/Users/nimbuz/Documents/python31):</p>
<pre><code>/Users/nimbuz/Documents/python31/**csspy**/
|
+-- css/ (*has __init__.py*)
|
+-- uri/ (*has __init__.py*)
|
+-- test.py
</code></pre>
<p><strong>print(sys.path)</strong> shows:</p>
<pre><code>['/Users/nimbuz/Documents/python31/csspy', '/Library/Frameworks/Python.framework/Versions/3.1/lib/python31.zip', '/Library/Frameworks/Python.framework/Versions/3.1/lib/python3.1', '/Library/Frameworks/Python.framework/Versions/3.1/lib/python3.1/plat-darwin', '/Library/Frameworks/Python.framework/Versions/3.1/lib/python3.1/lib-dynload', '/Library/Frameworks/Python.framework/Versions/3.1/lib/python3.1/site-packages']
</code></pre>
http://stackoverflow.com/questions/812644/resources-resx-with-python0Resources (resx) with Pythonexalted2009-05-01T18:38:24Z2009-11-22T01:00:01Z
<p>Do you know of any Python module for resources (resx files) manipulation?</p>
<p>P.S.: I know I could write a custom wrapper on top of base XML processor available, I'm just checking out before going to hack my own code...</p>
http://stackoverflow.com/questions/1766867/drupal-node-save-and-jsonp0Drupal node.save and JSONPabritez2009-11-19T21:58:58Z2009-11-20T10:25:09Z
<p>I am having an issue with call Drupal node.save using MooTool's JSONP. Here is an example.</p>
<p>Here is my request:</p>
<p>callback Request.JSONP.request_map.request_1<br>
method node.save<br>
sessid 123123123123123<br>
node {"type":"blog","title":"New Title","body":"This is the blog body"}</p>
<p>Here is my result</p>
<p>HTTP/1.0 500 Internal Server Error</p>
<p>I got this working before, but i used AMFPHP and was able to send objects to drupal. I am assuming that this has to do with Drupal expecting an object, but since it is a GET it gets transformed as a string. Is there any way of getting around this with out hacking the code?</p>
<p>Here is my code:</p>
<pre>
$('newBlogSubmit').addEvent('click', function()
{
var node = {
type : "blog",
title:"New Title",
body :"This is the blog body"
}
var string = JSON.encode(node);
string.escapeRegExp()
var sessID = _sessID;
DrupalService.getInstance().node_save(string, sessID, drupal_handleBlogSubmit);
});
</pre>
<p>My Drupal Service JS Code:</p>
<pre>
//NODE
DrupalService.prototype.node_save = function(node, sessid, callback){
var dataObj = {
method : "node.save",
sessid : sessid,
node : node
}
DrupalService.getInstance().request(dataObj, callback);
}
//SEND REQUEST AND CALLBACK FUNCTION
DrupalService.prototype.request = function(dataObject, callback){
new JsonP('http://myDrupalSite.com/services/json', {data: dataObject,onComplete: callback}).request();
}
</pre>
<p>I am trying to connect the dots, but not too familiar with Drupal, but i would guess all I need to do is turn the string back into an object. Any ideas where I should be looking, or if there is an existing patch?</p>
http://stackoverflow.com/questions/1608773/drupal-mimemail-problem0Drupal mimemail problemlilott82009-10-22T17:34:33Z2009-11-19T11:00:06Z
<p>My drupal mimemail always adds a x- to our http:// on our images, thus killing them. I cannot figure out why this happens. Any suggestions?</p>
http://stackoverflow.com/questions/1759021/test-modules-with-testunit0Test modules with Test::UnitZieQ2009-11-18T20:54:26Z2009-11-18T21:16:52Z
<p>I encountered a problem when trying to test a module with Test::Unit. What I used to do is this:</p>
<p><code>my_module.rb:</code></p>
<pre><code>class MyModule
def my_func
5 # return some value
end
end
</code></pre>
<p><code>test_my_module.rb:</code></p>
<pre><code>require 'test/unit'
require 'my_module'
class TestMyModule < Unit::Test::TestCase
include MyModule
def test_my_func
assert_equal(5, my_func) # test the output value given the input params
end
end
</code></pre>
<p>Now the problem is, if my_module declares an initialize method, it gets included in the test class and this causes a bunch of problems since Test::Unit seems to override/generate an initialize method. So I'm wondering what is the best way to test a module?</p>
<p>I'm also wondering wether my module should become a class at this point since the initialize method is made for initializing the state of something. Opinions?</p>
<p>Thanks in advance !</p>
http://stackoverflow.com/questions/1612472/yii-framework-how-to-specify-the-same-access-rules-for-all-controllers-of-the-m0Yii framework - how to specify the same access rules for all controllers of the module?YS-PRO2009-10-23T10:01:08Z2009-11-18T18:13:01Z
<p>I created module for admin specific operations. I don't want to write the same access rules for every controller, it's not pretty coding style.</p>
http://stackoverflow.com/questions/1622682/problems-building-a-dnn-module-using-linq-to-sql0Problems building a DNN module using Linq to SQLRoss2009-10-26T01:04:57Z2009-11-18T18:11:03Z
<p>I am building a module using linq to SQL and I am running into some problems. I have been following Michal Washington's tutorial on adefwebserver.com. The problem is that VB does not recognize my Complaint Class when I try to create new Complaint object. Any idea why I am unable to Dim a Complaint object? Here is my code:</p>
<p>View.ascx.vb(</p>
<pre><code>Imports Complaint
Protected Sub LinqDataSource1_Inserting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.LinqDataSourceInsertEventArgs) Handles LinqDataSource1.Inserting
Dim Complaint As **Complaint** = DirectCast(e.NewObject, Complaint)
Complaint.UserID = Entities.Users.UserController.GetCurrentUserInfo().Username
Complaint.ModuleId = ModuleId
Complaint.System_Time_Date_Stamp = Format(DateTime.Now, "yyyy-MM-dd HH:mm:ss.fff")
End Sub
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
If (e.Row.RowType = DataControlRowType.DataRow) Then
Dim Complaint As Complaint = (DirectCast((e.Row.DataItem), Complaint))
If (PortalSecurity.IsInRole("Administrators")) Then
e.Row.Cells(0).Enabled = True
Else
e.Row.Cells(0).Text = " "
End If
End If
End Sub
</code></pre>
<p>)</p>
<p>Complaint.designer.vb(</p>
<pre><code>Option Strict On
Option Explicit On
Imports System
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Data.Linq
Imports System.Data.Linq.Mapping
Imports System.Linq
Imports System.Linq.Expressions
Imports System.Reflection
Namespace Complaint
<System.Data.Linq.Mapping.DatabaseAttribute(Name:="NewDnn")> _
Partial Public Class ComplaintDataContext
Inherits System.Data.Linq.DataContext
Private Shared mappingSource As System.Data.Linq.Mapping.MappingSource = New AttributeMappingSource
#Region "Extensibility Method Definitions"
Partial Private Sub OnCreated()
End Sub
Partial Private Sub InsertComplaint(instance As Complaint)
End Sub
Partial Private Sub UpdateComplaint(instance As Complaint)
End Sub
Partial Private Sub DeleteComplaint(instance As Complaint)
End Sub
#End Region
Public Sub New()
MyBase.New(Global.System.Configuration.ConfigurationManager.ConnectionStrings("SiteSqlServer").ConnectionString, mappingSource)
OnCreated
End Sub
Public Sub New(ByVal connection As String)
MyBase.New(connection, mappingSource)
OnCreated
End Sub
Public Sub New(ByVal connection As System.Data.IDbConnection)
MyBase.New(connection, mappingSource)
OnCreated
End Sub
Public Sub New(ByVal connection As String, ByVal mappingSource As System.Data.Linq.Mapping.MappingSource)
MyBase.New(connection, mappingSource)
OnCreated
End Sub
Public Sub New(ByVal connection As System.Data.IDbConnection, ByVal mappingSource As System.Data.Linq.Mapping.MappingSource)
MyBase.New(connection, mappingSource)
OnCreated
End Sub
Public ReadOnly Property Complaints() As System.Data.Linq.Table(Of Complaint)
Get
Return Me.GetTable(Of Complaint)
End Get
End Property
End Class
<Table(Name:="dbo.Complaint")> _
Partial Public Class Complaint
Implements System.ComponentModel.INotifyPropertyChanging, System.ComponentModel.INotifyPropertyChanged
Private Shared emptyChangingEventArgs As PropertyChangingEventArgs = New PropertyChangingEventArgs(String.Empty)
Private _ID As Integer
Private _ModuleID As System.Nullable(Of Integer)
Private _Member_UserName As String
Private _Reporter_Preffered_Contact As String
Private _Target_FName As String
Private _Target_LName As String
Private _Target_Street_Address As String
Private _Target_City As String
Private _Target_State As String
Private _Target_Zip As String
Private _Complaint_Details As String
Private _Status As String
Private _System_Time_Date_Stamp As System.Nullable(Of Date)
#Region "Extensibility Method Definitions"
Partial Private Sub OnLoaded()
End Sub
Partial Private Sub OnValidate(action As System.Data.Linq.ChangeAction)
End Sub
Partial Private Sub OnCreated()
End Sub
Partial Private Sub OnIDChanging(value As Integer)
End Sub
Partial Private Sub OnIDChanged()
End Sub
Partial Private Sub OnModuleIDChanging(value As System.Nullable(Of Integer))
End Sub
Partial Private Sub OnModuleIDChanged()
End Sub
Partial Private Sub OnMember_UserNameChanging(value As String)
End Sub
Partial Private Sub OnMember_UserNameChanged()
End Sub
Partial Private Sub OnReporter_Preffered_ContactChanging(value As String)
End Sub
Partial Private Sub OnReporter_Preffered_ContactChanged()
End Sub
Partial Private Sub OnTarget_FNameChanging(value As String)
End Sub
Partial Private Sub OnTarget_FNameChanged()
End Sub
Partial Private Sub OnTarget_LNameChanging(value As String)
End Sub
Partial Private Sub OnTarget_LNameChanged()
End Sub
Partial Private Sub OnTarget_Street_AddressChanging(value As String)
End Sub
Partial Private Sub OnTarget_Street_AddressChanged()
End Sub
Partial Private Sub OnTarget_CityChanging(value As String)
End Sub
Partial Private Sub OnTarget_CityChanged()
End Sub
Partial Private Sub OnTarget_StateChanging(value As String)
End Sub
Partial Private Sub OnTarget_StateChanged()
End Sub
Partial Private Sub OnTarget_ZipChanging(value As String)
End Sub
Partial Private Sub OnTarget_ZipChanged()
End Sub
Partial Private Sub OnComplaint_DetailsChanging(value As String)
End Sub
Partial Private Sub OnComplaint_DetailsChanged()
End Sub
Partial Private Sub OnStatusChanging(value As String)
End Sub
Partial Private Sub OnStatusChanged()
End Sub
Partial Private Sub OnSystem_Time_Date_StampChanging(value As System.Nullable(Of Date))
End Sub
Partial Private Sub OnSystem_Time_Date_StampChanged()
End Sub
#End Region
Public Sub New()
MyBase.New
OnCreated
End Sub
<Column(Storage:="_ID", AutoSync:=AutoSync.OnInsert, DbType:="Int NOT NULL IDENTITY", IsPrimaryKey:=true, IsDbGenerated:=true)> _
Public Property ID() As Integer
Get
Return Me._ID
End Get
Set
If ((Me._ID = value) _
= false) Then
Me.OnIDChanging(value)
Me.SendPropertyChanging
Me._ID = value
Me.SendPropertyChanged("ID")
Me.OnIDChanged
End If
End Set
End Property
<Column(Storage:="_ModuleID", DbType:="Int")> _
Public Property ModuleID() As System.Nullable(Of Integer)
Get
Return Me._ModuleID
End Get
Set
If (Me._ModuleID.Equals(value) = false) Then
Me.OnModuleIDChanging(value)
Me.SendPropertyChanging
Me._ModuleID = value
Me.SendPropertyChanged("ModuleID")
Me.OnModuleIDChanged
End If
End Set
End Property
<Column(Storage:="_Member_UserName", DbType:="NVarChar(50)")> _
Public Property Member_UserName() As String
Get
Return Me._Member_UserName
End Get
Set
If (String.Equals(Me._Member_UserName, value) = false) Then
Me.OnMember_UserNameChanging(value)
Me.SendPropertyChanging
Me._Member_UserName = value
Me.SendPropertyChanged("Member_UserName")
Me.OnMember_UserNameChanged
End If
End Set
End Property
<Column(Storage:="_Reporter_Preffered_Contact", DbType:="NVarChar(50)")> _
Public Property Reporter_Preffered_Contact() As String
Get
Return Me._Reporter_Preffered_Contact
End Get
Set
If (String.Equals(Me._Reporter_Preffered_Contact, value) = false) Then
Me.OnReporter_Preffered_ContactChanging(value)
Me.SendPropertyChanging
Me._Reporter_Preffered_Contact = value
Me.SendPropertyChanged("Reporter_Preffered_Contact")
Me.OnReporter_Preffered_ContactChanged
End If
End Set
End Property
<Column(Storage:="_Target_FName", DbType:="NVarChar(50)")> _
Public Property Target_FName() As String
Get
Return Me._Target_FName
End Get
Set
If (String.Equals(Me._Target_FName, value) = false) Then
Me.OnTarget_FNameChanging(value)
Me.SendPropertyChanging
Me._Target_FName = value
Me.SendPropertyChanged("Target_FName")
Me.OnTarget_FNameChanged
End If
End Set
End Property
<Column(Storage:="_Target_LName", DbType:="NVarChar(50)")> _
Public Property Target_LName() As String
Get
Return Me._Target_LName
End Get
Set
If (String.Equals(Me._Target_LName, value) = false) Then
Me.OnTarget_LNameChanging(value)
Me.SendPropertyChanging
Me._Target_LName = value
Me.SendPropertyChanged("Target_LName")
Me.OnTarget_LNameChanged
End If
End Set
End Property
<Column(Storage:="_Target_Street_Address", DbType:="NVarChar(100)")> _
Public Property Target_Street_Address() As String
Get
Return Me._Target_Street_Address
End Get
Set
If (String.Equals(Me._Target_Street_Address, value) = false) Then
Me.OnTarget_Street_AddressChanging(value)
Me.SendPropertyChanging
Me._Target_Street_Address = value
Me.SendPropertyChanged("Target_Street_Address")
Me.OnTarget_Street_AddressChanged
End If
End Set
End Property
<Column(Storage:="_Target_City", DbType:="NVarChar(50)")> _
Public Property Target_City() As String
Get
Return Me._Target_City
End Get
Set
If (String.Equals(Me._Target_City, value) = false) Then
Me.OnTarget_CityChanging(value)
Me.SendPropertyChanging
Me._Target_City = value
Me.SendPropertyChanged("Target_City")
Me.OnTarget_CityChanged
End If
End Set
End Property
<Column(Storage:="_Target_State", DbType:="NVarChar(50)")> _
Public Property Target_State() As String
Get
Return Me._Target_State
End Get
Set
If (String.Equals(Me._Target_State, value) = false) Then
Me.OnTarget_StateChanging(value)
Me.SendPropertyChanging
Me._Target_State = value
Me.SendPropertyChanged("Target_State")
Me.OnTarget_StateChanged
End If
End Set
End Property
<Column(Storage:="_Target_Zip", DbType:="NVarChar(50)")> _
Public Property Target_Zip() As String
Get
Return Me._Target_Zip
End Get
Set
If (String.Equals(Me._Target_Zip, value) = false) Then
Me.OnTarget_ZipChanging(value)
Me.SendPropertyChanging
Me._Target_Zip = value
Me.SendPropertyChanged("Target_Zip")
Me.OnTarget_ZipChanged
End If
End Set
End Property
<Column(Storage:="_Complaint_Details", DbType:="NVarChar(4000)")> _
Public Property Complaint_Details() As String
Get
Return Me._Complaint_Details
End Get
Set
If (String.Equals(Me._Complaint_Details, value) = false) Then
Me.OnComplaint_DetailsChanging(value)
Me.SendPropertyChanging
Me._Complaint_Details = value
Me.SendPropertyChanged("Complaint_Details")
Me.OnComplaint_DetailsChanged
End If
End Set
End Property
<Column(Storage:="_Status", DbType:="NVarChar(4000)")> _
Public Property Status() As String
Get
Return Me._Status
End Get
Set
If (String.Equals(Me._Status, value) = false) Then
Me.OnStatusChanging(value)
Me.SendPropertyChanging
Me._Status = value
Me.SendPropertyChanged("Status")
Me.OnStatusChanged
End If
End Set
End Property
<Column(Storage:="_System_Time_Date_Stamp", DbType:="DateTime")> _
Public Property System_Time_Date_Stamp() As System.Nullable(Of Date)
Get
Return Me._System_Time_Date_Stamp
End Get
Set
If (Me._System_Time_Date_Stamp.Equals(value) = false) Then
Me.OnSystem_Time_Date_StampChanging(value)
Me.SendPropertyChanging
Me._System_Time_Date_Stamp = value
Me.SendPropertyChanged("System_Time_Date_Stamp")
Me.OnSystem_Time_Date_StampChanged
End If
End Set
End Property
Public Event PropertyChanging As PropertyChangingEventHandler Implements System.ComponentModel.INotifyPropertyChanging.PropertyChanging
Public Event PropertyChanged As PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Protected Overridable Sub SendPropertyChanging()
If ((Me.PropertyChangingEvent Is Nothing) _
= false) Then
RaiseEvent PropertyChanging(Me, emptyChangingEventArgs)
End If
End Sub
Protected Overridable Sub SendPropertyChanged(ByVal propertyName As [String])
If ((Me.PropertyChangedEvent Is Nothing) _
= false) Then
RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs(propertyName))
End If
End Sub
End Class
End Namespace
</code></pre>
<p>)</p>
http://stackoverflow.com/questions/1746906/alternative-for-view-filter-block-for-drupal-61Alternative for View Filter Block for Drupal 6?RD2009-11-17T06:05:53Z2009-11-17T13:15:55Z
<p>I am looking for a way to get the same functionality as "Views Filter Block" ( see <a href="http://drupal.org/project/views%5Ffilterblock" rel="nofollow">http://drupal.org/project/views%5Ffilterblock</a>) but for Drupal 6. Taken from the description:</p>
<blockquote>
<p>"The views_filterblock module basically moves the horizontal filter from the views page content area into a (vertical) block."</p>
</blockquote>
<p>Anyone?</p>
http://stackoverflow.com/questions/1742884/drupal-section-accessible-by-role1Drupal section accessible by role.easement2009-11-16T15:26:41Z2009-11-16T17:25:18Z
<p>I need to limit access of content on Drupal site based on the Drupal User's Role. </p>
<p><a href="http://site.com/managers/intro" rel="nofollow">http://site.com/managers/intro</a></p>
<p><a href="http://site.com/managers/reviews" rel="nofollow">http://site.com/managers/reviews</a></p>
<p><a href="http://site.com/managers/up-for-raises" rel="nofollow">http://site.com/managers/up-for-raises</a></p>
<p>The content can be of multiple content types and isn't limited to one specific content-type. These content types will be used elsewhere on the site so I can't lock down the whole content type.</p>
<p>I can get all the nodes/views to live at those addresses by menu settings when they are created, but I don't know how do I limit access via role other than a bunch of preprocess functions in template.php, but that seems to be the wrong way to do it.</p>
<p>I searched for a module and asked on #drupal-support IRC, but no results came up that use drupal roles as the limiting factor.</p>
http://stackoverflow.com/questions/1736171/why-doesnt-my-perl-script-find-my-module-even-after-i-adjust-inc-with-findbin2Why doesn't my Perl script find my module even after I adjust @INC with FindBin?Keith Bentrup2009-11-15T00:44:09Z2009-11-15T07:08:44Z
<p>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 have a <em>standard</em> Perl installation, but I'm not sure how to accomplish this.</p>
<p>In my scripts, I have </p>
<pre><code>use FindBin qw($Bin);
use lib "$Bin/lib"; # store non standard modules here
use Term::ANSIColor;
use Win32::Console::ANSI;
print Term::ANSIColor::colored("this should be in color\n", "bold red");
</code></pre>
<p>and I put the the module in ./lib. I verified that's the actual location where the module exists (by renaming it and causing it to fail). However, even if the module is in an arbitrary lib directory, it still seems to be a requirement that <strong>ppm</strong> be aware of the module.</p>
<p>I can not get my scripts to find/use it in lib without it being "installed" by <strong>ppm</strong> first. I would imagine that there should be some sort of way around this. </p>
<p>I know this may be an atypical request, but my goals are probably atypical. I just want a developer to do a checkout and immediately use some scripts without having to run some additional commands or use a package manager.</p>
<p>Thanks for any insight.</p>
<p><strong>EDIT:</strong> I updated with a complete example. I also realized that if I uninstall it via ppm (but leave the pm in the referenced directory), I may have to change my syntax, and I was not considering that before. So maybe I have to give a full path or use require like jheddings or BipedalShark propose (ie. if it's not "installed", then I must use "require" and append ".pm" to it or use a BEGIN block.</p>
<p>If this is the case, then I have not found the correct syntax.</p>
<p><strong>EDIT 2:</strong> Based on a comment below, I realize that I may have a flawed assumption. My reasoning is this: If I reference the actual code, the ".pm", directly then I should be able to use it without using a package manager. Maybe that's not the case, or if I want to do that maybe I have to do it a different way. Alternatively, I may have to refactor the code in the ".pm".</p>
<p><strong>EDIT 3:</strong> I think that I was misunderstanding a few things. The error message in my IDE "Compilation failed in require", it's highlighting of the line that I was using to include the module, and the console error message of "Can't locate loadable object for module Win32::Console::ANSI" </p>
<p>I was reading that as a problem with loading the module itself, but it seems to be a problem that results from something the module itself is attempting to load. Interesting that this is only a problem since I didn't use ppm install though.</p>
<p>It is finding the actual module. I was able to verify that by commenting out the trouble lines.</p>
<p>Thanks for the help, but I'll have to spend some more time with it.</p>
http://stackoverflow.com/questions/658955/how-do-i-choose-a-package-name-for-a-custom-perl-module-that-does-not-collide-wit10How do I choose a package name for a custom Perl module that does not collide with builtin or CPAN packages names?Marcus2009-03-18T16:13:46Z2009-11-15T03:59:40Z
<p>I have read the <a href="http://perldoc.perl.org/perlmod.html" rel="nofollow">perldoc on modules</a>, but I don't see a recommendation on naming a package so it won't collide with builtin or CPAN module/package names.</p>
<p>In the past, to develop a local Session.pm module, I have created a local directory using my company's name, such as:</p>
<pre><code>package Company::Session;
</code></pre>
<p>... and Session.pm would be found in directory Company/.</p>
<p>But I'm just not a fan of this naming convention. I would rather name the package hierarchy closer to the functionality of the code. But that's how it's done on CPAN generally...</p>
<p>I feel like I am missing something fundamental. I also looked in Damian's <em>Perl Best Practices</em> but I may not have been looking in the right place...</p>
<p>Any recommendations on avoiding package namespace collisions the right way? </p>
<p><strong>Update w/ Related Question</strong>: if there <em>is</em> a package name conflict, how does Perl choose which one to use? Thanks everyone.</p>