| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| | |
PHPBB3-15740
|
|\ \
| |/
|/|
| |
| |
| |
| | |
[ticket/13043] Improve HTML5
* github.com:/phpbb/phpbb:
[ticket/13043] Improve HTML5
|
| |
| |
| |
| | |
PHPBB3-13043
|
| |
| |
| |
| | |
PHPBB3-15676
|
| |
| |
| |
| | |
PHPBB3-15676
|
| |
| |
| |
| | |
PHPBB3-15676
|
|/
|
|
| |
PHPBB3-15676
|
|
|
|
| |
PHPBB3-15523
|
|
|
|
| |
PHPBB3-14974
|
|
|
|
| |
PHPBB3-14961
|
|
|
|
|
|
|
| |
Uses Insites cookieconsent v3.0.3:
https://cookieconsent.insites.com
PHPBB3-14961
|
|
|
|
| |
PHPBB3-14447
|
|\
| |
| |
| |
| | |
Conflicts:
phpBB/adm/style/installer_footer.html
|
| |
| |
| |
| | |
PHPBB3-14374
|
| |
| |
| |
| | |
PHPBB3-14199
|
| | |
|
| | |
|
|/ |
|
|
|
|
| |
PHPBB3-13905
|
|
|
|
| |
PHPBB3-9457
|
|
|
|
| |
PHPBB3-13419
|
|
|
|
|
|
|
|
|
|
|
| |
Added a non-breaking space to remove the following warning:
**Empty heading.**
```html
<h3 class="alert_title"></h3><p class="alert_text"></p>
```
PHPBB3-13040
|
|
|
|
| |
PHPBB3-12565
|
|
|
|
|
|
| |
phpBB uses the minified version of jQuery hence the rename.
PHPBB3-12547
|
|
|
|
| |
PHPBB3-12377
|
|
|
|
| |
PHPBB3-12377
|
|
|
|
|
|
| |
implement
PHPBB3-12338
|
|
|
|
| |
PHPBB3-11915
|
|\
| |
| |
| |
| |
| |
| |
| | |
* develop-olympus:
[ticket/12061] Fix keyboard shortcut in firefox
Conflicts:
phpBB/styles/prosilver/template/overall_footer.html
|
| |
| |
| |
| | |
PHPBB3-12061
|
| |
| |
| |
| | |
PHPBB3-11241
|
|\ \
| | |
| | | |
[ticket/12010] Make the navbar icons clickable.
|
| | |
| | |
| | |
| | | |
PHPBB3-12010
|
|\ \ \
| |/ /
|/| | |
[ticket/12024] Template event overall_header_content_before
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
http://area51.phpbb.com/phpBB/viewtopic.php?f=111&t=44959
http://tracker.phpbb.com/browse/PHPBB3-12024
PHPBB3-12024
|
| | |
| | |
| | |
| | | |
PHPBB3-11928
|
| | |
| | |
| | |
| | | |
PHPBB3-11956
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Change breadcrumbs layout in footer to match breadcrumbs
in header. Change background color for tabs dropdown menu
PHPBB3-11552
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit is a highly-refactored and up-to-date version of Fyorl's work
which was part of his Google Summer of Code 2012 project "Attachment
Improvements".
PHPBB3-10929
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Config variable: load_jquery_cdn -> allow_cdn
Template variable: S_JQUERY_FALLBACK -> S_ALLOW_CDN
PHPBB3-11703
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The file core.js sets up most of the AJAX and jQuery related framework for
phpBB. Due to this, it needs to be included before any other javascript file
in order to ensure that subsequent files can use the phpBB variables and
functions. Currently, it is however loaded with INCLUDEJS in overall_footer
which causes it to be loaded after every other javascript file except for the
style specific ajax.js. This causes every javascript file that is included
before core.js and is using the phpBB AJAX functions or variables to break.
PHPBB3-11809
|
|\ \ \
| | | |
| | | | |
Move bulletin points for linklist lists to pseudo classes
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Move bulletin points for .linklist lists to pseudo class
Group pseudo classes for .linklist.bulletin and .icon-notification
PHPBB3-11553
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Moved below overall_footer_after so events can add JS files in that event.
PHPBB3-11598
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This was done because T_TEMPLATE_PATH is not always correct for js files
(e.g. the inheriting style does not include these). Now we use the Twig
Loader to find the correct file to link to (most specific file first, then
parent styles). Also allows using @namespace convention
PHPBB3-11598
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This had to be done because, like DEFINE, setting variables to $context
only affected the local file and any children, not parent templates.
PHPBB3-11598
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Automatically parsing inline variables the same way it is done for
INCLUDE, INCLUDEPHP
PHPBB3-11598
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Was:
<!-- INCLUDEJS template/foo.js -->
Now:
<!-- INCLUDEJS T_TEMPLATE_PATH ~ '/foo.js' -->
Reasons for this:
1. INCLUDEJS is 3.1-dev only
2. INCLUDEJS has odd behavior to begin with (arbitrary setting root path
to styles/name/ directory)
3. INCLUDEJS could not include files from outside directories or anywhere
else
4. It was easier to change INCLUDEJS behavior to something more flexible
and useful than hack around it to make it work as it was with Twig.
PHPBB3-11598
|
| | |
| | |
| | |
| | |
| | |
| | | |
Display clearer AJAX errors rather than generic error
PHPBB3-11279
|