All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory
@ 2019-07-16 16:39 Bin Meng
  2019-07-16 16:39 ` [U-Boot] [PATCH 2/2] doc: Add the U-Boot logo to the html doc Bin Meng
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Bin Meng @ 2019-07-16 16:39 UTC (permalink / raw)
  To: u-boot

With Sphinx documentation moving from Documentation directory
to doc directory, we missed updating .gitignore for the Sphinx
build output directory.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 Documentation/.gitignore | 1 -
 doc/.gitignore           | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)
 create mode 100644 doc/.gitignore

diff --git a/Documentation/.gitignore b/Documentation/.gitignore
index e74fec8..0d20b64 100644
--- a/Documentation/.gitignore
+++ b/Documentation/.gitignore
@@ -1,2 +1 @@
-output
 *.pyc
diff --git a/doc/.gitignore b/doc/.gitignore
new file mode 100644
index 0000000..53752db
--- /dev/null
+++ b/doc/.gitignore
@@ -0,0 +1 @@
+output
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 2/2] doc: Add the U-Boot logo to the html doc
  2019-07-16 16:39 [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory Bin Meng
@ 2019-07-16 16:39 ` Bin Meng
  2019-07-24 20:07   ` Tom Rini
  2019-07-23  6:19 ` [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory Bin Meng
  2019-07-24 20:07 ` Tom Rini
  2 siblings, 1 reply; 5+ messages in thread
From: Bin Meng @ 2019-07-16 16:39 UTC (permalink / raw)
  To: u-boot

Now we have a logo for U-Boot, we can include it in the Sphinx
html doc.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 doc/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/conf.py b/doc/conf.py
index 168c313..0772fb6 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -170,7 +170,7 @@ except ImportError:
 
 # The name of an image file (relative to this directory) to place at the top
 # of the sidebar.
-#html_logo = None
+html_logo = '../tools/logos/u-boot_logo.svg'
 
 # The name of an image file (within the static path) to use as favicon of the
 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory
  2019-07-16 16:39 [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory Bin Meng
  2019-07-16 16:39 ` [U-Boot] [PATCH 2/2] doc: Add the U-Boot logo to the html doc Bin Meng
@ 2019-07-23  6:19 ` Bin Meng
  2019-07-24 20:07 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Bin Meng @ 2019-07-23  6:19 UTC (permalink / raw)
  To: u-boot

On Wed, Jul 17, 2019 at 12:39 AM Bin Meng <bmeng.cn@gmail.com> wrote:
>
> With Sphinx documentation moving from Documentation directory
> to doc directory, we missed updating .gitignore for the Sphinx
> build output directory.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  Documentation/.gitignore | 1 -
>  doc/.gitignore           | 1 +
>  2 files changed, 1 insertion(+), 1 deletion(-)
>  create mode 100644 doc/.gitignore
>

ping?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory
  2019-07-16 16:39 [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory Bin Meng
  2019-07-16 16:39 ` [U-Boot] [PATCH 2/2] doc: Add the U-Boot logo to the html doc Bin Meng
  2019-07-23  6:19 ` [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory Bin Meng
@ 2019-07-24 20:07 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2019-07-24 20:07 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 16, 2019 at 09:39:19AM -0700, Bin Meng wrote:

> With Sphinx documentation moving from Documentation directory
> to doc directory, we missed updating .gitignore for the Sphinx
> build output directory.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190724/33eac0f4/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 2/2] doc: Add the U-Boot logo to the html doc
  2019-07-16 16:39 ` [U-Boot] [PATCH 2/2] doc: Add the U-Boot logo to the html doc Bin Meng
@ 2019-07-24 20:07   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2019-07-24 20:07 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 16, 2019 at 09:39:20AM -0700, Bin Meng wrote:

> Now we have a logo for U-Boot, we can include it in the Sphinx
> html doc.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190724/80557175/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-07-24 20:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-16 16:39 [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory Bin Meng
2019-07-16 16:39 ` [U-Boot] [PATCH 2/2] doc: Add the U-Boot logo to the html doc Bin Meng
2019-07-24 20:07   ` Tom Rini
2019-07-23  6:19 ` [U-Boot] [PATCH 1/2] doc: Add .gitignore for the Sphinx build output directory Bin Meng
2019-07-24 20:07 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.