Re: [OS-BUILD PATCH] Drop the static path configuration for the Sphinx docs

2020-05-22 Thread GitLab Bridge on behalf of Justin Forbes
From: Justin Forbes on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/368#note_347476081

Acked-by: Justin M. Forbes 
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org


Re: [OS-BUILD PATCH] Drop the static path configuration for the Sphinx docs

2020-05-18 Thread Jeremy Cline
On Mon, May 18, 2020 at 04:42:59PM -0400, Don Zickus wrote:
> On Mon, May 18, 2020 at 07:42:26PM -, GitLab Bridge on behalf of 
> jeremycline wrote:
> > From: Jeremy Cline 
> > 
> > There are no static files at this time. I don't know the first thing
> > about CSS and rely on my elders and betters to make the documentation
> > look presentable. Configuring a static directory also generates a Sphinx
> > warning when it isn't present (which it isn't on clean checkouts because
> > it's empty) so just remove it.
> > 
> > Signed-off-by: Jeremy Cline 
> > ---
> >  redhat/docs/conf.py | 5 -
> >  1 file changed, 5 deletions(-)
> > 
> > diff --git a/redhat/docs/conf.py b/redhat/docs/conf.py
> > index b5e60902cd65..d873a31d984d 100644
> > --- a/redhat/docs/conf.py
> > +++ b/redhat/docs/conf.py
> > @@ -40,8 +40,3 @@ html_theme_options = {
> >  "show_related": True,
> >  "sidebar_collapse": True,
> >  }
> > -
> > -# Add any paths that contain custom static files (such as style sheets) 
> > here,
> > -# relative to this directory. They are copied after the builtin static 
> > files,
> > -# so a file named "default.css" will overwrite the builtin "default.css".
> > -html_static_path = ["_static"]
> 
> I assume you will update the gitlab-ci.yml file in kernel-ark-ci next?
> 

I've updated the CI[0] and it can be merged after this is accepted.

[0] https://gitlab.com/cki-project/kernel-ark-ci/-/merge_requests/2

> Acked-by: Don Zickus 
> 
> > -- 
> > 2.26.2
> > ___
> > kernel mailing list -- kernel@lists.fedoraproject.org
> > To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
> > Fedora Code of Conduct: 
> > https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> > List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> > List Archives: 
> > https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
> 
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org


Re: [OS-BUILD PATCH] Drop the static path configuration for the Sphinx docs

2020-05-18 Thread Don Zickus
On Mon, May 18, 2020 at 07:42:26PM -, GitLab Bridge on behalf of 
jeremycline wrote:
> From: Jeremy Cline 
> 
> There are no static files at this time. I don't know the first thing
> about CSS and rely on my elders and betters to make the documentation
> look presentable. Configuring a static directory also generates a Sphinx
> warning when it isn't present (which it isn't on clean checkouts because
> it's empty) so just remove it.
> 
> Signed-off-by: Jeremy Cline 
> ---
>  redhat/docs/conf.py | 5 -
>  1 file changed, 5 deletions(-)
> 
> diff --git a/redhat/docs/conf.py b/redhat/docs/conf.py
> index b5e60902cd65..d873a31d984d 100644
> --- a/redhat/docs/conf.py
> +++ b/redhat/docs/conf.py
> @@ -40,8 +40,3 @@ html_theme_options = {
>  "show_related": True,
>  "sidebar_collapse": True,
>  }
> -
> -# Add any paths that contain custom static files (such as style sheets) here,
> -# relative to this directory. They are copied after the builtin static files,
> -# so a file named "default.css" will overwrite the builtin "default.css".
> -html_static_path = ["_static"]

I assume you will update the gitlab-ci.yml file in kernel-ark-ci next?

Acked-by: Don Zickus 

> -- 
> 2.26.2
> ___
> kernel mailing list -- kernel@lists.fedoraproject.org
> To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
> Fedora Code of Conduct: 
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives: 
> https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org


[OS-BUILD PATCH] Drop the static path configuration for the Sphinx docs

2020-05-18 Thread GitLab Bridge on behalf of jeremycline
From: Jeremy Cline 

There are no static files at this time. I don't know the first thing
about CSS and rely on my elders and betters to make the documentation
look presentable. Configuring a static directory also generates a Sphinx
warning when it isn't present (which it isn't on clean checkouts because
it's empty) so just remove it.

Signed-off-by: Jeremy Cline 
---
 redhat/docs/conf.py | 5 -
 1 file changed, 5 deletions(-)

diff --git a/redhat/docs/conf.py b/redhat/docs/conf.py
index b5e60902cd65..d873a31d984d 100644
--- a/redhat/docs/conf.py
+++ b/redhat/docs/conf.py
@@ -40,8 +40,3 @@ html_theme_options = {
 "show_related": True,
 "sidebar_collapse": True,
 }
-
-# Add any paths that contain custom static files (such as style sheets) here,
-# relative to this directory. They are copied after the builtin static files,
-# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ["_static"]
-- 
2.26.2
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org