Nothing
test_extension <- function(name, extension)
{
# obtain the extension of name
ext = getExtension(basename(name))
# if not the correct extension, stop
if (ext != extension) {
p = paste("'input_file' format and extension have to be \".",
extension, "\" (not \".",ext,"\").", sep="")
stop(p)
}
return(ext);
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.