Difference between revisions of "Dblpconf"

From BITPlan Wiki
Jump to navigation Jump to search
Line 13: Line 13:
 
There is also a flask+bootstrap 4 web interface
 
There is also a flask+bootstrap 4 web interface
 
= Entities =
 
= Entities =
 +
<uml>
 +
title
 +
dblp.xml  Entities
 +
2021-01-26
 +
[[https://dblp.org/ Copyright 2009-2021 dblp computer science bibliography]]
 +
see also [[https://github.com/WolfgangFahl/dblpconf dblp conf open source project]]
 +
 +
end title
 +
package dblp {
 +
  class Record << Entity >> {
 +
  key : TEXT <<PK>>
 +
  mdate : TEXT
 +
  title : TEXT
 +
  year : TEXT
 +
  }
 +
Note top of article
 +
[[http://wiki.bitplan.com/index.php/Dblpconf#/article article]]
 +
565 instances
 +
End note
 +
  class article << Entity >> {
 +
  author : TEXT
 +
  ee : TEXT
 +
  journal : TEXT
 +
  publtype : TEXT
 +
  }
 +
Note top of book
 +
[[http://wiki.bitplan.com/index.php/Dblpconf#/book book]]
 +
7 instances
 +
End note
 +
  class book << Entity >> {
 +
  ee : TEXT
 +
  isbn : TEXT
 +
  publisher : TEXT
 +
  }
 +
Note top of proceedings
 +
[[http://wiki.bitplan.com/index.php/Dblpconf#/proceedings proceedings]]
 +
2 instances
 +
End note
 +
  class proceedings << Entity >> {
 +
  booktitle : TEXT
 +
  editor : TEXT
 +
  publtype : TEXT
 +
  series : TEXT
 +
  url : TEXT
 +
  volume : TEXT
 +
  }
 +
Note top of inproceedings
 +
[[http://wiki.bitplan.com/index.php/Dblpconf#/inproceedings inproceedings]]
 +
2 instances
 +
End note
 +
  class inproceedings << Entity >> {
 +
  author : TEXT
 +
  booktitle : TEXT
 +
  crossref : TEXT
 +
  ee : TEXT
 +
  url : TEXT
 +
  }
 +
Note top of www
 +
[[http://wiki.bitplan.com/index.php/Dblpconf#/www www]]
 +
16 instances
 +
End note
 +
  class www << Entity >> {
 +
  ee : TEXT
 +
  }
 +
Note top of mastersthesis
 +
[[http://wiki.bitplan.com/index.php/Dblpconf#/mastersthesis mastersthesis]]
 +
6 instances
 +
End note
 +
  class mastersthesis << Entity >> {
 +
  author : TEXT
 +
  ee : TEXT
 +
  school : TEXT
 +
  }
 +
Note top of incollection
 +
[[http://wiki.bitplan.com/index.php/Dblpconf#/incollection incollection]]
 +
1768 instances
 +
End note
 +
  class incollection << Entity >> {
 +
  author : TEXT
 +
  booktitle : TEXT
 +
  crossref : TEXT
 +
  ee : TEXT
 +
  pages : TEXT
 +
  publtype : TEXT
 +
  url : TEXT
 +
  }
 +
  Record <|-- article
 +
  Record <|-- book
 +
  Record <|-- proceedings
 +
  Record <|-- inproceedings
 +
  Record <|-- www
 +
  Record <|-- mastersthesis
 +
  Record <|-- incollection
 +
}
 +
 +
' BITPlan Corporate identity skin params
 +
' Copyright (c) 2015 BITPlan GmbH
 +
' see http://wiki.bitplan.com/PlantUmlSkinParams#BITPlanCI
 +
' skinparams generated by com.bitplan.restmodelmanager
 +
skinparam note {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam component {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam package {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam usecase {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam activity {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam classAttribute {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam interface {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam class {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
skinparam object {
 +
  BackGroundColor #FFFFFF
 +
  FontSize 12
 +
  ArrowColor #FF8000
 +
  BorderColor #FF8000
 +
  FontColor black
 +
  FontName Technical
 +
}
 +
hide Circle
 +
' end of skinparams '
 +
</uml>
 
== article ==
 
== article ==
 +
 
=Freitext=
 
=Freitext=

Revision as of 11:41, 26 January 2021

OsProject

OsProject
id  dblpconf
state  
owner  Wolfgang Fahl
title  dblpconf
url  https://github.com/WolfgangFahl/dblpconf
version  0.0.1
description  
date  2021/01/25
since  
until  

What is it?

dblpconf analyzes a dblp.xml dump https://dblp.uni-trier.de/xml/ from the dblp computer science bibliography and makes the results available for use in a python project. There is also a flask+bootstrap 4 web interface

Entities

article

Freitext