# Copyright 2010-2014 Meik Michalke <meik.michalke@hhu.de>
#
# This file is part of the R package rkwarddev.
#
# rkwarddev is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# rkwarddev is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with rkwarddev. If not, see <http://www.gnu.org/licenses/>.
#' Create XML logic section for RKWard plugins
#'
#' This function will create a logic section with "convert", "connect", "include", "insert", "external" and "set" nodes.
#' You can also include JavaScript code to use the locig scripting features of RKWard, if you place it in a comment
#' with \code{\link[rkwarddev:rk.comment]{rk.comment}}: Its contents will automatically be placed inside a
#' \code{<script><![CDATA[ ]]></script>} node.
#'
#' @param ... Objects of class \code{XiMpLe.node}.
#' @return An object of class \code{XiMpLe.node}.
#' @export
#' @seealso
#' \code{\link[rkwarddev:rk.XML.convert]{rk.XML.convert}},
#' \code{\link[rkwarddev:rk.XML.connect]{rk.XML.connect}},
#' \code{\link[rkwarddev:rk.XML.external]{rk.XML.external}},
#' \code{\link[rkwarddev:rk.XML.set]{rk.XML.set}},
#' \code{\link[rkwarddev:rk.XML.switch]{rk.XML.switch}},
#' and the \href{help:rkwardplugins}{Introduction to Writing Plugins for RKWard}
#' @examples
#' # define an input field and two checkboxes
#' test.input <- rk.XML.input("Type some text")
#' test.cbox1 <- rk.XML.cbox(label="Want to type?", value="true")
#' test.cbox2 <- rk.XML.cbox(label="Are you shure?", value="true")
#' # now create some logic so that the input field is only enabled when both boxes are checked
#' test.convert <- rk.XML.convert(c(state=test.cbox1,state=test.cbox2), mode=c(and=""))
#' test.connect <- rk.XML.connect(governor=test.convert, client=test.input, set="enabled")
#' test.logic <- rk.XML.logic(test.convert, test.connect)
#' cat(pasteXML(test.logic))
#'
#' # with only one checkbox, you can directly query if it's checked
#' test.connect2 <- rk.XML.connect(governor=test.cbox1, client=test.input, set="enabled")
#' test.logic2 <- rk.XML.logic(test.connect2)
#' cat(pasteXML(test.logic2))
rk.XML.logic <- function(...){
nodes <- list(...)
# transform "!--" comment nodes into "![CDATA[" for scripting logic
nodes <- sapply(child.list(nodes), function(this.node){
if(identical(XMLName(this.node), "!--")){
XMLName(this.node) <- "![CDATA["
this.node <- XMLNode("script", .children=child.list(this.node, empty=FALSE))
} else {}
return(this.node)
})
# check the node names and allow only valid ones
valid.child("logic", children=nodes)
node <- XMLNode("logic", .children=child.list(nodes, empty=FALSE))
return(node)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.