aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | [ticket/10607] Added 'Powered by' translation string.Fyorl2012-04-043-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added POWERED_BY line to common.php and modified the templates to use it. PHPBB3-10607
| * | | | [ticket/10665] Adding includejs to acp templatesVjacheslav Trushkin2012-04-011-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding includejs to acp overall_footer.html PHPBB3-10665
| * | | | Merge branch 'develop' into feature/merging-style-componentsVjacheslav Trushkin2012-03-3117-30/+246
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (175 commits) [feature/ajax] Remove strange non-breaking spaces from approve button [feature/ajax] Add entirely unrelated but nice newlines [feature/ajax] Unify phpbb_json_response instantiation [feature/ajax] Fix acp_styles activate_deactivate ajax callback name [feature/ajax] Send correct activate/deactivate JSON response in acp_profile [ticket/10270] Alter background colors for posts [feature/ajax] Remove not working module enable/disable ajax code [feature/ajax] Replace static call to phpbb_request with OO [feature/ajax] Remove quick-reply AJAX handling until we have something good [ticket/10270] Changing close button for ajax popups [ticket/10270] Disabling links in disappearing content [ticket/10291] Fixed an AJAX bug on quick reply form submit. [ticket/10273] Fixed accepting / denying posts AJAX. [ticket/10272] Removed code that was prevent event propogation in AJAX. [ticket/10291] Fixed a bug in the quick reply AJAX. [feature/ajax] Handle acp_modules error cases with JSON response [feature/ajax] Fix filter check, quick mod tools data-attribute [feature/ajax] Use the error handler [feature/ajax] Generic error handling with a phpbb.alert box [feature/ajax] Change filter semantics, some minor adjustments ... Conflicts: phpBB/adm/style/acp_styles.html phpBB/includes/acp/acp_styles.php
| | * | | | [feature/ajax] Fix acp_styles activate_deactivate ajax callback nameIgor Wiedler2012-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [feature/ajax] Remove not working module enable/disable ajax codeIgor Wiedler2012-03-312-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [ticket/10270] Changing close button for ajax popupsVjacheslav Trushkin2012-03-313-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed close button for popups to match prosilver style and from img to css, moved color values to colours.css PHPBB3-10270
| | * | | | [feature/ajax] Generic error handling with a phpbb.alert boxIgor Wiedler2012-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [feature/ajax] Do not hard-code sorting images of acp_forums orderingIgor Wiedler2012-03-313-8/+43
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [feature/ajax] Make phpbb.ajaxify signature use single object (more explicit)Igor Wiedler2012-03-311-5/+21
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [feature/ajax] JavaScript strict modeIgor Wiedler2012-03-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [feature/ajax] Stylistic JavaScript adjustmentsIgor Wiedler2012-03-311-9/+16
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [feature/ajax] Use attr('data-foo') instead of data('foo')Igor Wiedler2012-03-311-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | data() is slower and does additional unwanted things like caching and type conversion. Just reading the value is safer. PHPBB3-10270
| | * | | | [ticket/10272] Removed some duplication calls to $.fn.data.Callum Macrae2012-03-311-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10272
| | * | | | [ticket/10270] Moved the AJAX error langyage entries to the footer.Callum Macrae2012-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [ticket/10272] Renamed AJAX callback act_deact to activate_deactivate.Callum Macrae2012-03-314-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10272
| | * | | | [ticket/10270] Fixed JavaScript alerts in the ACP.Callum Macrae2012-03-313-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [ticket/10271] Started using .call for javascript callbacks.Callum Macrae2012-03-311-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, they were just being called by appending parentheses and functions. Now, they're being called and the element is being set as the context instead of a parameter. It's a lot cleaner. PHPBB3-10271
| | * | | | [ticket/10271] data-ajax="false" is now ignored.Callum Macrae2012-03-311-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| | * | | | [ticket/10271] Reduced calls to $ in the AJAX JavaScript.Callum Macrae2012-03-311-13/+17
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| | * | | | [ticket/10271] Added comments to AJAX callbacks.Callum Macrae2012-03-311-3/+21
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| | * | | | [ticket/10270] Replaced find by tag names with class names in the js.Callum Macrae2012-03-311-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What it was before (selecting by tag name) could have caused some problems for style authors. PHPBB3-10270
| | * | | | [ticket/10270] Added the alerts to the ACP footer.Callum Macrae2012-03-311-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I had forgotten to do it previously. PHPBB3-10270
| | * | | | [feature/ajax] Moved script.js into a few different files.Callum Macrae2012-03-312-1/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seperated it into: assets/javascript/core.js, styles/prosilver/template/ajax.js and adm/style/ajax.js. PHPBB3-10270
| | * | | | [ticket/10270] Got rid of the temporary jQuery for the AJAX changes.Callum Macrae2012-03-311-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The jQuery library wasn't included before, so a temporary one was included. Now that igorws jQuery patch has been merged, the temporary library can be removed. PHPBB3-10270
| | * | | | [ticket/10272] Renamed AJAX callback "style_act_deact" to "act_deact".Callum Macrae2012-03-314-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10272
| | * | | | [ticket/10272] AJAXified the bots page in the ACP.Callum Macrae2012-03-311-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10272
| | * | | | [ticket/10271] AJAXified buttons on acp_main.Callum Macrae2012-03-311-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| | * | | | [ticket/10271] AJAXified the styles tab in the ACP.Callum Macrae2012-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| | * | | | [ticket/10271] AJAXified various deletions in the ACP.Callum Macrae2012-03-3110-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following places have had deletion AJAXified: * Smilies and icons * Word censors * BBCodes * Attachment groups * Groups * Admin / User / Moderator / Forum roles * Report / denial reasons * Module management * Custom profile fields PHPBB3-10271
| | * | | | [ticket/10270] Moved some HTML from the JavaScript to overall_footer.Callum Macrae2012-03-311-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| | * | | | [ticket/10270] Added jQuery popup CSS to the ACP.Callum Macrae2012-03-311-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was missing previously, meaning that it displayed wrong and in the footer. PHPBB3-10270
| | * | | | [ticket/10281] AJAXified reordering forums in the ACP.Callum Macrae2012-03-312-9/+13
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10281
| | * | | | [feature/purge-cache] Allow all admins to purge cacheVjacheslav Trushkin2012-02-181-1/+2
| | | |/ / | | |/| | | | | | | | | | | | | | | | | | | | | | Allow all administrators to purge cache PHPBB3-10659
| * | | | [feature/merging-style-components] Updating style initializationVjacheslav Trushkin2012-03-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changing template initialization to style initialization. PHPBB3-10632
| * | | | [feature/merging-style-components] New acp_styles templateVjacheslav Trushkin2012-03-151-355/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New acp_styles.html, completely rewritten PHPBB3-10632
| * | | | [feature/merging-style-components] Admin.css additions for acp_stylesVjacheslav Trushkin2012-03-141-0/+17
| |/ / / | | | | | | | | | | | | | | | | | | | | Adding background colors for row iterations and font color for disabled rows to admin control panel css. PHPBB3-10632
| * | | [ticket/10645] Missing CSS for checkboxesVjacheslav Trushkin2012-02-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Missing CSS for checkboxes, invalid cursor for radio input PHPBB3-10645
| * | | Merge branch 'develop-olympus' into developDavid King2012-02-031-0/+5
| |\ \ \ | | |/ / | | | | | | | | | | | | * develop-olympus: [ticket/9914] Add backup warning to updater.
| | * | [ticket/9914] Add backup warning to updater.Michael Cullum2012-02-031-0/+5
| | | | | | | | | | | | | | | | PHPBB3-9914
| * | | Merge remote-tracking branch 'imkingdavid/ticket/10535' into developOleg Pudeyev2012-02-031-4/+0
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * imkingdavid/ticket/10535: [ticket/10535] Delete no longer needed email confirm language entries. [ticket/10535] Delete email confirm from installer [ticket/10535] Removed email confirm field from acp_users module [ticket/10535] Forgot a subsilver2 change. *doh* [ticket/10535] Removed email confirm from UCP, removed unused language entries [ticket/10535] Remove email confirm check on registration form
| | * | | [ticket/10535] Removed email confirm field from acp_users moduleDavid King2011-12-231-4/+0
| | | |/ | | |/| | | | | | | | | PHPBB3-10535
| * | | Merge branch 'develop-olympus' into developOleg Pudeyev2012-01-061-0/+6
| |\ \ \ | | | |/ | | |/| | | | | | | | | * develop-olympus: [ticket/10563] Show deactivated styles below active styles in acp
| | * | [ticket/10563] Show deactivated styles below active styles in acpVjacheslav Trushkin2012-01-021-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | Separates active and deactivated styles in styles list in acp PHPBB3-10563
| * | | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-312-4/+2
| | | | | | | | | | | | | | | | PHPBB3-9916
| * | | Merge branch 'develop-olympus' into developAndreas Fischer2011-12-161-37/+31
| |\ \ \ | | |/ / | | | / | | |/ | |/| | | | * develop-olympus: [ticket/8996] Revert initial fix to keep old behaviour on empty selection Part2 [ticket/8996] Revert initial fix to keep old behaviour on empty selection
| | * [ticket/8996] Revert initial fix to keep old behaviour on empty selectionJoas Schilling2011-12-151-37/+31
| | | | | | | | | | | | | | | | | | | | | | | | Revert "[ticket/8996] Also fix the BBCode bug in subsilver2 and acp" This reverts commit eb1f15bc8b7b7a284b25b2c9b9942714b6848ebc. PHPBB3-8996
| * | Merge branch 'develop-olympus' into developOleg Pudeyev2011-11-191-2/+2
| |\ \ | | |/ | | | | | | | | | * develop-olympus: [ticket/8599] Added ability to select all to add multiple smilies screen.
| | * Merge remote-tracking branch 'callumacrae/ticket/8599' into develop-olympusOleg Pudeyev2011-11-191-2/+2
| | |\ | | | | | | | | | | | | | | | | * callumacrae/ticket/8599: [ticket/8599] Added ability to select all to add multiple smilies screen.
| | | * [ticket/8599] Added ability to select all to add multiple smilies screen.callumacrae2011-08-241-2/+2
| | | | | | | | | | | | | | | | PHPBB3-8599
| * | | Merge branch 'develop-olympus' into developOleg Pudeyev2011-11-191-31/+37
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | * develop-olympus: [ticket/8996] Also fix the BBCode bug in subsilver2 and acp [ticket/8996] Correctly apply BBCodes in IE6-9 when applying with accesskey