Permalink
Please sign in to comment.
Showing
with
2,388 additions
and 0 deletions.
- BIN build/doctrees/RST-Template.doctree
- BIN build/doctrees/changes.doctree
- BIN build/doctrees/docs/advanced.doctree
- BIN build/doctrees/docs/appendix/appendix.doctree
- BIN build/doctrees/docs/appendix/changes.doctree
- BIN build/doctrees/docs/appendix/references.doctree
- BIN build/doctrees/docs/basic.doctree
- BIN build/doctrees/docs/contribute.doctree
- BIN build/doctrees/docs/installation.doctree
- BIN build/doctrees/docs/packaging_guide/getting_started.doctree
- BIN build/doctrees/docs/packaging_guide/packaging.doctree
- BIN build/doctrees/docs/packaging_guide/welcome.doctree
- BIN build/doctrees/docs/repositories.doctree
- BIN build/doctrees/docs/software.doctree
- BIN build/doctrees/docs/support.doctree
- BIN build/doctrees/environment.pickle
- BIN build/doctrees/index.doctree
- BIN build/doctrees/welcome.doctree
- BIN build/texinfo/AppDash-zesty.png
- BIN build/texinfo/Discover-zesty.png
- BIN build/texinfo/DiscoverUpdates-zesty.png
- BIN build/texinfo/EditRepo-zesty.png
- BIN build/texinfo/EditRepos-zesty.png
- BIN build/texinfo/K3b-1.png
- BIN build/texinfo/K3b.png
- BIN build/texinfo/Kickoff-zesty.png
- BIN build/texinfo/Krunner-zesty.png
- BIN build/texinfo/Kubuntu-1704-Desktop.png
- BIN build/texinfo/KubuntuManual.info
- +2,338 −0 build/texinfo/KubuntuManual.texi
- +50 −0 build/texinfo/Makefile
- BIN build/texinfo/Network_Panel-zesty.png
- BIN build/texinfo/Panels-zesty.png
- BIN build/texinfo/SoftwareSources-zesty.png
- BIN build/texinfo/UbuntuGNOMEBrasero.png
- BIN build/texinfo/activity_desktop_news.png
- BIN build/texinfo/activity_desktop_side_bar.png
- BIN build/texinfo/disksetup-full.png
- BIN build/texinfo/disksetup-manual.png
- BIN build/texinfo/keyboard.png
- BIN build/texinfo/kubuntu-manual.info.gz
- BIN build/texinfo/prepare.png
- BIN build/texinfo/timezone.png
- BIN build/texinfo/unetbootin-win78.png
- BIN build/texinfo/userinfo.png
- 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.
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.
Binary file not shown.
| @@ -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.
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.
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.
0 comments on commit
05f93f1