Skip to content

Commit

Permalink
#67 Documentation updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
karma4u101 committed Apr 21, 2016
1 parent 51172a9 commit 0f8fa6b
Show file tree
Hide file tree
Showing 6 changed files with 133 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ package object FoBoBs {
* {{{
* import net.liftmodules.{FoBoBs => FoBo}
* :
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Companion Object]
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait ToolKit

Expand All @@ -55,9 +55,9 @@ package object FoBoBs {
* {{{
* import net.liftmodules.{FoBoBs => FoBo}
* :
* FoBo.Resource.Init=FoBo.Resource.[Resource Companion Object]
* FoBo.Resource.Init=FoBo.Resource.[Resource Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait Resource

Expand All @@ -68,9 +68,9 @@ package object FoBoBs {
* {{{
* import net.liftmodules.{FoBoBs => FoBo}
* :
* FoBo.API.Init=FoBo.API.[API Companion Object]
* FoBo.API.Init=FoBo.API.[API Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait API

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ package object FoBoFA {
* {{{
* import net.liftmodules.{FoBoFA => FoBo}
* :
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Companion Object]
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait ToolKit

Expand All @@ -43,9 +43,9 @@ package object FoBoFA {
* {{{
* import net.liftmodules.{FoBoFA => FoBo}
* :
* FoBo.Resource.Init=FoBo.Resource.[Resource Companion Object]
* FoBo.Resource.Init=FoBo.Resource.[Resource Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait Resource

Expand All @@ -56,9 +56,9 @@ package object FoBoFA {
* {{{
* import net.liftmodules.{FoBoFA => FoBo}
* :
* FoBo.API.Init=FoBo.API.[API Companion Object]
* FoBo.API.Init=FoBo.API.[API Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait API

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ package object FoBoGCP {
* {{{
* import net.liftmodules.{FoBoGCP => FoBo}
* :
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Companion Object]
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait ToolKit

Expand All @@ -43,9 +43,9 @@ package object FoBoGCP {
* {{{
* import net.liftmodules.{FoBoGCP => FoBo}
* :
* FoBo.Resource.Init=FoBo.Resource.[Resource Companion Object]
* FoBo.Resource.Init=FoBo.Resource.[Resource Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait Resource

Expand All @@ -56,9 +56,9 @@ package object FoBoGCP {
* {{{
* import net.liftmodules.{FoBoGCP => FoBo}
* :
* FoBo.API.Init=FoBo.API.[API Companion Object]
* FoBo.API.Init=FoBo.API.[API Object]
* }}}
* '''Note:''' To see available companion objects click on the round trait icon in the header of this page.
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait API

Expand Down
39 changes: 39 additions & 0 deletions JQuery/JQuery/src/main/scala/net/liftmodules/FoBoJQ/FoBoJQ.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,47 @@ package object FoBoJQ {
FoBoJQ.ToolKit.toString()+" "+FoBoJQ.Resource.toString()+" "+FoBoJQ.API.toString()
}


/**
* Initiate FoBo's JQuery ToolKit(s) in you bootstrap liftweb Boot.
* Using the ToolKit initiation you will bring in both the
* toolkit's resources and FoBo/Lift API associated
* with the toolkit.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoJQ => FoBo}
* :
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait ToolKit

/**
* Initiate FoBo's JQuery Resource(s) in you bootstrap liftweb Boot.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoJQ => FoBo}
* :
* FoBo.Resource.Init=FoBo.Resource.[Resource Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait Resource

/**
* Initiate FoBo's JQuery API in you bootstrap liftweb Boot.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoJQ => FoBo}
* :
* FoBo.API.Init=FoBo.API.[API Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait API

/*=== ToolKit ============================================*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,46 @@ package object FoBoKi {
FoBoKi.ToolKit.toString()+" "+FoBoKi.Resource.toString()+" "+FoBoKi.API.toString()
}

/**
* Initiate FoBo's KineticJs ToolKit(s) in you bootstrap liftweb Boot.
* Using the ToolKit initiation you will bring in both the
* toolkit's resources and FoBo/Lift API associated
* with the toolkit.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoKi => FoBo}
* :
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait ToolKit

/**
* Initiate FoBo's KineticJs Resource(s) in you bootstrap liftweb Boot.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoKi => FoBo}
* :
* FoBo.Resource.Init=FoBo.Resource.[Resource Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait Resource

/**
* Initiate FoBo's KineticJs API in you bootstrap liftweb Boot.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoKi => FoBo}
* :
* FoBo.API.Init=FoBo.API.[API Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait API

/*===Kinetic ToolKit===============================================================*/
Expand Down
38 changes: 38 additions & 0 deletions Pace/Pace/src/main/scala/net/liftmodules/FoBoPa/FoBoPa.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,46 @@ package object FoBoPa {
FoBoPa.ToolKit.toString()+" "+FoBoPa.Resource.toString()+" "+FoBoPa.API.toString()
}

/**
* Initiate FoBo's Pace ToolKit(s) in you bootstrap liftweb Boot.
* Using the ToolKit initiation you will bring in both the
* toolkit's resources and FoBo/Lift API associated
* with the toolkit.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoPa => FoBo}
* :
* FoBo.ToolKit.Init=FoBo.ToolKit.[ToolKit Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait ToolKit

/**
* Initiate FoBo's Pace Resource(s) in you bootstrap liftweb Boot.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoPa => FoBo}
* :
* FoBo.Resource.Init=FoBo.Resource.[Resource Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait Resource

/**
* Initiate FoBo's Pace API in you bootstrap liftweb Boot.
*
* '''Example:'''
* {{{
* import net.liftmodules.{FoBoPa => FoBo}
* :
* FoBo.API.Init=FoBo.API.[API Object]
* }}}
* '''Note:''' To see available objects click on the round trait icon in the header of this page.
*/
abstract sealed trait API

/*=== ToolKit ============================================*/
Expand Down

0 comments on commit 0f8fa6b

Please sign in to comment.