Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1d0258b0
Commit
1d0258b0
authored
Mar 24, 2022
by
Marcin Sedlak-Jakubowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs for sorting by Updated date
parent
2de1f3d0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
29 additions
and
37 deletions
+29
-37
doc/development/testing_guide/best_practices.md
doc/development/testing_guide/best_practices.md
+3
-3
doc/integration/jira/issues.md
doc/integration/jira/issues.md
+1
-1
doc/user/admin_area/index.md
doc/user/admin_area/index.md
+12
-11
doc/user/project/issues/sorting_issue_lists.md
doc/user/project/issues/sorting_issue_lists.md
+4
-17
doc/user/project/requirements/index.md
doc/user/project/requirements/index.md
+1
-1
doc/user/search/img/sort_projects.png
doc/user/search/img/sort_projects.png
+0
-0
doc/user/search/index.md
doc/user/search/index.md
+8
-4
No files found.
doc/development/testing_guide/best_practices.md
View file @
1d0258b0
...
@@ -404,7 +404,7 @@ click_link _('UI testing docs')
...
@@ -404,7 +404,7 @@ click_link _('UI testing docs')
fill_in
_
(
'Search projects'
),
with:
'gitlab'
# fill in text input with text
fill_in
_
(
'Search projects'
),
with:
'gitlab'
# fill in text input with text
select
_
(
'
Last updated
'
),
from:
'Sort by'
# select an option from a select input
select
_
(
'
Updated date
'
),
from:
'Sort by'
# select an option from a select input
check
_
(
'Checkbox label'
)
check
_
(
'Checkbox label'
)
uncheck
_
(
'Checkbox label'
)
uncheck
_
(
'Checkbox label'
)
...
@@ -465,8 +465,8 @@ expect(page).to have_checked_field _('Checkbox label')
...
@@ -465,8 +465,8 @@ expect(page).to have_checked_field _('Checkbox label')
expect
(
page
).
to
have_unchecked_field
_
(
'Radio input label'
)
expect
(
page
).
to
have_unchecked_field
_
(
'Radio input label'
)
expect
(
page
).
to
have_select
_
(
'Sort by'
)
expect
(
page
).
to
have_select
_
(
'Sort by'
)
expect
(
page
).
to
have_select
_
(
'Sort by'
),
selected:
'
Last updated
'
# assert the option is selected
expect
(
page
).
to
have_select
_
(
'Sort by'
),
selected:
'
Updated date
'
# assert the option is selected
expect
(
page
).
to
have_select
_
(
'Sort by'
),
options:
[
'
Last updated
'
,
'Created date'
,
'Due date'
]
# assert an exact list of options
expect
(
page
).
to
have_select
_
(
'Sort by'
),
options:
[
'
Updated date
'
,
'Created date'
,
'Due date'
]
# assert an exact list of options
expect
(
page
).
to
have_select
_
(
'Sort by'
),
with_options:
[
'Created date'
,
'Due date'
]
# assert a partial list of options
expect
(
page
).
to
have_select
_
(
'Sort by'
),
with_options:
[
'Created date'
,
'Due date'
]
# assert a partial list of options
expect
(
page
).
to
have_text
_
(
'Some paragraph text.'
)
expect
(
page
).
to
have_text
_
(
'Some paragraph text.'
)
...
...
doc/integration/jira/issues.md
View file @
1d0258b0
...
@@ -106,7 +106,7 @@ sorts by **Created date** by default, with the newest issues listed at the top:
...
@@ -106,7 +106,7 @@ sorts by **Created date** by default, with the newest issues listed at the top:
![
Jira issues integration enabled
](
img/open_jira_issues_list_v14_6.png
)
![
Jira issues integration enabled
](
img/open_jira_issues_list_v14_6.png
)
-
To display the most recently updated issues first, select
**
Last updated
**
.
-
To display the most recently updated issues first, select
**
Updated date
**
.
-
You can
[
search and filter
](
#search-and-filter-the-issues-list
)
the issues list.
-
You can
[
search and filter
](
#search-and-filter-the-issues-list
)
the issues list.
-
In GitLab
[
versions 13.10 and later
](
https://gitlab.com/gitlab-org/gitlab/-/issues/299832
)
,
-
In GitLab
[
versions 13.10 and later
](
https://gitlab.com/gitlab-org/gitlab/-/issues/299832
)
,
you can select an issue from the list to view it in GitLab:
you can select an issue from the list to view it in GitLab:
...
...
doc/user/admin_area/index.md
View file @
1d0258b0
...
@@ -79,28 +79,29 @@ To access the Projects page:
...
@@ -79,28 +79,29 @@ To access the Projects page:
By default, all projects are listed, in reverse order of when they were last updated. For each
By default, all projects are listed, in reverse order of when they were last updated. For each
project, the following information is listed:
project, the following information is listed:
-
Name
.
-
Name
-
Namespace
.
-
Namespace
-
Description
.
-
Description
-
Size, updated every 15 minutes at most
.
-
Size, updated every 15 minutes at most
Projects can be edited or deleted.
Projects can be edited or deleted.
The list of projects can be sorted by:
The list of projects can be sorted by:
-
Name.
-
Updated date
-
Last created.
-
Last created
-
Oldest created.
-
Name
-
Last updated.
-
Most stars
-
Oldest updated.
-
Oldest created
-
Owner.
-
Oldest updated
-
Largest repository
A user can choose to hide or show archived projects in the list.
A user can choose to hide or show archived projects in the list.
In the
**Filter by name**
field, type the project name you want to find, and GitLab filters
In the
**Filter by name**
field, type the project name you want to find, and GitLab filters
them as you type.
them as you type.
Select from the
**Namespace**
dropdown to filter only projects in that namespace
.
To filter only projects in that namespace, select from the
**Namespace**
dropdown list
.
You can combine the filter options. For example, to list only public projects with
`score`
in their name:
You can combine the filter options. For example, to list only public projects with
`score`
in their name:
...
...
doc/user/project/issues/sorting_issue_lists.md
View file @
1d0258b0
...
@@ -6,20 +6,7 @@ info: To determine the technical writer assigned to the Stage/Group associated w
...
@@ -6,20 +6,7 @@ info: To determine the technical writer assigned to the Stage/Group associated w
# Sorting and ordering issue lists **(FREE)**
# Sorting and ordering issue lists **(FREE)**
You can sort a list of issues several ways, including by:
You can sort a list of issues several ways.
-
[
Blocking issues
](
#sorting-by-blocking-issues
)
-
[
Created date
](
#sorting-by-created-date
)
-
[
Due date
](
#sorting-by-due-date
)
-
[
Label priority
](
#sorting-by-label-priority
)
-
[
Last updated
](
#sorting-by-last-updated
)
-
[
Manual sorting
](
#manual-sorting
)
-
[
Milestone due date
](
#sorting-by-milestone-due-date
)
-
[
Popularity
](
#sorting-by-popularity
)
-
[
Priority
](
#sorting-by-priority
)
-
[
Title
](
#sorting-by-title
)
-
[
Weight
](
#sorting-by-weight
)
The available sorting options can change based on the context of the list.
The available sorting options can change based on the context of the list.
## Sorting by blocking issues **(PREMIUM)**
## Sorting by blocking issues **(PREMIUM)**
...
@@ -51,10 +38,10 @@ For more information, see [issue 14523](https://gitlab.com/gitlab-org/gitlab/-/i
...
@@ -51,10 +38,10 @@ For more information, see [issue 14523](https://gitlab.com/gitlab-org/gitlab/-/i
To learn how to change label priority, see
[
Label priority
](
../labels.md#set-label-priority
)
.
To learn how to change label priority, see
[
Label priority
](
../labels.md#set-label-priority
)
.
## Sorting by
last updated
## Sorting by
updated date
When you sort by
**
Last updated
**
, the issue list changes to sort by the time of a last
When you sort by
**
Updated date
**
, the issue list changes to sort by the time of a last
update. Issues changed the most recently are first.
update. Issues changed the most recently are
shown
first.
## Manual sorting
## Manual sorting
...
...
doc/user/project/requirements/index.md
View file @
1d0258b0
...
@@ -127,7 +127,7 @@ To search for a requirement:
...
@@ -127,7 +127,7 @@ To search for a requirement:
You can also sort the requirements list by:
You can also sort the requirements list by:
-
Created date
-
Created date
-
Last updated
-
Updated date
## Allow requirements to be satisfied from a CI job
## Allow requirements to be satisfied from a CI job
...
...
doc/user/search/img/sort_projects.png
deleted
100644 → 0
View file @
2de1f3d0
58.1 KB
doc/user/search/index.md
View file @
1d0258b0
...
@@ -207,10 +207,14 @@ You can also look for the projects you [starred](../project/working_with_project
...
@@ -207,10 +207,14 @@ You can also look for the projects you [starred](../project/working_with_project
You can
**Explore**
all public and internal projects available in GitLab.com, from which you can filter by visibility,
You can
**Explore**
all public and internal projects available in GitLab.com, from which you can filter by visibility,
through
**Trending**
, best rated with
**Most stars**
, or
**All**
of them.
through
**Trending**
, best rated with
**Most stars**
, or
**All**
of them.
You can also sort them by
**Name**
,
**Last created**
,
**Oldest created**
,
**Last updated**
,
You can also sort them by:
**Oldest updated**
,
**Owner**
, and choose to hide or show
**archived projects**
:
![
sort projects
](
img/sort_projects.png
)
-
Name
-
Created date
-
Updated date
-
Owner
You can also choose to hide or show archived projects.
## Groups
## Groups
...
@@ -221,7 +225,7 @@ On the field **Filter by name**, type the group name you want to find, and GitLa
...
@@ -221,7 +225,7 @@ On the field **Filter by name**, type the group name you want to find, and GitLa
filters them for you as you type.
filters them for you as you type.
You can also
**Explore**
all public and internal groups available in GitLab.com,
You can also
**Explore**
all public and internal groups available in GitLab.com,
and sort them by
**
Last created**
,
**Oldest created**
,
**Last updated**
, or
**Oldest updated
**
.
and sort them by
**
Name**
,
**Last created**
,
**Oldest created**
, or
**Updated date
**
.
## Issue boards
## Issue boards
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment