summaryrefslogtreecommitdiff
path: root/includes
Commit message (Collapse)AuthorAge
* - Patch #28483 by Steven: JavaScript enabled uploading.Dries Buytaert2005-08-31
| | | | | | | | | | | Comment from Steven: It does this by redirecting the submission of the form to a hidden <iframe> when you click "Attach" (we cannot submit data through Ajax directly because you cannot read file contents from JS for security reasons). Once the file is submitted, the upload-section of the form is updated. Things to note: * The feature degrades back to the current behaviour without JS. * If there are errors with the uploaded file (disallowed type, too big, ...), they are displayed at the top of the file attachments fieldset. * Though the hidden-iframe method sounds dirty, it's quite compact and is 100% implemented in .js files. The drupal.js api makes it a snap to use. * I included some minor improvements to the Drupal JS API and code. * I added an API drupal_call_js() to bridge the PHP/JS gap: it takes a function name and arguments, and outputs a <script> tag. The kicker is that it preserves the structure and type of arguments, so e.g. PHP associative arrays end up as objects in JS. * I also included a progressbar widget that I wrote for drumm's ongoing update.php work. It includes Ajax status updating/monitoring, but it is only used as a pure throbber in this patch. But as the code was already written and is going to be used in the near future, I left that part in. It's pretty small ;). If PHP supports ad-hoc upload info in the future like Ruby on Rails, we can implement that in 5 minutes.
* - Patch #22911 by Cvgbe: fixed table locking in PostgreSQL. You'll have toDries Buytaert2005-08-29
| | | | use db_lock_table() and db_unlock_tables() for your code to be compatible.
* - Patch #22911 by Cvgbe: fixed table locking in PostgreSQL. You'll have toDries Buytaert2005-08-29
| | | | use db_lock_table() and db_unlock_tables() for your code to be compatible.
* - Unrolled patch #29103: always encode apostrophes.Dries Buytaert2005-08-28
|
* - Patch #29785 by Chx: multiple node types were broken so we refactoredDries Buytaert2005-08-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | part of the node system! If you have a module that implements node types, you'll have to udpate its CVS HEAD version. We replaced _node_name() and _node_types() by _node(). The new _node() hook let's you define one or more node types, including their names. The implementation of the _node() hook needs to: return array($type1 => array('name' => $name1, 'base' => $base1), $type2 => array('name' => $name2, 'base' => $base2)); where $type is the node type, $name is the human readable name of the type and $base is used instead of <hook> for <hook>_load, <hook>_view, etc. For example, the story module's node hook looks like this: function story_node() { return array('story' => array('name' => t('story'), 'base' => 'story')); } The page module's node hook module like: function page_node() { return array('page' => array('name' => t('page'), 'base' => 'page')); } However, more complex node modules like the project module and the flexinode module can use the 'base' parameter to specify a different base. The project module implements two node types, proejcts and issues, so it can do: function project_node() { return array( array('project_project' => array('name' => t('project'), 'base' => 'project'), array('project_issue' => array('name' => t('issue'), 'base' => 'project_issue')); } In the flexinode module's case there can only one base ... This hook will simplify the CCK, and will make it easy (or easier) to merge the story and page module. In addition, node_list() became node_get_types(). In addition, we created the following functions: node_get_name($type) and node_get_base($type).
* - Patch #29385 by chx: no ?> add end of files.Dries Buytaert2005-08-25
|
* - Bug #22911: PostgreSQL doesn't like "LOCK TABLES", but does like "LOCK ↵Dries Buytaert2005-08-25
| | | | TABLE". MySQL likes both.
* - Removed some debug code.Dries Buytaert2005-08-25
|
* - Patch #25084 by Uwe: fixed code comments of error_handler().Dries Buytaert2005-08-23
|
* - Patch #17592 by killes: improved access denied messages.Dries Buytaert2005-08-22
|
* - Patch #28629 by chx: fixed handling of cookies in drupal_http_request().Dries Buytaert2005-08-22
|
* - Patch #29274 by Jeremy: the "fuzzy cache" mechanism is supposed to enforce ↵Dries Buytaert2005-08-22
| | | | a minimum time before the cache table is flushed. Logical errors in the fuzzy cache implementation are leading to the cache table being flushed more frequently. Configuration is simplified by removing all references to "strict" and "loose" caches. Instead, the cache is either "disabled" or "enabled". Additionally, the site administrator can now configure the "minimum cache lifetime", the minimum amount of time cached data will remain cached.
* - Patch #29103 by chx: do not encode apostrophes.Dries Buytaert2005-08-19
|
* - Patch #29002 by Neil: list_themes() currently returns all themes, not just ↵Dries Buytaert2005-08-18
| | | | | | | | enabled themes. This functionality is only used in one place- configuration for disabled themes. These configuration pages can be removed with a usability improvement since you shouldn't be able to configure things which are disabled. Additionally, this allows us to remove some extra logic in system_user(). And it it more consistent with the module API which only lists enabled modules. list_themes() sorts the results by name. This uses filesort in MySQL since there aren't any indexes. Sorting is not used except in system_user(). This one use can be handled with ksort since it is not often executed (only on the user edit screen when multiple themes are enabled). And a one line fix to remove a variable in system_user() is in here too.
* - Patch #7458 by chx: fixed spaces.Dries Buytaert2005-08-17
|
* - Patch #7458 by chx: merged the XML-RPC multicall support into xmlrpc() and ↵Dries Buytaert2005-08-17
| | | | use lazy-loading for the XML-RPC libraries.(performance improvement).
* - Remove left-over commented out statement.Steven Wittens2005-08-17
|
* - Patch #16216 by nedjo: multiple block regions!Dries Buytaert2005-08-16
|
* - Patch #28871 by Malthus: added missing quotes.Dries Buytaert2005-08-15
|
* - Patch #28861 by Malthus: fixed typo in XML-RPC backend. Missing $.Dries Buytaert2005-08-14
| | | | - Made chx the XML-RPC maintainer.
* - Patch #28826 by chx: make xmlrpc_multicall working.Dries Buytaert2005-08-14
|
* - Patch #25522 by Cvbge: _db_query() does not return FALSE in case of errors ↵Dries Buytaert2005-08-11
| | | | as stated in documentation.
* - Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core. ↵Dries Buytaert2005-08-11
| | | | | | This allows admins to know exactly which version of which files they use. In addition I want to use CVS $Id$ tags in my upcoming security.module to check for possible vulnerabilities. That's not possible if some files simply don't have $Id$s. Note: I also (mostly) unified the tags to use the "// ID" form instead of "/* ID */", but that's more of a cosmetic issue. I'm not sure whether *.txt files and the stuff in themes/ need tags(?).
* - Patch #27980 by Neil Drumm: removed unused function.Dries Buytaert2005-08-10
|
* - Patch by Thomas: always use db abstraction layerDries Buytaert2005-08-10
|
* - #28464: fix XMLRPC array vs. struct type-checkingSteven Wittens2005-08-08
|
* - #27853: PHP notices.Steven Wittens2005-08-05
|
* - #27981: Add media parameter to theme_add_styleSteven Wittens2005-08-05
|
* - Patch #27737 by Gerhard: format_name($object) -> theme('username', $object).Dries Buytaert2005-08-01
| | | | | | Usernames can now be themed; eg. an icon/avatar could be added. TODO: update contributed modules + update the migration docs.
* - Patch #27863 by Robrecht: fixed order of parameters passed to imagecopy(). ↵Dries Buytaert2005-07-31
| | | | Could result in black images.
* - Patch #27431 by Cvbge: add file size infomation to image_get_info()Dries Buytaert2005-07-31
|
* - #27846: Clean up dev_query code in db_query()Steven Wittens2005-07-30
|
* - #24673: Fix deprecated usage of implodeSteven Wittens2005-07-30
|
* - Fix braino in doxygen.Steven Wittens2005-07-29
|
* - Fix braino in doxygen.Steven Wittens2005-07-29
|
* - #11689: Fix locale import location cutting off thingie.Steven Wittens2005-07-29
|
* - #27624, #27614, #27627: dead codeSteven Wittens2005-07-29
|
* - #27231: (fix) Pretty db error screens.Steven Wittens2005-07-29
|
* - Patch #27645 by Neil: refactor away module_load_all().Dries Buytaert2005-07-29
| | | | "This function is called in one place, so it can be rolled into the calling function. The return value isn't used so we can remove handling of it. This is executed for every non-cached page view, so the smaller code should save a smallish ammount of memory and time."
* - #27668: Replace deprecated tags/attributes with XHTML/CSS in locale.Steven Wittens2005-07-29
| | | | - (#15121) Improve string cut-off for locale table
* - #23651: Display referrer info with watchdog messages.Steven Wittens2005-07-29
|
* - #27231: Friendly DB error screens.Steven Wittens2005-07-27
|
* - #26688: Add mbstring support to Drupal and clear up string handling fuzzies.Steven Wittens2005-07-25
|
* - #26688: Add mbstring support to Drupal and clear up string handling fuzzies.Steven Wittens2005-07-25
|
* - Patch #27003 by Neil: use named constants instead of stringsDries Buytaert2005-07-23
|
* - Patch #26467 by drumm: make the destination persist across multiple pagesDries Buytaert2005-07-20
| | | | and fixed the node delete form to use a return destination.
* - Patch #26391 by chx: replaced the old XML-RPC library with a ↵Dries Buytaert2005-07-13
| | | | smaller/better/working one.
* - Optionally show dots after truncation. TODO: update user.module to take ↵Dries Buytaert2005-07-06
| | | | advantage of this.
* - Patch by Bart: fixed update.php after bootstrap patch.Dries Buytaert2005-07-03
|
* - Patch #11927 by stefan/Robin: improved theming of tablesort icons.Dries Buytaert2005-07-02
|