Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix loading ActiveStorage::DiskController when CSRF protection is disabled ↵ | George Claghorn | 2017-11-21 | 1 | -1/+1 |
| | | | | by default | ||||
* | Fix direct uploads to local service | George Claghorn | 2017-11-20 | 1 | -0/+2 |
| | | | | | | | | Disable CSRF protection for ActiveStorage::DiskController#update. The local disk service is intended to imitate a third-party service like S3 or GCS, so we don't care where direct uploads originate: they’re authorized by signed tokens. Closes #30290. [Shinichi Maeshima & George Claghorn] | ||||
* | Preserve existing metadata when analyzing a blob | George Claghorn | 2017-11-13 | 1 | -1/+1 |
| | | | | Closes #31138. | ||||
* | Permit configuring Active Storage's job queue | George Claghorn | 2017-11-03 | 3 | -2/+7 |
| | |||||
* | Extract metadata from images and videos | George Claghorn | 2017-10-22 | 4 | -2/+72 |
| | |||||
* | Clarify comment [ci skip] | George Claghorn | 2017-10-13 | 1 | -1/+1 |
| | |||||
* | Accept variation keys in #preview and #variant | George Claghorn | 2017-10-12 | 2 | -7/+12 |
| | |||||
* | Introduce ActiveStorage::Blob#representation | George Claghorn | 2017-10-12 | 2 | -0/+30 |
| | |||||
* | Replace variation key use with SHA256 of key to prevent long filenames | khall | 2017-10-05 | 1 | -1/+1 |
| | | | | | | | If a variant has a large set of options associated with it, the generated filename will be too long, causing Errno::ENAMETOOLONG to be raised. This change replaces those potentially long filenames with a much more compact SHA256 hash. Fixes #30662. | ||||
* | Fix third-party system libraries list in ActiveStorage::Preview [ci skip] | Yoshiyuki Hirano | 2017-10-04 | 1 | -2/+2 |
| | |||||
* | Associate blobs with their attachments | George Claghorn | 2017-10-03 | 1 | -0/+2 |
| | |||||
* | Preview PDFs and videos | George Claghorn | 2017-09-28 | 8 | -44/+160 |
| | |||||
* | Add missing word [ci skip] | George Claghorn | 2017-09-20 | 1 | -1/+1 |
| | |||||
* | Flesh out ActiveStorage::Filename docs | George Claghorn | 2017-09-20 | 1 | -6/+14 |
| | |||||
* | Remove unused require in ActiveStorage::Variation | Yoshiyuki Hirano | 2017-09-18 | 1 | -2/+0 |
| | |||||
* | Fix activestorage direct upload on firefox | _N_I_X_O_N_ | 2017-09-12 | 3 | -1/+3 |
| | | | | | | | | Direct upload on firefox is not working because it can’t handle click events on “input[type=submit]”. After a successful upload we can see on console a xml parse error, it happens because AWS S3 success body response is empty, so changing the reponseType suppress this error. | ||||
* | Have attachments touch their records | George Claghorn | 2017-08-31 | 1 | -1/+1 |
| | |||||
* | Update Active Storage docs [ci skip] | Yoshiyuki Hirano | 2017-08-30 | 2 | -7/+15 |
| | |||||
* | Synchronously destroy attachments | George Claghorn | 2017-08-29 | 2 | -9/+7 |
| | |||||
* | Enable links in Active Storage docs [ci skip] | Yoshiyuki Hirano | 2017-08-26 | 2 | -2/+2 |
| | |||||
* | Fix link in doc for active storage [ci skip] | Yoshiyuki Hirano | 2017-08-25 | 1 | -1/+1 |
| | |||||
* | Add frozen string literal pragma | George Claghorn | 2017-08-21 | 1 | -0/+2 |
| | |||||
* | Encode Content-Disposition filenames according to RFC 2231 | George Claghorn | 2017-08-21 | 3 | -1/+39 |
| | | | | Closes #30134. | ||||
* | DRY | George Claghorn | 2017-08-20 | 2 | -3/+3 |
| | |||||
* | Rename ActiveStorage::Filename#extname to extension_with_delimiter | George Claghorn | 2017-08-20 | 1 | -9/+11 |
| | |||||
* | restores some double newlines deleted in ae87217 | Xavier Noria | 2017-08-15 | 3 | -0/+6 |
| | | | | | | These were intentional, see https://github.com/rails/rails/pull/30061#issuecomment-320068368 | ||||
* | minor tweaks in Active Storage after a walkthrough | Xavier Noria | 2017-08-15 | 6 | -32/+28 |
| | |||||
* | Use frozen string literal in Active Storage | Koichi ITO | 2017-08-12 | 10 | -0/+20 |
| | |||||
* | Enable browser caching for blobs and variants (#30196) | Anton Khamets | 2017-08-11 | 2 | -0/+2 |
| | |||||
* | Fix formatting of Active Storage docs [ci skip] | Koichi ITO | 2017-08-11 | 5 | -31/+31 |
| | | | | Follow up of #30188. | ||||
* | Fix a typo | qsona | 2017-08-10 | 1 | -1/+1 |
| | |||||
* | Use `content_type.start_with?("...")` than `content_type =~ /^.../` | Ryuta Kamizono | 2017-08-05 | 1 | -4/+4 |
| | | | | | `start_with?` is a little faster than regexp for prefix matching by a fixed string. | ||||
* | Merge pull request #30061 from claudiob/ast-rubocop | Rafael França | 2017-08-03 | 2 | -2/+2 |
|\ | | | | | Make Rubocop happy about ActiveStorage | ||||
| * | Make Rubocop happier about ActiveStorage | claudiob | 2017-08-03 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | Running `rubocop activestorage` before this commit resulted in 20 offenses. This commit only fixes: - Trailing whitespace detected - Space inside } missing - Put one space between the method name and the first argument. The other offenses are left since they are intentional according to @georgeclaghorn (https://github.com/rails/rails/pull/30061#issuecomment-319999190) | ||||
* | | Do not eager load ActiveRecord::Base | Rafael Mendonça França | 2017-08-03 | 3 | -9/+0 |
| | | | | | | | | Everything inside the app directory of a engine is autoload/eager loaded automatically so we don't need to require them. | ||||
* | | There is no reason to single line methods here | Rafael Mendonça França | 2017-08-03 | 1 | -4/+12 |
|/ | | | | | I know those methods are unlikely to change but having one line method is hard to read and also hard to modify. | ||||
* | Remove circular dependency | David Heinemeier Hansson | 2017-08-01 | 1 | -2/+0 |
| | |||||
* | Move the direct_upload: true convenience option from the activestorage ↵ | David Heinemeier Hansson | 2017-07-31 | 1 | -18/+0 |
| | | | | helper into actionview | ||||
* | Add 'activestorage/' from commit '3f4a7218a4a4923a0e7ce1b2eb0d2888ce30da58' | Rafael Mendonça França | 2017-07-31 | 21 | -0/+983 |
git-subtree-dir: activestorage git-subtree-mainline: 0d58e7e478e79c2d6b2a39a4444d2a17a903b2a6 git-subtree-split: 3f4a7218a4a4923a0e7ce1b2eb0d2888ce30da58 |