Permalink
Browse files

built texinfo files for khelpcenter test

  • Loading branch information...
1 parent f1aef0e commit 05f93f1d087cd0784c0f4967b89db4af9a340f50 @ahoneybun committed Aug 11, 2017
Showing with 2,388 additions and 0 deletions.
  1. BIN build/doctrees/RST-Template.doctree
  2. BIN build/doctrees/changes.doctree
  3. BIN build/doctrees/docs/advanced.doctree
  4. BIN build/doctrees/docs/appendix/appendix.doctree
  5. BIN build/doctrees/docs/appendix/changes.doctree
  6. BIN build/doctrees/docs/appendix/references.doctree
  7. BIN build/doctrees/docs/basic.doctree
  8. BIN build/doctrees/docs/contribute.doctree
  9. BIN build/doctrees/docs/installation.doctree
  10. BIN build/doctrees/docs/packaging_guide/getting_started.doctree
  11. BIN build/doctrees/docs/packaging_guide/packaging.doctree
  12. BIN build/doctrees/docs/packaging_guide/welcome.doctree
  13. BIN build/doctrees/docs/repositories.doctree
  14. BIN build/doctrees/docs/software.doctree
  15. BIN build/doctrees/docs/support.doctree
  16. BIN build/doctrees/environment.pickle
  17. BIN build/doctrees/index.doctree
  18. BIN build/doctrees/welcome.doctree
  19. BIN build/texinfo/AppDash-zesty.png
  20. BIN build/texinfo/Discover-zesty.png
  21. BIN build/texinfo/DiscoverUpdates-zesty.png
  22. BIN build/texinfo/EditRepo-zesty.png
  23. BIN build/texinfo/EditRepos-zesty.png
  24. BIN build/texinfo/K3b-1.png
  25. BIN build/texinfo/K3b.png
  26. BIN build/texinfo/Kickoff-zesty.png
  27. BIN build/texinfo/Krunner-zesty.png
  28. BIN build/texinfo/Kubuntu-1704-Desktop.png
  29. BIN build/texinfo/KubuntuManual.info
  30. +2,338 −0 build/texinfo/KubuntuManual.texi
  31. +50 −0 build/texinfo/Makefile
  32. BIN build/texinfo/Network_Panel-zesty.png
  33. BIN build/texinfo/Panels-zesty.png
  34. BIN build/texinfo/SoftwareSources-zesty.png
  35. BIN build/texinfo/UbuntuGNOMEBrasero.png
  36. BIN build/texinfo/activity_desktop_news.png
  37. BIN build/texinfo/activity_desktop_side_bar.png
  38. BIN build/texinfo/disksetup-full.png
  39. BIN build/texinfo/disksetup-manual.png
  40. BIN build/texinfo/keyboard.png
  41. BIN build/texinfo/kubuntu-manual.info.gz
  42. BIN build/texinfo/prepare.png
  43. BIN build/texinfo/timezone.png
  44. BIN build/texinfo/unetbootin-win78.png
  45. BIN build/texinfo/userinfo.png
  46. BIN build/texinfo/welcome-slide.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.

Large diffs are not rendered by default.

Oops, something went wrong.
View
@@ -0,0 +1,50 @@
+# Makefile for Sphinx Texinfo output
+
+infodir ?= /usr/share/info
+
+MAKEINFO = makeinfo --no-split
+MAKEINFO_html = makeinfo --no-split --html
+MAKEINFO_plaintext = makeinfo --no-split --plaintext
+TEXI2PDF = texi2pdf --batch --expand
+INSTALL_INFO = install-info
+
+ALLDOCS = $(basename $(wildcard *.texi))
+
+all: info
+info: $(addsuffix .info,$(ALLDOCS))
+plaintext: $(addsuffix .txt,$(ALLDOCS))
+html: $(addsuffix .html,$(ALLDOCS))
+pdf: $(addsuffix .pdf,$(ALLDOCS))
+
+install-info: info
+ for f in *.info; do \
+ cp -t $(infodir) "$$f" && \
+ $(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \
+ done
+
+uninstall-info: info
+ for f in *.info; do \
+ rm -f "$(infodir)/$$f" ; \
+ $(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \
+ done
+
+%.info: %.texi
+ $(MAKEINFO) -o '$@' '$<'
+
+%.txt: %.texi
+ $(MAKEINFO_plaintext) -o '$@' '$<'
+
+%.html: %.texi
+ $(MAKEINFO_html) -o '$@' '$<'
+
+%.pdf: %.texi
+ -$(TEXI2PDF) '$<'
+ -$(TEXI2PDF) '$<'
+ -$(TEXI2PDF) '$<'
+
+clean:
+ rm -f *.info *.pdf *.txt *.html
+ rm -f *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ky *.pg
+ rm -f *.vr *.tp *.fn *.fns *.def *.defs *.cp *.cps *.ge *.ges *.mo
+
+.PHONY: all info plaintext html pdf install-info uninstall-info clean
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
View
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 05f93f1

Please sign in to comment.