@@ -15,46 +15,69 @@ server:
15
15
# Application configurations
16
16
# ###############################################
17
17
application :
18
+ # License path
18
19
# Absolute path to GroupDocs license file
19
20
licensePath : /Users/Alex/Documents/GroupDocs.Viewer.lic
20
- # Directory where all original files are stored
21
+ # Files/Document path
22
+ # Absolute path to a file storage
21
23
filesDirectory : /Users/Alex/Documents/GroupDocs/
22
- # Directory all custom fonts are stored
24
+ # Fonts path
25
+ # Absolute path to custom fonts directory
23
26
fontsDirectory : /Users/Alex/Projects/Fonts/CustomFonts/
24
27
25
28
resources :
26
- # Run application as service (only public API)
29
+ # Run application as service
30
+ # Set false to run application with embeded resources
27
31
runAsService : false
28
32
# #############################################
29
33
# All params above are required when runAsService: false
30
34
# #############################################
35
+ # Web resources
31
36
# Url/link to web resources (html, js, css, etc) archive
32
37
resourcesUrl : https://github.com/bobkovalex/QuickView/archive/master.zip
33
- # Enable/disable resources downloading, false for download
34
- offlineMode : true
35
- # Set default document to view
38
+ # Resources download
39
+ # Set false to download resources on each application run/restart
40
+ # Set true to use resources from project
41
+ offlineMode : false
42
+ # Default document
43
+ # Absolute or relative path to default document
36
44
defaultDocument : ' '
37
- # Enable/disable HTMl rendering mode, false for image mode
45
+ # HTML rendering mode
46
+ # Set false for image mode
47
+ # Set true for HTML mode
38
48
htmlMode : true
39
- # Pages to be loaded on document open, 0 for all
49
+ # Pages preload
50
+ # How many pages from a document should be loaded, remaining pages will be loaded on page scrolling
51
+ # Set 0 to load all pages at once
40
52
preloadPageCount : 2
41
- # Enable/disable rewrite for uploaded file if file with the same name already exists
53
+ # File rewriting on document uploading
54
+ # Set false to keep both files
55
+ # Set true to replace files with same name
42
56
rewrite : true
43
- # Enable/disable document zoom
57
+ # Document zoom
58
+ # Set false to disable document zooming
44
59
zoom : true
45
- # Enable/disable page navigation
60
+ # Page navigation
61
+ # Set false to disable document navigation (go to next, previous, last and first page)
46
62
pageSelector : true
47
- # Enable/disable text search
63
+ # Document search
64
+ # Set false to disable document text search
48
65
search : true
49
- # Enable/disable thumbnails
66
+ # Thumbnails
67
+ # Set false to disbale thumbnails
50
68
thumbnails : true
51
- # Enable/disable page rotation
69
+ # Page rotation
70
+ # Set false to disbale pages rotation
52
71
rotate : true
53
- # Enable/disable document download
72
+ # Document download
73
+ # Set false to disbale document download
54
74
download : true
55
- # Enable/disable document upload
75
+ # Document upload
76
+ # Set false to disbale document upload
56
77
upload : true
57
- # Enable/disable document print
78
+ # Document print
79
+ # Set false to disbale document print
58
80
print : true
59
- # Enable/disable documents browse
60
- browse : true
81
+ # File browser
82
+ # Set false to disbale document browse
83
+ browse : true
0 commit comments