Ticket #2723 (closed task: fixed)

Opened 12 years ago

Last modified 12 years ago

Switch default bindings from ooffice to libreoffice

Reported by: schuay Owned by:
Priority: minor Milestone: 4.8.7
Component: mc-core Version: master
Keywords: Cc:
Blocked By: Blocking:
Branch state: merged Votes for changeset: committed-master

Description

Switch default bindings from ooffice to libreoffice

LibreOffice? has replaced OpenOffice?.org in most distributions by now,
update bindings accordingly.

Patch is attached.

Change History

comment:1 Changed 12 years ago by mondalaci

Also, AbiWord? seems to be used in mc.ext a lot. Every one of its references should be replaced with libreoffice.

comment:2 Changed 12 years ago by slavazanko

  • Blocked By 2118 added

comment:3 Changed 12 years ago by slavazanko

  • Blocked By 2118 removed

(In #2118) merged to master:

git log --pretty=oneline e944301..5c6ae10

comment:4 Changed 12 years ago by asy

The proposed patch is not so good:
Open=(ooffice %f &) should be replaced to
Open=if [ -f /usr/bin/loffice ]; then (loffice %f &); else (ooffice %f &); fi
or, possible
Open=if which loffice >/dev/null 2>&1 ; then (loffice %f &); else (ooffice %f &); fi

Last edited 12 years ago by asy (previous) (diff)

comment:5 Changed 12 years ago by andrew_b

  • Blocked By 2897 added

comment:6 Changed 12 years ago by andrew_b

  • Blocked By 2897 removed

comment:7 Changed 12 years ago by andrew_b

  • Status changed from new to closed
  • Votes for changeset set to committed-master
  • Branch state changed from no branch to merged
  • Milestone changed from Future Releases to 4.8.7
  • Keywords libreoffice openoffice removed
  • Resolution set to fixed
Note: See TracTickets for help on using tickets.