add deprecation note for the ActiveX part of MysterX
This commit is contained in:
parent
78ac4d3d27
commit
9ff30672fc
|
@ -6,6 +6,8 @@
|
|||
A MysterX application consists of one or more browsers, which are
|
||||
instances of the class @racket[mx-browser%].
|
||||
|
||||
@(deprecated)
|
||||
|
||||
@local-table-of-contents[]
|
||||
|
||||
@include-section["browsers.scrbl"]
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
@title[#:tag "browsers"]{Browsers}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
@defclass[mx-browser% object% ()]{
|
||||
|
||||
@defconstructor[([label string? "MysterX"]
|
||||
|
|
|
@ -1,13 +1,27 @@
|
|||
#lang scheme/base
|
||||
#lang at-exp scheme/base
|
||||
|
||||
(require scribble/manual
|
||||
scribble/core
|
||||
(for-label mysterx
|
||||
scheme/class
|
||||
scheme/base
|
||||
scheme/contract))
|
||||
|
||||
(provide (all-from-out scribble/manual)
|
||||
(provide deprecated yellow
|
||||
(all-from-out scribble/manual)
|
||||
(for-label (all-from-out mysterx
|
||||
scheme/class
|
||||
scheme/base
|
||||
scheme/contract)))
|
||||
|
||||
(define (yellow . content)
|
||||
(make-element (make-style
|
||||
#f
|
||||
(list (make-background-color-property "yellow")))
|
||||
content))
|
||||
|
||||
(define (deprecated)
|
||||
@para{@yellow{@bold{WARNING:}} All bindings in this section are scheduled for removal
|
||||
after version 5.2.1.})
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
@title[#:tag "documents"]{Documents}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
A browser contains one document at a time. If
|
||||
hyperlinks are clicked, or the navigation methods
|
||||
(navigate, go-forward, go-back) are used, the
|
||||
|
|
|
@ -89,6 +89,8 @@
|
|||
|
||||
@title[#:tag "html-element"]{HTML Elements}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
@defclass[mx-element% object% ()]{
|
||||
|
||||
@defmethod[(get-html)
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
@title[#:tag "html-events"]{HTML Events}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
MysterX HTML events are generated by mouse and
|
||||
keyboard interaction with HTML elements in a
|
||||
document.
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
|
||||
@title[#:tag "html" #:style 'toc]{HTML and Dynamic HTML}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
The @racket[mx-element%] class encapsulates HTML elements. By
|
||||
calling the methods of the class, you can change the appearance of
|
||||
elements, and place new HTML before or after the element. While the
|
||||
|
@ -28,6 +30,8 @@
|
|||
|
||||
@section{Generating ActiveX HTML}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
@deftogether[(
|
||||
@defproc[(coclass->html [name string?]
|
||||
[width exact-integer?]
|
||||
|
@ -54,6 +58,8 @@
|
|||
|
||||
@section{CSS}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
In the @racket[mx-element%] method descriptions, ``CSS'' refers to
|
||||
the Cascading Style Sheets specification. A CSS length is string
|
||||
consisting of a decimal integer number followed by one of the units
|
||||
|
@ -76,6 +82,8 @@
|
|||
|
||||
@section{Colors}
|
||||
|
||||
@(deprecated)
|
||||
|
||||
Many element properties represent colors. In HTML, colors may be
|
||||
represented by an RGB string, which contains 7 characters. The first
|
||||
character is @litchar{#}, the rest are hexadecimal digits
|
||||
|
|
|
@ -10,6 +10,10 @@
|
|||
Dynamic HTML (DHTML) is used for component presentation and
|
||||
event-handling.
|
||||
|
||||
@yellow{@bold{WARNING:}} All ActiveX support (as described in
|
||||
@secref["activex"]) is scheduled for removal from MysterX after
|
||||
version 5.2.1.
|
||||
|
||||
@defmodule[mysterx]
|
||||
|
||||
@table-of-contents[]
|
||||
|
|
Loading…
Reference in New Issue
Block a user