Search completed in 0.87 seconds.
53 results for "dictionaries":
Your results are loading. Please wait...
WebIDL bindings
strings in sequences, dictionaries, owning unions, and variadic arguments become nsstring.
... in sequences, dictionaries owning unions, and variadic arguments it becomes nscstring.
... bytestring in sequences, dictionaries, owning unions, and variadic arguments becomes nscstring.
...And 8 more matches
mozISpellCheckingEngine
method overview void adddirectory(in nsifile dir); boolean check(in wstring word); void getdictionarylist([array, size_is(count)] out wstring dictionaries, out pruint32 count); void removedirectory(in nsifile dir); void suggest(in wstring word,[array, size_is(count)] out wstring suggestions, out pruint32 count); attributes attribute type description copyright wstring a string indicating the copyright of the engine.
... methods adddirectory() adds all the dictionaries in the specified directory to the spell checker.
... void adddirectory( nsifile dir ); parameters dir an nsifile object indicating the directory from which to add dictionaries.
...And 4 more matches
Mork
MozillaTechMork
the file is a collection of top-level structures, of which there exists four: dictionaries, tables, rows, and groups (changesets).
... dictionaries, tables, and rows all have corresponding metastructures.
... meta-dictionaries are in practice only used to change the scope of alias definitions (the '(a=c)' that you can see in files).
...And 2 more matches
Creating a spell check dictionary add-on
to create a dictionary add-on, simply create a zip file which contains the following files and folders: my-dictionary.xpi install.rdf dictionaries/ locale-code.dic locale-code.aff the .dic and .aff files must be placed in a subfolder named dictionaries within the zip file.
... <?xml version="1.0"?> <rdf xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"> <description about="urn:mozilla:install-manifest"> <em:id>locale-code@dictionaries.addons.mozilla.org</em:id> <em:version>version number</em:version> <em:type>64</em:type> <em:unpack>true</em:unpack> <em:name>name</em:name> <!-- other install.rdf metadata such as em:localized, em:description, em:creator, em:developer, em:translator, em:contributor or em:homepageurl --> <!-- firefox --> <em:targetapplication> <descri...
...0c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}</em:id> <em:minversion>2.15a1</em:minversion> <em:maxversion>2.49</em:maxversion> </description> </em:targetapplication> </description> </rdf> there are some rules about how you should adapt the install.rdf file: if you are creating a new dictionary add-on, we recommend that the em:id consists of your locale code followed by @dictionaries.addons.mozilla.org, but if there is more than one dictionary for your language (for example the german "old spelling" versus "new spelling" dictionaries), you may need to choose another id, that follows the rules of em:id.
...after a successful test, you can upload your add-on to addons.mozilla.org and ask for it to be included in the dictionaries & language packs page.
nsIEditorSpellCheck
if there are no available dictionaries, the return value is false.
... checkcurrentdictionary() call this after any change in installed dictionaries to ensure that the spell checker is not using a current dictionary which is no longer available.
...getdictionarylist() retrieves a list of the currently available dictionaries.
...since spelling dictionaries can now be selected per-site, this method is no longer needed.
WebRTC Statistics API - Web APIs
this object contains a map of named dictionaries based on rtcstats and its affiliated types.
...the table below shows the statistic categories and the corresponding dictionaries; for each statistic category, the full hierarchy of rtcstats-based dictionaries are listed, so you can easily find all the available values.
... mapping of statistic category names to the dictionaries they implement statistic category name (rtcstatstype) description dictionaries implemented candidate-pair statistics describing the change from one rtcicetransport to another, such as during an ice restart.
Adding a new word to the en-US dictionary
get into the dictionary sources directory using this command: cd extensions/spellcheck/locales/hunspell/dictionary-sources there's a special script used for editing dictionaries.
... sh merge-dictionaries to process the dictionary changes you've made.
How Mozilla's build system works
how moz.build processing works for most developers, knowing that moz.build files are python scripts that are executed and emit python dictionaries describing the build configuration is enough.
...the role of treemetadataemitter is to convert the low-level mozbuildsandbox dictionaries into higher-level function-specific data structures.
FileSystemDirectoryEntry.getDirectory() - Web APIs
let dictionary = null; function loaddictionaryforlanguage(appdatadirentry, lang) { dictionary = null; appdatadirentry.getdirectory("dictionaries", {}, function(direntry) { direntry.getfile(lang + "-dict.json", {}, function(fileentry) { fileentry.file(function(dictfile)) { let reader = new filereader(); reader.addeventlistener("loadend", function() { dictionary = json.parse(reader.result); }); reader.readastext(dictfile); }); }); }); } the loaddictionaryforlanguage() funct...
...ion starts by using getdirectory() to obtain the filesystemdirectoryentry object representing a subfolder named "dictionaries" located inside the specified app data directory.
FileSystemDirectoryEntry.getFile() - Web APIs
let dictionary = null; function loaddictionaryforlanguage(appdatadirentry, lang) { dictionary = null; appdatadirentry.getdirectory("dictionaries", {}, function(direntry) { direntry.getfile(lang + "-dict.json", {}, function(fileentry) { fileentry.file(function(dictfile)) { let reader = new filereader(); reader.addeventlistener("loadend", function() { dictionary = json.parse(reader.result); }); reader.readastext(dictfile); }); }); }); } the loaddictionaryforlanguage() funct...
...ion starts by using getdirectory() to obtain the filesystemdirectoryentry object representing a subfolder named "dictionaries" located inside the specified app data directory.
Media Capabilities API - Web APIs
media capabilities dictionaries mediaconfiguration describes how video and audio configuration dictionaries must be configured, or defined, to be passed as a parameter of the mediacapabilities.encodinginfo() and mediacapabilities.decodinginfo() methods.
... it is inherited by the mediadecodingconfiguration and mediaencodingconfiguration dictionaries.
PaymentDetailsBase - Web APIs
the paymentdetailsbase dictionary is a mixin used by the paymentdetailsinit and paymentdetailsupdate dictionaries.
... derived dictionaries the following dictionaries include paymentdetailsbase.
Payment Request API - Web APIs
dictionaries addresserrors a dictionary containing strings providing descriptive explanations of any errors in any paymentaddress entries which have errors.
... related dictionaries for the basic card specification basiccardchangedetails an object providing redacted address information that is provided as the methoddetails on the paymentmethodchange event sent to the paymentrequest when the user changes payment information.
RTCStats - Web APIs
WebAPIRTCStats
specific classes of statistic are defined as dictionaries based on rtcstats.
... the statistics type hierarchy the various dictionaries that are used to define the contents of the objects that contain each of the various types of statistics for webrtc are structured in such a way that they build upon the core rtcstats dictionary, each layer adding more relevant information.
Screen Capture API - Web APIs
additions to existing dictionaries the screen capture api adds properties to the following dictionaries defined by other specifications.
... dictionaries the following dictionaries are defined by the screen capture api.
WebRTC API - Web APIs
connection setup and management these interfaces, dictionaries, and types are used to set up, open, and manage webrtc connections.
... dictionaries rtcconfiguration used to provide configuration options for an rtcpeerconnection.
Install Manifests - Archive of obsolete content
if an extension includes the following then it must request unpacking: binary xpcom components plugins search plugins dlls loaded with ctypes dictionaries window icons examples <description about="urn:mozilla:install-manifest"> <em:id>extension@mysite.com</em:id> <em:unpack>true</em:unpack> ...
MCD, Mission Control Desktop, AKA AutoConfig - Archive of obsolete content
2 10:45 dictionaries drwxr-xr-x 3 root root 4096 juil.
Structure of an installable bundle - Archive of obsolete content
/searchplugins/*.xml mozsearch and opensearch plugins firefox 2 and greater /dictionaries/*.{aff|dic} myspell dictionaries firefox 2 and greater of course, an extension need not (and normally won't) have all of these directories.
What XULRunner Provides - Archive of obsolete content
ing (xre_initembedding) javaxpcom embedding gtkmozembed (linux only) activex control (windows only) (not yet complete) obsolete since gecko 7.0 nsview-based-widget (mac os x only) (not yet complete) the "maybe" list the following features have been discussed and may be included if developer time permits and code size is controlled: ldap support spellchecking support (with or without dictionaries provided) see bug 285977 core support for profile roaming (with application-specific extensibility) pyxpcom embedding (not yet complete) - but it does work, if you compile a custom build that includes the pyxpcom bindings and there is a working python available.
2006-10-20 - Archive of obsolete content
people who want to upload dictionaries should be advised and check #amo at irc.mozilla.org.
2006-11-3 - Archive of obsolete content
revisiting mozillatranslator bugs in bugzilla revisiting mozillatranslator bugs in bugzilla dictionary packages there are some dictionaries at http://dictionaries.mozdev.org/installation.html which are not at https://addons.mozilla.org/en/dictionaries.
XUL Parser in Python - Archive of obsolete content
after all the xul files in the specified directory and its subdirectories are fed to the parser and parsed (using the win32 system's <tt>dir /s /b *.xul</tt> command), the dictionary of dictionaries is sorted and written into an html table.
Define terms with HTML - Learn web development
dictionaries and glossaries formally associate keywords with one or more descriptions, as in this case: blue (adjective) of a color like the sky in a sunny day.
Index - Learn web development
dictionaries and glossaries formally associate keywords with one or more descriptions, as in this case: 255 tips for authoring fast-loading html pages advanced, guide, html, needsupdate, performance, web, web performance these tips are based on common knowledge and experimentation.
Add-ons
those add-ons include: user dictionaries let you spell-check in different languages.
Experimental features in Firefox
nightly 55 no developer edition 55 no beta 55 no release 55 no preference name dom.payments.request.enabled and dom.payments.request.supportedregions basic card api extends the payment request api with dictionaries that define data structures describing card payment types and payment responses.
Dict.jsm
the dict.jsm javascript code module offers routines for managing dictionaries of key/value pairs.
JavaScript code modules
dict.jsm provides an api for key/value pair dictionaries.
XPIDL
dictionaries, enums, and unions), are not currently supported.
Xray vision
so the semantics defined for object and array xrays aim to make it easy for privileged code to treat untrusted objects like simple dictionaries.
XPI
xpi modules (so called "bundles") are employed to install a wide variety of software, including plugins, extensions, themes, and thunderbird dictionaries.
Mozilla
xpi modules (so called " bundles") are employed to install a wide variety of software, including plugins, extensions, themes, and thunderbird dictionaries.
CSS Painting API - Web APIs
dictionaries paintrenderingcontext2dsettings a dictionary providing a subset of canvasrenderingcontext2d settings.
FocusEvent() - Web APIs
the focuseventinit dictionary also accepts fields from the uieventinit and eventinit dictionaries.
Fullscreen API - Web APIs
dictionaries fullscreenoptions provides optional settings you can specify when calling requestfullscreen().
Geolocation API - Web APIs
dictionaries positionoptions represents an object containing options to pass in as a parameter of geolocation.getcurrentposition() and geolocation.watchposition().
databases - Web APIs
return value a promise that resolves either to an error or a list of dictionaries, each with two elements, name and version.
Index - Web APIs
WebAPIIndex
2916 paymentdetailsbase api, dictionary, experimental, interface, mixin, paymentdetailsbase, payments, reference, web payments, web payments api the paymentdetailsbase dictionary is a mixin used by the paymentdetailsinit and paymentdetailsupdate dictionaries.
InputEvent() - Web APIs
the inputeventinit dictionary also accepts fields from uieventinit and from eventinit dictionaries.
KeyboardEvent() - Web APIs
the keyboardeventinit dictionary also accepts fields from the uieventinit and eventinit dictionaries.
Media Session API - Web APIs
dictionaries mediaimage a mediaimage object contains information describing an image associated with the media.
MouseEvent() - Web APIs
the mouseeventinit dictionary also accepts fields from uieventinit and from eventinit dictionaries.
PointerEvent.PointerEvent() - Web APIs
note: the pointereventinit dictionary also accepts fields from the mouseevent, uieventinit and eventinit dictionaries.
RTCRemoteOutboundRtpStreamStats - Web APIs
properties in addition to the properties defined by rtcsentrtpstreamstats and its underlying rtcrtpstreamstats and rtcstats dictionaries, rtcremoteoutboundrtpstreamstats defines the following properties.
RTCRtpParameters - Web APIs
it is extended separately for senders and receivers in the form of the rtcrtpsendparameters and rtcrtpreceiveparameters dictionaries.
RTCStats.type - Web APIs
WebAPIRTCStatstype
the string can be used to determine which of the rtcstats-based dictionaries are the foundation of the statistics object.
RTCStatsType - Web APIs
this type determines which of the rtcstats-based dictionaries the record is based upon.
Reporting API - Web APIs
reporting api dictionaries reportingobserveroptions allows options to be set in the constructor when creating a reporting observer.
TouchEvent() - Web APIs
the toucheventinit dictionary also accepts fields from uieventinit and from eventinit dictionaries.
WheelEvent() - Web APIs
the wheeleventinit dictionary also accepts fields from the mouseeventinit, uieventinit and eventinit dictionaries.
A re-introduction to JavaScript (JS tutorial) - JavaScript
as such, they are similar to: dictionaries in python.
Text formatting - JavaScript
const names = ['hochberg', 'hönigswald', 'holzman']; const germanphonebook = new intl.collator('de-de-u-co-phonebk'); // as if sorting ["hochberg", "hoenigswald", "holzman"]: console.log(names.sort(germanphonebook.compare).join(', ')); // logs "hochberg, hönigswald, holzman" some german words conjugate with extra umlauts, so in dictionaries it’s sensible to order ignoring umlauts (except when ordering words differing only by umlauts: schon before schön).