aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | [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-313-1/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-313-1/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 ↵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-2435-119/+163
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-302-3/+21
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | [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-172-26/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10510
| * | | | | | | | | | | [ticket/10510] Updated quick-mod conditional in subsilver2.Callum Macrae2012-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was still trying to use the old conditional, which was referring to a variable which had been removed. PHPBB3-10510
| * | | | | | | | | | | [ticket/10510] Moved quick-mod tools markup to template.callumacrae2012-03-042-3/+41
| | |_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10510
* | | | | | | | | | | Merge remote-tracking branch 'imkingdavid/ticket/10727' into developVjacheslav Trushkin2012-03-311-58/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * imkingdavid/ticket/10727: [ticket/10727] Do not hide Quick Reply with javascript on prosilver
| * | | | | | | | | | | [ticket/10727] Do not hide Quick Reply with javascript on prosilverDavid King2012-03-241-58/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10727
* | | | | | | | | | | | Merge remote-tracking branch ↵David King2012-03-306-84/+28
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | 'cyberalien/feature/prosilver-cleanup/remove-tweaks2' into develop
| * | | | | | | | | | | [feature/prosilver-cleanup/remove-tweaks2] Updating tweaksVjacheslav Trushkin2012-03-081-79/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing unnecessary tweaks, changing IE7 tweaks to modern code PHPBB3-10622
| * | | | | | | | | | | [feature/prosilver-cleanup/remove-tweaks2] Copying common tweaksVjacheslav Trushkin2012-03-081-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Copying commonly used code from tweaks.css to common.css PHPBB3-10622
| * | | | | | | | | | | [feature/prosilver-cleanup/remove-tweaks2] Removing tweaks from formsVjacheslav Trushkin2012-03-081-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing IE6 tweaks from forms.css PHPBB3-10622
| * | | | | | | | | | | [feature/prosilver-cleanup/remove-tweaks2] Tweaks.css only for IEVjacheslav Trushkin2012-03-083-1/+8
| | |/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing tweaks.css from stylesheet.css, including it for IE8 or older via conditional statements PHPBB3-10622
* | | | | | | | | | | Merge branch 'develop-olympus' into developOleg Pudeyev2012-03-281-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10730] Added label tag around "select" text in post splitting UI
| * | | | | | | | | | [ticket/10730] Added label tag around "select" text in post splitting UIJan Schejbal2012-03-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added label tags around the "select" text in the post splitting UI in the MCP. Had to add IDs based on the post ID to the select boxes to allow label to work. Tested in Firefox and Chrome. PHPBB3-10730
* | | | | | | | | | | Merge remote-tracking branch 'brunoais/feature/save-post-on-report' into developOleg Pudeyev2012-03-272-1/+8
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * brunoais/feature/save-post-on-report: [feature/save-post-on-report] Changed mark in subsilver2 to look like viewtopic [feature/save-post-on-report] bbcode_nl2br missing. [feature/save-post-on-report] Change the column type of reported text [feature/save-post-on-report] Changed the name of the column [feature/save-post-on-report] Bug fix table name [feature/save-post-on-report] Saves the post reported when a report is creat [feature/save-post-on-report] The complete changes for this feature
| * | | | | | | | | | [feature/save-post-on-report] Changed mark in subsilver2 to look like viewtopicBruno Ais2012-03-191-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As cyberalien requested. This was changed to match better the idea behind what was made in prosilver to subsilver2. PHPBB3-10600
| * | | | | | | | | | [feature/save-post-on-report] bbcode_nl2br missing.Bruno Ais2012-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New lines were missing in the reported_post_text. By adding the bbcode_nl2br() became as it is supposed to. PHPBB3-10600
| * | | | | | | | | | [feature/save-post-on-report] Saves the post reported when a report is creatBruno Ais2012-03-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A problem when creating a report is that the report may be made and then the post changed. After the changes, if the report is seen the message it shows may not be correct to be reported. With these changes, when a report is created the system copies the post that was reported and shows it in the report details in the MCP PHPBB3-10600
| * | | | | | | | | | [feature/save-post-on-report] The complete changes for this featureBruno Ais2012-03-191-1/+1
| | |_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This covers all the changes so that when a report is made, the post itself is copied and displayed in the MCP instead of the current post. Unfortunatly, I made all commits in the wrong way and they were lost. Now I have only the final files.
* | | | | | | | | | Merge remote-tracking branch ↵Oleg Pudeyev2012-03-241-4/+77
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'cyberalien/feature/prosilver-cleanup/css-reset-v2' into develop * cyberalien/feature/prosilver-cleanup/css-reset-v2: [feature/prosilver-cleanup/css-reset-v2] CSS reset
| * | | | | | | | | [feature/prosilver-cleanup/css-reset-v2] CSS resetVjacheslav Trushkin2012-02-051-4/+77
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding proper CSS reset to prosilver PHPBB3-10617
* | | | | | | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-03-221-1/+1
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | / / / / / / | | |/ / / / / / | |/| | | | | | * develop-olympus: [ticket/10717] Fix profile field sample in prosilver´s memberlist_view.html
| * | | | | | | Merge remote-tracking branch 'nickvergessen/ticket/10717' into develop-olympusAndreas Fischer2012-03-221-1/+1
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10717: [ticket/10717] Fix profile field sample in prosilver´s memberlist_view.html
| | * | | | | | | [ticket/10717] Fix profile field sample in prosilver´s memberlist_view.htmlJoas Schilling2012-03-201-1/+1
| | | |_|_|_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | PHPBB3-10717
* | | | | | | | Merge branch 'develop-olympus' into developOleg Pudeyev2012-03-162-0/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/8636] Add resync option to topic_view moderation page
| * | | | | | | Merge remote-tracking branch 'nickvergessen/ticket/8636' into develop-olympusOleg Pudeyev2012-03-162-0/+2
| |\ \ \ \ \ \ \ | | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/8636: [ticket/8636] Add resync option to topic_view moderation page
| | * | | | | | [ticket/8636] Add resync option to topic_view moderation pageJoas Schilling2012-02-232-0/+2
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | PHPBB3-8636
* | | | | | | [ticket/10690] Fix undefined UNAPPROVED_POSTS_ZERO_TOTAL in queueJoas Schilling2012-03-142-2/+2
| |_|_|/ / / |/| | | | | | | | | | | | | | | | | PHPBB3-10690
* | | | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-02-286-9/+17
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/9220] Remove margin on table.table1 so it's centered in the blue box. Conflicts: phpBB/styles/prosilver/template/memberlist_leaders.html
| * | | | | Merge remote-tracking branch 'nickvergessen/ticket/9220' into develop-olympusAndreas Fischer2012-02-286-10/+18
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/9220: [ticket/9220] Remove margin on table.table1 so it's centered in the blue box.
| | * | | | | [ticket/9220] Remove margin on table.table1 so it's centered in the blue box.Joas Schilling2012-02-276-10/+18
| | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem here was, that we use width: 100% in combination with the negative margin. This causes the element to be just moved to the side, so it's not centered anymore. width: auto would fix this, but it causes strange behaviour on IE and looks even more ugly. So I decided to just remove the margin at all. The border is now 1px thicker for all sides. PHPBB3-9220
* | | | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-02-263-3/+3
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10453] Fixing spacing
| * | | | | [ticket/10453] Fixing spacingVjacheslav Trushkin2012-02-263-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixing spacing PHPBB3-10453