src/doc: clean old components
authorAlexandre Terrasa <alexandre@moz-code.org>
Tue, 24 Feb 2015 13:47:04 +0000 (14:47 +0100)
committerAlexandre Terrasa <alexandre@moz-code.org>
Tue, 5 May 2015 15:56:58 +0000 (11:56 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/doc/html_templates/html_components.nit

index be6a3d2..221162b 100644 (file)
@@ -36,448 +36,6 @@ class DocHTMLLabel
        end
 end
 
-#########################
-# general layout elements
-#########################
-
-# Something that can go in a section
-# Sections are automatically collected to populate the menu
-class TplSectionElt
-       super Template
-
-       # HTML anchor id
-       var id: String
-
-       # Title to display if any
-       # if both `title` and `summary_title` are null then
-       # the section will not appear in the summary
-       var title: nullable Writable = null is writable
-
-       # Subtitle to display if any
-       var subtitle: nullable Writable = null is writable
-
-       # Title that appear in the summary
-       # if null use `title` instead
-       var summary_title: nullable String = null is writable
-
-       # CSS classes to apply on the section element
-       var css_classes = new Array[String]
-
-       # CSS classes to apply on the title heading element
-       var title_classes = new Array[String]
-
-       # Parent article/section if any
-       var parent: nullable TplSectionElt = null
-
-       init with_title(id: String, title: Writable) do
-               init(id)
-               self.title = title
-       end
-
-       # Level <hX> for HTML heading
-       protected fun hlvl: Int do
-               if parent == null then return 1
-               return parent.hlvl + 1
-       end
-
-       # Elements contained by this section
-       var children = new Array[TplSectionElt]
-
-       # Add an element in this section
-       fun add_child(child: TplSectionElt) do
-               child.parent = self
-               children.add child
-       end
-
-       # Is the section empty (no content at all)
-       fun is_empty: Bool do return children.is_empty
-end
-
-# A HTML <section> element
-class TplSection
-       super TplSectionElt
-
-       redef fun rendering do
-               addn "<section id='{id}' class='{css_classes.join(" ")}'>"
-               if title != null then
-                       var lvl = hlvl
-                       if lvl == 2 then title_classes.add "well well-sm"
-                       addn "<h{lvl} class='{title_classes.join(" ")}'>"
-                       addn title.as(not null)
-                       addn "</h{lvl}>"
-               end
-               if subtitle != null then
-                       addn "<div class='info subtitle'>"
-                       addn subtitle.as(not null)
-                       addn "</div>"
-               end
-               for child in children do
-                       add child
-               end
-               addn "</section>"
-       end
-end
-
-# A page article that can go in a section
-class TplArticle
-       super TplSectionElt
-
-       # Content for this article
-       var content: nullable Writable = null is writable
-       var source_link: nullable Writable = null is writable
-
-       init with_content(id: String, title: Writable, content: Writable) do
-               with_title(id, title)
-               self.content = content
-       end
-
-       redef fun rendering do
-               if is_empty then return
-               addn "<article id='{id}' class='{css_classes.join(" ")}'>"
-               if source_link != null then
-                       add "<div class='source-link'>"
-                       add source_link.as(not null)
-                       addn "</div>"
-               end
-               if title != null then
-                       var lvl = hlvl
-                       if lvl == 2 then title_classes.add "well well-sm"
-                       add "<h{lvl} class='{title_classes.join(" ")}'>"
-                       add title.as(not null)
-                       addn "</h{lvl}>"
-               end
-               if subtitle != null then
-                       add "<div class='info subtitle'>"
-                       add subtitle.as(not null)
-                       addn "</div>"
-               end
-               if content != null then
-                       add content.as(not null)
-               end
-               for child in children do
-                       add child
-               end
-               addn """</article>"""
-       end
-
-       redef fun is_empty: Bool do
-               return title == null and subtitle == null and content == null and children.is_empty
-       end
-end
-
-# A module / class / prop definition
-class TplDefinition
-       super Template
-
-       # Comment to display
-       var comment: nullable Writable = null is writable
-
-       # Namespace for this definition
-       var namespace: nullable Writable = null is writable
-
-       # Location link to display
-       var location: nullable Writable = null is writable
-
-       private fun render_info do
-               addn "<div class='info text-right'>"
-               if namespace != null then
-                       if comment == null then
-                               add "<span class=\"noComment\">no comment for </span>"
-                       end
-                       add namespace.as(not null)
-               end
-               if location != null then
-                       add " "
-                       add location.as(not null)
-               end
-               addn "</div>"
-       end
-
-       private fun render_comment do
-               if comment != null then add comment.as(not null)
-       end
-
-       redef fun rendering do
-               addn "<div class='definition'>"
-               render_comment
-               render_info
-               addn "</div>"
-       end
-end
-
-# Class definition
-class TplClassDefinition
-       super TplDefinition
-
-       var intros = new Array[TplListElt]
-       var redefs = new Array[TplListElt]
-
-       redef fun rendering do
-               addn "<div class='definition'>"
-               render_comment
-               render_info
-               render_list("Introduces", intros)
-               render_list("Redefines", redefs)
-               addn "</div>"
-       end
-
-       private fun render_list(name: String, elts: Array[TplListElt]) do
-               if elts.is_empty then return
-               addn "<h5>{name.html_escape}</h5>"
-               addn "<ul class='list-unstyled list-definition'>"
-               for elt in elts do add elt
-               addn "</ul>"
-       end
-end
-
-# Layout for Search page
-class TplSearchPage
-       super TplSectionElt
-
-       var modules = new Array[Writable]
-       var classes = new Array[Writable]
-       var props = new Array[Writable]
-
-       redef fun rendering do
-               var title = self.title
-               if title != null then addn "<h1>{title.to_s.html_escape}</h1>"
-               addn "<div class='container-fluid'>"
-               addn " <div class='row'>"
-               if not modules.is_empty then
-                       addn "<div class='col-xs-4'>"
-                       addn "<h3>Modules</h3>"
-                       addn "<ul>"
-                       for m in modules do
-                               add "<li>"
-                               add m
-                               addn "</li>"
-                       end
-                       addn "</ul>"
-                       addn "</div>"
-               end
-               if not classes.is_empty then
-                       addn "<div class='col-xs-4'>"
-                       addn "<h3>Classes</h3>"
-                       addn "<ul>"
-                       for c in classes do
-                               add "<li>"
-                               add c
-                               addn "</li>"
-                       end
-                       addn "</ul>"
-                       addn "</div>"
-               end
-               if not props.is_empty then
-                       addn "<div class='col-xs-4'>"
-                       addn "<h3>Properties</h3>"
-                       addn "<ul>"
-                       for p in props do
-                               add "<li>"
-                               add p
-                               addn "</li>"
-                       end
-                       addn "</ul>"
-                       addn "</div>"
-               end
-               addn " </div>"
-               addn "</div>"
-       end
-end
-
-#####################
-# Basiv HTML elements
-#####################
-
-# A html link <a>
-class TplLink
-       super Template
-
-       # Link href
-       var href: String is writable
-
-       # The raw HTML content to display in the link
-       var text: Writable is writable
-
-       # The unescaped optional title.
-       var title: nullable String = null is writable
-
-       init with_title(href, text, title: String) do
-               init(href, text)
-               self.title = title
-       end
-
-       redef fun rendering do
-               add "<a href=\""
-               add href.html_escape
-               add "\""
-               if title != null then
-                       add " title=\""
-                       add title.as(not null).html_escape
-                       add "\""
-               end
-               add ">"
-               add text
-               add "</a>"
-       end
-end
-
-# A <ul> list
-class TplList
-       super TplListElt
-
-       # Elements contained in this list
-       # can be <li> or <ul> elements
-       var elts = new Array[TplListElt]
-
-       # CSS classes of the <ul> element
-       var css_classes = new Array[String]
-
-       # Add content wrapped in a <li> element
-       fun add_li(item: TplListItem) do elts.add item
-
-       init with_classes(classes: Array[String]) do self.css_classes = classes
-
-       fun is_empty: Bool do return elts.is_empty
-
-       redef fun rendering do
-               if elts.is_empty then return
-               addn "<ul class='{css_classes.join(" ")}'>"
-               for elt in elts do add elt
-               addn "</ul>"
-       end
-end
-
-# Something that can be added to a TplList
-class TplListElt
-       super Template
-end
-
-# A list item <li>
-class TplListItem
-       super TplListElt
-
-       # Content of the list item
-       var content = new Template
-
-       # CSS classes of the <li> element
-       var css_classes = new Array[String]
-
-       init with_content(content: Writable) do append(content)
-
-       init with_classes(content: Writable, classes: Array[String]) do
-               with_content(content)
-               css_classes = classes
-       end
-
-       # Append `content` to the item
-       # similar to `self.content.add`
-       fun append(content: Writable) do self.content.add content
-
-       redef fun rendering do
-               add "<li class='{css_classes.join(" ")}'>"
-               add content
-               addn "</li>"
-       end
-end
-
-# A Bootstrap tab component that contains `TplTabPanel`.
-class TplTab
-       super Template
-
-       # Panels contained in the tab.
-       var panels = new Array[TplTabPanel]
-
-       # Add a new panel.
-       fun add_panel(panel: TplTabPanel) do panels.add panel
-
-       # CSS classes of the tab component.
-       var css_classes = new Array[String]
-
-       redef fun rendering do
-               addn "<div class='tab-content'>"
-               for panel in panels do add panel
-               addn "</div>"
-       end
-end
-
-# A panel that goes in a `TplTab`.
-class TplTabPanel
-       super Template
-
-       # CSS classes of the pane element.
-       var css_classes = new Array[String]
-
-       # The panel id.
-       #
-       # Used to show/hide panel.
-       var id: String is noinit
-
-       # The panel name.
-       #
-       # Displayed in the tab header or in the pointing link.
-       var name: Writable
-
-       # Is the panel visible by default?
-       var is_active = false is writable
-
-       # Body of the panel
-       var content: nullable Writable = null is writable
-
-       # Get a link pointing to this panel.
-       fun tpl_link_to: Writable do
-               var lnk = new Template
-               lnk.add "<a data-target='#{id}' data-toggle='pill'>"
-               lnk.add name
-               lnk.add "</a>"
-               return lnk
-       end
-
-       redef fun rendering do
-               add "<div class='tab-pane {css_classes.join(" ")}"
-               if is_active then add "active"
-               addn "' id='{id}'>"
-               if content != null then add content.as(not null)
-               addn "</div>"
-       end
-end
-
-# A label with a text content
-class TplLabel
-       super Template
-
-       # Content of the label if any
-       var content: nullable Writable = null is writable
-
-       # CSS classes of the <span> element
-       var css_classes = new Array[String]
-
-       init with_content(content: Writable) do self.content = content
-       init with_classes(classes: Array[String]) do self.css_classes = classes
-
-       redef fun rendering do
-               add "<span class='label {css_classes.join(" ")}'>"
-               if content != null then add content.as(not null)
-               add "</span>"
-       end
-end
-
-# A label with an icon
-class TplIcon
-       super TplLabel
-
-       # Bootsrap icon name
-       # see: http://getbootstrap.com/components/#glyphicons
-       var icon: String
-
-       init with_icon(icon: String) do self.icon = icon
-
-       redef fun rendering do
-               add "<span class='glyphicon glyphicon-{icon} {css_classes.join(" ")}'>"
-               if content != null then add content.as(not null)
-               add "</span>"
-       end
-end
-
 # A HTML tag attribute
 #  `<tag attr="value">`
 #
@@ -507,17 +65,21 @@ class TagAttribute
        end
 end
 
-# Javacript template
+# Javacript template that can be added into a DocPage.
 class TplScript
        super Template
 
+       # HTML attributes to add in this tag.
        var attrs = new Array[TagAttribute]
+
+       # Text content of this script tag.
        var content: nullable Writable = null is writable
 
        init do
                attrs.add(new TagAttribute("type", "text/javascript"))
        end
 
+       # Render the content of this script.
        protected fun render_content do
                if content != null then add content.as(not null)
        end
@@ -535,7 +97,10 @@ end
 class TplPiwikScript
        super TplScript
 
+       # Piwik URL to use for this tracker.
        var tracker_url: String
+
+       # Site ID used on Piwik system.
        var site_id: String
 
        redef fun render_content do