~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-dataset/src/main/webapp/dhis-web-maintenance-dataset/javascript/FCK/editor/filemanager/upload/asp/config.asp

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
 
3
 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
 
4
 *
 
5
 * == BEGIN LICENSE ==
 
6
 *
 
7
 * Licensed under the terms of any of the following licenses at your
 
8
 * choice:
 
9
 *
 
10
 *  - GNU General Public License Version 2 or later (the "GPL")
 
11
 *    http://www.gnu.org/licenses/gpl.html
 
12
 *
 
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
 
14
 *    http://www.gnu.org/licenses/lgpl.html
 
15
 *
 
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
 
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
 
18
 *
 
19
 * == END LICENSE ==
 
20
 *
 
21
 * Configuration file for the File Manager Connector for ASP.
 
22
-->
 
23
<%
 
24
 
 
25
' SECURITY: You must explicitelly enable this "uploader" (set it to "True").
 
26
Dim ConfigIsEnabled
 
27
ConfigIsEnabled = False
 
28
 
 
29
' Set if the file type must be considere in the target path.
 
30
' Ex: /userfiles/image/ or /userfiles/file/
 
31
Dim ConfigUseFileType
 
32
ConfigUseFileType = False
 
33
 
 
34
' Path to user files relative to the document root.
 
35
Dim ConfigUserFilesPath
 
36
ConfigUserFilesPath = "/userfiles/"
 
37
 
 
38
' Allowed and Denied extensions configurations.
 
39
Dim ConfigAllowedExtensions, ConfigDeniedExtensions
 
40
Set ConfigAllowedExtensions     = CreateObject( "Scripting.Dictionary" )
 
41
Set ConfigDeniedExtensions      = CreateObject( "Scripting.Dictionary" )
 
42
 
 
43
ConfigAllowedExtensions.Add     "File", ""
 
44
ConfigDeniedExtensions.Add      "File", "html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|com|dll|vbs|js|reg|cgi|htaccess|asis|sh|shtml|shtm|phtm"
 
45
 
 
46
ConfigAllowedExtensions.Add     "Image", "jpg|gif|jpeg|png|bmp"
 
47
ConfigDeniedExtensions.Add      "Image", ""
 
48
 
 
49
ConfigAllowedExtensions.Add     "Flash", "swf|fla"
 
50
ConfigDeniedExtensions.Add      "Flash", ""
 
51
 
 
52
%>
 
 
b'\\ No newline at end of file'