#
#  FCKeditor - The text editor for Internet - http://www.fckeditor.net
#  Copyright (C) 2003-2007 Frederico Caldeira Knabben
# 
#  == BEGIN LICENSE ==
# 
#  Licensed under the terms of any, but only one, of the following
#  licenses at your choice:
# 
#   - GNU General Public License Version 2 or later (the "GPL")
#     http://www.gnu.org/licenses/gpl.html
#  
#   - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
#     http://www.gnu.org/licenses/lgpl.html
#  
#   - Mozilla Public License Version 1.1 or later (the "MPL")
#     http://www.mozilla.org/MPL/MPL-1.1.html
#  
#  If you wish to allow use of your version of this file under the terms
#  of exclusively one of the GPL, the LGPL or the MPL, indicate your
#  decision by deleting this license provisions and replace them with the
#  notice and other provisions required by the GPL, the LGPL or the MPL.
#  If you do not delete this license provisions, a recipient may use your
#  version of this file under the terms of any one of the GPL, the LGPL
#  or the MPL.
#  
#  == END LICENSE ==
#
# ----------------------------------------------------------------------------- 
#
# On some specific Linux installations you could face problems with Firefox. 
# It could give you errors when loading the editor saying that some illegal
# characters were found (three strange chars in the beginning of the file).
# This could happen if you map the .js or .css files to PHP, for example.
#
# Those characters are the Byte Order Mask (BOM) of the Unicode encoded files.
# All FCKeditor files are Unicode encoded.
#
# Just rename this file to ".htaccess" and leave it in the editor directory. 
# There are no security issues on doing it. It just sets the ".js" and ".css" 
# files to their correct content types.
#

AddType application/x-javascript .js
AddType text/css .css

#
# If PHP is mapped to handle XML files, you could have some issues. The
# following will disable it.
#

AddType text/xml .xml
