doc: add Japanese developer's guide

v2.8-utf8proc
Ryuunosuke Ayanokouzi 2014-01-17 13:29:21 +01:00 committed by Sebastien Helleu
parent 32774b72a4
commit 7080e7bd55
5 changed files with 1041 additions and 1 deletions

View File

@ -65,7 +65,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
* core: fix truncated prefix when filters are toggled (bug #40204)
* core: add options to customize default text search in buffers:
weechat.look.buffer_search_{case_sensitive|force_default|regex|where}
* doc: add Japanese plugin API reference
* doc: add Japanese plugin API reference and developer's guide
* doc: add Polish man page and user's guide
* api: add stdin options in functions hook_process_hashtable and hook_set
to send data on stdin of child process, add function hook_set in script API

10
debian/weechat-doc.doc-base.dev-ja vendored Normal file
View File

@ -0,0 +1,10 @@
Document: weechat-dev-ja
Title: WeeChat Developer's Guide (Japanese)
Author: Sébastien Helleu
Abstract: This manual describes WeeChat internals and
how to contribute to WeeChat (Japanese version).
Section: Network/Communication
Format: HTML
Index: /usr/share/doc/weechat-doc/html/weechat_dev.ja.html
Files: /usr/share/doc/weechat-doc/html/weechat_dev.ja.html

View File

@ -104,4 +104,15 @@ IF(ENABLE_DOC AND SOURCEHIGHLIGHT_FOUND)
ADD_CUSTOM_TARGET(doc-tester-ja ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/weechat_tester.ja.html)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/weechat_tester.ja.html DESTINATION ${SHAREDIR}/doc/${PROJECT_NAME})
# developer's guide
ADD_CUSTOM_COMMAND(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/weechat_dev.ja.html
COMMAND ${ASCIIDOC_EXECUTABLE} ARGS -a toc -a toclevels=4 -a toc-title='' -a revision="${VERSION}" -a stylesheet=${CMAKE_CURRENT_SOURCE_DIR}/../asciidoc.css -f ${CMAKE_CURRENT_SOURCE_DIR}/../asciidoc.conf -n -o ${CMAKE_CURRENT_BINARY_DIR}/weechat_dev.ja.html ${CMAKE_CURRENT_SOURCE_DIR}/weechat_dev.ja.txt
DEPENDS
${CMAKE_CURRENT_SOURCE_DIR}/weechat_dev.ja.txt
COMMENT "Building weechat_dev.ja.html"
)
ADD_CUSTOM_TARGET(doc-dev-ja ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/weechat_dev.ja.html)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/weechat_dev.ja.html DESTINATION ${SHAREDIR}/doc/${PROJECT_NAME})
ENDIF(ENABLE_DOC AND SOURCEHIGHLIGHT_FOUND)

View File

@ -28,6 +28,7 @@ EXTRA_DIST = CMakeLists.txt \
weechat_faq.ja.txt \
weechat_quickstart.ja.txt \
weechat_tester.ja.txt \
weechat_dev.ja.txt \
$(wildcard autogen/user/*.txt) \
$(wildcard autogen/plugin_api/*.txt)
@ -43,6 +44,7 @@ if DOC
weechat_faq.ja.html \
weechat_quickstart.ja.html \
weechat_tester.ja.html
weechat_dev.ja.html \
doc_install = install-doc
doc_uninstall = uninstall-doc
endif
@ -78,6 +80,10 @@ weechat_quickstart.ja.html: weechat_quickstart.ja.txt
weechat_tester.ja.html: weechat_tester.ja.txt
$(ASCIIDOC) -a toc -a toc-title='目次' -a revision="$(VERSION)" -a stylesheet=$(abs_top_srcdir)/doc/asciidoc.css -f $(abs_top_srcdir)/doc/asciidoc.conf -n -o weechat_tester.ja.html $(abs_top_srcdir)/doc/ja/weechat_tester.ja.txt
# developer's guide
weechat_dev.ja.html: weechat_dev.ja.txt
$(ASCIIDOC) -a toc -a toclevels=4 -a toc-title='目次' -a revision="$(VERSION)" -a stylesheet=$(abs_top_srcdir)/doc/asciidoc.css -f $(abs_top_srcdir)/doc/asciidoc.conf -n -o weechat_dev.ja.html $(abs_top_srcdir)/doc/ja/weechat_dev.ja.txt
# install man/docs
install-data-hook: $(man_install) $(doc_install)

1013
doc/ja/weechat_dev.ja.txt Normal file

File diff suppressed because it is too large Load Diff