aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/style.php
Commit message (Collapse)AuthorAgeFilesLines
* [feature/remove-db-styles] Removed style.php!Chris Smith2011-09-201-164/+0
| | | | | | | Finally sanity has arrived! No more delivering CSS through PHP. Better 3 years late than never. PHPBB3-9741
* [feature/remove-db-styles] Remove style.php DB storage.Chris Smith2011-09-201-62/+4
| | | | | | | | | | | Removed all use of the DB for serving/caching the theme from style.php, acp_style no longer stores the theme modified time either. As a consequence currently all stylesheets will be served through style.php (with no caching) until imagesets are removed [PHPBB3-10336], then they can we served as static files by HTTPd. PHPBB3-9741
* Merge remote-tracking branch 'github-cyberalien/feature/remove-imagesets' ↵Nils Adermann2011-09-201-86/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | into develop * github-cyberalien/feature/remove-imagesets: [feature/remove-imagesets] Script for converting imageset to css [feature/remove-imagesets] Changing subsilver [feature/remove-imagesets] Changing prosilver [feature/remove-imagesets] Adjustments to php files [feature/remove-imagesets] Changing admin control panel styles module [feature/remove-imagesets] Changing database structure [feature/remove-imagesets] Removing imageset files [feature/remove-imagesets] Moving images
| * [feature/remove-imagesets] Adjustments to php filesVjacheslav Trushkin2011-09-041-86/+4
| | | | | | | | | | | | Removing imagesets. Adjustments to php files PHPBB3-10336
* | [ticket/10359] Also include utf_tools in style.php because of request class.Andreas Fischer2011-09-081-0/+1
|/ | | | PHPBB3-10359
* [feature/request-class] Adjust code base to do html decoding manuallyIgor Wiedler2011-08-181-1/+1
| | | | PHPBB3-9716
* [feature/request-class] Add server(), header() and is_ajax() to requestIgor Wiedler2011-07-151-1/+1
| | | | | | | | | | | | Extend the request class with helpers for reading server vars (server()) and HTTP request headers (header()). Refactor the existing code base to make use of these helpers, make $_SERVER a deactivated super global. Also introduce an is_ajax() method, which checks the X-Requested-With header for the value 'XMLHttpRequest', which is sent by JavaScript libraries, such as jQuery. PHPBB3-9716
* Merge branch 'develop-olympus' into developAndreas Fischer2011-06-151-12/+1
|\ | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10218] Prevent startime from being overwritten by deregister_globals() [ticket/10218] Moving global deregistration, etc. to startup.php Conflicts: phpBB/install/database_update.php
| * [ticket/10218] Moving global deregistration, etc. to startup.phpYuriy Rusko2011-06-141-12/+1
| | | | | | | | | | | | | | Because startup.php deletes all variables, the constants in database_update are used to preserve settings at the top. PHPBB3-10218
* | Merge branch 'develop-olympus' into developOleg Pudeyev2011-05-101-1/+1
|\ \ | |/ | | | | | | * develop-olympus: [ticket/10126] Use binary "and not" instead of binary "xor" in error_reporting.
| * [ticket/10126] Use binary "and not" instead of binary "xor" in error_reporting.Andreas Fischer2011-05-111-1/+1
| | | | | | | | | | | | Make what we want to achieve clear by using "and not" instead of "xor". PHPBB3-10126
* | [task/config-class] Do not create multiple cache driver instances.Nils Adermann2011-01-121-2/+2
| | | | | | | | | | | | | | Retrieve the driver from the service instead of creating new ones over and over from the factory. PHPBB3-9988
* | [task/config-class] Always specify the config table to use.Nils Adermann2011-01-121-1/+1
| | | | | | | | PHPBB3-9988
* | [task/config-class] Implemented a config class to replace the global array.Nils Adermann2011-01-101-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a phpbb_config class which simply holds an array and does not persist any data. It implements ArrayAccess, Countable and IteratorAggregate to allow regular use of configuration as if it was still an array. The phpbb_config_db class depends on an instance of the dbal and a cache driver. It obtains the configuration data from cache and database as necessary and persists data to the database. The functions set_config and set_config_count remain for backward compatability but they only call methods on the new config class now instead of directly manipulating the database and cache. PHPBB3-9988
* | [task/acm-refactor] Cleaning up left over mentions of ACM and fixing tests.Nils Adermann2011-01-091-3/+3
| | | | | | | | PHPBB3-9983
* | [task/acm-refactor] Refactor the ACM classes to have a common interface.Igor Wiedler2011-01-091-8/+7
| | | | | | | | | | | | | | | | | | | | They are now refered to as cache drivers rather than ACM classes. The additional utility functions from the original cache class have been moved to the cache_service. The class loader is now instantiated without a cache instance and passed one as soon as it is constructed to allow autoloading the cache classes. PHPBB3-9983
* | [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* | [feature/request-class] Add $request to style.php, minor changeIgor Wiedler2010-09-201-0/+5
| | | | | | | | | | | | | | | | | | Add $request instantiation to style.php to allow request_var to work properly. Also remove unneeded globalization of $request in ucp.php. PHPBB3-9716
* | [feature/request-class] Refactor request classes to use autoloadingIgor Wiedler2010-09-171-1/+6
|/ | | | | | | | | All class names have been adjusted to use a phpbb_request prefix, allowing them to be autoloaded. Also introduces some improvements to autoloading in general. PHPBB3-9716
* [ticket/9629] Allow style.php to retrieve its session ID from cookiesJosh Woody2010-07-111-7/+14
| | | | | | | | | style.php takes a session ID to ensure it gets the right language for a user, but that session ID is always passed in GET. This allows change allows the SID to be read from the cookie, and theoretically makes it friendlier for caching engines like Varnish. PHPBB3-9629
* PHP 5.3 compatibility: Disable E_DEPRECATED on startup to keep ↵Nils Adermann2009-12-061-2/+6
| | | | | | set_magic_quotes_runtime(0) quiet. [Bug #54495] git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10299 89ea8834-ac86-4346-8a33-228a782c2dd0
* Since dl() is deprecated and disabled by default in PHP 5.3, calling it will ↵Andreas Fischer2009-12-041-1/+1
| | | | | | result in a fatal error for an undefined function and because of the error suppression in a blank page. Checking if dl() exists should allow most boards to continue right away. - Bug #54665 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10298 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix style recompilation now we do not force the SID to be passed anymore. ↵Meik Sievertsen2009-08-251-1/+2
| | | | | | This also fixes the problems users see after updates, where styles are not always instantly updated, as well as helping style authors a lot. ;) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10056 89ea8834-ac86-4346-8a33-228a782c2dd0
* tiny tiny thing... and such a huge change...Meik Sievertsen2009-06-241-1/+1
| | | | | | Display topic icons in MCP forum view again (only prosilver) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9667 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fixed Bug #47145 - [Fix] Correctly check banned users when force password changeGabriel Vazquez2009-06-241-2/+2
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9665 89ea8834-ac86-4346-8a33-228a782c2dd0
* for using the same cached file we need to have exact queries. :PMeik Sievertsen2009-03-111-3/+4
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9366 89ea8834-ac86-4346-8a33-228a782c2dd0
* change the way we do chmodd'ing. I know, my implementation really sucked... ↵Meik Sievertsen2008-08-221-0/+1
| | | | | | good we have motivated community members who point this out. ;) Thanks to faw for providing a way better function and for discussing and also abiding to our needs. :) LEW21 should maybe credited too... he gave the inspiration without knowing it. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8780 89ea8834-ac86-4346-8a33-228a782c2dd0
* 5.3 compatibility.Marek A. R2008-08-161-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8764 89ea8834-ac86-4346-8a33-228a782c2dd0
* #25805Meik Sievertsen2008-04-211-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8513 89ea8834-ac86-4346-8a33-228a782c2dd0
* fixing two potential problemsMeik Sievertsen2008-04-111-6/+1
| | | | | | | - blank style - check for correct role assignment within auth.php (should not happen, but seems like some users are not able to persist from manually messing with the db) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8502 89ea8834-ac86-4346-8a33-228a782c2dd0
* #s24575Meik Sievertsen2008-04-021-0/+5
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8486 89ea8834-ac86-4346-8a33-228a782c2dd0
* - [Fix] Set correct error reporting in style.php to avoid blank pages after ↵Nils Adermann2008-03-241-0/+4
| | | | | | CSS changes (Bug #23885) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8464 89ea8834-ac86-4346-8a33-228a782c2dd0
* #16865Henry Sudhof2008-01-031-0/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8293 89ea8834-ac86-4346-8a33-228a782c2dd0
* again... ie6 is still not behaving correctly... the pragma header ↵Meik Sievertsen2007-08-191-4/+2
| | | | | | invalidates the content. I hope this is really the cause now. :/ git-svn-id: file:///svn/phpbb/trunk@8054 89ea8834-ac86-4346-8a33-228a782c2dd0
* very tiny adjustements...Meik Sievertsen2007-08-191-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8049 89ea8834-ac86-4346-8a33-228a782c2dd0
* - IE6 is not able to correctly cope with gzip compressionMeik Sievertsen2007-08-171-1/+4
| | | | | | | - hopefully fixed the rtl icon issue in FF without breaking ltr display. git-svn-id: file:///svn/phpbb/trunk@8040 89ea8834-ac86-4346-8a33-228a782c2dd0
* some bugs fixedMeik Sievertsen2007-08-151-7/+11
| | | | git-svn-id: file:///svn/phpbb/trunk@8033 89ea8834-ac86-4346-8a33-228a782c2dd0
* do not get too excitedMeik Sievertsen2007-07-261-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7954 89ea8834-ac86-4346-8a33-228a782c2dd0
* add support for gzip compression to style.php as well as adding a much ↵Meik Sievertsen2007-07-261-19/+36
| | | | | | higher expire date - though could be much more effective (but also error prone) due to the session id. git-svn-id: file:///svn/phpbb/trunk@7949 89ea8834-ac86-4346-8a33-228a782c2dd0
* validationDavid M2007-07-221-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7921 89ea8834-ac86-4346-8a33-228a782c2dd0
* it has been decided amongst the team that using glob() is bad practice, ↵Meik Sievertsen2007-07-171-21/+7
| | | | | | after determining the overall usage among projects as well as the security history of the function. git-svn-id: file:///svn/phpbb/trunk@7900 89ea8834-ac86-4346-8a33-228a782c2dd0
* a bunch of fixesMeik Sievertsen2007-07-141-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7884 89ea8834-ac86-4346-8a33-228a782c2dd0
* more failsafe "glob()" method.Meik Sievertsen2007-07-101-1/+20
| | | | git-svn-id: file:///svn/phpbb/trunk@7863 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, mess around with the templates + fixing some bugs + adjusting headers ↵Meik Sievertsen2007-06-091-4/+4
| | | | | | for those files already modified to circumvent conflicts for those having their editor set to remove trailing spaces (not recommended!) git-svn-id: file:///svn/phpbb/trunk@7736 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Send stylesheet in style.php even without a valid session id [Bug #11531]Nils Adermann2007-05-261-128/+137
| | | | | | | | - request_var should strictly return the requested number of dimensions - corrected a character mapping in the search indexing character list, people might want to reindex after this change if they use fulltext_native git-svn-id: file:///svn/phpbb/trunk@7685 89ea8834-ac86-4346-8a33-228a782c2dd0
* - style.php uses default language fallback for the imageset like session.php nowNils Adermann2007-05-201-3/+7
| | | | | | | | - style.php removes placeholders for non-existant images instead of leaving them alone - automatically try to load a localised part of an imageset if the folder exists and no images for that language were found in the database, thanks PhilippK git-svn-id: file:///svn/phpbb/trunk@7654 89ea8834-ac86-4346-8a33-228a782c2dd0
* also recache if theme_data is empty.Meik Sievertsen2007-05-101-4/+4
| | | | git-svn-id: file:///svn/phpbb/trunk@7523 89ea8834-ac86-4346-8a33-228a782c2dd0
* implement change style check suggested by code reader.Meik Sievertsen2007-05-071-14/+40
| | | | git-svn-id: file:///svn/phpbb/trunk@7500 89ea8834-ac86-4346-8a33-228a782c2dd0
* #10497David M2007-05-051-1/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@7475 89ea8834-ac86-4346-8a33-228a782c2dd0
* some tiny changesMeik Sievertsen2007-05-021-1/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@7452 89ea8834-ac86-4346-8a33-228a782c2dd0