Closed
Bug 1038003
Opened 10 years ago
Closed 7 years ago
jpm/cfx optionsURL placeholder inline options not shown in fennec
Categories
(Add-on SDK Graveyard :: General, defect, P2)
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: anaran, Unassigned)
References
()
Details
Attachments
(2 files)
I have not been able to track it down exactly, but something around these changes in https://github.com/mozilla/addon-sdk/pull/1368
(see https://github.com/mozilla/addon-sdk/pull/1368#issuecomment-48849440)
seems to have broken inline option support in Firefox for Android.
I am using nightly fennec and build my addon, https://github.com/anaran/JotFirefox/tree/master/Jot, using
cmd /c "%HOME%/tmp/mozilla/addon-sdk/bin/activate && cfx xpi -v --force-mobile -b c:/programme/nightly/firefox.exe"
Inline options work fine in nightly firefox on Windows XPP, but not in latest nightly fennec installed under android 4.3.
Apart from the options not showing the extension basically works in fennec too.
A package built with jpm xpi -v -b c:/programme/nightly/firefox.exe does not install in fennec.
A toast message says it is not compatible.
The package built with jpm does NOT show an [Options] button in Windows XPP either and self.data.uri does not work either.
Reporter | ||
Comment 1•10 years ago
|
||
The inline options show and work fine on android when building against sdk 1.16 using instructions in
https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Installation#Building_Extension_for_AMO
Reporter | ||
Updated•10 years ago
|
Summary: inline options not shown in fennec → cfx: inline options not shown in fennec; jpm: not on windows xpp either
Reporter | ||
Comment 2•10 years ago
|
||
jpm built extension does not show inline options on windows xpp when built will latest official SDK release 1.16 either.
This should push addon-sdk lib changes out of the picture, if I understand this right.
(addon-sdk-1.16)AichnerAd@Kuckuck:~/tmp/mozilla/JotFirefox/Jot$ cmd /c "%HOME%/tmp/mozilla/addon-sdk-1.16/bin/activate && jpm xpi -v -b c:/programme/nightly/firefox.exe"
Welcome to the Add-on SDK. For the docs, visit https://addons.mozilla.org/en-US/developers/docs/sdk/latest/
JPM info verbose set to true
JPM info binary set to c:/programme/nightly/firefox.exe
JPM info Running undefined on Jot
JPM info Creating XPI at C:\Users\AichnerAd\tmp\mozilla\JotFirefox\Jot\jot.xpi
JPM info Successfully created xpi at C:\Users\AichnerAd\tmp\mozilla\JotFirefox\Jot\jot.xpi
(addon-sdk-1.16)AichnerAd@Kuckuck:~/tmp/mozilla/JotFirefox/Jot$
Reporter | ||
Comment 3•10 years ago
|
||
See also
Bug 1038437: AMO Add-on Compatibility Checker finds jpm-built extension compatible with fennec, incorrectly
Updated•10 years ago
|
Priority: -- → P2
Comment 4•10 years ago
|
||
...but that doesn't mean I don't care
I split off the jpm on Windows part of this to bug 1052803 so it can be tracked separately.
Summary: cfx: inline options not shown in fennec; jpm: not on windows xpp either → cfx: inline options not shown in fennec
Reporter | ||
Updated•10 years ago
|
Summary: cfx: inline options not shown in fennec → jpm: inline options not shown in fennec
Reporter | ||
Comment 6•10 years ago
|
||
As of jpm git master (jpm -V says 0.0.19) this still does not work in Android (4.3) while it works fine on windows xp.
validate function takes same paths on android as in windows.
On android, however, neither getAddonByID callback nor onAddonOptionsDisplayed gets called.
from
sdk/preferences/native-options.js
// allow the use of custom options.xul
AddonManager.getAddonByID(id, (addon) => {
on('addon-options-displayed', onAddonOptionsDisplayed, true);
enabled.resolve({ id: id });
});
function onAddonOptionsDisplayed({ subject: doc, data }) {
Reporter | ||
Comment 7•10 years ago
|
||
sdk/addon/runner.js catch is entered on android,
but I can't determine or find the value of error logged.
// native-options does stuff directly with preferences key from package.json
if (preferences && preferences.length > 0) {
try {
require('../preferences/native-options').
enable({ preferences: preferences, id: id }).
catch(console.exception);
}
catch (error) {
-> console.exception(error);
}
Reporter | ||
Updated•10 years ago
|
Summary: jpm: inline options not shown in fennec → jpm/cfx optionsURL placeholder inline options not shown in fennec
Reporter | ||
Comment 8•10 years ago
|
||
turns out the same problem happens when I build with cfx using addon-sdk git sources, still works fine when using addon-sdk-1.17.
Margaret's patch to Fennec's aboutAddons.js improves the situation by sending notifications for placeholder optionsURL as well. Margaret, I think aboutAddons.js should not set optionsURL = "" for placeholder options. Can you take another look, perhaps provide a new fennec.apk.
Another small patch initially suggested by Tomislav against addon-sdk native-options.js makes these placeholder options appear in the AOM in Fennec. I'll send a pull request for that.
One problem remains (or two):
preference types control and menulist (probably radio too) show up as empty UI elements, even though native-options.js sets their labels. They cannot be interacted with in Fennec because of that.
I will add a screenshot for that.
Reporter | ||
Comment 9•10 years ago
|
||
It's these preferences, also to be found at
https://github.com/anaran/JotFirefox/blob/master/Jot/package.json
{
"description": "Please search list of existing issues before you report bugs and suggest features.",
"hidden": false,
"label": "Report Bugs, Suggest Features",
"name": "REPORT_ISSUE",
"title": "Report Bugs, Suggest Features",
"type": "control"
},
{
"description": "Controls the amount of logging to the browser console by level, from all to errors only to nothing at all. Increase the log level when investigating problems.",
"name": "sdk.console.logLevel",
"type": "menulist",
"title": "Console Logging Level",
"value": "off",
"options": [{
"value": "all",
"label": "all"
}, {
"value": "debug",
"label": "debug"
}, {
"value": "info",
"label": "info"
}, {
"value": "warn",
"label": "warn"
}, {
"value": "error",
"label": "error"
}, {
"value": "off",
"label": "off"
}]
},
Reporter | ||
Comment 10•10 years ago
|
||
Updated•10 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 11•7 years ago
|
||
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•