Questions tagged [seamonkey]

SeaMonkey is an all-in-one internet application suite, formerly known as Mozilla Application Suite.

The SeaMonkey Project provides an all-in-one internet application suite, SeaMonkey.

It is the continuation of Mozilla Application Suite.

References:

9 questions
6
votes
3 answers

How do I prevent Mozilla from up-scaling images on HiDPI displays?

When viewing a raster image, all more or less recent Mozilla products (e. g.: Firefox and SeaMonkey) transform it into a full HTML document, e. g.:
Bass
  • 4,977
  • 2
  • 36
  • 82
2
votes
1 answer

Should I specify the application when using the same XUL overlay?

Let's say I want to use a single overlay in three applications at the same time. Should I specify which line in the manifest file applies to which application? Here's an example of what I currently have: overlay chrome://browser/content/browser.xul…
JohnEye
  • 6,436
  • 4
  • 41
  • 67
2
votes
2 answers

How to create a ui button for SeaMonkey

I'm trying to get my extension (using Firefox Addon SDK 1.17) to work on SeaMonkey (2.30). After modifying install.rdf to allow my extension to be installed, I can see SeaMonkey accepted the extension. However -- my extension's button isn't visible…
Ev Haus
  • 1,578
  • 1
  • 11
  • 23
2
votes
0 answers

temporarily alter SeaMonkey chrome attributes on-the-fly

I don't like that the Session Restore page in Mozilla SeaMonkey appears to specify a very short height, making it impossible to examine what sorts of windows are actually up for restore. I have tracked it down to aboutSessionRestore.css having a…
cnst
  • 25,870
  • 6
  • 90
  • 122
1
vote
1 answer

SIGSEGV when calling JS_NewStringCopyN twice

I have been trying to use the Mozilla / SeaMonkey JavaScript library that ships with Ubuntu 16.04.3 LTS, mozjs185-1.0, but am encountering a SIGSEGV when I try to call JS_NewStringCopyN twice to allocate two JSString objects from char * strings. My…
TimeHorse
  • 510
  • 3
  • 14
1
vote
1 answer

JSON in CouchDB stange behavior

I've created updates handler in CouchDB with test code like this(before inserting in Couch I'm removing newlines): function (doc, req) { if (req['userCtx']['roles'].indexOf('editor') < 0) { return [null, 'Access denied']; } if…
Arman Hayots
  • 2,459
  • 6
  • 29
  • 53
1
vote
1 answer

CouchDB: list of Erlang functions

As I know, CouchDB allows to use some integrated Erlang functions like a sort (and something else). Doing text trimming in JS again, I thought: what if Couch already built this feature in? Maybe trim also integrated? And how much functions are ready…
Arman Hayots
  • 2,459
  • 6
  • 29
  • 53
0
votes
1 answer

CouchDB update handlers: document id must not be empty

I wrote simple update handler: { "handler": "function (doc, req) { if (req.userCtx.roles.indexOf('editor') < 0) return [req.userCtx, 'access error']; if (!doc) { return [doc, 'nothing']; } doc.date = new Date(); doc.edited_by =…
Arman Hayots
  • 2,459
  • 6
  • 29
  • 53
0
votes
2 answers

How to access sidebar Bookmarks Panel page in SeaMonkey

I'm trying to convert my overlay add-on to restartless. I can't access the bookmarks panel (on the sidebar) in SeaMonkey, in order to load my overlay UI. Specifically, I need to do load my overlay to the bm-panel.xul similar to the following: …
Laurel
  • 43
  • 5