ubuntu-touch-coreapps-reviewers team mailing list archive
-
ubuntu-touch-coreapps-reviewers team
-
Mailing list archive
-
Message #04674
[Merge] lp:~verzegnassi-stefano/ubuntu-filemanager-app/fix-1490146-chdoctypes into lp:ubuntu-filemanager-app
Stefano Verzegnassi has proposed merging lp:~verzegnassi-stefano/ubuntu-filemanager-app/fix-1490146-chdoctypes into lp:ubuntu-filemanager-app.
Commit message:
Added content hub support to following document types:
- OpenDocument Text (.odt)
- OpenDocument Spreadsheet (.ods)
- OpenDocument Presentation (.odp)
- Microsoft Office Powerpoint (.ppt)
- Office Open XML Presentation (.pptx)
Requested reviews:
Ubuntu File Manager Developers (ubuntu-filemanager-dev)
Related bugs:
Bug #1490146 in Ubuntu File Manager App: "Support for libreoffice documents is missing in contenttyperesolver.js"
https://bugs.launchpad.net/ubuntu-filemanager-app/+bug/1490146
For more details, see:
https://code.launchpad.net/~verzegnassi-stefano/ubuntu-filemanager-app/fix-1490146-chdoctypes/+merge/269565
Added content hub support to following document types:
- OpenDocument Text (.odt)
- OpenDocument Spreadsheet (.ods)
- OpenDocument Presentation (.odp)
- Microsoft Office Powerpoint (.ppt)
- Office Open XML Presentation (.pptx)
--
Your team Ubuntu File Manager Developers is requested to review the proposed merge of lp:~verzegnassi-stefano/ubuntu-filemanager-app/fix-1490146-chdoctypes into lp:ubuntu-filemanager-app.
=== modified file 'AUTHORS'
--- AUTHORS 2015-07-06 16:41:06 +0000
+++ AUTHORS 2015-08-29 12:43:31 +0000
@@ -32,4 +32,5 @@
Robert Schroll <rschroll@xxxxxxxxx>
Sam Hewitt <snwh@xxxxxxxxxx>
Sergio Schvezov <sergio.schvezov@xxxxxxxxxxxxx>
+Stefano Verzegnassi <verzegnassi.stefano@xxxxxxxxx>
Victor Thompson <victor.thompson@xxxxxxxxx>
=== modified file 'src/app/qml/content-hub/contenttyperesolver.js'
--- src/app/qml/content-hub/contenttyperesolver.js 2015-02-03 20:19:00 +0000
+++ src/app/qml/content-hub/contenttyperesolver.js 2015-08-29 12:43:31 +0000
@@ -45,10 +45,15 @@
'wmv': CH.ContentType.Videos,
'txt': CH.ContentType.Documents,
+ 'odt': CH.ContentType.Documents,
'doc': CH.ContentType.Documents,
'docx': CH.ContentType.Documents,
+ 'ods': CH.ContentType.Documents,
'xls': CH.ContentType.Documents,
'xlsx': CH.ContentType.Documents,
+ 'odp': CH.ContentType.Documents,
+ 'ppt': CH.ContentType.Documents,
+ 'pptx': CH.ContentType.Documents,
'pdf': CH.ContentType.Documents,
}
Follow ups