Merge lp:~jeremy-munsch/synapse-project/fix-chromium-plugin into lp:synapse-project

Proposed by Jeremy Munsch
Status: Merged
Merged at revision: 620
Proposed branch: lp:~jeremy-munsch/synapse-project/fix-chromium-plugin
Merge into: lp:synapse-project
Diff against target: 11 lines (+1/-0)
1 file modified
src/plugins/chromium-plugin.vala (+1/-0)
To merge this branch: bzr merge lp:~jeremy-munsch/synapse-project/fix-chromium-plugin
Reviewer Review Type Date Requested Status
Rico Tzschichholz Approve
Review via email: mp+277503@code.launchpad.net

Description of the change

add mime_type: Uri.parse_scheme (url), to BookmarkMatch in ChromiumPlugin since it extends UriMatch

To post a comment you must log in.
616. By Jeremy Munsch

core: Handle UriMatches pointing to executable files

617. By Rico Tzschichholz

build: Drop optional dependency on gnome-common

618. By Rico Tzschichholz

build: Bump requirements glib-2.0 >= 2.40, valac >= 0.24.0

619. By Jeremy Munsch

Add support for "Additional applications actions"

Source and evaluate "Desktop Action" groups in desktop-files.

Revision history for this message
Rico Tzschichholz (ricotz) wrote :

"Uri.parse_scheme (url)" is not a mime-type. I would assume setting it to "text/html" should work.

review: Needs Information
Revision history for this message
Jeremy Munsch (jeremy-munsch) wrote :

Correct, i made correction to use "text/html"

Revision history for this message
Rico Tzschichholz (ricotz) wrote :

Hmm, look at your diff and think again. No need for a comment either.

review: Needs Fixing
Revision history for this message
Jeremy Munsch (jeremy-munsch) wrote :

Omg, how could i dare be so stupid, shame on me. Just made required corrections.
Sorry about that.

Revision history for this message
Rico Tzschichholz (ricotz) wrote :

Please don't explicitly reference the changed files in your commit message. (Same goes for your other merges). The VCS is perfectly capable to provide such information.

One line summary, and *if* needed a longer description separated by a blank-line

"chromium: Set mime-type of BookmarkMatch"

Revision history for this message
Jeremy Munsch (jeremy-munsch) wrote :

Ok i'll do that in the future, and update my other PR.

620. By Jeremy Munsch

chromium: Set mime-type of BookmarkMatch

Revision history for this message
Jeremy Munsch (jeremy-munsch) wrote :

Just updated branch

Revision history for this message
Rico Tzschichholz (ricotz) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/plugins/chromium-plugin.vala'
2--- src/plugins/chromium-plugin.vala 2014-07-16 09:52:18 +0000
3+++ src/plugins/chromium-plugin.vala 2015-11-14 23:51:13 +0000
4@@ -54,6 +54,7 @@
5 Object (title: name,
6 description: url,
7 uri: url,
8+ mime_type: "text/html",
9 has_thumbnail: false, icon_name: "text-html");
10 }
11 }