-
Notifications
You must be signed in to change notification settings - Fork 0
/
appConstants.R
37 lines (33 loc) · 1.22 KB
/
appConstants.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# global constants available to the app
# last update:2016-10-17
# constants required for every app
appName <- 'webhistory'
appTitle <- 'Webhistory'
app_id <- 'eu.ownyourdata.webhistory'
helpUrl <- 'https://www.ownyourdata.eu/apps/webhistory/'
# definition of data structure
currRepoSelect <- ''
appRepos <- list(Webhistory = 'eu.ownyourdata.webhistory',
Verlauf = 'eu.ownyourdata.webhistory.log')
appStruct <- list(
Webhistory = list(
fields = c('timestamp', 'url'),
fieldKey = 'timestamp',
fieldTypes = c('timestamp', 'string'),
fieldInits = c('empty', 'empty'),
fieldTitles = c('Zeit', 'URL'),
fieldWidths = c(200, 500)),
Verlauf = list(
fields = c('date', 'description'),
fieldKey = 'date',
fieldTypes = c('date', 'string'),
fieldInits = c('empty', 'empty'),
fieldTitles = c('Datum', 'Text'),
fieldWidths = c(150, 450)))
# Version information
currVersion <- "0.3.0"
verHistory <- data.frame(rbind(
c(version = "0.3.0",
text = "erstes Release")
))
# app specific constants