';
+#
+#
+# The reject_message will be shown when the user attempts to upload
+# files that should not be allowed and the filter_action is set to
+# reject.
+#
+# If you enter a text message here it will be displayed as a popup.
+# A URl, will result in the a page being loaded inside the applet.
+#
+# Example:
+$params[] = 'reject_message=File rejected';
+#
+#
+# The message that is displayed when the max_upload property is exceeded is
+# defined by the max_upload_message property. If you enter a text message
+# here it will be displayed as a popup. If you enter a url here the page you
+# specify will be loaded in the applet.
+#
+# Example:
+$params[] = 'max_upload_message=Max upload size exceeded';
+#
+#
+# If the certificate is not accepted by the user, the applet does not
+# have the required permission to access files on the client computer. As
+# a result it will not be possible to carry out the file upload. The user
+# will be notified, by displaying the message specified for the
+# permission_denied property.
+#
+# Enter a url or a simple text to customize this error message. If left
+# blank, a standard message will be displayed. If you choose a url it
+# should be on the same website as the page that contains the applet.
+#
+$params[] = 'permission_denied=Permission Denied.';
+
+#
+# If you want to impose a limit on the total size of the file upload
+# enter a value in kilobytes for the max_upload parameter. A value
+# of 0, the default means unlimited. Please make sure that the server
+# side configuration does not impose a lower limit than what you choose
+# for max_upload
+#
+# Example:
+# max_upload=10240
+# will impose a limit of 10 Mega Bytes
+#
+$params[] = 'max_upload=8000';
+
+#
+# The max_upload property checks the sum of file sizes. You can impose
+# a limit on the size of individual files using the max_file property.
+# The value is in kilobytes. 0 means no limit.
+#
+# Example:
+# max_file=2048
+# for a limit of 2 Mega Bytes
+#
+$params[] = 'max_file=0';
+
+#
+# size_exceeded message will be displayed when either the max_upload or
+# max_file setting has been exceeded. If you enter a text message it
+# will be displayed as a popup. If you enter a URL, the chosen page be
+# loaded with in the applet. (Note: size_exceeded is an alias for
+# max_upload_message)
+#
+$params[] = 'size_exceeded=Max upload size or number of files exceeded';
+
+#
+# As the name suggests the full_path setting determines if absolute pathnames
+# should be sent to the server. If you switch this off, folder information will
+# be stripped from the filenames.
+#
+#$params[] = 'full_path=no';
+
+#
+# When the translate_path setting is switched on, windows style pathnames will
+# be converted to unix style paths. In other words '\' becomes '/'. This
+# setting is required for Resumable file upload.
+#
+#$params[] = 'translate_path=yes';
+
+#
+# When encode_path setting is switched on, pathnames are URLEncoded. This is
+# usefull if you are dealing with filenames that contain special characters.
+# this setting is required for resumable file upload.
+#
+#$params[] = 'encode_path=yes';
+
+#
+# If you need to disable the multiple upload feature, and to upload files
+# one at a time, switch to bachelor mode. When bachelor property is set
+# the applet will complain if you try to upload more than one file. Use
+# the angry_bachelor property to set the error message to be displayed.
+#
+# Example:
+# bachelor=1
+# angry_bachelor=http://upload.thinfile.com/demo/single.html
+#
+
+#
+# If you switch on the browse setting the applet listens for mouse clicks
+# and brings up a file selection dialog. If instead of clicking on the drop
+# target you wish to display a browse button set the browse_button
+# property as well.
+#
+$params[] = 'browse=1';
+$params[] = 'browse_button=0';
+
+#
+# While the upload is in progress you can keep track of it using one of
+# three different progress monitors. Set your preference with the
+# monitor.type property. Possible values are; standard, thumbnails
+# and compact. These values identify the Standard Progress Monitor, A
+# monitor that displays a thumbnail of each image and a compact monitor.
+#
+# Example:
+# monitor.type=thumbnails
+#
+#
+# By default the progress indicator will be hidden (closed) when the upload
+# completes. By uncommenting the following line you can continue to keep the
+# progress bar visible even after upload has been completed. The user will
+# then have to manually close the progress bar.
+#
+#$params[] = 'monitor.keep_visible=yes';
+
+#
+#
+# Use monitor.position to control the placement of the monitor. Asign one of
+# the following values; TL (Top Left), TR (Top Right), BL (Bottom Left),
+# BR (Bottom Right) and center.
+#
+# Example:
+# monitor.position=center
+#
+#
+# To achieve even greater control over the monitor's placement, use
+# cartesian cordinates.
+#
+# Example:
+# monitor.position=(100,100)
+#
+
+#
+# The applet or the entire browser can be redirected to another page
+# when upload completes. Select the destination URL with the
+# external_redir parameter.
+#
+# If you do not enter a value for the external_target property, the URL
+# given external_target will be loaded with in the applet. Otherwise
+# the page will be loaded in the target frame. To redirect the entire
+# browser window use '_top' as the target.
+#
+# If you wish to delay the redirect, enter a value for the
+# redirect_delay property (in milliseconds).
+#
+# Example:
+# external_redir=http://upload.thinfile.com
+# external_target=_top
+$params[] = 'redirect_delay=500';
+
+
+// print config file to output
+print(implode("\r\n\r\n", $params));
\ No newline at end of file
Index: plugins/fileupload/dndlite.jar
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: plugins\fileupload\dndlite.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream