Blame view

sources/core/doc/user/index.html 11.9 KB
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
8
9
  
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  
  
  <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      
6d9380f96   Cédric Dupont   Update sources OC...
10
      <title>ownCloud 7.0 User Documentation &mdash; ownCloud User Manual 7.0 documentation</title>
d1bafeea1   Kload   [fix] Upgrade to ...
11
12
13
14
15
16
17
18
19
      
      <link rel="stylesheet" href="_static/style.css" type="text/css" />
      <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
      <link rel="stylesheet" href="_static/style.css" type="text/css" />
      <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
      
      <script type="text/javascript">
        var DOCUMENTATION_OPTIONS = {
          URL_ROOT:    '',
6d9380f96   Cédric Dupont   Update sources OC...
20
          VERSION:     '7.0',
d1bafeea1   Kload   [fix] Upgrade to ...
21
22
23
24
25
26
27
28
29
          COLLAPSE_INDEX: false,
          FILE_SUFFIX: '.html',
          HAS_SOURCE:  true
        };
      </script>
      <script type="text/javascript" src="_static/jquery.js"></script>
      <script type="text/javascript" src="_static/underscore.js"></script>
      <script type="text/javascript" src="_static/doctools.js"></script>
      <script type="text/javascript" src="_static/bootstrap.js"></script>
6d9380f96   Cédric Dupont   Update sources OC...
30
31
      <link rel="top" title="ownCloud User Manual 7.0 documentation" href="#" />
      <link rel="next" title="New in ownCloud 7" href="whats_new.html" />
d1bafeea1   Kload   [fix] Upgrade to ...
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
      <link rel="prev" title="ownCloud documentation contents" href="contents.html" />
  <script type="text/javascript">
  (function () {
    /**
     * Patch TOC list.
     *
     * Will mutate the underlying span to have a correct ul for nav.
     *
     * @param $span: Span containing nested UL's to mutate.
     * @param minLevel: Starting level for nested lists. (1: global, 2: local).
     */
    var patchToc = function ($ul, minLevel) {
      var findA;
  
      // Find all a "internal" tags, traversing recursively.
      findA = function ($elem, level) {
        var level = level || 0,
          $items = $elem.find("> li > a.internal, > ul, > li > ul");
  
        // Iterate everything in order.
        $items.each(function (index, item) {
          var $item = $(item),
            tag = item.tagName.toLowerCase(),
            pad = 15 + ((level - minLevel) * 10);
  
          if (tag === 'a' && level >= minLevel) {
            // Add to existing padding.
            $item.css('padding-left', pad + "px");
            console.log(level, $item, 'padding-left', pad + "px");
          } else if (tag === 'ul') {
            // Recurse.
            findA($item, level + 1);
          }
        });
      };
  
      console.log("HERE");
      findA($ul);
    };
  
    $(document).ready(function () {
      // Add styling, structure to TOC's.
      $(".dropdown-menu").each(function () {
        $(this).find("ul").each(function (index, item){
          var $item = $(item);
          $item.addClass('unstyled');
        });
        $(this).find("li").each(function () {
          $(this).parent().append(this);
        });
      });
  
      // Patch in level.
      patchToc($("ul.globaltoc"), 2);
      patchToc($("ul.localtoc"), 2);
  
      // Enable dropdown.
      $('.dropdown-toggle').dropdown();
    });
  }());
  </script>
  
    </head>
    <body>
    
  
  <div class="container">
    <div class="content">
      <div class="page-header">
        <h1><a href="contents.html">ownCloud User Manual</a></h1>
  
      </div>
      
  			<div class="row">
  				<div class="span3">
  					<div class="sidebar">
  						<div class="well">
  							<div class="menu-support-container">
  								<ul id="menu-support" class="menu">
  									<ul>
  										<li><a href="contents.html">Overview</a></li>
  									</ul>
                    <ul class="current">
6d9380f96   Cédric Dupont   Update sources OC...
115
116
117
118
  <li class="toctree-l1 current"><a class="current reference internal" href="">ownCloud 7.0 User Documentation</a><ul>
  <li class="toctree-l2"><a class="reference internal" href="#web-interface">Web Interface</a></li>
  <li class="toctree-l2"><a class="reference internal" href="#file-access-and-management">File Access and Management</a></li>
  <li class="toctree-l2"><a class="reference internal" href="#contacts-and-calendar">Contacts and Calendar</a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
119
120
121
122
123
124
125
126
127
  <li class="toctree-l2"><a class="reference internal" href="#documents">Documents</a></li>
  <li class="toctree-l2"><a class="reference internal" href="#bookmarks">Bookmarks</a></li>
  <li class="toctree-l2"><a class="reference internal" href="#backup">Backup</a></li>
  <li class="toctree-l2"><a class="reference internal" href="#external-storage">External storage</a></li>
  <li class="toctree-l2"><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
  </ul>
  </li>
  </ul>
  <ul>
