Closed (fixed)
Project:
Bibliography Module
Version:
4.7.x-2.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Jan 2007 at 14:05 UTC
Updated:
14 Feb 2009 at 12:08 UTC
Jump to comment: Most recent file
Comments
Comment #1
demianw commented(Sorry, next time I'll be more descriptive with the title)
Comment #2
rjerome commentedCould you attach a sample bibtex file for me to work with.
I see you assigned this to the 4.7 tree, all of the modifications I've made recently related to Bibtex have been on the 5.x tree. They will be back ported at some point, but I wanted to the the 5.x module stabilized before doing that.
Ron.
Comment #3
demianw commentedHi! I'm using the 4.7 version, because I find it more stable. Maybe this bug is fixed in the 5.x version.
The problem, when I import a BibTeX file, is that afterwards, when I edit any entry, the publication type is not set.
I'm attaching a test file.
Comment #4
cirotix commentedHi,
I have tried to import your file with the 5.x version and it woks fine, the publication types are imported.
damien
Comment #5
rjerome commentedI backported the 5.x module to 4.7 today, so the two versions should stay in sync now.
Comment #6
demianw commentedErrors updating the version:
First the "settings->module" link just hanged, after erasing all the info, I couldn't install it, I got this errors:
Message Table 'odyssee_arc_dmri_2007.biblio_type_details' doesn't exist query: /*!40000 ALTER TABLE `biblio_type_details` ENABLE KEYS */; in /htdocs/files/equipes/odyssee/arc2007/includes/database.mysql.inc on line 121.
Table 'odyssee_arc_dmri_2007.biblio_type_details' doesn't exist query: /*!40000 ALTER TABLE `biblio_type_details` DISABLE KEYS */; in /htdocs/files/equipes/odyssee/arc2007/includes/database.mysql.inc on line 121.
Comment #7
demianw commentedOk, found one of the problems:
In biblio.install line 73:
$result[] = db_query("CREATE TABLE 'biblio_has_author' (
should be replaced by:
$result[] = db_query("CREATE TABLE {biblio_has_author} (
so the tablename gets prefixed.
No more warnings now, nevertheless I'm still not being able of getting into biblio/settings
Comment #8
demianw commentedOk, found those problems, and (hopefully) fixed them
Dem
Comment #9
rjerome commentedThanks for that, I guess I've got to setup an installation with table prefixes that I can test on, since this is not the first time this has happened :-)
I've integrated the patch into all the releases.
Comment #10
catdevrandom commented