Merge lp://staging/~abreu-alexandre/webbrowser-app/container-extension into lp://staging/webbrowser-app

Proposed by Alexandre Abreu
Status: Approved
Approved by: Alberto Mardegan
Approved revision: no longer in the source branch.
Proposed branch: lp://staging/~abreu-alexandre/webbrowser-app/container-extension
Merge into: lp://staging/webbrowser-app
Diff against target: 757 lines (+382/-83)
13 files modified
src/app/webcontainer/UrlFilteringUtils.js (+82/-0)
src/app/webcontainer/WebApp.qml (+1/-0)
src/app/webcontainer/WebViewImplOxide.qml (+20/-0)
src/app/webcontainer/WebappContainerWebview.qml (+85/-5)
src/app/webcontainer/main-webview-server-script.js (+33/-0)
src/app/webcontainer/url-pattern-utils.cpp (+1/-1)
src/app/webcontainer/webapp-container.cpp (+28/-0)
src/app/webcontainer/webapp-container.qml (+16/-67)
tests/autopilot/webapp_container/tests/__init__.py (+5/-5)
tests/autopilot/webapp_container/tests/fake_servers.py (+5/-0)
tests/autopilot/webapp_container/tests/test_chrome.py (+4/-4)
tests/autopilot/webapp_container/tests/test_container_extension.py (+101/-0)
tests/autopilot/webapp_container/tests/test_context_menu.py (+1/-1)
To merge this branch: bzr merge lp://staging/~abreu-alexandre/webbrowser-app/container-extension
Reviewer Review Type Date Requested Status
system-apps-ci-bot continuous-integration Needs Fixing
Alberto Mardegan (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Review via email: mp+278870@code.staging.launchpad.net

Commit message

Introduce a new extension mechanism for the container that allows webapps to plugin into a discrete set of events coming from the container.

Description of the change

Introduce a new extension mechanism for the container that allows webapps to plugin into a discrete set of events coming from the container.

A user has to add a webapp-extend.qml file in the webapp, that should expose a handle() function. This function is called for specific events, at the moment, mostly around url updates (coming from things like urihandler or internally from the user).

To see an example of such an extension usage:

https://code.launchpad.net/~abreu-alexandre/webapps-core/gmail-mailto-support/+merge/278871

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1298. By Zsombor Egri

Fix local Toolbar collision with UITK 1.3 Toolbar.
Approved by: Olivier Tilloy, Zoltan Balogh

1299. By Olivier Tilloy

Work around what appears to be a regression in the UITK by specifying a non-null delay when swiping a list item to delete it in unit tests. Fixes: #1526940
Approved by: Michael Sheldon

1300. By CI Train Bot Account

Releasing 0.23+16.04.20151218-0ubuntu1

Revision history for this message
Alberto Mardegan (mardy) wrote :

Please document what translateHandlerUri() and translateUri() do, because otherwise it's very difficult to understand what is happening here :-)

1301. By Michael Sheldon

Add support for handling downloads internally within the browser. Fixes: #1354391
Approved by: Olivier Tilloy

1302. By CI Train Bot Account

Releasing 0.23+16.04.20151221-0ubuntu1

1303. By Olivier Tilloy

Update translation template.

1304. By Olivier Tilloy

Recognize openoffice and MS-office file formats as documents, now that the document viewer app knows how to render them. Fixes: #1523452
Approved by: Michael Sheldon, PS Jenkins bot

1305. By Olivier Tilloy

Do not allow interacting with tabs and the chrome while the settings page is shown. Fixes: #1524353
Approved by: PS Jenkins bot, Ugo Riboni

1306. By Olivier Tilloy

Use the screen size (diagonal in millimeters) to determine which default UA string and which UA overrides to use.
An empirical threshold of 19cm is being used, it is subject to further adjustments. Fixes: #1504084
Approved by: PS Jenkins bot

1307. By Olivier Tilloy

Add keyboard shorcuts for 'next' (Ctrl+G) and 'previous' (Ctrl+Shift+G) while in find-in-page mode. Fixes: #1522152
Approved by: PS Jenkins bot, Ugo Riboni

1308. By Olivier Tilloy

Fix the tab preview sometimes covering the tab chrome, in the tabs view.
Offset tab previews by 1px to cover the semi-transparent horizontal line at the bottom of the tab chrome asset. Fixes: #1520624
Approved by: PS Jenkins bot, Ugo Riboni

1309. By Olivier Tilloy

Fix some obvious issues in PreviewManager. Fixes: #1519019
Approved by: PS Jenkins bot, Ugo Riboni

1310. By Olivier Tilloy

Fix a crash when clearing the navigation history while the new tab view is open. Fixes: #1525937
Approved by: Ugo Riboni

1311. By Olivier Tilloy

Fix deleting multiple domains from the history view.
Add unit tests for the HistoryView component. Fixes: #1527144

1312. By CI Train Bot Account

Releasing 0.23+16.04.20151222.1-0ubuntu1

1313. By CI Train Bot Account

Resync trunk.

1314. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1315. By Alexandre Abreu

Make the webapp-container click hook more flexible. Instead of being able to delete cache & resource folders as the click is being uninstalled, one can also act on them as the click is being upgraded & installed. Fixes: #1522562
Approved by: PS Jenkins bot, Alberto Mardegan

1316. By Alexandre Abreu

Handle empty url pattern in configuration file and invalid url pattern being specified. Fixes: #1522585
Approved by: PS Jenkins bot, Alberto Mardegan

1317. By Alexandre Abreu

Handle application crashes or OOM interventions & save opened overlays Fixes: #1508969
Approved by: PS Jenkins bot, Alberto Mardegan

1318. By Alexandre Abreu

Limited handling of custom context menu for the container
Approved by: Alberto Mardegan

1319. By CI Train Bot Account

Releasing 0.23+16.04.20160106.4-0ubuntu1

1320. By Alexandre Abreu

Handle theme_color page metainformation. Fixes: #1477674
Approved by: Alberto Mardegan

1321. By CI Train Bot Account

Releasing 0.23+16.04.20160108.1-0ubuntu1

1322. By CI Train Bot Account

Resync trunk.

1323. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1324. By Olivier Tilloy

Restore active focus on the webview after closing the context menu. Fixes: #1526884
Approved by: Bill Filler

1325. By Michael Sheldon

Dynamically load the thumbnailer image provider if it's available, otherwise fallback to mimetype images Fixes: #1531179
Approved by: Olivier Tilloy

1326. By Olivier Tilloy

Address a number of minor functional and code issues in the new downloads-in-browser functionality. Fixes: #1528651
Approved by: Michael Sheldon

1327. By CI Train Bot Account

Releasing 0.23+16.04.20160112.1-0ubuntu1

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

> Please document what translateHandlerUri() and translateUri() do, because
> otherwise it's very difficult to understand what is happening here :-)

I updated the branch with some documentation

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Alberto Mardegan (mardy) wrote :

Thanks for the explanations. I've added a few more inline comments, and here are two generic remarks:

1) You should document somewhere the list of hooks that can be intercepted by the webapp script. Some king of a readme where we document the hook names, their parameters and return values.

