Help for this page

Select Code to Download


  1. or download this
    #internal method to get file content of this commit
    my $content = read_file_content($file_name);
    ...
        print STDERR "[$file_name] " . $crit->to_string . "\tsource: " . 
    $crit->source . "\n";
    }
    
  2. or download this
    [CodeLayout::RequireTidyCode]
    perltidyrc = /svn/hooks/perltidy.conf
    
  3. or download this
    -bl     # braces on new lines
    -l=80 #80 col width
    -i=4  #4 char per indent
    -ce    # cuddled else
    
  4. or download this
    ....
    if(1)
    ...
     print "2";
    }
    ...