From e56ab9d4ab8a94fefd249a77f6f0badc5e553692 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Fri, 4 Jan 2013 16:43:17 -0800 Subject: [PATCH] Run through and fix broken text items --- api/ace.html | 22 +- api/anchor.html | 31 +- api/background_tokenizer.html | 25 +- api/document.html | 206 ++++-- api/edit_session.html | 491 +++++++------- api/editor.html | 610 ++++++++---------- api/placeholder.html | 26 +- api/range.html | 150 ++--- api/resources/images/Ace_ERD.png | Bin 0 -> 59424 bytes api/resources/images/Ace_ERD.svg | 4 - api/scrollbar.html | 23 +- api/search.html | 29 +- api/selection.html | 213 +++--- api/split.html | 66 +- api/token_iterator.html | 34 +- api/tokenizer.html | 14 +- api/undomanager.html | 32 +- api/virtual_renderer.html | 294 ++++----- doc/Editor.mm | 66 -- doc/additionalObjs.json | 39 +- doc/resources/ace/skeleton/images/Ace_ERD.png | Bin 0 -> 59424 bytes doc/resources/ace/skeleton/images/Ace_ERD.svg | 4 - doc/resources/ace/templates/lib.jade | 4 +- index.html | 5 +- lib/ace/ace.js | 7 +- lib/ace/edit_session.js | 23 +- lib/ace/edit_session/folding.js | 2 +- lib/ace/editor.js | 7 +- lib/ace/keyboard/state_handler.js | 3 +- lib/ace/multi_select.js | 11 +- lib/ace/search.js | 2 +- lib/ace/selection.js | 2 + lib/ace/token_iterator.js | 2 +- 33 files changed, 1171 insertions(+), 1276 deletions(-) create mode 100644 api/resources/images/Ace_ERD.png delete mode 100644 api/resources/images/Ace_ERD.svg delete mode 100644 doc/Editor.mm create mode 100644 doc/resources/ace/skeleton/images/Ace_ERD.png delete mode 100644 doc/resources/ace/skeleton/images/Ace_ERD.svg diff --git a/api/ace.html b/api/ace.html index 0144b6ba..b7f5e4d7 100644 --- a/api/ace.html +++ b/api/ace.html @@ -59,18 +59,22 @@
-
+

Creates a new EditSession, and returns the associated Document.

+
-
+

Creates a new EditSession, and returns the associated Document.

+ +

Arguments

textDocument | String

Required. If text is a Document, it associates the EditSession with it. Otherwise, a new Document is created, with the initial text

+
modeTextMode

Required. The inital language mode to use for the document

+
@@ -83,7 +87,7 @@

Embeds the Ace editor into the DOM, at the element provided by el.

-

Arguments

elString | DOMElement

Required. Either the id of an element, or the element itself

+

Arguments

elString | DOMElement

Required. Either the id of an element, or the element itself

