summaryrefslogtreecommitdiff
path: root/modules/upload
Commit message (Collapse)AuthorAge
* - Patch #23160 by drumm: fixed status message by adding a missing string ↵Dries Buytaert2005-05-19
| | | | substition.
* - Fixing some plain/url check calls.Steven Wittens2005-05-18
|
* - Patch #22723 by ejort: 'from' to 'FROM'.Dries Buytaert2005-05-14
|
* - Patch #22806 by Neil: replaced left-over <em>foo<em> with ↵Dries Buytaert2005-05-14
| | | | theme('placeholder', 'foo')
* - #21429: Maximum upload file size was checked in bytes, not megabytes.Steven Wittens2005-05-07
|
* - Patch #15595 by Stefan and Djun: improved status messages.Dries Buytaert2005-05-05
| | | | | TODO: we should write down a couple guidelines for these document them in the PHPDoc code of drupal_set_message()! .
* - Patch 20910 by chx: centralize print theme page.Dries Buytaert2005-04-24
|
* - Patch #19451 by JonBob: improved consistency of module descriptions. We ↵Dries Buytaert2005-04-01
| | | | should write guidelines for this -- maybe in the PHPDoc code of the _help hook.
* - #18817: Clean up plain-text checking (see drupal-devel!)Steven Wittens2005-03-31
|
* - #12211: Show link indicating that a node has attachments on the homepageSteven Wittens2005-03-18
|
* - Patch #16963 by Neil: the upload's module help text was in bad shape. ↵Dries Buytaert2005-02-08
| | | | Edited it down to what is needed with links that actually work.
* - Missing apostropheSteven Wittens2005-02-08
|
* #16993: Bad query in upload.Steven Wittens2005-02-08
|
* - Fixed warning in the feed generation (enclosures).Dries Buytaert2005-02-07
|
* - Patch #16358 by James: added toolkit to enable better image handling. The ↵Dries Buytaert2005-02-01
| | | | | | | | | | | | | | avatar code and the upload module have been updated to take advantage of the new image API. There are 5 main functions that modules may now utilize to handle images: * image_get_info() - this function checks a file. If it exists and is a valid image file, it will return an array containing things like the pixel dimensions of the image, plus the 'type' and common extension. * image_scale - resizes a given image to fit within a given width / height dimensions, while maintaining aspect ratio (not distorting the image). This function can be used to generate thumbnails, or ensure a maximum resolution, etc. * image_resize - similar to image_scale (but will not respect aspect ratio - may well distort the image). * image_rotate - rotate an image by X degrees * image_crop - crops an image to a given rectangle (defined as top-left x/y coordinates plus a width & height of the rectangle). Contribution modules will now be able to rely on these base manipulation functions to offer additional functionality (such as image nodes, photo galleries, advanced image manipulation, etc).
* - Patch #16513 by James (slightly modified): export categories and ↵Dries Buytaert2005-02-01
| | | | | | enclosures to RSS feeds (and made RSS feeds extensible). NOTE: this needs to be documented.
* - Patch #16111 by chx: generalized node_rewrite_query to db_rewrite_query.Dries Buytaert2005-01-29
|
* - Moved the upload settings to 'admin/settings'.Dries Buytaert2005-01-29
|
* - Modified patch #14170 by Neil: improved default workflow (default node ↵Dries Buytaert2005-01-24
| | | | | | type) configuration page. Modified the patch to remove some redundant code, to translate strings, and to better use the menu system.
* - Patch #16023 by chx: the upload.module still used the old ↵Dries Buytaert2005-01-23
| | | | node_access_*_sql calls.
* - Patch #14917 by UnConeD/Steven:Dries Buytaert2004-12-31
| | | | | | | | 1) The different types of search, which used to be radio button options in the search form, are now subtabs of "search" (default "search/node"). This seems better from a UI point of view, but also has another advantage: modules which implement a custom search form (flexinode, project) can add it as a subtab of search. This means that all search forms will be located in the same place, and also without needing an extra api call to search.module. 2) The current code was a bit hackish, as the indexing of comments along with nodes was hardcoded in node.module. Instead, I created a nodeapi operation "update index" which allows modules to add more data for a node that is being indexed. Comments are now indexed using this mechanism and from comment.module, which is a lot cleaner. 3) The search results format was also hardcoded to include "N comments". I replaced this with a nodeapi operation "search result" and moved the comment code to comment.module where it belongs. This op is quite useful, as for example I also modified upload.module to add "N attachments" to a search result if any are present.
* - Added missing spaceDries Buytaert2004-12-29
|
* - Patch #14545 by nysus: don't grant access to files if the node is not ↵Dries Buytaert2004-12-29
| | | | accessible.
* - Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve ↵Dries Buytaert2004-11-23
| | | | consistency.
* Missing check if file upload fails.Steven Wittens2004-10-20
|
* #10441: Splitting up upload permissions in 2: one for uploading and one for ↵Steven Wittens2004-09-19
| | | | viewing/downloading. It does not make sense to only allow downloading for people who can upload themselves.
* - Patch #8179 by JonBob: the legacy handlers and file upload previews were ↵Dries Buytaert2004-09-17
| | | | mistakenly cached when they cannot be. Attached patch fixes this as well as a reference to an undefined constant in legacy_menu().
* - Patch #8179 by JonBob: reintroduced menu caching.Dries Buytaert2004-09-16
|
* #10560: Upload.moduleSteven Wittens2004-09-13
| | | | | - removing file checks for uid #1 to be consistent with the roles/permissions. - renaming script files to .txt's to prevent accidental execution (we don't allow them by default, but you never know)
* Upload.module: add explicit cast to (array) for $node->files in case it's ↵Steven Wittens2004-09-05
| | | | not set (e.g. nodes that don't take attachments).
* Patch by me and Kjartan.Steven Wittens2004-08-24
| | | | | | | | | | | | Upload.module - Fixing a bug caused by the PHP5 patches. Beware: PHP4's array_merge() will silently accept objects and convert them to arrays. We should not depend on this behaviour in the future. File.inc / file-using modules: - Removing the constant FILE_SEPARATOR: forward slashes work fine on Windows, and it was being used incorrectly as an URL separator sometimes. - Adding @ to mkdir and chmod to supress ugly PHP errors. They are already reported with drupal_set_message(). - Fixing default for variable 'file_directory_temp'. - Clarifying the help tip for 'file_directory_temp' in admin > settings.
* - Patch by JonBob: for consistency and readability, add brief descriptions ↵Dries Buytaert2004-08-21
| | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
* - Code improvements by Stefan: use capital letters for header titles (and ↵Dries Buytaert2004-08-19
| | | | added some missing t() functions).
* Fixed bad permissions in upload.module:Steven Wittens2004-08-18
| | | | | | | - Admin - upload only shows up for 'access administration section' perms - Users without 'upload files' perm do not see the attachments form (and cannot attach even when sending their own http request) Note: if a user can edit a node, but not 'upload files', then the attachments are left untouched (and cannot be changed).
* - Code improvements by Stefan:Dries Buytaert2004-08-18
| | | | | | + " -> ' + Using form_set_error() instead of drupal_set_message(). + Removed dead code.
* - Small change to the wording of the 'note'.Dries Buytaert2004-08-18
|
* Setting the default workflow for attachments by upload.module to be enabled.Steven Wittens2004-08-18
| | | | This makes sense because people will expect attachments to work everywhere when they enable this module. This also matches comment.module's behaviour, where comments are allowed by default unless turned off.
* - The upload (filehandler) module has landed!Dries Buytaert2004-08-17