? .git
? all_three.patch
? display_citekey_option.patch
? enumerate_references.patch
? secondary_sort_by_type_id.patch
Index: biblio.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/biblio/biblio.admin.inc,v
retrieving revision 1.35
diff -r1.35 biblio.admin.inc
365a366,382
> 
>   $form['sort']['biblio_secondary_sort_by_tid'] = array(
>     '#type' => 'checkbox',
>     '#title' => t('Sort by year : secondary sort by type id'),
>     '#return_value' => 1,
>     '#default_value' => variable_get('biblio_secondary_sort_by_tid', 1),
>     '#description' => t('When sorting by type, second sorting criterion is type id instead of type name')
>     );
> 
>   $form['sort']['biblio_enumerate_references'] = array(
>     '#type' => 'checkbox',
>     '#title' => t('Enumerate references'),
>     '#return_value' => 1,
>     '#default_value' => variable_get('biblio_enumerate_references', 1),
>     '#description' => t('This option will put numbers before each biblio entry in the results')
>     );
> 
416a434,440
>   $form['style']['biblio_display_citation_key'] = array(
>     '#type' => 'checkbox',
>     '#title' => t('Show citation key in results'),
>     '#return_value' => 1,
>     '#default_value' => variable_get('biblio_display_citation_key', 0),
>     '#description' => t('For IEEE style only')
>     );
Index: biblio.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/biblio/biblio.pages.inc,v
retrieving revision 1.23
diff -r1.23 biblio.pages.inc
136c136,139
<       $sortby = "ORDER BY bt.name %s, b.biblio_year DESC ";
---
>       if (variable_get('biblio_secondary_sort_by_tid',0))
>         $sortby = "ORDER BY bt.tid %s, b.biblio_year DESC ";
>       else
>         $sortby = "ORDER BY bt.name %s, b.biblio_year DESC ";      
566a570,571
>           if (($count!=1)&&(variable_get('biblio_enumerate_references',0)))
>               $content .= "</ol>";  
567a573,574
>           if (variable_get('biblio_enumerate_references',0))
>               $content .= "<ol>";
579a587,588
>           if (($count!=1)&&(variable_get('biblio_enumerate_references',0)))
>               $content .= "</ol>";  
580a590,591
>           if (variable_get('biblio_enumerate_references',0))
>               $content .= "<ol>";
591a603,604
>             if (($count!=1)&&(variable_get('biblio_enumerate_references',0)))
>                 $content .= "</ol>";  
592a606,607
>             if (variable_get('biblio_enumerate_references',0))
>                 $content .= "<ol>";
598a614,615
>           if (($count!=1)&&(variable_get('biblio_enumerate_references',0)))
>               $content .= "</ol>";  
600a618,619
>           if (variable_get('biblio_enumerate_references',0))
>               $content .= "<ol>";
603a623,624
>     if (variable_get('biblio_enumerate_references',0))
>       $content .= "<li>"; 
604a626,627
>     if (variable_get('biblio_enumerate_references',0))
>       $content .= "</li>";
1046c1069
< }
\ No newline at end of file
---
> }
Index: biblio_style_ieee.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/biblio/biblio_style_ieee.inc,v
retrieving revision 1.15
diff -r1.15 biblio_style_ieee.inc
50a51,52
>   if (!empty ($node->biblio_citekey)&&(variable_get('biblio_display_citation_key',0)))
>     $output .= '[' . check_plain($node->biblio_citekey) . '] ';
105c107
< }
\ No newline at end of file
---
> }
