Tagged Questions
The exporter tag has no wiki summary.
4
votes
1answer
152 views
Do I need Exporter if I'm going for pure OO in Perl?
The docs (Exporter and perlmodlib) say:
As a general rule, if the module is
trying to be object oriented then
export nothing.
But then perlmodlib also says:
Standard, bundled modules are ...
3
votes
3answers
980 views
How do I export Readonly variables with mod_perl?
I'm trying to make it easier to follow some Perl Best Practices by creating a Constants module that exports several of the scalars used throughout the book. One in particular, $EMPTY_STRING, I can ...
1
vote
4answers
44 views
imported perl variable imports with no value
SOLVED: As it turns out, my problem was rooted in the fact that I was not putting a $ in front of DEBUGVAR in the @EXPORT_OK assignment and the "use config_global qw(config DEBUGVAR);" line. Since it ...
1
vote
1answer
67 views
How can I export a function with Moose::Exporter?
I wanted to export a simple function from a base class that I use all over my sub classes without having to use $self->myfunc() all the time, just a simple func() call.
I tried doing this with the ...
1
vote
1answer
853 views
Primefaces data exporter problem with data table with dynamic columns
Has anyone used primefaces data exporter component successfully with primefaces datatable with dynamic columns?
In my case, it generates the excel file but it is empty.
But if I keep everything same ...
1
vote
2answers
234 views
Why can't I call my exported subroutine in my Perl program?
I am new to Perl and I face following issue, having no clue why following is not working.
My Perl module contains:
package PACK2;
use Exporter;
@ISA = ('Exporter');
@EXPORT_OK=('whom');
sub why(){
...
1
vote
3answers
689 views
How can I share variables between a base class and subclass in Perl?
I have a base class like this:
package MyClass;
use vars qw/$ME list of vars/;
use Exporter;
@ISA = qw/Exporter/;
@EXPORT_OK = qw/ many variables & functions/;
%EXPORT_TAGS = (all => ...
1
vote
2answers
484 views
Moose: Extending Exporter causes constructor to disappear?
Here's something weird that I can't figure out. I have a Moose class that I also want to export some constants, using the age-old standard Exporter module. However, as soon as I add extends Exporter ...
1
vote
3answers
316 views
How do I rename an exported function in Perl?
I have some Perl modules which exports various functions. (We haven't used @EXPORT in new modules for some years, but have retained it for compatibility with old scripts.)
I have renamed a number of ...
1
vote
3answers
183 views
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 ...
0
votes
0answers
54 views
Scrapy: Item in Field
Here's my problem. I have an item which is looks like this:
class ExampleItem(Item) :
something = Field()
something_else = Field()
Item_list = Field()
The Item_list element is a list ...
0
votes
0answers
31 views
Hbm template exporter
I would like to learn more about Hbm template exporter for the reverse engineering using Hibernate tools. I've read some of the documentations here. But it doesn't explain much. Is there any tutorials ...
0
votes
0answers
88 views
Exporting Hierarchical Grids in .pdf documents
In our webapplication, we've hierarchical grid (2 bands) which we want to export to PDF document using document exporter. We are able to export data, but all borders are not shown for grid in the pdf ...
0
votes
1answer
318 views
Export a hash from a module to a script
refering back to this thread, I'm strugglying with the way how to export datas from my module. One way is working but not the other one which I would like to implement.
The question is why the ...
0
votes
0answers
573 views
Customizing a script to extract titles from Tumblr post (stripping HTML tags from text input)
I'm not an expert in PHP (I'm really just beginning to grasp the thing) and I need a little help to customized a script for extracting titles from Tumblr's post (and I insist, it's a small problem, ...