Schrift
[thread]4557[/thread]

HTML::Template::Compiled (HTC) (Seite 16)

Leser: 31


<< |< 1 ... 13 14 15 16 17 18 19 ... 21 >| >> 210 Einträge, 21 Seiten
pq
 2006-10-11 21:59
#40934 #40934
User since
2003-08-04
12209 Artikel
Admin1
[Homepage]
user image
@froschpopo: du kannst ja global_vars verwenden oder explizit auf den root-level
der parameter zugreifen. oder versteh ich nicht, was du willst?
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem
pq
 2006-10-15 19:55
#40935 #40935
User since
2003-08-04
12209 Artikel
Admin1
[Homepage]
user image
Code: (dl )
1
2
3
4
5
6
7
8
9
10
0.79 Sat Oct  7 20:36:55 CEST 2006
- Change: instead of <tmpl_var name="array.42"> you must
now use <tmpl_var name="array[42]". sorry
- Bugfix: path was not set when using template from a filehandle
- Bugfix: globalvars did not work in included templates
- New feature: allow negative indizes array[-1].foo
- Bugfix: loop_context_vars weren't stored in filecache
- Bugfix: query() wasn't always corect when doing
$template->query(name => ['FOO', 'BAR'])
- Bugfix: query() now also reports included vars like H::T does


Code: (dl )
1
2
3
4
0.80 Sun Oct 15 16:39:02 CEST 2006
- Bugfix: characters like '-' in <tmpl_* foo-bar> lead to
compilation errors
- Bugfix: accessing array elements like <tmpl_var [23]> didn't work
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem
pq
 2006-11-04 22:12
#40936 #40936
User since
2003-08-04
12209 Artikel
Admin1
[Homepage]
user image
Code: (dl )
1
2
0.81 Fri Nov  3 22:48:05 CET 2006
- Minor change in plugin code


und neu:
HTML::Template::Compiled::Plugin::HTML_Tags\n\n

<!--EDIT|pq|1162671172-->
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem
esskar
 2006-11-05 03:25
#40937 #40937
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
finde ja _ in modulnamen hässlich
pq
 2006-11-05 05:10
#40938 #40938
User since
2003-08-04
12209 Artikel
Admin1
[Homepage]
user image
[quote=esskar,05.11.2006, 02:25]finde ja _ in modulnamen hässlich[/quote]
ich auch, aber als ich das gemerkt habe, wars eigentlich schon zu spaet...
naja, vielleicht benenn ichs einfach in der naechsten version um...
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem
pq
 2006-11-07 00:44
#40939 #40939
User since
2003-08-04
12209 Artikel
Admin1
[Homepage]
user image
Code: (dl )
1
2
3
4
0.82 Mon Nov  6 21:25:23 CET 2006
- Added: shorter plugins (omit the HTML::Template::Compiled::Plugin)
- Added Feature: TMPL_INCLUDE_STRING
- Added Feature: TMPL_PERL for including perl-code
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem
pq
 2006-11-23 00:08
#40940 #40940
User since
2003-08-04
12209 Artikel
Admin1
[Homepage]
user image
neu, auf anregung von pfuschi:
CPAN:CGI::FormBuilder::Template::HTC
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem
Ronnie
 2007-03-18 22:55
#40941 #40941
User since
2003-08-14
2022 Artikel
BenutzerIn
[default_avatar]
Ich habe gerade die 0.84 per cpan auf ein Debian-System installiert. Das ganze lief mehrmals schief. Es schienen Abhängigkeiten nicht aufgelöst zu werden. Nachdem ich 'ne Unmenge anderes Zeug installiert hatte, konnte ich auch HTC installieren. Ich weiß das dies leider kein vernünftiger Bug-Report ist - zumal es kein Bug im eigentlichen Sinne ist, sondern eher ein Problem von cpan.
bloonix
 2007-03-18 23:27
#40942 #40942
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
Hallo Ronni,

das ist kein Fehler von CPAN. Die Module fehlen schlichtweg
in der Liste PREREQ_PM.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
WriteMakefile
(
         'PL_FILES' => {},
         'INSTALLDIRS' => 'site',
         'NAME' => 'HTML::Template::Compiled',
         'EXE_FILES' => [],
         'VERSION_FROM' => 'lib/HTML/Template/Compiled.pm',
         'PREREQ_PM' => {
                          'Test::More' => 0,
                          'File::Spec' => 0,
                          'File::Basename' => 0,
                          'Carp' => 0
                        }
       );


Eine Installation klappt nur, wenn man die Module selbst
installiert. Welche Module aber nun alle benötigt werden,
erfährt man erst, wenn man versucht HTC zu installieren
und die Fehler ausgegeben werden. Sie stehen leider nicht
in der Dokumentation.

Gruss,
opi\n\n

<!--EDIT|opi|1174253404-->
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.
Ronnie
 2007-03-18 23:40
#40943 #40943
User since
2003-08-14
2022 Artikel
BenutzerIn
[default_avatar]
Hallo opi,

ich vermute das es etwas war, was bei Moose als Abhängigkeit mitinstalliert wurde. Sicher bin ich aber nicht. Die (virtuelle) Box musste einsatzfähig werden, da war leider kaum Zeit mal näher zu schauen.

Gruß,
Ronnie
<< |< 1 ... 13 14 15 16 17 18 19 ... 21 >| >> 210 Einträge, 21 Seiten



View all threads created 2005-06-26 15:48.