Search completed in 1.14 seconds.
107 results for "Welcome":
Your results are loading. Please wait...
Index - Archive of obsolete content
283 introduction welcome to the xul school tutorial!
... 601 plug-n-hack get involved security, plugnhack while this project has been started by the mozilla security team and has been validated with firefox and owasp zap, this is an open project and we welcome involvement from anyone, especially people working on other browsers and security tools.
...comments or questions are welcome and encouraged via the tamarin-devel mailing list.
... 1813 xul accessibility guidelines accessibility, xul welcome to the xul accessibility guidelines.
Preferences - Archive of obsolete content
let's say you want to make the default value for the extensions.myext.welcomemessage preference localizable.
... you should do the following: add this line to some .properties file (for all of your locales), say to chrome://myext/locale/defaults.properties: extensions.myext.welcomemessage=localized default value add the default value for extensions.myext.welcomemessage, pointing to that properties file, by adding the following line to your file with default preferences (see below).
... pref("extensions.myext.welcomemessage", "chrome://myext/locale/defaults.properties"); read the preference with getcomplexvalue, passing nsipreflocalizedstring as atype: var prefs = components.classes["@mozilla.org/preferences-service;1"] .getservice(components.interfaces.nsiprefservice); var branch = prefs.getbranch("extensions.myext."); var value = branch.getcomplexvalue("welcomemessage", components.interfaces.nsipreflocalizedstring).data; the code in step 3 will read the default value from chrome://myext/locale/defaults.properties when no user value is set, and will behave exactly the same as if nsisupportsstring was passed as atype otherwise.
Creating a Help Content Pack - Archive of obsolete content
this attribute is optional, with fallback to the value welcome.
...the sample page chrome://help/locale/welcome.xhtml has a section on searching which may be a useful link to use here.
...recall that in the content pack descriptor file you included an nc:defaulttopic attribute, which defaulted to "welcome".
JavaScript basics - Learn web development
adding a personalized welcome message next, let's change the page title to a personalized welcome message when the user first visits the site.
... this welcome message will persist.
...we will also include an option to change the user, and therefore, the welcome message.
Ember app structure and componentization - Learn web development
this already exists, and its contents currently look like so: {{!-- the following component displays ember's default welcome message.
... --}} <welcomepage /> {{!-- feel free to remove this!
... --}} {{outlet}} <welcomepage /> is a component provided by an ember addon that renders the default welcome page we saw in the previous article, when we first navigated to our server at localhost:4200.
TypeScript support in Svelte - Learn web development
this is how the contents will end up: // stores.ts import { writable } from 'svelte/store' import { localstore } from './localstore.js' import type { todotype } from './types/todo.type' export const alert = writable('welcome to the to-do list app!') const initialtodos: todotype[] = [ { id: 1, name: 'visit mdn web docs', completed: true }, { id: 2, name: 'complete the svelte tutorial', completed: false }, ] export const todos = localstore('mdn-svelte-todo', initialtodos) remember to update the import statements in app.svelte, alert.svelte, and todos.svelte.
... if you open the file todos.svelte and assign a number type to our $alert store, you'll get the following error: that's because when we defined our alert store in the stores.ts file with: export const alert = writable('welcome to the to-do list app!') typescript inferred the generic type to be string.
... if we wanted to be explicit about it, we could do the following: export const alert = writable<string>('welcome to the to-do list app!') now we'll make our localstore store support generics.
Working with Svelte stores - Learn web development
give it the following content: import { writable } from 'svelte/store' export const alert = writable('welcome to the to-do list app!') note: stores can be defined and used outside of svelte components, so you can organize them in any way you please.
... in the above code we import the writable() function from svelte/store and use it to create a new store called alert with an initial value of "welcome to the to-do list app!".
... update stores.js like so: import { writable } from 'svelte/store' import { localstore } from './localstore.js' export const alert = writable('welcome to the to-do list app!') const initialtodos = [ { id: 1, name: 'visit mdn web docs', completed: true }, { id: 2, name: 'complete the svelte tutorial', completed: false }, ] export const todos = localstore('mdn-svelte-todo', initialtodos) using localstore('mdn-svelte-todo', initialtodos), we are configuring the store to save the data in web storage under the key mdn-svelte-todo.
Handling common accessibility problems - Learn web development
if you've not used vo before, you will be given a welcome screen where you can choose to start vo or not, and run through a rather useful tutorial to learn how to use it.
...you'll see the nvda welcome dialog when you start it.
...in the case of nvda, the modifier can either be insert (the default), or capslock (can be chosen by checking the first checkbox in the nvda welcome dialog before pressing ok).
HTMLElement.hidden - Web APIs
javascript document.getelementbyid("okbutton") .addeventlistener("click", function() { document.getelementbyid("welcome").hidden = true; document.getelementbyid("awesome").hidden = false; }, false); this code sets up a handler for the welcome panel's "ok" button that hides the welcome panel and makes the follow-up panel—with the curious name "awesome"—visible in its place.
... the welcome panel <div id="welcome" class="panel"> <h1>welcome to foobar.com!</h1> <p>by clicking "ok" you agree to be awesome every day!</p> <button class="button" id="okbutton">ok</button> </div> this html creates a panel (in a <div> block) that welcomes the user to a site and tells them what they're agreeing to by clicking the ok button.
... the follow-up panel once the user clicks the "ok" button in the welcome panel, the javascript code swaps the two panels by changing their respective values for hidden.
Troubleshooting - Archive of obsolete content
you're welcome to post a question, too.
... and if you'd like to report a bug in the sdk, that's always welcome!
Introduction - Archive of obsolete content
next » welcome to the xul school tutorial!
... welcome to the world of extension development.
The Essentials of an Extension - Archive of obsolete content
<em:name>xul school hello world</em:name> <em:description>welcome to xul school!</em:description> <em:version>0.1</em:version> <em:creator>appcoast</em:creator> <em:homepageurl>https://developer.mozilla.org/docs/xul_school</em:homepageurl> this is the data that is displayed before and after the extension is installed, that you can see in the add-ons manager.
... exercise make the following changes to the example extension: edit the welcome message that is displayed in the alert window.
JXON - Archive of obsolete content
es example #1: how to use jxon to create an html document instead of an xml document: /* the structure of my document */ var omyhtmlstruct = { "html": { "head": { "meta": { "@http-equiv": "content-type", "@content": "text/html; charset=utf-8" }, "title": "my html document", "script": { "@type": "text/javascript", "keyvalue": "alert(\"welcome!\");" }, "style": "p:first-letter {\n font: italic bold 30px georgia, serif;\n}" }, "body": { "h1": "my html document", "p": "hello world!!" } } }; /* create the document */ var omyhtmldoc = jxon.unbuild(omyhtmlstruct, "http://www.w3.org/1999/xhtml"); …and here is the output of alert((new xmlserializer()).serializetostring(omyhtmldoc)): <html> <head> ...
... <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>my html document</title> <script type="text/javascript"> alert("welcome!"); </script> <style> p:first-letter { font: italic bold 30px georgia, serif; } </style> </head> <body> <h1>my html document</h1> <p>hello world!!</p> </body> </html> note: as we already said in the note within code considerations, despite the bidirectional conversion between xml and json is lossless regarding the whole content and the structure of an xml document, it is not lossless regarding the ordering of elements, which for some xml dialects (like xhtml) is part of the information.
Mozilla Crypto FAQ - Archive of obsolete content
support for pgp and other security-related protocols and formats can potentially be added to mozilla in the same manner as ssl and s/mime; if anyone is interested in working on such support within the mozilla project then they are welcome to do so.
...if anyone is interested on working such support within the mozilla project then they are welcome to do so.
Mozilla release FAQ - Archive of obsolete content
people who want to work on an operating system no doubt would be welcomed by the bsd teams, the linux team, the freedows team, or any of the many other open source operating system groups out there.
...maintenance of old documentation would be helpful, new documentation is also welcome.
Advanced text formatting - Learn web development
playable code 2 <h2>live output</h2> <div class="output" style="min-height: 50px;"> </div> <h2>editable code</h2> <p class="a11y-label">press esc to move focus away from the code area (tab inserts a tab character).</p> <textarea id="code" class="input" style="min-height: 150px; width: 95%"> <p>hello and welcome to my motivation page.
...lue; solutionentry = htmlsolution; solution.value = 'show solution'; updatecode(); }); solution.addeventlistener('click', function() { if(solution.value === 'show solution') { textarea.value = solutionentry; solution.value = 'hide solution'; } else { textarea.value = userentry; solution.value = 'show solution'; } updatecode(); }); const htmlsolution = '<p>hello and welcome to my motivation page.
Structuring a page of content - Learn web development
a main content area containing two columns — a main block to contain the welcome text, and a sidebar to contain image thumbnails.
... you need to add a suitable wrapper for: the header the navigation menu the main content the welcome text the image sidebar the footer you should also: apply the provided css to the page by adding another <link> element just below the existing one provided at the start.
Index - Learn web development
found 348 pages: # page tags and summary 1 learn web development beginner, css, html, index, intro, landing, learn, web welcome to the mdn learning area.
... 35 front-end web developer beginner, css, front-end, html, javascript, learn, tools, web standards welcome to our front-end web developer learning pathway!
Client-side storage - Learn web development
again, put the following code at the bottom: // define the namedisplaycheck() function function namedisplaycheck() { // check whether the 'name' data item is stored in web storage if(localstorage.getitem('name')) { // if it is, display personalized greeting let name = localstorage.getitem('name'); h1.textcontent = 'welcome, ' + name; personalgreeting.textcontent = 'welcome to our website, ' + name + '!
... we hope you have fun while you are here.'; // hide the 'remember' part of the form and show the 'forget' part forgetdiv.style.display = 'block'; rememberdiv.style.display = 'none'; } else { // if not, display generic greeting h1.textcontent = 'welcome to our website '; personalgreeting.textcontent = 'welcome to our website.
Getting started with Vue - Learn web development
right now, it should contain a welcome message, a link to the vue documentation, links to the plugins you added when you initialized the app with your cli, and some other useful links to the vue community and ecosystem.
... first of all delete this line: <helloworld msg="welcome to your vue.js app"/> if you save your app.vue file now, the rendered app will throw an error because we’ve registered the component but are not using it.
Articles for new developers
also, before you go any further, we'd like to welcome you to the mozilla community of developers!
...welcome, we're delighted to see you!
Zest
all constructive feedback is very welcome.
... anyone can contribute to the onward development of zest, and teams or individuals who develop security tools are especially welcome to join and help shape zest's future.
Mozilla Projects
all constructive feedback is very welcome.
... anyone can contribute to the onward development of zest, and teams or individuals who develop security tools are especially welcome to join and help shape zest's future.
Autoplay guide for media and Web Audio APIs - Web media technologies
automatically starting the playback of audio (or videos with audio tracks) immediately upon page load can be an unwelcome surprise to users.
...if others have it already, they are welcome to pitch in with this section...
lang/functional - Archive of obsolete content
let { compose } = require("sdk/lang/functional"); let welcome = compose(exclaim, greet); welcome('moe'); // "hi: moe!"; function greet (name) { return "hi: " + name; } function exclaim (statement) { return statement + "!"; } parameters fn...
jpm-mobile - Archive of obsolete content
you're welcome to post a question, too.
jpm - Archive of obsolete content
you are welcome to post a question, too.
An Interview With Douglas Bowman of Wired News - Archive of obsolete content
as a very welcome side benefit, we also believe the accessibility of wired news will dramatically improve without the clutter of nested layout tables.
DTrace - Archive of obsolete content
if you find that there are still use cases of consequence, you're welcome to file a documentation bug.
Repackaging Firefox - Archive of obsolete content
startup.homepage_welcome_url=<string> url to the first-run page.
Plug-n-Hack Get Involved - Archive of obsolete content
while this project has been started by the mozilla security team and has been validated with firefox and owasp zap, this is an open project and we welcome involvement from anyone, especially people working on other browsers and security tools.
BundleLibrary - Archive of obsolete content
we are working on a new bundle library compatible with the current prism version and welcome any contributions from the developer community.
HostWindow - Archive of obsolete content
we are considering whether to support a sidebar in future versions of prism and welcome input on this subject.
Tamarin Roadmap - Archive of obsolete content
comments or questions are welcome and encouraged via the tamarin-devel mailing list.
Using gdb on wimpy computers - Archive of obsolete content
gdb is free software, covered by the gnu general public license, and you are welcome to change it and/or distribute copies of it under certain conditions.
XPJS Components Proposal - Archive of obsolete content
comments and suggestions welcome!
Accessing Files - Archive of obsolete content
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Working With Directories - Archive of obsolete content
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Getting File Information - Archive of obsolete content
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Reading from Files - Archive of obsolete content
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Uploading and Downloading Files - Archive of obsolete content
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Writing to Files - Archive of obsolete content
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
IO - Archive of obsolete content
ArchiveMozillaXULFileGuideIO
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Moving, Copying and Deleting Files - Archive of obsolete content
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
TOC - Archive of obsolete content
ArchiveMozillaXULFileGuideTOC
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Index - Archive of obsolete content
ArchiveMozillaXULIndex
1082 xul accessibility guidelines accessibility, xul welcome to the xul accessibility guidelines.
Property Files - Archive of obsolete content
a line that begins with a hash sign ('#') is treated as a comment: # this is a comment welcomemessage=hello, world!
XUL accessibility guidelines - Archive of obsolete content
introduction welcome to the xul accessibility guidelines.
2006-10-06 - Archive of obsolete content
any test case ideas specific to vista are welcomed.
2006-10-27 - Archive of obsolete content
update welcome page - a bug has been discovered when updating to firefox 2.0.
2006-11-03 - Archive of obsolete content
all questions about the cabf are welcome.
background-size - Archive of obsolete content
people especially interested in this browser are welcome to contribute.
The Business Benefits of Web Standards - Archive of obsolete content
eliminate unwelcome future costs a very significant portion of electronically-stored information is produced for the web and written in html format.
Game development
develop web games welcome to the mdn game development center!
Fundamental CSS comprehension - Learn web development
if you want to use your own image file and fill your own name in, you are welcome to — just make sure the image is square.
Front-end web developer - Learn web development
welcome to our front-end web developer learning pathway!
Functions — reusable blocks of code - Learn web development
for example, say you have an html file that is calling in two external javascript files, and both of them have a variable and a function defined that use the same name: <!-- excerpt from my html --> <script src="first.js"></script> <script src="second.js"></script> <script> greeting(); </script> // first.js let name = 'chris'; function greeting() { alert('hello ' + name + ': welcome to our company.'); } // second.js let name = 'zaptec'; function greeting() { alert('our company is called ' + name + '.'); } both functions you want to call are called greeting(), but you can only ever access the first.js file's greeting() function (the second one is ignored).
Handling text — strings in JavaScript - Learn web development
html provides structure and meaning to our text, css allows us to precisely style it, and javascript contains a number of features for manipulating strings, creating custom welcome messages and prompts, showing the right text labels when needed, sorting terms into the desired order, and much more.
Storing the information you need — Variables - Learn web development
the second line displays a welcome message that includes their name, taken from the variable value.
What is JavaScript? - Learn web development
overview: first steps next welcome to the mdn beginner's javascript course!
JavaScript First Steps - Learn web development
welcome to the mdn beginner's javascript course!
Introduction to the server side - Learn web development
overview: first steps next welcome to the mdn beginner's server-side programming course!
Server-side website programming first steps - Learn web development
guides introduction to the server side welcome to the mdn beginner's server-side programming course!
Command line crash course - Learn web development
welcome to the terminal the terminal is a text interface for executing text-based programs.
Learn web development
welcome to the mdn learning area.
Accessibility Features in Firefox
the mozilla firefox community welcomes bug reports, ideas, documentation, answering questions in the support forums -- and nearly any kind of community involvement resulting in a browser built for a broader audience of users and developers.
CSUN Firefox Materials
the mozilla firefox community welcomes bug reports, ideas, documentation, answering questions in the support forums -- and nearly any kind of community involvement resulting in a browser built for a broader audience of users and developers.
Accessible Toolkit Checklist
contributions are welcome.
Testopia
anyone wishing to help in this effort is more than welcome.
Eclipse CDT Manual Setup
after selecting an appropriate directory, click ok, then close the "welcome" tab when the main eclipse window opens.
Contributing to the Mozilla code base
welcome, we're delighted to see you!
Process scripts
}); the process script's global is a child process message manager, which enables the process script to receive messages from the chrome side, and to send messages to the chrome side: // process-script.js if (services.appinfo.processtype == services.appinfo.process_type_content) { dump("welcome to the process script in a content process"); } else { dump("welcome to the process script in the main process"); } // message is sent using contentprocessmessagemanager sendasyncmessage("hello"); in this example, the dump() statement will run once in each content process as well as in the main process.
Firefox and the "about" protocol
nchronization protocol related to the sync feature about:telemetry displays telemetry data collected and sent to mozilla while firefox is running (in case the user enabled telemetry) about:url-classifier displays the status of the url classifier services that firefox uses (for example for safe browsing) about:webrtc information about webrtc usage about:welcome page first displayed when firefox is installed about:welcomeback information page displayed after firefox is reset these urls are defined in docshell/base/nsaboutredirector.cpp within the kredirmap array.
PerfMeasurement.jsm
note: at present, perfmeasurement.jsm is only functional on linux, but it is planned to add support for windows (bug 583322) and osx (bug 583323) as well, and we welcome patches for other operating systems.
Index
32 svn for localizers intro, localization, svn, opensource welcome to the svn tutorial for localizers!
Localization quick start guide
welcome to mozilla localization (l10n for short)!
SVN for Localizers
welcome to the svn tutorial for localizers!
MathML3Testsuite
however, any report is welcome on the tracking bug for the mathml testsuite.
JS::PerfMeasurement
note: at present, js::perfmeasurement is only functional on linux, but it is planned to add support for windows (bug 583322) and osx (bug 583323) as well, and we welcome patches for other operating systems.
Measuring performance using the PerfMeasurement.jsm code module
you give the constructor a bit-mask of events you're interested in; see note: at present, perfmeasurement.jsm is only functional on linux, but it is planned to add support for windows (bug 583322) and osx (bug 583323) as well, and we welcome patches for other operating systems.
Getting Started With NSS
you are welcome to download the samples via: hg clone https://hg.mozilla.org/projects/nss; cd nss; hg update samples_branch how to contribute ...
Index
your contribution is welcome.
NSS 3.14.2 release notes
they are still under review, and contributions are welcome.
NSS Sample Code
see https://bugzilla.mozilla.org/show_bug.cgi?id=490238 you are welcome to download the new samples via: hg clone https://hg.mozilla.org/projects/nss; cd nss; hg update samples_branch the new samples: /docs/mozilla/projects/nss/new_nss_samples ...
nss tech note7
your contribution is welcome.
Python binding for NSS
red hat welcomes all interested contributors who would like to contribute the the python-nss project as part of an open source community.
Secure Development Guidelines
xss: example the following snippet of javascript: document.write("welcome to " + document.location); ...
nsIPromptService
var prompts = components.classes["@mozilla.org/embedcomp/prompt-service;1"] .getservice(components.interfaces.nsipromptservice); var items = ["hello", "welcome", "howdy", "hi", ":)"]; // list items var selected = {}; var result = prompts.select(null, "title", "what greeting do you want?", items.length, items, selected); // result is true if ok was pressed, false if cancel.
nsIScriptableIO
there are alternative xpcom apis you can use, your help in updating this pages to use the supported api is very much welcome!
Using the Gecko SDK
(ports of this guide are welcome.) a "frozen" interface or function is guaranteed to be supported by future versions of same major version of the platform.
Introduction to the DOM - Web APIs
this following javascript will display an alert when the document is loaded (and when the whole dom is available for use): <body onload="window.alert('welcome to my home page!');"> another example.
File drag and drop - Web APIs
the full source code is available in mdn's drag-and-drop repository (pull requests and/or issues are welcome).
Intersection Observer API - Web APIs
<div id="box"> <div class="vertical"> welcome to <strong>the box!</strong> </div> </div> css the css isn't terribly important for the purposes of this example; it lays out the element and establishes that the background-color and border attributes can participate in css transitions, which we'll use to affect the changes to the element as it becomes more or less obscured.
Multi-touch interaction - Web APIs
the source code is available on github; pull requests and bug reports are welcome.
Pinch zoom gestures - Web APIs
the source code is available on github; pull requests and bug reports are welcome.
Using Pointer Events - Web APIs
the source code is available on github and pull requests and bug reports are welcome.
Using the Resource Timing API - Web APIs
pull requests and bug reports are welcome.
Selection.selectAllChildren() - Web APIs
example html <main> <button>select footer</button> <p>welcome to my website.</p> <p>i hope you enjoy your visit.</p> </main> <footer> <address>webmaster@example.com</address> <p>© 2019</p> </footer> javascript const button = document.queryselector('button'); const footer = document.queryselector('footer'); button.addeventlistener('click', (e) => { window.getselection().selectallchildren(footer); }); result specifications specification status comment ...
Multi-touch interaction - Web APIs
the source code is available on github and pull requests and bug reports are welcome.
Using the User Timing API - Web APIs
pull requests, enhancement requests and bug reports are welcome.
Text labels and names - Accessibility
examples the following example show a simple image map (taken from h24: providing text alternatives for the area elements of image maps): <img src="welcome.gif" usemap="#map1" alt="areas in the library.
Auto-placement in CSS Grid Layout - CSS: Cascading Style Sheets
it would be to define a rule that said “auto-place items against the next line named “n”, and grid would then skip other lines.there is an issue raised about this on the csswg github repository, and you would be welcome to add your own use cases to this.
<audio>: The Embed Audio element - HTML: Hypertext Markup Language
WebHTMLElementaudio
1 00:00:00 --> 00:00:45 [energetic techno music] 2 00:00:46 --> 00:00:51 welcome to the time keeper's podcast!
List of default Accept values - HTTP
edge text/html, application/xhtml+xml, image/jxr, */* opera text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/webp, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1 values for an image when requesting an image, like through an html <img> element, user-agent often sets a specific list of media types to be welcomed.
A re-introduction to JavaScript (JS tutorial) - JavaScript
this should be welcome news to anyone who has had to deal with internationalization.
Functions - JavaScript
shorter functions in some functional patterns, shorter functions are welcome.
Web media technologies
autoplay guide for media and web audio apis unexpected automatic playback of media or audio can be an unwelcome surprise to users.