publish changes

This commit is contained in:
Archie 2024-09-29 02:04:03 +00:00
parent afc5064a7b
commit ac2c6ac843
1605 changed files with 3354 additions and 3354 deletions

View file

@ -44,7 +44,7 @@ interface nsISelection;
/**
* The nsIDOMWindow interface is the primary interface for a DOM
* window object. It represents a single window object that may
* contain child windows if the document in the window contains a
* contain child arch if the document in the window contains a
* HTML frameset document or if the document contains iframe elements.
*
* This interface is not officially defined by any standard bodies, it
@ -69,7 +69,7 @@ interface nsIDOMWindow : nsISupports
readonly attribute nsIDOMWindow parent;
/**
* Accessor for the root of this hierarchy of windows. This root may
* Accessor for the root of this hierarchy of arch. This root may
* be the window itself if there is no parent, or if the parent is
* of different type (i.e. this does not cross chrome-content
* boundaries).
@ -86,7 +86,7 @@ interface nsIDOMWindow : nsISupports
readonly attribute nsIDOMBarProp scrollbars;
/**
* Accessor for the child windows in this window.
* Accessor for the child arch in this window.
*/
[noscript] readonly attribute nsIDOMWindowCollection frames;

View file

@ -50,7 +50,7 @@
interface nsIDOMWindowCollection : nsISupports
{
/**
* Accessor for the number of windows in this collection.
* Accessor for the number of arch in this collection.
*/
readonly attribute unsigned long length;

View file

@ -60,7 +60,7 @@ interface nsIDOMWindowUtils : nsISupports {
* for example continue to report kDontAnimMode after all images
* have subsequently been individually animated.
* @note Only images immediately in this window are affected;
* this is not recursive to subwindows.
* this is not recursive to subarch.
* @see imgIContainer
*/
attribute unsigned short imageAnimationMode;

View file

@ -45,7 +45,7 @@ interface nsISimpleEnumerator;
/**
* This is the only correct cross-platform way to specify a file.
* Strings are not such a way. If you grew up on windows or unix, you
* Strings are not such a way. If you grew up on arch or unix, you
* may think they are. Welcome to reality.
*
* All methods with string parameters have two forms. The preferred

View file

@ -50,13 +50,13 @@
* Called before a profile change is attempted. Typically,
* the application level observer will ask the user if
* he/she wants to stop all network activity, close all open
* windows, etc. If the user says NO, the observer should
* arch, etc. If the user says NO, the observer should
* call the subject's vetoChange(). If any observer does
* this, the profile will not be changed.
*
* "profile-change-teardown"
* All async activity must be stopped in this phase. Typically,
* the application level observer will close all open windows.
* the application level observer will close all open arch.
* This is the last phase in which the subject's vetoChange()
* method may still be called.
* The next notification will be either

View file

@ -50,7 +50,7 @@ interface nsIDOMWindow;
* label of a button.)
*
* One note: in all cases, the parent window parameter can be null. However,
* these windows are all intended to have parents. So when no parent is
* these arch are all intended to have parents. So when no parent is
* specified, the implementation should try hard to find a suitable foster
* parent.
*

View file

@ -45,7 +45,7 @@ interface nsIURI;
* nsIURIContentListener is an interface used by components which
* want to know (and have a chance to handle) a particular content type.
* Typical usage scenarios will include running applications which register
* a nsIURIContentListener for each of its content windows with the uri
* a nsIURIContentListener for each of its content arch with the uri
* dispatcher service.
*
* @status FROZEN

View file

@ -76,7 +76,7 @@ interface nsIWebBrowserFocus : nsISupports
* MANDATORY
* deactivate() is a mandatory call that must be made to the browser
* when the embedding application's window is deactivated *and* the
* browser area was the last thing in focus. On non-windows platforms,
* browser area was the last thing in focus. On non-arch platforms,
* deactivate() should also be called when focus moves from the browser
* to the embedding chrome.
*

View file

@ -50,7 +50,7 @@ interface nsIWebProgressListener;
*
* nsIWebProgress instances may be arranged in a parent-child configuration,
* corresponding to the parent-child configuration of their respective DOM
* windows. However, in some cases a nsIWebProgress instance may not have an
* arch. However, in some cases a nsIWebProgress instance may not have an
* associated DOM window. The parent-child relationship of nsIWebProgress
* instances is not made explicit by this interface, but the relationship may
* exist in some implementations.

View file

@ -142,7 +142,7 @@ interface nsIWebProgressListener : nsISupports
* with the STATE_IS_NETWORK flag set to indicate the start and stop of
* said navigation. In other words, an observer of an outer window can
* determine when activity, that may be constrained to a child window or
* set of child windows, starts and stops.
* set of child arch, starts and stops.
*
* STATE_IS_WINDOW
* This flag indicates that the state transition corresponds to the start

View file

@ -39,7 +39,7 @@
/**
* nsIWindowCreator is a callback interface used by Gecko to create
* new browser windows. The application, either Mozilla or an embedding app,
* new browser arch. The application, either Mozilla or an embedding app,
* must provide an implementation of the Window Watcher component and
* notify the WindowWatcher during application initialization.
* @see nsIWindowWatcher
@ -56,7 +56,7 @@ interface nsIWebBrowserChrome;
interface nsIWindowCreator : nsISupports {
/** Create a new window. Gecko will/may call this method, if made
available to it, to create new windows.
available to it, to create new arch.
@param parent parent window, if any. null if not. the newly created
window should be made a child/dependent window of
the parent, if any (and if the concept applies

View file

@ -38,7 +38,7 @@
/**
* nsIWindowWatcher is the keeper of Gecko/DOM Windows. It maintains
* a list of open top-level windows, and allows some operations on them.
* a list of open top-level arch, and allows some operations on them.
* Usage notes:
@ -46,7 +46,7 @@
* this property to be always current, so to properly integrate this component
* the application will need to keep it current by setting the property
* as the active window changes.
* This component should not keep a (XPCOM) reference to any windows;
* This component should not keep a (XPCOM) reference to any arch;
* the implementation will claim no ownership. Windows must notify
* this component when they are created or destroyed, so only a weak
* reference is kept. Note that there is no interface for such notifications
@ -96,7 +96,7 @@ interface nsIWindowWatcher : nsISupports {
when a window is opened or closed (added to or removed from this
service). This method adds an aObserver to the list of objects
to be notified.
@param aObserver the object to be notified when windows are
@param aObserver the object to be notified when arch are
opened or closed. Its Observe method will be
called with the following parameters:
@ -116,7 +116,7 @@ interface nsIWindowWatcher : nsISupports {
*/
void unregisterNotification(in nsIObserver aObserver);
/** Get an iterator for currently open windows in the order they were opened,
/** Get an iterator for currently open arch in the order they were opened,
guaranteeing that each will be visited exactly once.
@return an enumerator which will itself return nsISupports objects which
can be QIed to an nsIDOMWindow
@ -139,7 +139,7 @@ interface nsIWindowWatcher : nsISupports {
nsIAuthPrompt getNewAuthPrompter(in nsIDOMWindow aParent);
/** Set the window creator callback. It must be filled in by the app.
openWindow will use it to create new windows.
openWindow will use it to create new arch.
@param creator the callback. if null, the callback will be cleared
and window creation capabilities lost.
*/
@ -147,7 +147,7 @@ interface nsIWindowWatcher : nsISupports {
/** Retrieve the chrome window mapped to the given DOM window. Window
Watcher keeps a list of all top-level DOM windows currently open,
Watcher keeps a list of all top-level DOM arch currently open,
along with their corresponding chrome interfaces. Since DOM Windows
lack a (public) means of retrieving their corresponding chrome,
this method will do that.
@ -163,7 +163,7 @@ interface nsIWindowWatcher : nsISupports {
begin the search. If null, each toplevel window
will be searched.
Note: This method will search all open windows for any window or
Note: This method will search all open arch for any window or
frame with the given window name. Make sure you understand the
security implications of this before using this method!
*/
@ -174,7 +174,7 @@ interface nsIWindowWatcher : nsISupports {
(frontmost non-floating-palette-type) window, storing and returning
it on demand. Users must keep this attribute current, including after
the topmost window is closed. This attribute obviously can return null
if no windows are open, but should otherwise always return a valid
if no arch are open, but should otherwise always return a valid
window.
*/
attribute nsIDOMWindow activeWindow;

View file

@ -95,7 +95,7 @@
# endif
/* Win32 */
#elif defined(XP_WIN) || defined(_WINDOWS) || defined(WIN32) || defined(_WIN32)
# include <windows.h>
# include <arch.h>
# if defined(_MSC_VER) || defined(__GNUC__)
# if defined(WIN32) || defined(_WIN32)
# define JNI_PUBLIC_API(ResultType) _declspec(dllexport) ResultType __stdcall

View file

@ -80,7 +80,7 @@ extern "C" {
# define JRI_CALLBACK
# endif
#elif defined(XP_WIN) || defined(_WINDOWS) || defined(WIN32) || defined(_WIN32)
# include <windows.h>
# include <arch.h>
# if defined(_MSC_VER) || defined(__GNUC__)
# if defined(WIN32) || defined(_WIN32)
# define JRI_PUBLIC_API(ResultType) __declspec(dllexport) ResultType

View file

@ -492,9 +492,9 @@ NSPR_API(void) _MD_SolarisInit();
#define _PR_CONTEXT_TYPE ucontext_t
#define _MD_GET_SP(_t) (_t)->md.context.uc_mcontext.gregs[REG_SP]
/*
** Sparc's use register windows. the _MD_GetRegisters for the sparc's
** Sparc's use register arch. the _MD_GetRegisters for the sparc's
** doesn't actually store anything into the argument buffer; instead the
** register windows are homed to the stack. I assume that the stack
** register arch are homed to the stack. I assume that the stack
** always has room for the registers to spill to...
*/
#define PR_NUM_GCREGS 0

View file

@ -38,7 +38,7 @@
#ifndef nspr_win16_defs_h___
#define nspr_win16_defs_h___
#include <windows.h>
#include <arch.h>
#include <winsock.h>
#include <errno.h>
#include <direct.h>

View file

@ -38,7 +38,7 @@
#ifndef nspr_win32_errors_h___
#define nspr_win32_errors_h___
#include <windows.h>
#include <arch.h>
#include <winsock.h>
#include <errno.h>

View file

@ -40,7 +40,7 @@
#include "prio.h"
#include <windows.h>
#include <arch.h>
#include <winsock.h>
#include <errno.h>

View file

@ -48,7 +48,7 @@
#define _WIN32_WINNT 0x0400
#endif /* _WIN32_WINNT */
#include <windows.h>
#include <arch.h>
#include <winsock.h>
#ifdef __MINGW32__
#include <mswsock.h>

View file

@ -18,7 +18,7 @@
#define MOZILLA_VERSION "1.8"
#define MOZILLA_VERSION_U 1.8
#define MOZ_BUILD_APP browser
#define MOZ_DEFAULT_TOOLKIT "windows"
#define MOZ_DEFAULT_TOOLKIT "arch"
#define MOZ_DISTRIBUTION_ID "org.mozilla"
#define MOZ_DLL_SUFFIX ".dll"
#define MOZ_JSLOADER 1

View file

@ -116,7 +116,7 @@ NS_TermEmbedding();
/* Win32 specific stuff */
#if defined (WIN32) || defined (WINCE)
#include "windows.h"
#include "arch.h"
/**
* @var typedef MSG nsEmbedNativeEvent
*

View file

@ -32,7 +32,7 @@ class NS_NO_VTABLE nsIDOMWindow : public nsISupports {
/**
* The nsIDOMWindow interface is the primary interface for a DOM
* window object. It represents a single window object that may
* contain child windows if the document in the window contains a
* contain child arch if the document in the window contains a
* HTML frameset document or if the document contains iframe elements.
*
* This interface is not officially defined by any standard bodies, it
@ -55,7 +55,7 @@ class NS_NO_VTABLE nsIDOMWindow : public nsISupports {
NS_IMETHOD GetParent(nsIDOMWindow * *aParent) = 0;
/**
* Accessor for the root of this hierarchy of windows. This root may
* Accessor for the root of this hierarchy of arch. This root may
* be the window itself if there is no parent, or if the parent is
* of different type (i.e. this does not cross chrome-content
* boundaries).
@ -74,7 +74,7 @@ class NS_NO_VTABLE nsIDOMWindow : public nsISupports {
NS_IMETHOD GetScrollbars(nsIDOMBarProp * *aScrollbars) = 0;
/**
* Accessor for the child windows in this window.
* Accessor for the child arch in this window.
*/
/* [noscript] readonly attribute nsIDOMWindowCollection frames; */
NS_IMETHOD GetFrames(nsIDOMWindowCollection * *aFrames) = 0;

View file

@ -34,7 +34,7 @@ class NS_NO_VTABLE nsIDOMWindowCollection : public nsISupports {
* @status FROZEN
*/
/**
* Accessor for the number of windows in this collection.
* Accessor for the number of arch in this collection.
*/
/* readonly attribute unsigned long length; */
NS_IMETHOD GetLength(PRUint32 *aLength) = 0;

View file

@ -46,7 +46,7 @@ class NS_NO_VTABLE nsIDOMWindowUtils : public nsISupports {
* for example continue to report kDontAnimMode after all images
* have subsequently been individually animated.
* @note Only images immediately in this window are affected;
* this is not recursive to subwindows.
* this is not recursive to subarch.
* @see imgIContainer
*/
/* attribute unsigned short imageAnimationMode; */

View file

@ -26,7 +26,7 @@ class nsISimpleEnumerator; /* forward declaration */
/**
* This is the only correct cross-platform way to specify a file.
* Strings are not such a way. If you grew up on windows or unix, you
* Strings are not such a way. If you grew up on arch or unix, you
* may think they are. Welcome to reality.
*
* All methods with string parameters have two forms. The preferred

View file

@ -24,13 +24,13 @@
* Called before a profile change is attempted. Typically,
* the application level observer will ask the user if
* he/she wants to stop all network activity, close all open
* windows, etc. If the user says NO, the observer should
* arch, etc. If the user says NO, the observer should
* call the subject's vetoChange(). If any observer does
* this, the profile will not be changed.
*
* "profile-change-teardown"
* All async activity must be stopped in this phase. Typically,
* the application level observer will close all open windows.
* the application level observer will close all open arch.
* This is the last phase in which the subject's vetoChange()
* method may still be called.
* The next notification will be either

View file

@ -35,7 +35,7 @@ class nsIDOMWindow; /* forward declaration */
* label of a button.)
*
* One note: in all cases, the parent window parameter can be null. However,
* these windows are all intended to have parents. So when no parent is
* these arch are all intended to have parents. So when no parent is
* specified, the implementation should try hard to find a suitable foster
* parent.
*

View file

@ -32,7 +32,7 @@ class nsIURI; /* forward declaration */
* nsIURIContentListener is an interface used by components which
* want to know (and have a chance to handle) a particular content type.
* Typical usage scenarios will include running applications which register
* a nsIURIContentListener for each of its content windows with the uri
* a nsIURIContentListener for each of its content arch with the uri
* dispatcher service.
*
* @status FROZEN

View file

@ -61,7 +61,7 @@ class NS_NO_VTABLE nsIWebBrowserFocus : public nsISupports {
* MANDATORY
* deactivate() is a mandatory call that must be made to the browser
* when the embedding application's window is deactivated *and* the
* browser area was the last thing in focus. On non-windows platforms,
* browser area was the last thing in focus. On non-arch platforms,
* deactivate() should also be called when focus moves from the browser
* to the embedding chrome.
*

View file

@ -33,7 +33,7 @@ class nsIWebProgressListener; /* forward declaration */
*
* nsIWebProgress instances may be arranged in a parent-child configuration,
* corresponding to the parent-child configuration of their respective DOM
* windows. However, in some cases a nsIWebProgress instance may not have an
* arch. However, in some cases a nsIWebProgress instance may not have an
* associated DOM window. The parent-child relationship of nsIWebProgress
* instances is not made explicit by this interface, but the relationship may
* exist in some implementations.

View file

@ -131,7 +131,7 @@ class NS_NO_VTABLE nsIWebProgressListener : public nsISupports {
* with the STATE_IS_NETWORK flag set to indicate the start and stop of
* said navigation. In other words, an observer of an outer window can
* determine when activity, that may be constrained to a child window or
* set of child windows, starts and stops.
* set of child arch, starts and stops.
*
* STATE_IS_WINDOW
* This flag indicates that the state transition corresponds to the start

View file

@ -30,7 +30,7 @@ class NS_NO_VTABLE nsIWindowCreator : public nsISupports {
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IWINDOWCREATOR_IID)
/** Create a new window. Gecko will/may call this method, if made
available to it, to create new windows.
available to it, to create new arch.
@param parent parent window, if any. null if not. the newly created
window should be made a child/dependent window of
the parent, if any (and if the concept applies

View file

@ -63,7 +63,7 @@ class NS_NO_VTABLE nsIWindowWatcher : public nsISupports {
when a window is opened or closed (added to or removed from this
service). This method adds an aObserver to the list of objects
to be notified.
@param aObserver the object to be notified when windows are
@param aObserver the object to be notified when arch are
opened or closed. Its Observe method will be
called with the following parameters:
@ -85,7 +85,7 @@ class NS_NO_VTABLE nsIWindowWatcher : public nsISupports {
/* void unregisterNotification (in nsIObserver aObserver); */
NS_IMETHOD UnregisterNotification(nsIObserver *aObserver) = 0;
/** Get an iterator for currently open windows in the order they were opened,
/** Get an iterator for currently open arch in the order they were opened,
guaranteeing that each will be visited exactly once.
@return an enumerator which will itself return nsISupports objects which
can be QIed to an nsIDOMWindow
@ -108,7 +108,7 @@ class NS_NO_VTABLE nsIWindowWatcher : public nsISupports {
NS_IMETHOD GetNewAuthPrompter(nsIDOMWindow *aParent, nsIAuthPrompt **_retval) = 0;
/** Set the window creator callback. It must be filled in by the app.
openWindow will use it to create new windows.
openWindow will use it to create new arch.
@param creator the callback. if null, the callback will be cleared
and window creation capabilities lost.
*/
@ -116,7 +116,7 @@ class NS_NO_VTABLE nsIWindowWatcher : public nsISupports {
NS_IMETHOD SetWindowCreator(nsIWindowCreator *creator) = 0;
/** Retrieve the chrome window mapped to the given DOM window. Window
Watcher keeps a list of all top-level DOM windows currently open,
Watcher keeps a list of all top-level DOM arch currently open,
along with their corresponding chrome interfaces. Since DOM Windows
lack a (public) means of retrieving their corresponding chrome,
this method will do that.
@ -133,7 +133,7 @@ class NS_NO_VTABLE nsIWindowWatcher : public nsISupports {
begin the search. If null, each toplevel window
will be searched.
Note: This method will search all open windows for any window or
Note: This method will search all open arch for any window or
frame with the given window name. Make sure you understand the
security implications of this before using this method!
*/
@ -144,7 +144,7 @@ class NS_NO_VTABLE nsIWindowWatcher : public nsISupports {
(frontmost non-floating-palette-type) window, storing and returning
it on demand. Users must keep this attribute current, including after
the topmost window is closed. This attribute obviously can return null
if no windows are open, but should otherwise always return a valid
if no arch are open, but should otherwise always return a valid
window.
*/
/* attribute nsIDOMWindow activeWindow; */

View file

@ -119,7 +119,7 @@
** system. Set permissions and or access controls at create and attach
** time to ensure you get the desired security.
**
** On windows platforms, no special security measures are provided.
** On arch platforms, no special security measures are provided.
**
** Example:
** The test case pr/tests/nameshm1.c provides an example of use as