Help for this page

Select Code to Download


  1. or download this
          sub bycreatetime
          {
                 return $nodes{$a}{createtime}
    ...
          {
                # ...
          }
    
  2. or download this
          my (%sort_method) = (
                createtime => \&bycreatetime,
                createuser => \&bycreateuser, # For example
    ...
          {
                # ...
          }
    
  3. or download this
          sub NumericalSort
          {
                my ($field) = @_;
    ...
          {
                # ...
          }