Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
1b6dd662
Commit
1b6dd662
authored
13 years ago
by
Björn Schießle
Browse files
Options
Downloads
Patches
Plain Diff
applied patch provided by bug #966 to fix broken user specific quota settings
parent
5e37a103
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
settings/css/settings.css
+1
-1
1 addition, 1 deletion
settings/css/settings.css
settings/js/users.js
+6
-6
6 additions, 6 deletions
settings/js/users.js
settings/templates/users.php
+69
-41
69 additions, 41 deletions
settings/templates/users.php
with
76 additions
and
48 deletions
settings/css/settings.css
+
1
−
1
View file @
1b6dd662
...
...
@@ -34,8 +34,8 @@ li.selected { background-color:#ddd; }
#content
>
table
:not
(
.nostyle
)
{
margin-top
:
3em
;
}
table
:not
(
.nostyle
)
{
width
:
100%
;
}
#rightcontent
{
padding-left
:
1em
;
}
td
.quota
{
position
:
relative
;
}
div
.quota
{
float
:
right
;
display
:
block
;
position
:
absolute
;
right
:
25em
;
top
:
0
;
}
div
.quota-select-wrapper
{
position
:
relative
;
}
select
.quota
{
position
:
absolute
;
left
:
0
;
top
:
0
;
width
:
10em
;
}
select
.quota-user
{
position
:
relative
;
left
:
0
;
top
:
0
;
width
:
10em
;
}
input
.quota-other
{
display
:
none
;
position
:
absolute
;
left
:
0.1em
;
top
:
0.1em
;
width
:
7em
;
border
:
none
;
-webkit-box-shadow
:
none
-
mox-box-shadow
:
none
;
box-shadow
:
none
;
}
...
...
This diff is collapsed.
Click to expand it.
settings/js/users.js
+
6
−
6
View file @
1b6dd662
...
...
@@ -95,9 +95,9 @@ $(document).ready(function(){
$
(
this
).
children
(
'
img
'
).
click
();
});
$
(
'
select.quota
'
).
live
(
'
change
'
,
function
(){
$
(
'
select.quota
, select.quota-user
'
).
live
(
'
change
'
,
function
(){
var
select
=
$
(
this
);
var
uid
=
$
(
this
).
parent
().
parent
().
data
(
'
uid
'
);
var
uid
=
$
(
this
).
parent
().
parent
().
parent
().
data
(
'
uid
'
);
var
quota
=
$
(
this
).
val
();
var
other
=
$
(
this
).
next
();
if
(
quota
!=
'
other
'
){
...
...
@@ -110,7 +110,7 @@ $(document).ready(function(){
other
.
focus
();
}
});
$
(
'
select.quota
'
).
each
(
function
(
i
,
select
){
$
(
'
select.quota
, select.quota-user
'
).
each
(
function
(
i
,
select
){
$
(
select
).
data
(
'
previous
'
,
$
(
select
).
val
());
})
...
...
@@ -207,9 +207,9 @@ $(document).ready(function(){
applyMultiplySelect
(
select
);
$
(
'
#content table tbody
'
).
last
().
append
(
tr
);
tr
.
find
(
'
select.quota option
'
).
attr
(
'
selected
'
,
null
);
tr
.
find
(
'
select.quota option
'
).
first
().
attr
(
'
selected
'
,
'
selected
'
);
tr
.
find
(
'
select.quota
'
).
data
(
'
previous
'
,
'
default
'
);
tr
.
find
(
'
select.quota
-user
option
'
).
attr
(
'
selected
'
,
null
);
tr
.
find
(
'
select.quota
-user
option
'
).
first
().
attr
(
'
selected
'
,
'
selected
'
);
tr
.
find
(
'
select.quota
-user
'
).
data
(
'
previous
'
,
'
default
'
);
}
}
);
...
...
This diff is collapsed.
Click to expand it.
settings/templates/users.php
+
69
−
41
View file @
1b6dd662
...
...
@@ -12,29 +12,43 @@ foreach($_["groups"] as $group) {
<div
id=
"controls"
>
<form
id=
"newuser"
>
<input
id=
"newusername"
placeholder=
"
<?php
echo
$l
->
t
(
'Name'
)
?>
"
/>
<input
type=
"password"
id=
"newuserpassword"
placeholder=
"
<?php
echo
$l
->
t
(
'Password'
)
?>
"
/>
<select
id=
"newusergroups"
data-placeholder=
"groups"
title=
"
<?php
echo
$l
->
t
(
'Groups'
)
?>
"
multiple=
"multiple"
>
<input
id=
"newusername"
placeholder=
"
<?php
echo
$l
->
t
(
'Name'
)
?>
"
/>
<input
type=
"password"
id=
"newuserpassword"
placeholder=
"
<?php
echo
$l
->
t
(
'Password'
)
?>
"
/>
<select
id=
"newusergroups"
data-placeholder=
"groups"
title=
"
<?php
echo
$l
->
t
(
'Groups'
)
?>
"
multiple=
"multiple"
>
<?php
foreach
(
$_
[
"groups"
]
as
$group
)
:
?>
<option
value=
"
<?php
echo
$group
[
'name'
];
?>
"
>
<?php
echo
$group
[
'name'
];
?>
</option>
<option
value=
"
<?php
echo
$group
[
'name'
];
?>
"
>
<?php
echo
$group
[
'name'
];
?>
</option>
<?php
endforeach
;
?>
</select>
<input
type=
"submit"
value=
"
<?php
echo
$l
->
t
(
'Create'
)
?>
"
/>
</select>
<input
type=
"submit"
value=
"
<?php
echo
$l
->
t
(
'Create'
)
?>
"
/>
</form>
<div
class=
"quota"
>
<span>
<?php
echo
$l
->
t
(
'Default Quota'
);
?>
:
</span>
<div
class=
"quota-select-wrapper"
>
<select
class=
'quota'
>
<?php
foreach
(
$_
[
'quota_preset'
]
as
$preset
)
:
?>
<?php
if
(
$preset
!=
'default'
)
:
?>
<option
<?php
if
(
$_
[
'default_quota'
]
==
$preset
)
echo
'selected="selected"'
;
?>
value=
'
<?php
echo
$preset
;
?>
'
>
<?php
echo
$preset
;
?>
</option>
<option
<?php
if
(
$_
[
'default_quota'
]
==
$preset
)
echo
'selected="selected"'
;
?>
value=
'
<?php
echo
$preset
;
?>
'
>
<?php
echo
$preset
;
?>
</option>
<?php
endif
;
?>
<?php
endforeach
;
?>
<?php
if
(
array_search
(
$_
[
'default_quota'
],
$_
[
'quota_preset'
])
===
false
)
:
?>
<option
selected=
"selected"
value=
'
<?php
echo
$_
[
'default_quota'
];
?>
'
>
<?php
echo
$_
[
'default_quota'
];
?>
</option>
<option
selected=
"selected"
value=
'
<?php
echo
$_
[
'default_quota'
];
?>
'
>
<?php
echo
$_
[
'default_quota'
];
?>
</option>
<?php
endif
;
?>
<option
value=
'other'
>
<?php
echo
$l
->
t
(
'Other'
);
?>
...
</option>
</select>
<input
class=
'quota-other'
></input>
<option
value=
'other'
>
<?php
echo
$l
->
t
(
'Other'
);
?>
...
</option>
</select>
<input
class=
'quota-other'
></input>
</div>
</div>
</div>
...
...
@@ -52,33 +66,47 @@ foreach($_["groups"] as $group) {
<?php
foreach
(
$_
[
"users"
]
as
$user
)
:
?>
<tr
data-uid=
"
<?php
echo
$user
[
"name"
]
?>
"
>
<td
class=
"name"
>
<?php
echo
$user
[
"name"
];
?>
</td>
<td
class=
"password"
>
<span>
●●●●●●●
</span>
<img
class=
"svg action"
src=
"
<?php
echo
image_path
(
'core'
,
'actions/rename.svg'
)
?>
"
alt=
"set new password"
title=
"set new password"
/>
<td
class=
"password"
>
<span>
●●●●●●●
</span>
<img
class=
"svg action"
src=
"
<?php
echo
image_path
(
'core'
,
'actions/rename.svg'
)
?>
"
alt=
"set new password"
title=
"set new password"
/>
</td>
<td
class=
"groups"
>
<select
data-username=
"
<?php
echo
$user
[
'name'
]
;
?>
"
data-user-groups=
"
<?php
echo
$user
[
'groups'
]
;
?>
"
data-placeholder=
"groups"
title=
"
<?php
echo
$l
->
t
(
'Groups'
)
?>
"
multiple=
"multiple"
>
<td
class=
"groups"
><select
data-username=
"
<?php
echo
$user
[
'name'
]
;
?>
"
data-user-groups=
"
<?php
echo
$user
[
'groups'
]
;
?>
"
data-placeholder=
"groups"
title=
"
<?php
echo
$l
->
t
(
'Groups'
)
?>
"
multiple=
"multiple"
>
<?php
foreach
(
$_
[
"groups"
]
as
$group
)
:
?>
<option
value=
"
<?php
echo
$group
[
'name'
];
?>
"
>
<?php
echo
$group
[
'name'
];
?>
</option>
<option
value=
"
<?php
echo
$group
[
'name'
];
?>
"
>
<?php
echo
$group
[
'name'
];
?>
</option>
<?php
endforeach
;
?>
</select>
</td>
<td
class=
"quota"
>
<div
class=
"quota-select-wrapper"
>
<select
class=
'quota-user'
>
<?php
foreach
(
$_
[
'quota_preset'
]
as
$preset
)
:
?>
<option
<?php
if
(
$user
[
'quota'
]
==
$preset
)
echo
'selected="selected"'
;
?>
value=
'
<?php
echo
$preset
;
?>
'
>
<?php
echo
$preset
;
?>
</option>
<option
<?php
if
(
$user
[
'quota'
]
==
$preset
)
echo
'selected="selected"'
;
?>
value=
'
<?php
echo
$preset
;
?>
'
>
<?php
echo
$preset
;
?>
</option>
<?php
endforeach
;
?>
<?php
if
(
array_search
(
$user
[
'quota'
],
$_
[
'quota_preset'
])
===
false
)
:
?>
<option
selected=
"selected"
value=
'
<?php
echo
$user
[
'quota'
];
?>
'
>
<?php
echo
$user
[
'quota'
];
?>
</option>
<option
selected=
"selected"
value=
'
<?php
echo
$user
[
'quota'
];
?>
'
>
<?php
echo
$user
[
'quota'
];
?>
</option>
<?php
endif
;
?>
<option
value=
'other'
>
<?php
echo
$l
->
t
(
'Other'
);
?>
...
</option>
</select>
<input
class=
'quota-other'
></input>
<option
value=
'other'
>
<?php
echo
$l
->
t
(
'Other'
);
?>
...
</option>
</select>
<input
class=
'quota-other'
></input>
</div>
</td>
<td
class=
"remove"
>
<?php
if
(
$user
[
'name'
]
!=
OC_User
::
getUser
())
:
?>
<img
alt=
"Delete"
title=
"
<?php
echo
$l
->
t
(
'Delete'
)
?>
"
class=
"svg action"
src=
"
<?php
echo
image_path
(
'core'
,
'actions/delete.svg'
)
?>
"
/>
<?php
endif
;
?>
<td
class=
"remove"
>
<?php
if
(
$user
[
'name'
]
!=
OC_User
::
getUser
())
:
?>
<img
alt=
"Delete"
title=
"
<?php
echo
$l
->
t
(
'Delete'
)
?>
"
class=
"svg action"
src=
"
<?php
echo
image_path
(
'core'
,
'actions/delete.svg'
)
?>
"
/>
<?php
endif
;
?>
</td>
</tr>
<?php
endforeach
;
?>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment