Skip to content

Commit

Permalink
add project
Browse files Browse the repository at this point in the history
  • Loading branch information
hcommenges committed Sep 26, 2016
1 parent b553360 commit 1000924
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
13 changes: 13 additions & 0 deletions ExaminatR.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: knitr
LaTeX: pdfLaTeX
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# ExaminatR
Générateur automatique de sujets d'examen

## Description

Générateur automatique de sujets d'examen d'analyse de données

## License

GNU AFFERO GENERAL PUBLIC LICENSE v3
1 change: 1 addition & 0 deletions server.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ shinyServer(function(session, input, output) {
sep = input$sepcol,
quote = input$quote,
dec = input$sepdec,
encoding = input$encodtab,
stringsAsFactor = FALSE,
check.names = FALSE)
})
Expand Down
1 change: 1 addition & 0 deletions ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ shinyUI(fluidPage(theme = "darkGrey.css",
checkboxInput("csvSettings", "Options du format CSV", FALSE),
conditionalPanel(
condition = "input.csvSettings == true",
selectInput("encodtab", "Codage des charactères", choices = c(UTF8 = "UTF-8", Latin1 = "latin1"), selected = "UTF-8", multiple = FALSE, width = "50%"),
radioButtons("sepcol", "Separateur de colonnes",
c(Virgule = ",",
Point_virgule = ";",
Expand Down

0 comments on commit 1000924

Please sign in to comment.