| Summary: | Recent Documents list does not work | ||
|---|---|---|---|
| Product: | LibreOffice | Reporter: | Leon Stringer <leon.stringer> |
| Component: | LibreOffice | Assignee: | Not Assigned <libreoffice-bugs> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | CC: | lohmaier |
| Priority: | medium | ||
| Version: | 3.5.0 release | ||
| Hardware: | Other | ||
| OS: | All | ||
| Whiteboard: | |||
| Crash report or crash signature: | Regression By: | ||
|
Description
Leon Stringer
2012-02-16 07:12:35 UTC
It looks like the problem is with the way the recent documents list is stored in registrymodifications.xcu (on Windows this is in %APPDATA%\LibreOffice\3\user). I don't know whether these were touched during the upgrade but following the upgrade, recently used items were stored thus:
<item oor:path="/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/ItemList">
<node oor:name="file:///C:/Users/lstringer/Documents/Testing.odt" oor:op="replace">
<prop oor:name="Filter" oor:op="fuse">
<value xsi:nil="true"/>
</prop>
<prop oor:name="Password" oor:op="fuse">
<value xsi:nil="true"/>
</prop>
<prop oor:name="Title" oor:op="fuse">
<value xsi:nil="true"/>
</prop>
</node>
</item>
:
<item oor:path="/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/OrderList">
<node oor:name="0" oor:op="replace">
<prop oor:name="HistoryItemRef" oor:op="fuse">
<value xsi:nil="true"/>
</prop>
</node>
</item>
If I rename registrymodifications.xcu, Recent Documents starts working with LO 3.5.0 now including the file name in the order list (the first <item> element above stays the same):
<item oor:path="/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/OrderList">
<node oor:name="0" oor:op="replace">
<prop oor:name="HistoryItemRef" oor:op="fuse">
<value>file:///C:/Users/lstringer/Documents/Testing.odt</value>
</prop>
</node>
</item>
With the first format in place the Recent Documents list never gets updated. If you remove these items from registrymodifications.xcu (or convert them to the new format) then the list starts working.
I am using LibreOffice 3.5.0rc3 on Mint Linux Release 12 Linux Kernel 3.0.0-12 Generic. I can confirm this bug - no documents are displayed in the "Recent Documents" List in either Calc or Writer. |