mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 21:43:11 +01:00
45 lines
1.5 KiB
Plaintext
45 lines
1.5 KiB
Plaintext
#
|
|
# 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 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
|
|
#
|
|
# == 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
|