6d9380f96   Cédric Dupont   Update sources OC...
128
  <li class="toctree-l1"><a class="reference internal" href="whats_new.html">New in ownCloud 7</a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
129
130
131
132
133
134
135
  <li class="toctree-l1"><a class="reference internal" href="webinterface.html">The ownCloud Web Interface</a></li>
  <li class="toctree-l1"><a class="reference internal" href="files/index.html">Files &amp; Synchronization</a></li>
  <li class="toctree-l1"><a class="reference internal" href="pim/index.html">Contacts &amp; Calendar</a></li>
  <li class="toctree-l1"><a class="reference internal" href="bookmarks.html">Using the Bookmarks App</a></li>
  <li class="toctree-l1"><a class="reference internal" href="documents.html">Documents</a></li>
  <li class="toctree-l1"><a class="reference internal" href="migration.html">User Account Migration</a></li>
  <li class="toctree-l1"><a class="reference internal" href="userpreferences.html">Changing Preferences</a></li>
6d9380f96   Cédric Dupont   Update sources OC...
136
  <li class="toctree-l1"><a class="reference internal" href="external_storage/google_drive.html">Configuring External Storage</a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
137
138
139
140
141
142
143
144
145
146
147
148
149
  </ul>
  
  								</ul>
  							</div>
  						</div>
  					</div>
  				</div>
          
  
  				<div class="span9">
  					<div class="page-content">
  						
    <div class="section" id="owncloud-version-user-documentation">
6d9380f96   Cédric Dupont   Update sources OC...
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  <span id="index"></span><h1>ownCloud 7.0 User Documentation<a class="headerlink" href="#owncloud-version-user-documentation" title="Permalink to this headline">¶</a></h1>
  <p><strong>Welcome to ownCloud: your self-hosted file sync and share solution.</strong></p>
  <p>ownCloud is open source file sync and share software for everyone from
  individuals operating the free ownCloud Community Edition, to large enterprises
  and service providers operating the ownCloud Enterprise Edition. ownCloud
  provides a safe, secure, and compliant file synchronization and sharing
  solution on servers that you control.</p>
  <p>With ownCloud you can share one or more files and folders on your computer, and
  synchronize them with your ownCloud server. Place files in your local shared
  directories, and those files are immediately synchronized to the server and to
  other devices using the ownCloud Desktop Client. Not near a device running a
  desktop client? No problem! Simply log in using the ownCloud web client and
  manage your files from there. The ownCloud Android and iOS mobile applications
  enable you to browse, download, and upload photos and videos. On Android, you
  can also create, download, edit, and upload any other files, as long as the
  correct software is installed.</p>
  <p>Whether you are using a mobile device, a workstation, or a web client, ownCloud
  provides the ability to put the right files in the right hands at the right
  time on any device with one simple-to-use, secure, private and controlled
  solution. After all, with ownCloud, it’s Your Cloud, Your Data, Your Way.</p>
d1bafeea1   Kload   [fix] Upgrade to ...
170
  <div class="section" id="web-interface">
6d9380f96   Cédric Dupont   Update sources OC...
171
172
173
  <h2>Web Interface<a class="headerlink" href="#web-interface" title="Permalink to this headline">¶</a></h2>
  <p>The following topic contains a general overview how to access ownCloud from a
  web browser like Firefox, Chrome, or Internet Explorer:</p>
d1bafeea1   Kload   [fix] Upgrade to ...
174
175
176
177
  <ul class="simple">
  <li><a class="reference internal" href="webinterface.html"><em>The ownCloud Web Interface</em></a></li>
  </ul>
  </div>
6d9380f96   Cédric Dupont   Update sources OC...
178
179
180
181
182
183
  <div class="section" id="file-access-and-management">
  <h2>File Access and Management<a class="headerlink" href="#file-access-and-management" title="Permalink to this headline">¶</a></h2>
  <p>The following topics contain information about file access and management.
  Access information includes how to access your server using the ownCloud web
  interface or through the use of WebDAV shares (Linux or Mac OSX) or web folders
  (Windows):</p>
d1bafeea1   Kload   [fix] Upgrade to ...
184
  <ul class="simple">
6d9380f96   Cédric Dupont   Update sources OC...
185
186
  <li><a class="reference internal" href="files/filesweb.html"><em>Accessing your Files Using the Web Interface</em></a></li>
  <li><a class="reference internal" href="files/files.html"><em>Accessing Files Using WebDAV</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