@@ -110,10 +114,10 @@
  • @@ -128,7 +132,7 @@

    Provides access to require in packed noconflict mode

    -

    Arguments

    moduleNameString

    Required.

    +

    Arguments

    moduleNameString

    Required.

    diff --git a/api/anchor.html b/api/anchor.html index d178bb11..7ff8afdf 100644 --- a/api/anchor.html +++ b/api/anchor.html @@ -67,7 +67,7 @@
      @@ -81,8 +81,8 @@

      Creates a new Anchor and associates it with a document.

      Arguments

      docDocument

      Required. The document to associate with the anchor

      -
      rowNumber

      Required. The starting row position

      -
      columnNumber

      Required. The starting column position

      +
      rowNumber

      Required. The starting row position

      +
      columnNumber

      Required. The starting column position

      @@ -97,7 +97,7 @@
        • -
        • Anchor.on("change", function(Object e))
        • +
        • Anchor.on("change", function(Object e))
        @@ -112,7 +112,7 @@

        Both of these objects have a row and column property corresponding to the position.

        Events that can trigger this function include setPosition().

        -

        Arguments

        eObject

        Required. An object containing information about the anchor position. It has two properties:

        +

        Arguments

        eObject

        Required. An object containing information about the anchor position. It has two properties:

        • old: An object describing the old Anchor position
        • value: An object describing the new Anchor position
        • @@ -131,7 +131,7 @@
            • -
            • Anchor.detach
            • +
            • Anchor.detach()
            @@ -144,7 +144,6 @@

            When called, the 'change' event listener is removed.

            -

            Arguments

            @@ -157,7 +156,7 @@
              • -
              • Anchor.getDocument +
              • Anchor.getDocument()
                • Document
                • @@ -175,7 +174,6 @@

                  Returns the current document.

                  -

                  Arguments

                  @@ -188,10 +186,10 @@
                    • -
                    • Anchor.getPosition +
                    • Anchor.getPosition()
                    @@ -206,7 +204,6 @@

                    Returns an object identifying the row and column position of the current anchor.

                    -

                    Arguments

                    @@ -219,7 +216,7 @@
                      • -
                      • Anchor.onChange
                      • +
                      • Anchor.onChange()
                      • Undocumented
                      • @@ -243,7 +240,7 @@
                          @@ -256,9 +253,9 @@

                          Sets the anchor position to the specified row and column. If noClip is true, the position is not clipped.

                          -

                          Arguments

                          rowNumber

                          Required. The row index to move the anchor to

                          -
                          columnNumber

                          Required. The column index to move the anchor to

                          -
                          noClipBoolean

                          Required. Identifies if you want the position to be clipped

                          +

                          Arguments

                          rowNumber

                          Required. The row index to move the anchor to

                          +
                          columnNumber

                          Required. The column index to move the anchor to

                          +
                          noClipBoolean

                          Required. Identifies if you want the position to be clipped

                          diff --git a/api/background_tokenizer.html b/api/background_tokenizer.html index 2bf3a1c5..11ce8b12 100644 --- a/api/background_tokenizer.html +++ b/api/background_tokenizer.html @@ -101,7 +101,7 @@
                            • -
                            • BackgroundTokenizer.on("update", function(Object e))
                            • +
                            • BackgroundTokenizer.on("update", function(Object e))
                            @@ -114,7 +114,7 @@

                            Fires whenever the background tokeniziers between a range of rows are going to be updated.

                            -

                            Arguments

                            eObject

                            Required. An object containing two properties, first and last, which indicate the rows of the region being updated.

                            +

                            Arguments

                            eObject

                            Required. An object containing two properties, first and last, which indicate the rows of the region being updated.

                            @@ -129,7 +129,7 @@
                              • -
                              • BackgroundTokenizer.fireUpdateEvent(Number firstRow, Number lastRow)
                              • +
                              • BackgroundTokenizer.fireUpdateEvent(Number firstRow, Number lastRow)
                              @@ -142,8 +142,8 @@

                              Emits the 'update' event. firstRow and lastRow are used to define the boundaries of the region to be updated.

                              -

                              Arguments

                              firstRowNumber

                              Required. The starting row region

                              -
                              lastRowNumber

                              Required. The final row region

                              +

                              Arguments

                              firstRowNumber

                              Required. The starting row region

                              +
                              lastRowNumber

                              Required. The final row region

                              @@ -157,7 +157,7 @@
                                • -
                                • BackgroundTokenizer.getState(Number row)
                                • +
                                • BackgroundTokenizer.getState(Number row)
                                @@ -170,7 +170,7 @@

                                Returns the state of tokenization at the end of a row.

                                -

                                Arguments

                                rowNumber

                                Required. The row to get state at

                                +

                                Arguments

                                rowNumber

                                Required. The row to get state at

                                @@ -184,7 +184,7 @@
                                  • -
                                  • BackgroundTokenizer.getTokens(Number row)
                                  • +
                                  • BackgroundTokenizer.getTokens(Number row)
                                  @@ -197,7 +197,7 @@

                                  Gives list of tokens of the row. (tokens are cached)

                                  -

                                  Arguments

                                  rowNumber

                                  Required. The row to get tokens at

                                  +

                                  Arguments

                                  rowNumber

                                  Required. The row to get tokens at

                                  @@ -265,7 +265,7 @@
                                    • -
                                    • BackgroundTokenizer.start(Number startRow)
                                    • +
                                    • BackgroundTokenizer.start(Number startRow)
                                    @@ -278,7 +278,7 @@

                                    Starts tokenizing at the row indicated.

                                    -

                                    Arguments

                                    startRowNumber

                                    Required. The row to start at

                                    +

                                    Arguments

                                    startRowNumber

                                    Required. The row to start at

                                    @@ -292,7 +292,7 @@
                                      • -
                                      • BackgroundTokenizer.stop
                                      • +
                                      • BackgroundTokenizer.stop()
                                      @@ -305,7 +305,6 @@

                                      Stops tokenizing.

                                      -

                                      Arguments

                                      diff --git a/api/document.html b/api/document.html index 2c6e9f4c..e26dc9b1 100644 --- a/api/document.html +++ b/api/document.html @@ -19,7 +19,7 @@
                                    -