From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/nl/mozilla/projects/index.html | 14 +++++ .../projects/midas/security_preferences/index.html | 65 ++++++++++++++++++++++ files/nl/mozilla/projects/mozmill/index.html | 53 ++++++++++++++++++ files/nl/mozilla/projects/rhino/index.html | 24 ++++++++ 4 files changed, 156 insertions(+) create mode 100644 files/nl/mozilla/projects/index.html create mode 100644 files/nl/mozilla/projects/midas/security_preferences/index.html create mode 100644 files/nl/mozilla/projects/mozmill/index.html create mode 100644 files/nl/mozilla/projects/rhino/index.html (limited to 'files/nl/mozilla/projects') diff --git a/files/nl/mozilla/projects/index.html b/files/nl/mozilla/projects/index.html new file mode 100644 index 0000000000..7e832a9616 --- /dev/null +++ b/files/nl/mozilla/projects/index.html @@ -0,0 +1,14 @@ +--- +title: Projects +slug: Mozilla/Projects +tags: + - Landing + - Mozilla + - NeedsContent + - NeedsTranslation + - Projects + - TopicStub +translation_of: Mozilla/Projects +--- +

Below you'll find links to documentation about various Mozilla projects; these are often parts of Firefox or other products, but may also be used in other projects as well.

+

{{ LandingPageListSubpages() }}

diff --git a/files/nl/mozilla/projects/midas/security_preferences/index.html b/files/nl/mozilla/projects/midas/security_preferences/index.html new file mode 100644 index 0000000000..c7339d42ed --- /dev/null +++ b/files/nl/mozilla/projects/midas/security_preferences/index.html @@ -0,0 +1,65 @@ +--- +title: Midas editor module security preferences +slug: Mozilla/Projects/Midas/Security_preferences +translation_of: Mozilla/Projects/Midas/Security_preferences +--- +
+

Note: If you've reached this page from a message box in Firefox or another Mozilla product, try using keyboard shortcuts for the Cut, Copy, and Paste commands:

+ + + +

The information on the rest of this page is for Web developers and advanced users. Please do not try to modify this page.

+
+ +

To protect users' private information, unprivileged scripts cannot invoke the Cut, Copy, and Paste commands in Midas, which is Mozilla's rich text editor component. This means that the corresponding buttons on the Mozilla Rich Text Editing demo page will not work. To enable these functions, you must modify your browser preferences.

+ +
+

Warning: Changing these preferences can leave your browser insecure, especially if you grant permission to untrusted sites. Only change these settings as needed to try the demo above and to test your own add-on or Firefox-internal code, and be sure to restore the default settings when you're done!

+
+ +

Changing the preferences in Firefox

+ +
    +
  1. Quit Firefox. If you have Quick Launch running (on Windows, this is an icon in the toolbar), quit that too.
  2. +
  3. Find your Firefox profile directory.
  4. +
  5. Open the user.js file from that directory in a text editor. If there's no user.js file, create one.
  6. +
  7. Add these lines to user.js: +
    user_pref("capability.policy.policynames", "allowclipboard");
    +user_pref("capability.policy.allowclipboard.sites", "https://www-archive.mozilla.org");
    +user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
    +user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
    +
    +
  8. +
  9. Change the URL https://www.mozilla.org to the site for which you want to enable this function.
  10. +
  11. Save the file and restart Firefox. The Clipboard buttons in the demo, or similar buttons on the sites you listed, should now function.
  12. +
+ +
Note: The preference is site as well as protocol specific. For example: + +
user_pref("capability.policy.allowclipboard.sites", "http://www-archive.mozilla.org")
+
+ +

is not the same as:

+ +
user_pref("capability.policy.allowclipboard.sites", "https://www-archive.mozilla.org")
+
+ +

This is because the first uses HTTP while the second uses HTTPS.

+If you want to allow multiple URLs to access the Paste operation, separate the URLs with a space. For example: + +
user_pref("capability.policy.allowclipboard.sites", "https://www-archive.mozilla.org https://developer.mozilla.org")
+
+
+ +

Again, keep in mind the security risks involved here and be sure to remove permission to access the clipboard once you no longer need it enabled.

+ +

See also

+ + diff --git a/files/nl/mozilla/projects/mozmill/index.html b/files/nl/mozilla/projects/mozmill/index.html new file mode 100644 index 0000000000..310071df0b --- /dev/null +++ b/files/nl/mozilla/projects/mozmill/index.html @@ -0,0 +1,53 @@ +--- +title: Mozmill +slug: Mozilla/Projects/Mozmill +translation_of: Mozilla/Projects/Mozmill +--- +

MozMill is een testhulpmiddel en framework voor het schrijven van geautomatiseerde tests voor op Gecko gebaseerde applicaties. (Firefox, Thunderbird, Songbird, enz.). Het is gebouwd als een commandolijn-cliënt om je tests te laten uitvoeren en debuggen. MozMill heeft een uitbreidbare API om je te helpen nuttige tests te schrijven die gebruikersinteractie simuleren. Ook heeft het een volledige test API.

