You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
about: Bring attention to an area of the docs with code samples that need updating
4
+
or wording that could be improved
5
+
title: "\U0001F4D9"
6
+
labels: Documentation Improvement
7
+
assignees: ''
8
+
9
+
---
10
+
11
+
__Link to section:__
12
+
Please provide a specific link to the section in question. In the docs, you can click on a heading and then copy the relative link from the address bar.
13
+
14
+
__What is the issue?__
15
+
Please provide a detailed explanation of the problem, quoting parts of the docs or using screenshots if appropriate.
16
+
17
+
__Can you propose a solution?__
18
+
What changes do you think should be made? Have you considered multiple solutions? Will this be suitable for all use cases?
Copyright (c) 2015-present, Parse, LLC. All rights reserved.
6
+
7
+
Redistribution and use in source and binary forms, with or without modification,
8
+
are permitted provided that the following conditions are met:
9
+
10
+
* Redistributions of source code must retain the above copyright notice, this
11
+
list of conditions and the following disclaimer.
12
+
13
+
* Redistributions in binary form must reproduce the above copyright notice,
14
+
this list of conditions and the following disclaimer in the documentation
15
+
and/or other materials provided with the distribution.
16
+
17
+
* Neither the name Parse nor the names of its contributors may be used to
18
+
endorse or promote products derived from this software without specific
19
+
prior written permission.
20
+
21
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
25
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
28
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
32
+
-----
33
+
34
+
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.
Copy file name to clipboardExpand all lines: README.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Parse Docs
2
2
3
+
[](https://community.parseplatform.org/c/parse-server)
4
+
[][open-collective-link]
5
+
[][open-collective-link]
These are the markdown sources for all of the [Parse SDK guides](https://parse-community.github.io/#sdks). The content for the guides is stored in this repo, and we use Jekyll to generate a static site that is hosted on GitHub Pages.
4
11
5
12
## Repository Structure
@@ -49,4 +56,8 @@ Finally, open http://localhost:4000/ in your web browser.
49
56
50
57
-----
51
58
52
-
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.
59
+
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.
Copy file name to clipboardExpand all lines: _includes/android/files.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## The ParseFile
4
4
5
-
`ParseFile` lets you store application files in the cloud that would otherwise be too large or cumbersome to fit into a regular `ParseObject`. The most common use case is storing images but you can also use it for documents, videos, music, and any other binary data (up to 10 megabytes).
5
+
`ParseFile` lets you store application files in the cloud that would otherwise be too large or cumbersome to fit into a regular `ParseObject`. The most common use case is storing images but you can also use it for documents, videos, music, and any other binary data.
6
6
7
7
Getting started with `ParseFile` is easy. First, you'll need to have the data in `byte[]` form and then create a `ParseFile` with it. In this example, we'll just use a string:
Note, however, that files can't be parceled if they are not saved on the server. If you try to do so, an exception will be thrown. If you are not sure if your file has been saved, plaese check for `!isDirty()` to be true before writing it to a parcel.
97
+
Note, however, that files can't be parceled if they are not saved on the server. If you try to do so, an exception will be thrown. If you are not sure if your file has been saved, please check for `!isDirty()` to be true before writing it to a parcel.
0 commit comments