summary refs log tree commit diff stats
path: root/src/fe-gtk
AgeCommit message (Expand)Author
2013-04-05Disable esc keybinding on tabbed utilsTingPing
2013-04-05Fix esc closing detached util tabsTingPing
2013-04-05Fix root user warning running before g_type_initTingPing
2013-04-04Fix spelling seperate/separateAndreas Rönnquist
2013-04-03Update hiding menu textTingPing
2013-04-03add %u to userlist popups for accountTingPing
2013-04-03Support account-notify and extended-join capabilitiesTingPing
2013-04-02Add missing declarationBerke Viktor
2013-04-03Remove hardcoded clear keybindingTingPing
2013-04-03Add new window keybindingTingPing
2013-04-02Merge pull request #496 from bviktor/toplevel-includesTingPing
2013-04-02Set up CFLAGS on Unix tooBerke Viktor
2013-04-03update --url help stringTingPing
2013-04-02Only include top level includes from GTK+, GLib and GDK-PixBufBerke Viktor
2013-04-02Remove most of HexTray and one instanceBerke Viktor
2013-04-02fix strptime on bsdTingPing
2013-04-02Missing includeTingPing
2013-04-01use proper table sizeTingPing
2013-04-01Remove another bunch of obsolete junkBerke Viktor
2013-03-31Last oneTingPing
2013-03-31Another missing include..TingPing
2013-03-31Add missing includeTingPing
2013-04-01CosmeticsBerke Viktor
2013-04-01Consistent header macros everywhereBerke Viktor
2013-03-31Supposed fix for license issuesBerke Viktor
2013-03-31Fix error: format not a string literal and no format arguments [-Werror=forma...Andreas Rönnquist
2013-03-25Merge pull request #474 from RichardHitt/banlist-hTingPing
2013-03-25Switch struct defns, to fix a seeming compiler bugRichardHitt
2013-03-25Disable tray when using UnityTingPing
2013-03-25Fix warningTingPing
2013-03-24Delete banlist_info members radio[], checkbox[], unusedRichard Hitt
2013-03-25Fix advanced paneBerke Viktor
2013-03-25CosmeticsBerke Viktor
2013-03-24Fix datesort problem after new column in banlistRichardHitt
2013-03-24Merge pull request #445 from TingPing/ulistcolorsTingPing
2013-03-24WhitespaceTingPing
2013-03-24Translate type column entries tooTingPing
2013-03-24Add type column to banlistTingPing
2013-03-24Translate banlist checkboxesTingPing
2013-03-23fix tree indentation with iconsTingPing
2013-03-22add confirm dialog to clearing ignoresTingPing
2013-03-20Redesign the Ban List window. Closes Issues #303, #342, #427RichardHitt
2013-03-18Don't indent channels with server tabs disabled.TingPing
2013-03-17Get rid of testing line.RichardHitt
2013-03-17ESC key will destroy the windows mentioned at issue 211.RichardHitt
2013-03-15Add real name field to advanced paneBerke Viktor
2013-03-15Remove double UTF-8, it's already default charsetBerke Viktor
2013-03-14Merge pull request #444 from TingPing/noticepos2TingPing
2013-03-14Change notice option wordingTingPing
2013-03-13fix typoTingPing
class="k">my $start_tag = $token; $start_tag->set_attr( class => $class_name . " synNormal" ); my @content; my $end_tag; EXAMPLE: while( $token = $parser->get_token ) { if( $token->is_end_tag( "div" ) ) { $end_tag = $token; last EXAMPLE; } if( $token->is_text ) { push @content, decode_entities( $token->as_is ); } } my $code = join "", @content; # say $code; my $vim = Text::VimColor->new( string => $code, filetype => "perl", vim_options => [qw( -RXZ -i NONE -u NONE -N -n)], ); my $html = $vim->html; $html =~ s/^\s+//; $html =~ s/\s+$//; print $writer $start_tag->as_is; my $lines = $html =~ tr/\n/\n/; say $writer "<div class='line_number'>"; for my $line ( 0 .. $lines ) { say $writer "<div>",1 + $line,"</div>"; } say $writer "</div>"; print $writer "<div class='content'><pre>"; say $writer $html; say $writer "</pre></div>"; print $writer $end_tag->as_is; } else { print $writer $token->as_is; } }