Difference between revisions of "Openresearch:HowTo"

From Openresearch
Jump to: navigation, search
m
m
Line 23: Line 23:
 
The foreword/preface of the respective proceedings (which is freely accessible in most cases) also usually contains the most important facts about a conference (e.g. chairs, number of submitted and accepted papers etc.).
 
The foreword/preface of the respective proceedings (which is freely accessible in most cases) also usually contains the most important facts about a conference (e.g. chairs, number of submitted and accepted papers etc.).
  
== Bulk Page Creation==
+
== Bulk Page Creation with XML import==
 
For conference series (and probably other similar types of content), its important to add data to OpenResearch in bulk. Here is how this can be done easily:
 
For conference series (and probably other similar types of content), its important to add data to OpenResearch in bulk. Here is how this can be done easily:
 
* Create a spreadsheet with the important information, similar to https://docs.google.com/spreadsheets/d/19n943XNzDDuCaBpZ4x1l1P4gJVQ8my2424o4UOc3v9k/edit
 
* Create a spreadsheet with the important information, similar to https://docs.google.com/spreadsheets/d/19n943XNzDDuCaBpZ4x1l1P4gJVQ8my2424o4UOc3v9k/edit
Line 53: Line 53:
 
* Use [[Special:Import|MediWiki Import pages]] to upload the generated XML import file and create the pages in bulk
 
* Use [[Special:Import|MediWiki Import pages]] to upload the generated XML import file and create the pages in bulk
 
* The import page accepts XML files formated in the Media Wiki export format (https://www.mediawiki.org/wiki/Help:Export, https://www.mediawiki.org/xml/export-0.10.xsd)
 
* The import page accepts XML files formated in the Media Wiki export format (https://www.mediawiki.org/wiki/Help:Export, https://www.mediawiki.org/xml/export-0.10.xsd)
 +
 +
==Bulk page creation wit CSV Import==
 +
 +
* the [https://www.mediawiki.org/wiki/Extension:Data_Transfer|Data Transfer extension] allows to create pages in bulk from CSV
 +
* Create a CSV file with the page title in the first column and columns for all template attributes named according to the scheme Template[attribute]:
 +
<pre>
 +
Title,Event[Start date],Event[Series],Event[Submitted papers],Event[Accepted papers],Event[City],Event[State],Event[Country],Event[Field],Event[Type],Event[Title]
 +
SIGMOD 2007,2005,SIGMOD,480,70,Beijing,, China,Database,Conference,2007 ACM SIGMOD International Conference on Management of Data
 +
</pre>
 +
* See a long example here: https://docs.google.com/spreadsheets/d/1C20626svZyCraRCErH6pqCCZnBoOqzRqgxN7B7aT9ms/edit
 +
* upload the data using [[Special:ImportCSV]]
  
 
== OpenResearch TODO==
 
== OpenResearch TODO==
 
A collaborative todo list is maintained in [[TODO]] for openresearch.
 
A collaborative todo list is maintained in [[TODO]] for openresearch.

Revision as of 09:08, 25 September 2016

Personalized Conference Calendars

Just add the template Template:ConfCalendar to a page and indicate the event series you are interested:

{{ConfCalendar
 | series = ISWC ESWC WWW ICSC SEMANTICS KEOD JIST
 | limit = 20
 | sort = Submission deadline
}}

See the example Sören_Auer#My_Conference_Calendar.

Identifying Events

Please use <<acronym>> <<year>> as identifier (page title) for events, e.g. "ISWC 2016".

Editing Conference series

Its particularly useful to get an overview of how a conference serie developed over time, e.g. wrt. acceptance rate geographic focus etc.

In most cases, there is a Web page of the steering committee of a conference series, which will contain information about past and future events. Also DBLP is a great source, e.g. http://dblp.uni-trier.de/db/conf/ercimdl/index.html The foreword/preface of the respective proceedings (which is freely accessible in most cases) also usually contains the most important facts about a conference (e.g. chairs, number of submitted and accepted papers etc.).

Bulk Page Creation with XML import

For conference series (and probably other similar types of content), its important to add data to OpenResearch in bulk. Here is how this can be done easily:

The Title should be "{$Acronym}" and each of the variables should aligned with variables in the xml file.

{{Event
|Acronym={$Acronym}
|Title={$Title}
|Series=ESWC
|Type=Conference
|Field=Semantic web
|Start date={$Start}
|End date={$End}
|City={$City}
|State={$State}
|Country={$Country}
|Homepage={$Homepage}
|Submitted papers={$Submissions}
|Accepted papers={$Accepted}
|has general chair={$Chair},
|has program chair={$PC chair}
}}

Bulk page creation wit CSV Import

  • the Transfer extension allows to create pages in bulk from CSV
  • Create a CSV file with the page title in the first column and columns for all template attributes named according to the scheme Template[attribute]:
Title,Event[Start date],Event[Series],Event[Submitted papers],Event[Accepted papers],Event[City],Event[State],Event[Country],Event[Field],Event[Type],Event[Title]
SIGMOD 2007,2005,SIGMOD,480,70,Beijing,, China,Database,Conference,2007 ACM SIGMOD International Conference on Management of Data

OpenResearch TODO

A collaborative todo list is maintained in TODO for openresearch.