187
  <li><a class="reference internal" href="files/sync.html"><em>Desktop Synchronization</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
188
  <li><a class="reference internal" href="files/server_to_server_using.html"><em>Using Server-to-Server Sharing</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
189
  <li><a class="reference internal" href="files/versioncontrol.html"><em>Version Control</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
190
191
  <li><a class="reference internal" href="files/deletedfiles.html"><em>Managing Deleted Files</em></a></li>
  <li><a class="reference internal" href="files/encryption.html"><em>Encrypting Files</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
192
  <li><a class="reference internal" href="files/quota.html"><em>Storage Quota</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
193
  <li><a class="reference internal" href="files/configuring_big_file_upload.html"><em>Managing Big Files</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
194
195
  </ul>
  </div>
6d9380f96   Cédric Dupont   Update sources OC...
196
197
198
199
200
201
  <div class="section" id="contacts-and-calendar">
  <h2>Contacts and Calendar<a class="headerlink" href="#contacts-and-calendar" title="Permalink to this headline">¶</a></h2>
  <p>The following topic provides information about the <strong>Contacts</strong> and
  <strong>Calendar</strong> applications including usage instructions as well as how to
  export, import, and synchronization the ownCloud calendar application with
  different operating system calendars:</p>
d1bafeea1   Kload   [fix] Upgrade to ...
202
203
204
205
206
207
208
209
210
211
  <ul class="simple">
  <li><a class="reference internal" href="pim/calendar.html"><em>Using the Calendar App</em></a></li>
  <li><a class="reference internal" href="pim/contacts.html"><em>Using the Contacts App</em></a></li>
  <li><a class="reference internal" href="pim/sync_ios.html"><em>iOS - Synchronize iPhone/iPad</em></a></li>
  <li><a class="reference internal" href="pim/sync_kde.html"><em>Synchronizing with KDE SC</em></a></li>
  <li><a class="reference internal" href="pim/sync_osx.html"><em>Synchronizing with OS X</em></a></li>
  </ul>
  </div>
  <div class="section" id="documents">
  <h2>Documents<a class="headerlink" href="#documents" title="Permalink to this headline">¶</a></h2>
6d9380f96   Cédric Dupont   Update sources OC...
212
213
214
  <p>The following topic describes how to use the <strong>Documents</strong> application to
  enable multiple users to collaboratively edit rich-text documents
  simultaneously.</p>
d1bafeea1   Kload   [fix] Upgrade to ...
215
216
217
218
219
220
  <ul class="simple">
  <li><a class="reference internal" href="documents.html"><em>Documents</em></a></li>
  </ul>
  </div>
  <div class="section" id="bookmarks">
  <h2>Bookmarks<a class="headerlink" href="#bookmarks" title="Permalink to this headline">¶</a></h2>
6d9380f96   Cédric Dupont   Update sources OC...
221
222
  <p>The following topic describes how to use the ownCloud <strong>Bookmarks</strong> application
  to manage your bookmarks:</p>
d1bafeea1   Kload   [fix] Upgrade to ...
223
224
225
226
227
228
  <ul class="simple">
  <li><a class="reference internal" href="bookmarks.html"><em>Using the Bookmarks App</em></a></li>
  </ul>
  </div>
  <div class="section" id="backup">
  <h2>Backup<a class="headerlink" href="#backup" title="Permalink to this headline">¶</a></h2>
6d9380f96   Cédric Dupont   Update sources OC...
229
230
  <p>The following topic describes the ownCloud <strong>User_Migrate</strong> application used to
  import and export user account settings:</p>
d1bafeea1   Kload   [fix] Upgrade to ...
231
232
233
234
235
236
  <ul class="simple">
  <li><a class="reference internal" href="migration.html"><em>User Account Migration</em></a></li>
  </ul>
  </div>
  <div class="section" id="external-storage">
  <h2>External storage<a class="headerlink" href="#external-storage" title="Permalink to this headline">¶</a></h2>
6d9380f96   Cédric Dupont   Update sources OC...
237
238
  <p>The following topic describes how to mount external storage locations to the
  ownCloud server.</p>
d1bafeea1   Kload   [fix] Upgrade to ...
239
  <ul class="simple">
6d9380f96   Cédric Dupont   Update sources OC...
240
  <li><a class="reference internal" href="external_storage/google_drive.html"><em>Configuring External Storage</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
  </ul>
  </div>
  <div class="section" id="indices-and-tables">
  <h2>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h2>
  <ul class="simple">
  <li><a class="reference internal" href="genindex.html"><em>Index</em></a></li>
  </ul>
  </div>
  </div>
  
  
  					</div>
  				</div>
  			</div>
      
    </div>
  </div>
    </body>
  </html>