2) I really don't like using a Loader in order to load the script: a Loader is used to use a QQuick item, while what we really need is a JS object (also, using a Loader makes the loading of the webview even more complex). I haven't researched this in depth, and indeed it may be that QML doesn't offer much in terms of dynamically loading .js files. At a first sight, it looks like QJSEngine::evaluate() could be a good option: in webcontainer.cpp you could check if the webapp ships a .js file, load it, let the QQmlEngine (which is a subclass of QJSEngine) evaluate it and then set the returned QJSValue as a property of the main QML file we load:
http://doc.qt.io/qt-5/qjsengine.html#evaluate
I never did anything similar, but I believe that it should work.

review: Needs Fixing
1328. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1329. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1330. By Olivier Tilloy

Fix failing autopilot test.
With recent changes in the UITK, swiping a non-swipeable item to the right activates it. Fixes: #1534139

1331. By Olivier Tilloy

Automatically focus the address bar when opening a new tab in wide mode (instead of inferring a "desktop" form factor).
This is not exactly the correct fix (which would require the QInputInfo API), but is better than the current situation anyway. Fixes: #1533317

1332. By Olivier Tilloy

Show the share action if Ubuntu.Content is available, regardless of the form factor.

1333. By Olivier Tilloy

Fix undefined reference when dragging a bookmark from one folder to another one.

