I just found refbase and am attempting to evaluate it. I would need to migrate a large amount of publication data from Drupal (Biblio module) to refbase. To see if I could use BibTex as a format to do this, I exported an article citation from Drupal in BibTex format, and attempted to import it into refbase. I got an error message stating "Unrecognized data format!" but no detail on what the problem was.
refbase. See includes/import.inc.php, in function identifySourceFormat($sourceText). You can edit the regex to allow any character between @ and {, rather than non-whitespace characters. Though this is the first time I think I've seen an app that puts the space there, it is valid BibTeX.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I just found refbase and am attempting to evaluate it. I would need to migrate a large amount of publication data from Drupal (Biblio module) to refbase. To see if I could use BibTex as a format to do this, I exported an article citation from Drupal in BibTex format, and attempted to import it into refbase. I got an error message stating "Unrecognized data format!" but no detail on what the problem was.
The record I was attempting to import:
Can anyone help me out? Anyone done a migration of data from Drupal Biblio before?
Thanks,
OK so it seems to be the space between @article and the opening { that is the problem.
Is that bibutils or refbase that is being so strict?
refbase. See includes/import.inc.php, in function identifySourceFormat($sourceText). You can edit the regex to allow any character between @ and {, rather than non-whitespace characters. Though this is the first time I think I've seen an app that puts the space there, it is valid BibTeX.
Thanks! And incidentally, I had not looked at any of the refbase code yet. I must say this is some of the most nicely commented code I've ever seen.