aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | [ticket/10272] Renamed AJAX callback "style_act_deact" to "act_deact".Callum Macrae2012-03-315-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10272
| * | | | | | | | | | [ticket/10272] AJAXified the bots page in the ACP.Callum Macrae2012-03-313-3/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10272
| * | | | | | | | | | [ticket/10270] Made the alert after an AJAX operation optional.Callum Macrae2012-03-311-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| * | | | | | | | | | [ticket/10271] AJAXified buttons on acp_main.Callum Macrae2012-03-313-9/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| * | | | | | | | | | [ticket/10271] AJAXified the styles tab in the ACP.Callum Macrae2012-03-314-9/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| * | | | | | | | | | [ticket/10271] AJAXified various deletions in the ACP.Callum Macrae2012-03-3115-13/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/10328] Renamed the JSON class, also now using autoloading.Callum Macrae2012-03-316-31/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is no longer static, and uses autoloading. It has also been renamed from JSON to phpbb_json_response. PHPBB3-10328
| * | | | | | | | | | [feature/ajax] Changed JavaScript comments to follow coding guidelines.Callum Macrae2012-03-311-11/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also replaced a couple instances of "@return" with "@returns". PHPBB3-10270
| * | | | | | | | | | [ticket/10270] Moved some HTML from the JavaScript to overall_footer.Callum Macrae2012-03-314-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/10271] Moved $.querystring to phpbb.parse_querystring.Callum Macrae2012-03-311-13/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| * | | | | | | | | | [ticket/10272] Zebra operations using AJAX are now less hacky.Callum Macrae2012-03-312-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, they were splitting stuff by the <br />, and now JSON::add() is being used. PHPBB3-10272
| * | | | | | | | | | [ticket/10270] Lengthened the timeout on the AJAX request error.Callum Macrae2012-03-311-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was at 3 seconds before, now it is at 5 seconds from when the popup has faded in. PHPBB3-10270
| * | | | | | | | | | [ticket/10328] Added a JSON class.Callum Macrae2012-03-315-9/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The JSON class adds a consistent way to send JSON to the client, making it perfect for AJAX (jQuery automatically parses it). PHPBB3-10328
| * | | | | | | | | | [ticket/10271] Changed AJAX functions to $request->is_ajax().Callum Macrae2012-03-312-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10271
| * | | | | | | | | | [ticket/10270] Added keyboard shortcuts to confirm and alert boxes.Callum Macrae2012-03-311-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| * | | | | | | | | | [ticket/10272] AJAXified the add / remove friend / foe links.Callum Macrae2012-03-312-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10272
| * | | | | | | | | | [ticket/10281] AJAXified reordering forums in the ACP.Callum Macrae2012-03-314-9/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10281
| * | | | | | | | | | [feature/ajax] Fixed a small bug in the JavaScript.Callum Macrae2012-03-311-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug meant that code outside of the function that ran on document ready would not be able to access the phpbb object. PHPBB3-10270
| * | | | | | | | | | [ticket/10270] Fixed a bug where fadedark wouldn't go.Callum Macrae2012-03-311-26/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the confirm box was submitted as yes, then the fadedark would stay until it was clicked. This commit fixes that. PHPBB3-10270
| * | | | | | | | | | [feature/ajax] Added code to avoid conflicts with other libraries using $Callum Macrae2012-03-311-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| * | | | | | | | | | [ticket/10270] Makes page fade to dark on popup, and added $.querystring.Callum Macrae2012-03-312-22/+133
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10270
| * | | | | | | | | | [ticket/10291] AJAXified quick reply form.Callum Macrae2012-03-312-3/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also changed the show quick reply button to a button, not a submit - it was affecting the behaviour of phpbb.ajaxify. PHPBB3-10291
| * | | | | | | | | | [ticket/10271] AJAXified Quick-mod tools.Callum Macrae2012-03-311-9/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also made some improvements to the exceptions. PHPBB3-10271
| * | | | | | | | | | [feature/ajax] Replaced jQuery selectors with data attributes.Callum Macrae2012-03-315-47/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to problems that could have been caused by selecting the element using jQuery selectors, they have been replaced by HTML5 data attributes. PHPBB3-10270
| * | | | | | | | | | [ticket/10270] Removed the js anim functions.Callum Macrae2012-03-311-29/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit removes the hide_anim, show_anim and remove_anim functions and replaces them with built in jQuery function that do exactly the same thing. PHPBB3-10270
| * | | | | | | | | | [ticket/10271] Added ability for exceptions to phpbb.ajaxify.Callum Macrae2012-03-312-3/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also made it easy for additional options to be added in the future. PHPBB3-10271
| * | | | | | | | | | [ticket/10272] Made some jQuery selectors more specific to avoid conflicts.Callum Macrae2012-03-311-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, a link to any URL with, say, "mode=bump" in the title would have been prevented from acting normally. PHPBB3-10272
| * | | | | | | | | | [ticket/10270] Changed function names of jQuery modifications.Callum Macrae2012-03-311-13/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code was modifying the jQuery code before, now the functions have been renamed to unused function names. PHPBB3-10270
| * | | | | | | | | | [feature/ajax] Reduced duplicate code by merging all AJAX function into one.Callum Macrae2012-03-311-118/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit merges phpbb.confirm_box, phpbb.ajaxify and phpbb.ajaxify_form into one function which automatically detects what is happening and calls the correct code accordingly. This has removed a lot of duplicate code and generally made the code cleaner. PHPBB3-10270
| * | | | | | | | | | [ticket/10273] Added phpbb.ajaxify_form and converted accept / deny to it.Callum Macrae2012-03-312-49/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also made a few minor improvements to other JavaScript. PHPBB3-10273
| * | | | | | | | | | [ticket/10270] Cleaned up code and made popups fade.Callum Macrae2012-03-311-27/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit cleans up some code - mostly, replacing all instances of __self with "that", and also replacing the parse_hidden function with jQuerys built in .serialize. It also adds animations to the popups. PHPBB3-10270
| * | | | | | | | | | [ticket/10273] AJAXified approve / disapprove posts (in viewtopic).Callum Macrae2012-03-316-2/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit AJAXifies the moderator approval functionality, and adds it to viewtopic instead of the MCP. This commit has involved some language changes, which may affect fallbacks. PHPBB3-10273
| * | | | | | | | | | [feature/ajax] Cleaned up AJAX-related JavaScript.Callum Macrae2012-03-311-11/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mostly just added comments, but has cleaned up some actual code too. PHPBB3-10270
| * | | | | | | | | | [ticket/10272] AJAXified most links.Callum Macrae2012-03-311-25/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit makes some significant changes to the phpbb.confirm_box function (namely, removing some duplicate code), and also manually adds most link to the phpBB AJAX functions. PHPBB3-10272
| * | | | | | | | | | [ticket/10271] Added phpbb.confirm_box (JavaScript).Callum Macrae2012-03-311-27/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As well as adding the method, this commit also changes the previous commit so that deleting a post from viewtopic uses this method, too. This commit has also made some improvements to phpbb.alert and phpbb.confirm. PHPBB3-10271
| * | | | | | | | | | [ticket/10270] Added JavaScript popups and basic AJAX functionality to PHP.Callum Macrae2012-03-314-8/+158
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds the phpbb object (JavaScript), and alert and confirm box methods. It also adds the first basic AJAX functionality, to deleting posts in viewtopic. PHPBB3-10270
* | | | | | | | | | Merge remote-tracking branch 'cyberalien/feature/purge-cache' into developDavid King2012-03-302-6/+2
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | [feature/purge-cache] Allow all admins to purge cacheVjacheslav Trushkin2012-02-182-6/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow all administrators to purge cache PHPBB3-10659
* | | | | | | | | | | Merge remote-tracking branch ↵David King2012-03-306-363/+78
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'cyberalien/feature/prosilver-cleanup/duplicate-colors' into develop
| * \ \ \ \ \ \ \ \ \ \ Merge branch 'develop' into feature/prosilver-cleanup/duplicate-colorsVjacheslav Trushkin2012-03-24103-409/+1192
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (117 commits) [task/travis] Refactor php version check for dbunit install [task/travis] Exclude functional and slow tests [ticket/10719] Revert "Skip functional tests on PHP 5.2" [task/travis-develop2] Update version from 5.3 to 5.3.2 [task/travis] Dropping support for 5.2 in develop branch [task/travis] Some more small travis fixes [task/travis] Rename travis phpunit config files [task/travis] Fixing some travis issues [ticket/10684] Adjust function and parameter name, minor changes. [task/travis] Add automated testing to readme [task/travis] Removing development information [task/travis] Adding Travis Continuous Intergration Support [ticket/10704] minor typo in a comment [ticket/10717] Fix profile field sample in prosilver´s memberlist_view.html [ticket/10691] Fixed the speed of creating search index [task/php54-ascraeus] Bring p_master#module_auth into PHP 5 era. [task/php54] Disable E_STRICT in Olympus when running on PHP 5.4. [task/php54] Refactor error_reporting call slightly. [ticket/10690] Fix undefined UNAPPROVED_POSTS_ZERO_TOTAL in queue [ticket/10689] Fix "First character"-option in "Find a member"-search ... Conflicts: phpBB/styles/prosilver/theme/cp.css
| * | | | | | | | | | | | [feature/prosilver-cleanup/duplicate-colors] Removing duplicate colorsVjacheslav Trushkin2012-02-166-365/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing color values from files other than colours.css PHPBB3-10619
* | | | | | | | | | | | | Merge branch 'callumacrae/ticket/10510-' into developDavid King2012-03-304-19/+64
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | [ticket/10510] Added docs to viewtopic quick mod tools array.Callum Macrae2012-03-291-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10510
| * | | | | | | | | | | | | [ticket/10510] Moved a $user->lang call into the function.Callum Macrae2012-03-172-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10510
| * | | | | | | | | | | | | [ticket/10510] Shortened an if statement.Callum Macrae2012-03-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced an isset() and var check with a !empty. PHPBB3-10510
| * | | | | | | | | | | | | [ticket/10510] Made a couple improvements to phpbb_add_quickmod_option.Callum Macrae2012-03-172-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10510
| * | | | | | | | | | | | | [ticket/10510] Added phpbb_add_quickmod_option and moved existing to it.Callum Macrae2012-03-172-91/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10510
| * | | | | | | | | | | | | [ticket/10510] Fixed a bug where quickmod tools weren't being displayed.Callum Macrae2012-03-172-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was referring to some template variables that were removed in a previous commit. Changed! PHPBB3-10510
| * | | | | | | | | | | | | [ticket/10510] Moved quick-mod tools into a loop.Callum Macrae2012-03-173-39/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10510