Merge lp:~daker/ubuntu-rssreader-app/fix.1217297 into lp:~ubuntu-shorts-dev/ubuntu-rssreader-app/trunk

Proposed by Adnane Belmadiaf
Status: Rejected
Rejected by: David Planella
Proposed branch: lp:~daker/ubuntu-rssreader-app/fix.1217297
Merge into: lp:~ubuntu-shorts-dev/ubuntu-rssreader-app/trunk
Diff against target: 20 lines (+3/-1)
1 file modified
RssFeedPage.qml (+3/-1)
To merge this branch: bzr merge lp:~daker/ubuntu-rssreader-app/fix.1217297
Reviewer Review Type Date Requested Status
Ubuntu Shorts Developers Pending
Review via email: mp+184213@code.launchpad.net

Commit message

Clicking on link should open it on the browser

To post a comment you must log in.
Revision history for this message
Joey Chan (qqworini) wrote :

use Text to replace label ? seems Text can't handle different resolution with dynamic font size

Revision history for this message
Roman Shchekin (mrqtros) wrote :

I also think that it is bad solution for bug in SDK.

2013/9/6 Joey Chan <email address hidden>

> use Text to replace label ? seems Text can't handle different resolution
> with dynamic font size
> --
>
> https://code.launchpad.net/~daker/ubuntu-rssreader-app/fix.1217297/+merge/184213
> Your team Ubuntu RSS Feed Reader Developers is requested to review the
> proposed merge of lp:~daker/ubuntu-rssreader-app/fix.1217297 into
> lp:ubuntu-rssreader-app.
>

Revision history for this message
David Planella (dpm) wrote :

Roman, Joey, do you have any other suggestions on how to fix this?

Roman, you mentioned a bug in the SDK, is this bug already filed, and if not, would you mind filing it at https://bugs.launchpad.net/ubuntu-ui-toolkit/+filebug ?

Also, if the current branch does not fix the issue as per the expected results, please use the "Review" dropdown box below the comments to set the status of your comment to "Needs Fixing" or "Disapprove", so that the submitter knows about the status of the review. (For "Needs Fixing", please add a description of what needs fixing, and for "Disapprove", please add a reason why).

Thanks!

Revision history for this message
Roman Shchekin (mrqtros) wrote :

Hi, David.

Of course we have - someone from UI toolkit team should fix it :)
Since this bug appears only in Label component, it is not bug in Qt.
Especially if this bug appears only on device.

BR,
Roman.

2013/9/25 David Planella <email address hidden>

> Roman, Joey, do you have any other suggestions on how to fix this?
>
> Roman, you mentioned a bug in the SDK, is this bug already filed, and if
> not, would you mind filing it at
> https://bugs.launchpad.net/ubuntu-ui-toolkit/+filebug ?
>
> Also, if the current branch does not fix the issue as per the expected
> results, please use the "Review" dropdown box below the comments to set the
> status of your comment to "Needs Fixing" or "Disapprove", so that the
> submitter knows about the status of the review. (For "Needs Fixing", please
> add a description of what needs fixing, and for "Disapprove", please add a
> reason why).
>
> Thanks!
> --
>
> https://code.launchpad.net/~daker/ubuntu-rssreader-app/fix.1217297/+merge/184213
> Your team Ubuntu RSS Feed Reader Developers is requested to review the
> proposed merge of lp:~daker/ubuntu-rssreader-app/fix.1217297 into
> lp:ubuntu-rssreader-app.
>

Revision history for this message
David Planella (dpm) wrote :

Right, but unless there is a bug filed detailing the bug and how to reproduce it, it will not come to the attention of the SDK developers.

The SDK team is quite busy trying to get all the features and critical bug fixes in for 13.10, so I'm sure they'll appreciate the initiative in filing the bug including rich details and a reproducer, so that they can triage it and prioritize it.

You guys know the code best, and things like why we need to use Label instead of Text, so if you could give a hand in filing it at https://bugs.launchpad.net/ubuntu-ui-toolkit/+filebug that'd be awesome. Thanks!

Revision history for this message
David Planella (dpm) wrote :

Marking the branch as rejected, as it's now been superseded by https://code.launchpad.net/~qqworini/ubuntu-rssreader-app/content-link-clickable/+merge/191167

Unmerged revisions

60. By Adnane Belmadiaf

Clicking on link should open them on the browser

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'RssFeedPage.qml'
2--- RssFeedPage.qml 2013-09-03 16:58:01 +0000
3+++ RssFeedPage.qml 2013-09-06 00:06:27 +0000
4@@ -112,13 +112,15 @@
5 wrapMode: Text.WrapAtWordBoundaryOrAnywhere
6 }
7
8- Label {
9+ Text {
10 text: content
11 linkColor: UbuntuColors.orange // Temporary. Mb bad color, but better than dark blue.
12+ color: "#fff"
13 anchors.horizontalCenter: parent.horizontalCenter
14 width: parent.width - units.gu(4)
15 wrapMode: Text.WrapAtWordBoundaryOrAnywhere
16 clip: true
17+ onLinkActivated: Qt.openUrlExternally(link)
18 }
19
20 Label {

Subscribers

People subscribed via source and target branches