├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── DTedit-package.R ├── dtedit.R ├── dtedit_demo.R └── dtedit_module.R ├── README.md ├── inst ├── screens │ ├── dtedit_books.png │ ├── dtedit_books_delete.png │ └── dtedit_books_edit.png ├── shiny_demo │ ├── app.R │ ├── books.csv │ └── books.sqlite ├── shiny_module_demo │ ├── books.csv │ └── books.sqlite └── template │ └── app.R └── man ├── DTedit-package.Rd ├── dtedit.Rd ├── dtedit_demo.Rd ├── dtedit_server.Rd └── dtedit_ui.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/DTedit-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/R/DTedit-package.R -------------------------------------------------------------------------------- /R/dtedit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/R/dtedit.R -------------------------------------------------------------------------------- /R/dtedit_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/R/dtedit_demo.R -------------------------------------------------------------------------------- /R/dtedit_module.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/R/dtedit_module.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/README.md -------------------------------------------------------------------------------- /inst/screens/dtedit_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/screens/dtedit_books.png -------------------------------------------------------------------------------- /inst/screens/dtedit_books_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/screens/dtedit_books_delete.png -------------------------------------------------------------------------------- /inst/screens/dtedit_books_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/screens/dtedit_books_edit.png -------------------------------------------------------------------------------- /inst/shiny_demo/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/shiny_demo/app.R -------------------------------------------------------------------------------- /inst/shiny_demo/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/shiny_demo/books.csv -------------------------------------------------------------------------------- /inst/shiny_demo/books.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/shiny_demo/books.sqlite -------------------------------------------------------------------------------- /inst/shiny_module_demo/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/shiny_module_demo/books.csv -------------------------------------------------------------------------------- /inst/shiny_module_demo/books.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/shiny_module_demo/books.sqlite -------------------------------------------------------------------------------- /inst/template/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/inst/template/app.R -------------------------------------------------------------------------------- /man/DTedit-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/man/DTedit-package.Rd -------------------------------------------------------------------------------- /man/dtedit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/man/dtedit.Rd -------------------------------------------------------------------------------- /man/dtedit_demo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/man/dtedit_demo.Rd -------------------------------------------------------------------------------- /man/dtedit_server.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/man/dtedit_server.Rd -------------------------------------------------------------------------------- /man/dtedit_ui.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/DTedit/HEAD/man/dtedit_ui.Rd --------------------------------------------------------------------------------