e1dc37182e
Changes since 0.9.6: - SQL database schemas were changed: LXR databases need upgrade, the port will give instructions; - lots of improvements in parser to enable it not to lose context when escape characters are used; C, C++, Perl and Python parsers are validated for these changes; - 'find' script was removed: its functionality is integrated into the search pages; - generic.conf: 'langid' was changed, so non C/C++ must be reindexed; - generic.conf: 'spec' syntax changed, it may capture more identifiers; - lxr.conf: default tab width was changed for some languages inside the 'filetype' block; - lxr.conf: more file extensions are considered to be graphic files (see parameter 'graphicfile'); - lxr.conf: new parameters, 'treeextract' and 'encoding'. QA page: http://codelabs.ru/fbsd/ports/qa/devel/lxr/0.9.10 Feature safe: yes
4 lines
203 B
Text
4 lines
203 B
Text
ALTER TABLE lxr_releases CHANGE rel releaseid char(255) binary not null;
|
|
DROP INDEX lxr_useageindex on lxr_useage;
|
|
RENAME TABLE lxr_useage TO lxr_usage;
|
|
CREATE INDEX lxr_usageindex ON lxr_usage (symid);
|