1334. By Olivier Tilloy

Ensure that only one instance of the app is running. Fixes: #1535199
Approved by: Alexandre Abreu

1335. By CI Train Bot Account

Releasing 0.23+16.04.20160122-0ubuntu1

Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

> Thanks for the explanations. I've added a few more inline comments

see my comments inline (I updated most)

> , and here
> are two generic remarks:
>
> 1) You should document somewhere the list of hooks that can be intercepted by
> the webapp script. Some king of a readme where we document the hook names,
> their parameters and return values.

agree, done (not as a readme though)

> 2) I really don't like using a Loader in order to load the script: a Loader is
> used to use a QQuick item, while what we really need is a JS object (also,
> using a Loader makes the loading of the webview even more complex). I haven't
> researched this in depth, and indeed it may be that QML doesn't offer much in
> terms of dynamically loading .js files. At a first sight, it looks like
> QJSEngine::evaluate() could be a good option: in webcontainer.cpp you could
> check if the webapp ships a .js file, load it, let the QQmlEngine (which is a
> subclass of QJSEngine) evaluate it and then set the returned QJSValue as a
> property of the main QML file we load:
> http://doc.qt.io/qt-5/qjsengine.html#evaluate
> I never did anything similar, but I believe that it should work.

yes it would work this is what I do for URI filtering code (see comment) in scheme-filter.cpp.

But for this extension mechanism part, I wanted something simpler maybe and more
flexible than plain QJSEngine ... If one wanted to put a bit more logic in
the 'extension', and possibly have more than one file which is not possible with
QJSEngine (import does not work).

WDYT?

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Alberto Mardegan (mardy) wrote :

Thanks for the update. I didn't know of the QJSEngine limitation about "import" not working; I would still prefer to go through that route, and eventually reconsider it if/when it turns out we really need "import" to work (and who knows, maybe QJSEngine will have support for it by then).

However, I'm not going to block the review on this, if you disagree.

Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

> Thanks for the update. I didn't know of the QJSEngine limitation about
> "import" not working; I would still prefer to go through that route, and
> eventually reconsider it if/when it turns out we really need "import" to work
> (and who knows, maybe QJSEngine will have support for it by then).
>
> However, I'm not going to block the review on this, if you disagree.

well this is a discussion :)

I thought about it and the idea behind the extension option really fits the qml land.
It is not only a pure js bit (although it is in the example), it should have the option
to talk back and forth with the webview and possibly create qml elements of its own
which is not really possible (or with some painful crafted code which would in the end
look simpler with plain qml loading),

wdyt?

would it be better if I used a synchronised Qt.createQmlObject('<with source>') instead
to remove the Loader bit?

Revision history for this message
Alberto Mardegan (mardy) wrote :

