Blame view
sources/core/doc/user/userpreferences.html
9.95 KB
|
d1bafeea1
|
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
|
10 |
<title>Changing Preferences — ownCloud User Manual 7.0 documentation</title> |
|
d1bafeea1
|
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
|
20 |
VERSION: '7.0', |
|
d1bafeea1
|
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
|
30 31 |
<link rel="top" title="ownCloud User Manual 7.0 documentation" href="index.html" />
<link rel="next" title="Configuring External Storage" href="external_storage/google_drive.html" />
|
|
d1bafeea1
|
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="User Account Migration" href="migration.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>
|
|
6d9380f96
|
115 |
<li class="toctree-l1"><a class="reference internal" href="index.html">ownCloud 7.0 User Documentation</a></li> |
|
d1bafeea1
|
116 117 |
</ul> <ul class="current"> |
|
6d9380f96
|
118 |
<li class="toctree-l1"><a class="reference internal" href="whats_new.html">New in ownCloud 7</a></li> |
|
d1bafeea1
|
119 120 121 122 123 124 125 |
<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 & Synchronization</a></li> <li class="toctree-l1"><a class="reference internal" href="pim/index.html">Contacts & 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 current"><a class="current reference internal" href="">Changing Preferences</a></li> |
|
6d9380f96
|
126 |
<li class="toctree-l1"><a class="reference internal" href="external_storage/google_drive.html">Configuring External Storage</a></li> |
|
d1bafeea1
|
127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
</ul>
</ul>
</div>
</div>
</div>
</div>
<div class="span9">
<div class="page-content">
<div class="section" id="changing-preferences">
<h1>Changing Preferences<a class="headerlink" href="#changing-preferences" title="Permalink to this headline">¶</a></h1>
|
|
6d9380f96
|
141 142 143 144 145 |
<p>As a user, you can manage your personal settings.</p> <p>To access your personal settings:</p> <ol class="arabic"> <li><p class="first">Clicking on your username in the top, right corner of your ownCloud instance.</p> <p>The Personal Settings Menu opens.</p> |
|
d1bafeea1
|
146 147 148 |
<div class="figure"> <img alt="_images/oc_user_preferences.png" src="_images/oc_user_preferences.png" /> </div> |
|
6d9380f96
|
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
<p><strong>Personal Settings Menu</strong></p> </li> <li><p class="first">Choose <em>Personal</em> from the drop down menu.</p> <p>The Personal Settings Page opens in the main viewing window.</p> <div class="figure"> <img alt="_images/personal_settings.png" src="_images/personal_settings.png" /> </div> </li> </ol> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">If you are an administrator, you can also manage users and administer the server by using the related links in the Personal Settings Menu. However, these links do not appear to a normal user.</p> </div> <p>The options listed in the Personal Settings Page depend on the applications that are enabled by the administrator. However, some of the default settings for this page include the following:</p> <ul> <li><p class="first">Usage and available quota – Appearing at the top of the page, this information provides the amount of space used and available for the user (in Megabytes).</p> <blockquote> <div><div class="figure"> <img alt="_images/usage_indicator.png" src="_images/usage_indicator.png" /> </div> </div></blockquote> </li> <li><p class="first">Password – Enables you to change your password. To change your password, you must provide your current password along with your new password. When creating a new password, ownCloud provides a dynamic password strength indicator for your assistance.</p> <div class="figure"> <img alt="_images/password_change.png" src="_images/password_change.png" /> </div> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">If you would like the ability to recover your password through e-mail, specify your email address in the Email field (see below).</p> </div> </li> <li><p class="first">Full Name – Enables you to specify your full name. This name appears at the top of the Personal Settings Menu.</p> <blockquote> <div><div class="figure"> <img alt="_images/full_name.png" src="_images/full_name.png" /> </div> </div></blockquote> </li> <li><p class="first">Email – Enables you to specify an email address for use by the ownCloud server and administrator in sending you notifications. For information about setting email notifications, see “Notifications” below.</p> <blockquote> <div><div class="figure"> <img alt="_images/email_address_personal_settings.png" src="_images/email_address_personal_settings.png" /> </div> </div></blockquote> </li> </ul> <blockquote> <div><ul> <li><p class="first">Profile picture – Enables you to specify a new avatar (profile image) that identifies you on the ownCloud server. By default, the profile picture is the first initial of your username. You can choose to keep the letter designation, upload a new image from an external source, or select an image from any existing images in your ownCloud folders.</p> <div class="figure"> <img alt="_images/profile_picture_personal_settings.png" src="_images/profile_picture_personal_settings.png" /> </div> </li> </ul> </div></blockquote> <ul> <li><p class="first">Language – Enables you to change your web interface language, if you want to override the browser settings.</p> <blockquote> <div><div class="figure"> <img alt="_images/language_personal_settings.png" src="_images/language_personal_settings.png" /> </div> </div></blockquote> </li> <li><p class="first">Notifications – Enables you to specify what notifications you receive for activities on your ownCloud instance. You can choose to receive messages through an email notification or online stream notification. In addition, the Notifications settings enable you to exclude changes that you make yourself and obtain only changes made by others on your account. You can obtain notifications hourly, daily, or weekly.</p> <blockquote> <div><div class="figure"> <img alt="_images/notifications_personal_settings.png" src="_images/notifications_personal_settings.png" /> </div> </div></blockquote> </li> <li><p class="first">Documents – Enables you to specify a location (folder) to which newly created documents are saved.</p> <blockquote> <div><div class="figure"> <img alt="_images/documents_personal_settings.png" src="_images/documents_personal_settings.png" /> </div> </div></blockquote> </li> <li><p class="first">WebDAV link will allow you to only view and download your ownCloud files using a browser. You will still need your username and password to access this page.</p> </li> </ul> <p># ??Is this no longer visible??</p> |
|
d1bafeea1
|
230 |
<ul class="simple"> |
|
6d9380f96
|
231 |
<li>Version – Specifies the ownCloud software version that you are using along with links to the ownCloud community, source code, and licensing information.</li> |
|
d1bafeea1
|
232 233 234 235 236 237 238 239 240 241 242 243 |
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|