+

Het Mozmill test automatieproject is gestart in Januari 2009 en beschikt over het automatiewerk voor Firefox. Neem een kijkje op de projectpagina of de Mozmill Tests documentatie om een indruk te krijgen van hoe je deel kunt uitmaken van het schrijven en uitvoeren van Mozmill tests. Bestaande tests worden uitgevoerd in de Uitgavetestingscyclus voor nieuwe grote of beveiligingsuitgaves van Firefox.

+

Ook het Mozilla Messaging team heeft een actief project dat Thunderbird testing met Mozmill behandelt.

+
+

Als je vragen of problemen hebt met Mozmill, kan je een mail sturen naar de mozmill-dev mailing list. Voor bugs, vraag alsjeblieft een ticket aan op bugzilla.mozilla.org onder de Testing/Mozmill component.

+
+

Installatie

+

Mozmill is een Pythonpakket gehost op PyPI. Het kan geinstalleerd worden met pip of setuptools (easy_install).

+

Windows

+

De makkelijkste manier om Mozmill werkend te krijgen op Windows is door deze mozmill-env te downloaden. Pak het uit en voer elke keer cmd.run uit als je Mozmill wilt gebruiken. Dit opent een soort van Unix console met Mozmill voorgeïnstalleerd.

+

Mac OS X

+

Als je Mac OS X 10.4 (of hoger) hebt, moet je eerst minstens Python 2.5 van python.org downloaden. Daarna installeer je Mozmill met de setuptools.

+
$ curl -O https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
+$ sudo python ez_setup.py
+$ sudo easy_install pip
+$ sudo pip install mozmill
+

Debian(of soortgelijke) GNU-Linux distributies (Debian, Ubuntu, enz.)

+

Om Mozmill te installeren op Ubuntu hoef je alleen maar deze twee commando's uit te voeren in de terminal:

+
$ sudo apt-get install python-pip
+$ sudo pip install mozmill
+

Mozmill-versies

+

Je kunt je Mozmill-versie achterhalen door het volgende commando uit te voeren:

+
$ mozmill --v
+
+

De huidige stabiele versie van Mozmill is 2.0. Waarschijnlijk heb je deze versie met de bovenstaande stappen geïnstalleerd. Als de bug waar je aan werkt geen 2.0 nodig heeft, voer dan alsjeblieft het volgende commando uit om de laatste versie van de 1.5 branch te krijgen:

+
$ sudo pip install --upgrade mozmill==1.5.24
+
+

Voor de ontwikkeling van Mozmill 2.0 adviseren wij jou om een virtuele omgeving te gebruiken en deze stappen te volgen.

+

Zie ook

+

We hebben een paar andere pagina's om je te helpen het meeste uit Mozmill te halen. Het is misschien handig om deze op te slaan voor later.

+ +

Referenties

+ +

Bugs

+

Mozmill wordt nog ontwikkeld, net zoals de meeste testsystemen in het Mozilla-project. Als je denkt dat je een bug gevonden hebt, controleer dan alsjeblieft de lijst met bestaande bugs. Als je bug hier niet instaat, rapporteer dan alsjeblieft een nieuwe bug onder het "Testing" Product en "Mozmill" Component. Geef alsjeblieft zoveel mogelijk details en stuur het liefst ook de Mozmill test mee, die het probleem laat zien. Bedankt!

+

like most test systems in the Mozilla project. If you think you've found a bug, please check the list of existing bugs. If your found bug is not listed there, please file a new bug under the "Testing" Product and "Mozmill" Component. Please provide as much as possible details and attach the Mozmill test if available, which shows the problem. Thanks for filing!

diff --git a/files/nl/mozilla/projects/rhino/index.html b/files/nl/mozilla/projects/rhino/index.html new file mode 100644 index 0000000000..9ab0aadfb4 --- /dev/null +++ b/files/nl/mozilla/projects/rhino/index.html @@ -0,0 +1,24 @@ +--- +title: Rhino +slug: Mozilla/Projects/Rhino +tags: + - JavaScript + - Mozilla + - Rhino +translation_of: Mozilla/Projects/Rhino +--- +

Image:rhino.jpg

+ +

Rhino is een open-source implementatie van JavaScript helemaal geschreven in Java. Het is gewoonlijk geïntegreerd in Java applicaties om eind gebruikers te voorzien van scripting. Het is geïntegreerd in J2SE 6 als de standaard Java scripting engine. 

+ +

Rhino downloads

+ +

Hoe krijg je de source en binaries.

+ +

Rhino documentatie

+ +

Informatie over Rhino voor script schrijvers en embedders.

+ +

Rhino hulp

+ +

Wat bronnen als je vast zit.

-- cgit v1.2.3-54-g00ecf