summaryrefslogtreecommitdiff
path: root/modules/upload.module
Commit message (Collapse)AuthorAge
* #57307, order files by fid, patch by Robert DouglassGerhard Killesreiter2006-04-08
|
* #53689: upload_js doesn't allow form altering with hook_form_alterSteven Wittens2006-04-07
|
* #56921, revert earlier patches, patch by chxGerhard Killesreiter2006-04-06
|
* #57294: Upload.module should not overwrite other #attributes in form_alterSteven Wittens2006-04-04
|
* #56921 by chx, removing the $form = from $form = form_builder($form_id, ↵Neil Drumm2006-04-02
| | | | $form) then it works.
* #55520, improved docs, patch by dopryGerhard Killesreiter2006-03-30
|
* #56467, removed cruft, patch by NedjoGerhard Killesreiter2006-03-30
|
* #55520, upload.module does not display previews for when private files are ↵Gerhard Killesreiter2006-03-29
| | | | enabled, patch by dopry.
* #54913, problem with checking filesize during uploading if user belongs into ↵Gerhard Killesreiter2006-03-24
| | | | more than one role, patch by dopry
* #54298, Only user = 1 can upload files, patch by dopryGerhard Killesreiter2006-03-21
|
* #54186, Uploads still listed on upload form after validation errors, patch ↵Gerhard Killesreiter2006-03-16
| | | | by timcn
* #53666, Invalid argument supplied for foreach() in upload_save, patch by ↵Gerhard Killesreiter2006-03-13
| | | | Markus Petrux
* - Patch #42358 by dopry et al: fixed problem with attaching files.Dries Buytaert2006-03-10
|
* - Patch #52092 by wtanaka, dopry and moshe: fixed regression with ↵Dries Buytaert2006-03-10
| | | | hook_file_download.
* - Patch #31354 by Junyor et al: move node revision information for files to ↵Dries Buytaert2006-02-22
| | | | a separate table. (Today's critical bugfix #1.)
* - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.)Dries Buytaert2006-02-21
|
* - Patch #50454 by DaveNotik: fixed syntax error. (Today's 1th critical bugfix)Dries Buytaert2006-02-21
|
* - Patch #49476 by Moshe: fixed incorrect access check.Dries Buytaert2006-02-20
|
* - #47510: Show JavaScript alert when PHP errors occurSteven Wittens2006-02-05
|
* - Patch #20795 by Steven: improved consistency of the code.Dries Buytaert2006-01-08
|
* - Patch #41161 by Moshe: bugfix: hide the upload form when uploads are not ↵Dries Buytaert2006-01-08
| | | | enabled for a node type.
* - Patch #43362 by dorpy, junyor: critical bug fix: uploads loose their state.Dries Buytaert2006-01-05
|
* - Patch 41169 by Chris: got rid of expensvie object 2 array casts.Dries Buytaert2005-12-31
|
* - Patch #41437 by webchick: improved code comments.Dries Buytaert2005-12-17
|
* - Patch #34920 by Morbus/webchick/tangent: fixed order of form fields.Dries Buytaert2005-12-15
|
* - Patch #39358 by m3avrck and Souvent22: make the upload.module work + ↵Dries Buytaert2005-12-10
| | | | revisions fixes.
* - Patch #39778 by chx: obliterate nodeapi op form in favor of the forms ↵Dries Buytaert2005-12-05
| | | | API's way of doing things. Tested with help from webchick.
* - Removed valid_input_check().Dries Buytaert2005-11-30
|
* - Various fixes. Updated CHANGELOG.txtDries Buytaert2005-11-29
|
* - Patch #37798 by Neil: fixed problem with node settings.Dries Buytaert2005-11-27
|
* - Patch #37798 by Neil: allow non-workflow form elements on the node type ↵Dries Buytaert2005-11-25
| | | | settings page.
* - Patch #35121 by m3avrck: fixed problem with list and description values ↵Dries Buytaert2005-11-21
| | | | aren't saved for uploaded files.
* #37378: Missing for _form_builder() in js uploadSteven Wittens2005-11-13
|
* - Patch #35644 by webchick: forms API simplificiations.Dries Buytaert2005-11-12
|
* - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵Dries Buytaert2005-11-01
| | | | help of core modules! /
* - Patch #34920 by tangent: reorganized the node submission form a bit.Dries Buytaert2005-10-28
|
* - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes.Dries Buytaert2005-10-11
|
* - Removing tabs and trailing whitespaces.Dries Buytaert2005-10-07
|
* - Patch #29465: new form API by Adrian et al.Dries Buytaert2005-10-07
| | | | | | | TODO: + The contact.module was broken; a new patch for contact.module is needed. + Documentation is needed. + The most important modules need to be updated ASAP.
* - Modified patch #30775 by timcn, Souvent22, m3avrck: give file uploads ↵Dries Buytaert2005-09-27
| | | | | | descriptions. (Modified the form a bit.)
* - #30128: Call by reference left-oversSteven Wittens2005-09-02
|
* - 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 #7582 by Gerhard: improved node revisions!Dries Buytaert2005-08-30
| | | | | | | | | | All node revisions were stored in a serialized field in the node table and retrieved for _each_ page view although they are rarely needed. We created a separate revisions table which would be in principle identical to the node table, only that it could have several old copies of the same node. This also allows us to revision-related information, and to provide log entries to non-book pages when a new revision is being created. TODO: 1. Provide upgrade instructions for node module maintainers! 2. Upgrade modules that implement node types. 3. Provide an upgarde path for revisions. Dependency on the upgrade system.
* - Patch #29737 by m3avrck: fixed broken link in upload.module.Dries Buytaert2005-08-29
|
* - Patch #29385 by chx: no ?> add end of files.Dries Buytaert2005-08-25
|
* - Alternative solution for #28721: expand "File attachments"-group on node ↵Dries Buytaert2005-08-17
| | | | edit form when files are attached.
* - Patch by Uwe: tidied up the CVS IDs.Dries Buytaert2005-08-11
|
* - Patch #24183 by drumm: remove unnecessary setting from upload module. ↵Dries Buytaert2005-07-22
| | | | Currently the upload module checks two max file sizes. First it checks a global option; if its too big it quits. Then it checks another max file size (or even sizes) related to the roles which a user is in. We can remove the global option since the individual roles are checked.
* - 'File Attachments' -> 'File attachments'.Dries Buytaert2005-07-03
|
* - Patch #25603 by Stefan: made the sizes of forms consistent.Dries Buytaert2005-06-27
| | | | TODO: document the defaults in the PHPdoc comments.