Shitty TGJ only code.
git-svn-id: http://svn.cleancode.org/svn/pickles@132 4d10bc64-7434-11dc-a737-d2d0f8310089
This commit is contained in:
parent
50b1b03576
commit
b7ce35bb71
2 changed files with 15 additions and 3 deletions
|
@ -27,17 +27,18 @@ global $Config ;
|
|||
// SECURITY: You must explicitly enable this "connector". (Set it to "true").
|
||||
// WARNING: don't just set "$Config['Enabled'] = true ;", you must be sure that only
|
||||
// authenticated users can access this file or use some kind of session checking.
|
||||
$Config['Enabled'] = false ;
|
||||
$Config['Enabled'] = true ;
|
||||
|
||||
|
||||
// Path to user files relative to the document root.
|
||||
$Config['UserFilesPath'] = '/userfiles/' ;
|
||||
$Config['UserFilesPath'] = '/images/uploads/' ;
|
||||
|
||||
// Fill the following value it you prefer to specify the absolute path for the
|
||||
// user files directory. Useful if you are using a virtual directory, symbolic
|
||||
// link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
|
||||
// Attention: The above 'UserFilesPath' must point to the same directory.
|
||||
$Config['UserFilesAbsolutePath'] = '' ;
|
||||
// @todo This can't work if I have other sites that want to use the upload
|
||||
$Config['UserFilesAbsolutePath'] = '/var/www/josh/thatgirljen.com/public/images/uploads/' ;
|
||||
|
||||
// Due to security issues with Apache modules, it is recommended to leave the
|
||||
// following setting enabled.
|
||||
|
|
|
@ -119,6 +119,17 @@ FCKConfig.ToolbarSets["Basic"] = [
|
|||
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
|
||||
] ;
|
||||
|
||||
FCKConfig.ToolbarSets["ThatGirlJen"] = [
|
||||
['Source','NewPage','Preview',],
|
||||
['Cut','Copy','Paste','PasteText','-','Print','SpellCheck'],
|
||||
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
|
||||
'/',
|
||||
['Bold','Italic','Underline','StrikeThrough'],
|
||||
['OrderedList','UnorderedList','-','Outdent','Indent'],
|
||||
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
|
||||
['Link','Unlink','Image','Smiley','SpecialChar','FitWindow']
|
||||
] ;
|
||||
|
||||
FCKConfig.EnterMode = 'p' ; // p | div | br
|
||||
FCKConfig.ShiftEnterMode = 'br' ; // p | div | br
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue