New flag jhsite to control site display.

This commit is contained in:
Justin Hsu
2021-07-11 15:48:10 +01:00
parent d37f7ad4a7
commit 30065cbe8b
2 changed files with 48 additions and 7 deletions
+4 -4
View File
@@ -15,10 +15,10 @@ config = defaultConfiguration
--------------------------------------------------------------------------------
bibHeaders :: [(String, [String])]
bibHeaders = [ ("drafts" , [ "-c", "$type='UNPUBLISHED'" ] )
, ("thesis" , [ "-c", "$type='PHDTHESIS'" ] )
, ("pubs" , [ "-c", "($type='INPROCEEDINGS' | $type='ARTICLE') & reviewed='yes'" ] )
, ("invite" , [ "-c", "($type='ARTICLE' | $type='INBOOK') & reviewed='no'" ] )
bibHeaders = [ ("drafts" , [ "-c", "$type='UNPUBLISHED' & jhsite='yes'" ] )
, ("thesis" , [ "-c", "$type='PHDTHESIS' & jhsite='yes'" ] )
, ("pubs" , [ "-c", "($type='INPROCEEDINGS' | $type='ARTICLE') & reviewed='yes' & jhsite='yes'" ] )
, ("invite" , [ "-c", "($type='ARTICLE' | $type='INBOOK') & reviewed='no' & jhsite='yes'" ] )
]
bibSources :: [String]