Index: trunk/phase3/includes/upload/UploadFromStash.php |
— | — | @@ -2,11 +2,9 @@ |
3 | 3 | /** |
4 | 4 | * Implements uploading from previously stored file. |
5 | 5 | * |
6 | | - * @file |
7 | | - * @ingroup upload |
| 6 | + * @ingroup Upload |
8 | 7 | * @author Bryan Tong Minh |
9 | 8 | */ |
10 | | - |
11 | 9 | class UploadFromStash extends UploadBase { |
12 | 10 | protected $mFileKey, $mVirtualTempPath, $mFileProps, $mSourceType; |
13 | 11 | |
Index: trunk/phase3/includes/upload/UploadFromUrl.php |
— | — | @@ -2,8 +2,7 @@ |
3 | 3 | /** |
4 | 4 | * Implements uploading from a HTTP resource. |
5 | 5 | * |
6 | | - * @file |
7 | | - * @ingroup upload |
| 6 | + * @ingroup Upload |
8 | 7 | * @author Bryan Tong Minh |
9 | 8 | * @author Michael Dale |
10 | 9 | */ |
Index: trunk/phase3/includes/upload/UploadBase.php |
— | — | @@ -1,7 +1,10 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * @file |
5 | | - * @ingroup upload |
| 4 | + * @defgroup Upload |
| 5 | + */ |
| 6 | + |
| 7 | +/** |
| 8 | + * @ingroup Upload |
6 | 9 | * |
7 | 10 | * UploadBase and subclasses are the backend of MediaWiki's file uploads. |
8 | 11 | * The frontends are formed by ApiUpload and SpecialUpload. |
— | — | @@ -12,7 +15,6 @@ |
13 | 16 | * @author Bryan Tong Minh |
14 | 17 | * @author Michael Dale |
15 | 18 | */ |
16 | | - |
17 | 19 | abstract class UploadBase { |
18 | 20 | protected $mTempPath; |
19 | 21 | protected $mDesiredDestName, $mDestName, $mRemoveTempFile, $mSourceType; |
Index: trunk/phase3/includes/upload/UploadFromChunks.php |
— | — | @@ -2,11 +2,9 @@ |
3 | 3 | /** |
4 | 4 | * Implements uploading from chunks |
5 | 5 | * |
6 | | - * @file |
7 | | - * @ingroup upload |
| 6 | + * @ingroup Upload |
8 | 7 | * @author Michael Dale |
9 | 8 | */ |
10 | | - |
11 | 9 | class UploadFromChunks extends UploadFromFile { |
12 | 10 | protected $mOffset, $mChunkIndex, $mFileKey, $mVirtualTempPath; |
13 | 11 | |
Index: trunk/phase3/includes/upload/UploadStash.php |
— | — | @@ -16,6 +16,8 @@ |
17 | 17 | * UploadStash represents the entire stash of temporary files. |
18 | 18 | * UploadStashFile is a filestore for the actual physical disk files. |
19 | 19 | * UploadFromStash extends UploadBase, and represents a single stashed file as it is moved from the stash to the regular file repository |
| 20 | + * |
| 21 | + * @ingroup Upload |
20 | 22 | */ |
21 | 23 | class UploadStash { |
22 | 24 | |
Index: trunk/phase3/includes/upload/UploadFromFile.php |
— | — | @@ -2,11 +2,9 @@ |
3 | 3 | /** |
4 | 4 | * Implements regular file uploads |
5 | 5 | * |
6 | | - * @file |
7 | | - * @ingroup upload |
| 6 | + * @ingroup Upload |
8 | 7 | * @author Bryan Tong Minh |
9 | 8 | */ |
10 | | - |
11 | 9 | class UploadFromFile extends UploadBase { |
12 | 10 | |
13 | 11 | /** |