> would it be better if I used a synchronised Qt.createQmlObject('<with
> source>') instead
> to remove the Loader bit?

This looks like a good compromise: it allows the extension to live in the QML word, and doesn't suggest that we want the extension to return something visible.

Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

> > would it be better if I used a synchronised Qt.createQmlObject('<with
> > source>') instead
> > to remove the Loader bit?
>
> This looks like a good compromise: it allows the extension to live in the QML
> word, and doesn't suggest that we want the extension to return something
> visible.

I updated the branch

Revision history for this message
Alberto Mardegan (mardy) wrote :

There's a merge conflict, but the new code looks fine, thanks!

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Alberto Mardegan (mardy) :
review: Approve
1336. By Olivier Tilloy

Add a UA override for desktop gmail to get rid of a misleading warning about using a deprecated version of safari. Fixes: #1452616
Approved by: Alexandre Abreu

1337. By Olivier Tilloy

Update tab visuals to higher-contrast assets. Fixes: #1534760

1338. By Olivier Tilloy

Do not connect to the loadingChanged signal, which has been deprecated for a good while. Fixes: #1538190
Approved by: Alexandre Abreu

1339. By Olivier Tilloy

In narrow mode, when a mouse is connected, turn the bottom edge hint into a clickable bottom edge bar. Fixes: #1534239
Approved by: Jamie Strandboge

1340. By Olivier Tilloy

Update focus highlight to match the upcoming UITK implementation. Fixes: #1539176

1341. By CI Train Bot Account

Releasing 0.23+16.04.20160129.1-0ubuntu1

1342. By CI Train Bot Account

Resync trunk.

1343. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1344. By Alexandre Abreu

Enhance google.com specific patterns to enable co.* & com.* patterns
 Fixes: #1517527
Approved by: PS Jenkins bot, Olivier Tilloy

1345. By Alexandre Abreu

Make sure that the overlay views closed by the user are not part of the list of recovered overlays opened after the oom closed the app. Fixes: #1535154
Approved by: Alberto Mardegan

1346. By CI Train Bot Account

Releasing 0.23+16.04.20160202-0ubuntu1

1347. By CI Train Bot Account

Resync trunk.

1348. By Olivier Tilloy

Add video-specific contextual actions. Fixes: #1539676

1349. By Olivier Tilloy

Use the new bottom edge bar to open the tabs view in autopilot tests.

1350. By Olivier Tilloy

Add keyboard navigation support to narrow views (new tab view, history view, bookmarks view, downloads view). Fixes: #1539221

1351. By Olivier Tilloy

Take a capture of the current page shortly after it has finished loading to give rendering an opportunity to complete. Fixes: #1540129

1352. By CI Train Bot Account

Releasing 0.23+16.04.20160215.1-0ubuntu1

1353. By CI Train Bot Account

Resync trunk.

1354. By Olivier Tilloy

Update translation template.

1355. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1356. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1357. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1358. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1359. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1360. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1361. By Olivier Tilloy

Remove the 'formFactor' context property, and replace all its uses by more meaningful conditions. Fixes: #1446904, #1542375

1362. By Olivier Tilloy

Work around bug #1546677 (UITK), by destroying the bookmark options popover instead of hiding it. Fixes: #1546627, #1546677

1363. By Olivier Tilloy

Work around a bug in the UITK that prevents touch scrolling to the left of the address bar by ensuring that the x coordinate of the text field is an integer. Fixes: #1546346

1364. By CI Train Bot Account

Releasing 0.23+16.04.20160223-0ubuntu1

1365. By CI Train Bot Account

Resync trunk.

1366. By Olivier Tilloy

Update translation template.

1367. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1368. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1369. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1370. By Olivier Tilloy

Refer to @{XDG_DOWNLOAD_DIR} in the browser’s apparmor profile instead of hardcoding "Downloads" in English. Fixes: #1535666
Approved by: Jamie Strandboge

1371. By Olivier Tilloy

Visual tweaks per designers’ review.

1372. By Olivier Tilloy

Store entries in the history database on load committed, not load succeeded.
This ensures that content-initiated navigations are also stored. Fixes: #1455858, #1549780
Approved by: Riccardo Padovani

1373. By CI Train Bot Account

Releasing 0.23+16.04.20160303-0ubuntu1

1374. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1375. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1376. By Alexandre Abreu

Handle context menu in overlay webviews. Fixes: #1533727
Approved by: David Barth, Alberto Mardegan, Olivier Tilloy

1377. By CI Train Bot Account

Releasing 0.23+16.04.20160307-0ubuntu1

1378. By CI Train Bot Account

Resync trunk.

1379. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1380. By Olivier Tilloy

Add a touch selection controller. Fixes: #1376268, #1551494
Approved by: Alexandre Abreu

1381. By CI Train Bot Account

Releasing 0.23+16.04.20160310-0ubuntu1

1382. By Alberto Mardegan

Activate the Webapp only when we are ready to navigate to the webapp URL
 Fixes: #1507995
Approved by: Alexandre Abreu

1383. By CI Train Bot Account

Releasing 0.23+16.04.20160311-0ubuntu1

1384. By CI Train Bot Account

Resync trunk.

1385. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1386. By Alexandre Abreu

Handle media access request from webcontainer main view and overlay views Fixes: #1554202
Approved by: Olivier Tilloy

1387. By CI Train Bot Account

Releasing 0.23+16.04.20160318-0ubuntu1

1388. By Olivier Tilloy

Tentative fix for a bug where the session state stored on disk is apparently corrupted, thus discarding the current browsing session. Fixes: #1531583

1389. By Olivier Tilloy

Make google maps work in complete mode on tablets. Fixes: #1560079

1390. By CI Train Bot Account

Releasing 0.23+16.04.20160322-0ubuntu1

1391. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1392. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1393. By Alexandre Abreu

Add --open-external-url-in-overlay option to allow externals urls (not part of patterns) are opened in overlays instead of external browser Fixes: #1548575
Approved by: David Barth, Alberto Mardegan

1394. By Alexandre Abreu

Handle live updates to theme color meta tag and reflect them in the top bar background color Fixes: #1550754
Approved by: Alberto Mardegan

1395. By Alexandre Abreu

Set address bar text color to a darker version of the theme color if one is defined in a webapp Fixes: #1548573
Approved by: Alberto Mardegan

1396. By CI Train Bot Account

Releasing 0.23+16.04.20160405-0ubuntu1

1397. By CI Train Bot Account

Resync trunk.

1398. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1399. By Olivier Tilloy

Remove workaround for bug #1526940 that was fixed in the latest release of the UITK.

1400. By Olivier Tilloy

Customize the contents of the media permission dialog to avoid truncated text. Fixes: #1554220

1401. By Olivier Tilloy

Fix broken webapp container autopilot tests. Fixes: #1557019
Approved by: Alexandre Abreu

1402. By Olivier Tilloy

Catch ESC key event one level up to ensure that it’s not incorrectly bubbled up to the outer component. Fixes: #1557016

1403. By Olivier Tilloy

Add dep8 tests and instructions to run them in qemu or on a phone.
Original work by Leo Arias and Vincent Ladeuil.

1404. By Olivier Tilloy

Rename debian packages to follow new QML module naming convention. Fixes: #1342031
Approved by: Timo Jyrinki

1405. By Olivier Tilloy

Make the autopilot tests more reliable when dragging the bottom edge. Fixes: #1560109

1406. By Olivier Tilloy

Fix issues with item selection in the downloads page:
 - do not allow selecting multiple files when only one is expected
 - do not allow entering delete mode (with a long press on an item) while in picker mode Fixes: #1534112, #1561575

1407. By Olivier Tilloy

Import QQuickShortcut from Qt 5.5 to properly handle window-level keyboard shortcuts.
We cannot bump the dependency on Qt to 5.5 as the stable overlay PPA for devices currently has Qt 5.4.1. Fixes: #1537782, #1542224, #1545802

1408. By Loïc Molinari

Made AddressBar height scalable with regards to the grid units system.
Approved by: Olivier Tilloy

1409. By Olivier Tilloy

Do not write the session to a temporary file when no target file is defined.

1410. By Olivier Tilloy

Fix a failing unit test with Qt 5.6. Fixes: #1565507

1411. By Olivier Tilloy

Fix unit tests when run under an sbuild chroot. Fixes: #1567294

1412. By Olivier Tilloy

Simplify the implementation of HistoryViewWide quite a bit,
and as a side effect fix a unit test failure when run against the staging branch of the UITK. Fixes: #1567337

1413. By CI Train Bot Account

Releasing 0.23+16.04.20160408.1-0ubuntu1

1414. By Olivier Tilloy

Update translation template.

1415. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1416. By Olivier Tilloy

Do not handle backspace as a window-level shortcut,
as it would take precedence over backspace events in HTML text fields. Fixes: #1569938

1417. By CI Train Bot Account

Releasing 0.23+16.04.20160413-0ubuntu1

1418. By CI Train Bot Account

Resync trunk.

1419. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1420. By Timo Jyrinki

Fix FTBFS on Qt 5.6 by adding a dependency on qttools5-dev-tools for qdoc Fixes: #1565502
Approved by: Olivier Tilloy

1421. By Olivier Tilloy

Add a progression symbol to list items that open new pages in settings. Fixes: #1517206

1422. By Olivier Tilloy

Add UA overrides for google hangouts to work on desktop, tablet and phone. Fixes: #1565055

1423. By Olivier Tilloy

Simplify focus handling in various places.

1424. By Olivier Tilloy

Remove duplicated list view focus rects,
and update the styling of the remaining ones to match that of the UITK. Fixes: #1570807

1425. By CI Train Bot Account

Releasing 0.23+16.04.20160415-0ubuntu1

1426. By CI Train Bot Account

Resync trunk.

1427. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1428. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1429. By Alexandre Abreu

Track SAML requests that are part of redirection chains and do not trigger a navigation requested delegate. Fixes: #1573017
Approved by: Alberto Mardegan

1430. By Alexandre Abreu

Fix invalid variable reference popupWindowController Fixes: #1572673
Approved by: Alberto Mardegan

1431. By CI Train Bot Account

Releasing 0.23+16.04.20160425.2-0ubuntu1

1432. By CI Train Bot Account

Resync trunk.

1433. By Olivier Tilloy

Autopkgtest fixes.
Approved by: Michał Sawicz

1434. By Olivier Tilloy

When sharing a link, correctly share its URL and title. Fixes: #1571361

1435. By CI Train Bot Account

Releasing 0.23+16.04.20160427-0ubuntu1

1436. By CI Train Bot Account

Resync trunk.

1437. By Olivier Tilloy

Use the UITK’s SwipeArea component for the bottom edge gesture recognition.
This requires oxide 1.14 to work well (because of bug #1459362). Fixes: #1458037, #1474533, #1491806

1438. By Olivier Tilloy

Skip geolocation autopilot tests because they are now failing with oxide 1.14.

1439. By Olivier Tilloy

Read the ubuntu version at build time, instead of hardcoding it. Fixes: #1466427

1440. By CI Train Bot Account

Releasing 0.23+16.04.20160428-0ubuntu1

1441. By CI Train Bot Account

Resync trunk.

1442. By Alexandre Abreu

Specify a parent for embedded uis being launched by webapps Fixes: #1550397
Approved by: Alberto Mardegan

1443. By Alexandre Abreu

Add facebook UA override that fixes photos not being displayed with the right size, and improves the UIs and features (add photos etc.) Fixes: #1457661, #1538056
Approved by: Alberto Mardegan

1444. By Alexandre Abreu

Tweak container context menu open in browser string Fixes: #1532937
Approved by: Olivier Tilloy

1445. By CI Train Bot Account

Releasing 0.23+16.04.20160429.1-0ubuntu1

1446. By CI Train Bot Account

Resync trunk.

1447. By Olivier Tilloy

Update translation template.

1448. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1449. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

1450. By Alexandre Abreu

Introduce a new extension mechanism for the container that allows webapps to plugin into a discrete set of events coming from the container

Revision history for this message
system-apps-ci-bot (system-apps-ci-bot) wrote :

FAILED: Continuous integration, rev:1450
https://jenkins.canonical.com/system-apps/job/lp-webbrowser-app-ci/581/
Executed test runs:
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build/957
    UNSTABLE: https://jenkins.canonical.com/system-apps/job/test-0-autopkgtest/label=phone-armhf,release=vivid+overlay,testname=default/172
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-0-fetch/957
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-1-sourcepkg/release=vivid+overlay/861
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-1-sourcepkg/release=xenial+overlay/861
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-1-sourcepkg/release=yakkety/861
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=amd64,release=vivid+overlay/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=amd64,release=vivid+overlay/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=amd64,release=xenial+overlay/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=amd64,release=xenial+overlay/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=amd64,release=yakkety/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=amd64,release=yakkety/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=armhf,release=vivid+overlay/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=armhf,release=vivid+overlay/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=armhf,release=xenial+overlay/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=armhf,release=xenial+overlay/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=armhf,release=yakkety/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=armhf,release=yakkety/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=i386,release=vivid+overlay/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=i386,release=vivid+overlay/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=i386,release=xenial+overlay/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=i386,release=xenial+overlay/858/artifact/output/*zip*/output.zip
    SUCCESS: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=i386,release=yakkety/858
        deb: https://jenkins.canonical.com/system-apps/job/build-2-binpkg/arch=i386,release=yakkety/858/artifact/output/*zip*/output.zip

Click here to trigger a rebuild:
https://jenkins.canonical.com/system-apps/job/lp-webbrowser-app-ci/581/rebuild

review: Needs Fixing (continuous-integration)

Unmerged revisions

1450. By Alexandre Abreu

Introduce a new extension mechanism for the container that allows webapps to plugin into a discrete set of events coming from the container

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
The diff is not available at this time. You can reload the page or download it.

Subscribers

People subscribed via source and target branches

to status/vote changes: