summaryrefslogtreecommitdiff
path: root/actions/designadminpanel.php
AgeCommit message (Collapse)Author
2010-10-21i18n/L10n consistency updates.Siebrand Mazeland
2010-10-19Fix PHP notice when submitting 'design' admin panel on a browser that ↵Brion Vibber
doesn't support file uploads such as Mobile Safari
2010-10-14let users set their SSL logo through the admin panelEvan Prodromou
2010-09-17Removed periods from instructions on some admin panels for consistencyZach Copley
2010-09-13Ticket #2701: old color settings now get reset when changing themes, so you ↵Brion Vibber
don't end up with the previous theme's colors.
2010-06-11Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
2010-06-07Basic custom CSS and theme uploading features. 'local' subdir can now be ↵Brion Vibber
customized to a distinct directory and URL path to make it easier to separate custom themes for a multi-site farm running a common code base. Currently only one custom theme may be uploaded per site, saved with the name 'custom' and stored into the local/themes subdirectory. Administrators can upload a .ZIP archive containing a theme through the design admin panel; its contents are validated to ensure that only legit files are saved, and a 5M size quota is enforced. Theme upload requires the zip extension for PHP; if not present, theme uploading is disabled by default. Uploading and the custom CSS can be controlled via $config['theme_upload']['enabled'] and $config['custom_css']['enabled']. Configurable directory/path/server for 'local' subdirectory (currently only as used for themes; local plugins not yet switched over) Can set $config['local']['dir'] etc; not currently exposed in the admin panels. Per-site directories on a separate themes server could be set up such as: $config['local']['dir'] = '/path/to/themes/local/' . $_nickname; $config['local']['server'] = 'themes.example.com'; $config['local']['path'] = '/local/' . $_nickname; $config['local']['ssl'] = 'never';
2010-06-07break up the giant form function in design admin panel into individual ↵Brion Vibber
sections to make it a little more manageable
2010-04-10Document messages for which clarification was requested.Siebrand Mazeland
2010-04-09Fix inconsistencies in clientError() messagesSiebrand Mazeland
* use correct punctuation * single quotes when replace was possible * wording updated when needed
2010-04-10Fix inconsistencies in clientError() messagesSiebrand Mazeland
* use correct punctuation * single quotes when replace was possible * wording updated when needed
2010-01-27Optionally set a separate Javascript server and pathEvan Prodromou
We have about 10-12 JavaScript pages per Web page. They usually are based on the same server as the Web pages, but since they're static files, it makes sense to offload them to a lite server that handles static files well. This commit lets you set a separate Javascript server and path for the default Javascript code in StatusNet. Squashed commit of the following: commit 139d1622fdafe5ad00c820224416d9021efc3234 Author: Evan Prodromou <evan@status.net> Date: Wed Jan 27 11:30:24 2010 -0500 modules that call htmloutputter::script() don't prescribe js/ path commit c6ca3174af73efed55eaed5ff1e2a3bdc77d2d87 Author: Evan Prodromou <evan@status.net> Date: Wed Jan 27 11:28:07 2010 -0500 configurable server and path for javascript files
2010-01-24Updated path to farbtastic stylesheetSarven Capadisli
2009-12-02Reload the admin design panel page to show the new CSS when theZach Copley
design gets reset.
2009-12-02Only pick up new default site colors if the theme has NOT changed.Zach Copley
2009-11-19Moved most path and server settings to a new paths admin panelZach Copley
2009-11-19Updated markup and style for design admin fieldsetsSarven Capadisli
2009-11-18Design admin panel mostly done.Zach Copley
2009-11-18Updated admin design form markupSarven Capadisli
2009-11-18First draft of the admin panel for site designZach Copley
2009-11-17Get rid of empty select in theme dropdownZach Copley
2009-11-17Added form_data classSarven Capadisli
2009-11-17Updated admin forms to use form_settings stylesSarven Capadisli
2009-11-11Add design admin panelEvan Prodromou