Difference between revisions of "Workdocumentation 2022-08-15"
Jump to navigation
Jump to search
(→Agenda) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{PageSequence|prev=Workdocumentation 2022-08-13|next=|category=Workdocumentation}} | + | {{PageSequence|prev=Workdocumentation 2022-08-13|next=Workdocumentation 2022-08-16|category=Workdocumentation}} |
= Participants = | = Participants = | ||
+ | * Tim | ||
+ | * Wolfgang | ||
= Agenda = | = Agenda = | ||
* CEUR-WS Volume Browser | * CEUR-WS Volume Browser | ||
Line 9: | Line 11: | ||
= CEUR-WS Volume Browser = | = CEUR-WS Volume Browser = | ||
* http://ceur-ws-browser.bitplan.com/ | * http://ceur-ws-browser.bitplan.com/ | ||
+ | = Structure = | ||
+ | <uml> | ||
+ | hide circle | ||
+ | note top of ceurws | ||
+ | https://github.com/ceurws/ceur-make-ui | ||
+ | https://github.com/ceurws/ceur-make | ||
+ | https://github.com/ceurws/ceur-make/blob/master/workshop.xml | ||
+ | https://github.com/ceurws/ceur-make/blob/master/toc.xml | ||
+ | end note | ||
+ | package ceurws { | ||
+ | class Paper { | ||
+ | title | ||
+ | pdf | ||
+ | frompage | ||
+ | topage | ||
+ | |||
+ | } | ||
+ | class Author { | ||
+ | name | ||
+ | } | ||
+ | note top of Series | ||
+ | see also links are generated for Series | ||
+ | end note | ||
+ | class Series { | ||
+ | acronym | ||
+ | } | ||
+ | note top of Volume | ||
+ | Volumes are indexed in dblp and k10plus and partly wikidata | ||
+ | end note | ||
+ | class Volume { | ||
+ | number | ||
+ | homepage | ||
+ | lang | ||
+ | location | ||
+ | country | ||
+ | city | ||
+ | ordinal | ||
+ | date | ||
+ | pubyear | ||
+ | publish() | ||
+ | preView() | ||
+ | openTicket() | ||
+ | createIndexHtml() | ||
+ | importZipFromEasyChair(zipfile) | ||
+ | createBibTexFile() | ||
+ | } | ||
+ | note top of Conference | ||
+ | a Conference is a parent Event of a Workshop | ||
+ | end note | ||
+ | class Conference { | ||
+ | acronym | ||
+ | full | ||
+ | homepage | ||
+ | } | ||
+ | note top of Event | ||
+ | eventType can be Workshop or Conference | ||
+ | end note | ||
+ | class Event { | ||
+ | id | ||
+ | eventType | ||
+ | acronym | ||
+ | volume | ||
+ | full | ||
+ | } | ||
+ | note top of Session | ||
+ | sessions are optional | ||
+ | end note | ||
+ | class Session { | ||
+ | title | ||
+ | } | ||
+ | class Editor { | ||
+ | name | ||
+ | affiliation | ||
+ | country | ||
+ | } | ||
+ | Series "1" - "n" Volume | ||
+ | Volume "1" - "1" Event | ||
+ | Volume "1" - "0..1" Conference | ||
+ | Volume "1" - "n" Session | ||
+ | Volume "1" - "n" Editor | ||
+ | Session "1" - "n" Paper | ||
+ | Paper "1" - "n" Author | ||
+ | } | ||
+ | </uml> | ||
= Parser = | = Parser = |
Latest revision as of 11:02, 16 August 2022
Participants
- Tim
- Wolfgang
Agenda
- CEUR-WS Volume Browser
- Structure
- Parser
- Queries
CEUR-WS Volume Browser
Structure
Parser
Queries
Colocation
SELECT count(colocated)
FROM "volumes"
where colocated is not null
1326
Top Submitters
sqlquery -en ceurws -qp ceurws.yaml -qn SubmittedByGt6 -f mediawiki
SubmittedByGt6ForWiki
query
SELECT count(*) as count,"{{Link|target="||submittedBy||"}}"
FROM "volumes"
GROUP BY submittedBY
HAVING COUNT(*) > 6
ORDER BY 1 DESC