Ihre Kommentare

Thanks for reporting! Seems like our system monitor didn't trigger. It's back up now.


This will require some work in the back-end. Up until now it wasn't necessary to check the list of authors to verify that an entry provided by dblp was indeed meant to be listed for the user. For now, I would recommend to add the (otherwise unnecessary) filter on your name:


http://bibbase.org/dblp/mathias_weller?theme=simple&filter=authors:Weller

CSS is actually self-documenting. Just open the source of the page you are editing, look for the elements you want to modify, and find a unique selector for them (e.g., using their class and/or tag name). This is actually not a BibBase specific question, so you should be able to find more help on that on the web.


Yes, you can hide the groupBy menu using CSS. This should work:


.groupby_dropdown {
  display: none;
}

Hi Mathias,


This actually appears to be a bug in DBLP's export API. As you can see in this page

http://dblp.dagstuhl.de/pers/hb/w/Weller:Mathias

they include this bibtex entry for you:


@proceedings{DBLP:conf/cocoa/2016,  editor    = {T.{-}H. Hubert Chan and
               Minming Li and
               Lusheng Wang},
  title     = {Combinatorial Optimization and Applications - 10th International Conference,
               {COCOA} 2016, Hong Kong, China, December 16-18, 2016, Proceedings},
  series    = {Lecture Notes in Computer Science},
  volume    = {10043},
  publisher = {Springer},
  year      = {2016},
  url       = {http://dx.doi.org/10.1007/978-3-319-48749-6},
  doi       = {10.1007/978-3-319-48749-6},
  isbn      = {978-3-319-48748-9},
  timestamp = {Wed, 30 Nov 2016 11:17:07 +0100},
  biburl    = {http://dblp.dagstuhl.de/rec/bib/conf/cocoa/2016},
  bibsource = {dblp computer science bibliography, http://dblp.org}
}

You may be able to ask them to correct that -- in fact, they may appreciate the bug report. (http://dblp.dagstuhl.de/faq/How+can+I+correct+errors+in+dblp.html)


Best,

Christian


If you are embedding your bibbase page into your own page, then you just need to add your css to your own page just like any other css, i.e., add

<link href="/bibbase.css" rel="stylesheet">

to the head in your html file.

BibBase and jQuery usually work well together and many of our users use jQuery on their pages.


Can you point me to the page that isn't working and/or tell me the errors you are seeing that make you think they conflict?


This is not directly supported, but if you know a little bit of javascript you can use that to accomplish it. Just make the default folded and then run toggleGroup('group_2017') some time after page load. Timing this right might be tricky though.

Indeed, the code has changed. The correct CSS rule is now:


  #bibbase_header a[onclick="groupby('downloads')"] { display: none; }

Thanks for reporting!