/[Grep]/share/web/templates/index.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /share/web/templates/index.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18 - (show annotations)
Sun Feb 18 12:49:38 2007 UTC (17 years, 3 months ago) by dpavlin
File MIME type: text/html
File size: 1222 byte(s)
protect uri delimiters & and ; by encoding them into |!| (yeah, ugly),
transfer current cookie information (to enable single sign-on)
1 <%init>
2
3 my $region = Jifty::Web::PageRegion->new(
4 name => 'results',
5 );
6
7 Jifty->subs->add(
8 class => 'Result',
9 mode => 'Bottom',
10 region => 'results',
11 render_with => '/fragments/result',
12 );
13
14 my $fetch = Jifty->web->new_action(
15 class => 'Fetch',
16 moniker => 'fetch',
17 arguments => { %ARGS },
18 sticky_on_success => 1,
19 );
20
21 use Data::Dump qw/dump/;
22
23 </%init>
24
25 <&| /_elements/wrapper, title => 'Grep - powerful RSS searcher' &>
26
27 <a class="bookmarklet" href="javascript:location.href='<% Jifty->web->url( path => '/add' ) %>?uri='+encodeURIComponent(location.href).replace(new RegExp('%(26|3b)','gi'),'|!|')+'&title='+encodeURIComponent(document.title)+'&cookie='+encodeURIComponent(document.cookie).replace(new RegExp('%(26|3b)','gi'),'|!|')" title="drag and drop to bookmark toolbar to quickly add feed to grep">+grep</a>
28
29
30 <% Jifty->web->form->start %>
31
32 <% $fetch->form_field('q') %>
33 <% $fetch->form_field('feed') %>
34
35 <% $fetch->button( label => 'Grep' ) %>
36
37 <% Jifty->web->form->end %>
38
39 % if ( my $result = Jifty->web->response->result('fetch') ) {
40 % if ( my $items = $result->content('items') ) {
41 % foreach my $i ( @$items ) {
42
43 <& /fragments/result, item => $i &>
44
45 % }
46 % }
47 % }
48
49 Results: <% $region->render %>
50
51 </&>

  ViewVC Help
Powered by ViewVC 1.1.26