Type:
Class
Constants:
SEARCH_INDEX_FILE : File.join 'js', 'search_index.js'

Where the search index lives in the generated output

The JsonIndex generator is designed to complement an HTML generator and produces a JSON search index. This generator is derived from sdoc by Vladimir Kolesnikov and contains verbatim code written by him.

This generator is designed to be used with a regular HTML generator:

class RDoc::Generator::Darkfish
  def initialize options
    # ...
    @base_dir = Pathname.pwd.expand_path

    @json_index = RDoc::Generator::JsonIndex.new self, options
  end

  def generate
    # ...
    @json_index.generate
  end
end

Index Format

The index is output as a JSON file assigned to the global variable search_data. The structure is:

var search_data = {
  "index": {
    "searchIndex":
      ["a", "b", ...],
    "longSearchIndex":
      ["a", "a::b", ...],
    "info": [
      ["A", "A", "A.html", "", ""],
      ["B", "A::B", "A::B.html", "", ""],
      ...
    ]
  }
}

The same item is described across the searchIndex, longSearchIndex and info fields. The searchIndex field contains the item's short name, the longSearchIndex field contains the full_name (when appropriate) and the info field contains the item's name, full_name, path, parameters and a snippet of the item's comment.

LICENSE

Copyright © 2009 Vladimir Kolesnikov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

index_methods

index_methods() Instance Public methods Adds methods to the index

2015-05-02 01:28:18
build_index

build_index() Instance Public methods Builds the

2015-05-02 01:06:17
file_dir

file_dir() Instance Public methods The directory files are written to

2015-05-02 01:19:04
generate

generate() Instance Public methods Writes the

2015-05-02 01:24:13
search_string

search_string(string) Instance Public methods Removes whitespace and downcases

2015-05-02 01:38:02
index_pages

index_pages() Instance Public methods Adds pages to the index

2015-05-02 01:33:19
debug_msg

debug_msg(*msg) Instance Public methods Output progress information if debugging

2015-05-02 01:14:16
class_dir

class_dir() Instance Public methods The directory classes are written to

2015-05-02 01:10:17
new

new(parent_generator, options) Class Public methods Creates a new generator

2015-05-02 01:04:26
index_classes

index_classes() Instance Public methods Adds classes and modules to the index

2015-05-02 01:25:43