Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
60aa15d
first commit
Int-Circuit Jul 14, 2024
5b6c02e
starting to fix links
Int-Circuit Jul 14, 2024
4011091
cleaning directories + grid view welcome screen user doc
Int-Circuit Jul 22, 2024
7284aef
fixed old links + rework of folio 256x256 icon
Int-Circuit Jul 23, 2024
57885d3
added more icons + cleanup
Int-Circuit Jul 24, 2024
c4f2a26
Update build.rst
Int-Circuit Jul 25, 2024
1162c79
created new "interface" icon + corrected page name from "Qelectrotech…
Int-Circuit Jul 25, 2024
1252b77
directory cleanup + interface.png icon change
Int-Circuit Jul 25, 2024
bfd252a
starting to add connector chapter
Int-Circuit Jul 28, 2024
5286187
added report icon + interface chapter
Int-Circuit Aug 4, 2024
f40537d
Fixing dead links + automating Licensing thanks to REUSE tool
Int-Circuit Aug 6, 2024
5d82c4e
reorganising images paths
Int-Circuit Aug 7, 2024
a13969c
Adding REUSE Github Action
Int-Circuit Aug 12, 2024
9d80be2
added flag to reuse so that unreconnized files are ignored
Int-Circuit Aug 16, 2024
d405be1
adding recursive flag
Int-Circuit Aug 16, 2024
c9b1302
starting to add grid to dev doc + added changelog page
Int-Circuit Aug 16, 2024
0ca4ce8
separeted CIs + using action to push to GH pages
Int-Circuit Aug 17, 2024
95a271d
Added Forum + Home button to documentation
Int-Circuit Aug 18, 2024
e88b02c
added app changelog
Int-Circuit Aug 18, 2024
8476a49
Reworking Icon dir
Int-Circuit Oct 6, 2024
3358879
Finished updating print chapter
Int-Circuit Nov 28, 2024
875f174
finished element collection
Int-Circuit Jan 17, 2025
1368f31
added preference chapter + revert codespell for now as info is needed…
Int-Circuit Jan 21, 2025
85c4779
finished report chapter
Int-Circuit Jan 22, 2025
6cb3461
added folio chapter
Int-Circuit Feb 5, 2025
83c3578
- prevent page deployment to be stopped if codespell reports errors. …
Int-Circuit Feb 18, 2025
417efef
finished folio chapter
Int-Circuit Feb 18, 2025
9be8df7
start implement schema + project
Int-Circuit Feb 26, 2025
30b33d8
finished refactoring of all chapters to new code/dir format + fixing …
Int-Circuit Mar 6, 2025
d4c7efd
fix spelling issues + added page in toc
Int-Circuit Mar 20, 2025
82747b3
added build steps in doc
Int-Circuit Mar 31, 2025
013b379
switched code style setup contrib page
Int-Circuit Mar 31, 2025
4f8e296
added link to doxygen page
Int-Circuit Apr 1, 2025
5d026e0
Removed doxygen.rst since doc being served from differernt page
Int-Circuit Apr 3, 2025
1e6271b
starting to add ssbewer gist
Int-Circuit Aug 10, 2025
bc6c75a
Continuing work on Windows compile instructions
Int-Circuit Aug 11, 2025
a9cf8ed
update checkout action version (v3 is EoL)
Int-Circuit Aug 11, 2025
98c931f
added PATH setup
Int-Circuit Aug 11, 2025
84a06d0
properly fix issue #2
Int-Circuit Aug 14, 2025
f1d59fc
added changelog
Int-Circuit Dec 18, 2025
84425c3
fix version name
Int-Circuit Dec 18, 2025
5882506
prepared files for reuse + split actions + implement MR reuse
Int-Circuit Dec 28, 2025
74ceb50
- deleting unneeded images
Int-Circuit Dec 29, 2025
605b935
ready actions for merge
Int-Circuit Jan 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
18 changes: 18 additions & 0 deletions .github/workflows/gh-codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Codespell

on:
pull_request:
branches:
- master
jobs:
pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: spell
uses: codespell-project/actions-codespell@v2
with:
path: source
exclude_file: ${{ github.workspace }}/source/conf.py
skip: '*.svg,*.py'

23 changes: 23 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy Sphinx documentation to Pages

on:
push:
branches:
- master
jobs:
pages:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: deployment
uses: sphinx-notes/pages@v3
with:
documentation_path: ./source
requirements_path: requirements.txt
cache: true
46 changes: 46 additions & 0 deletions .github/workflows/gh-reuse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: REUSE


on:
push:
branches:
- main
paths-ignore:
- 'LICENSES/*'

jobs:
Licensing:
runs-on: ubuntu-latest
permissions:
contents: write


steps:
- uses: actions/checkout@v3
- name: Setup venv and activate it
run: python3 -m venv venv/ && source venv/bin/activate
shell: bash
- name: Install REUSE
run: pip install reuse
shell: bash
- name: Make source files REUSE-compliant
run: reuse download GPL-2.0-only && reuse annotate --copyright="Qelectrotech Team <[email protected]>" --license="GPL-2.0-only" source/developer/* source/users/* source/index.rst source/doc_changelog.rst --skip-unrecognised --recursive
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.MR_TOKEN }}
commit-message: License files
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
title: Licensing files
body: |
- Correctly licensing files following commit ${{ github.sha }}.
- Auto-generated by [create-pull-request][1]

[1]: https://github.com/peter-evans/create-pull-request
branch: update-reuse
labels: |
reuse
cicd
delete-branch: true
add-paths: source/**/*.rst

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
LICENCES/
.venv/
build-cs/
build/
183 changes: 13 additions & 170 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,177 +1,20 @@
# Makefile for Sphinx documentation
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
PAPER =
# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = source
BUILDDIR = build

# User-friendly check for sphinx-build
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
endif

# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
# the i18n builder cannot share the environment and doctrees with the others
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source

.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext

# Put it first so that "make" without argument is like "make help".
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " html to make standalone HTML files"
@echo " dirhtml to make HTML files named index.html in directories"
@echo " singlehtml to make a single large HTML file"
@echo " pickle to make pickle files"
@echo " json to make JSON files"
@echo " htmlhelp to make HTML files and a HTML help project"
@echo " qthelp to make HTML files and a qthelp project"
@echo " devhelp to make HTML files and a Devhelp project"
@echo " epub to make an epub"
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
@echo " latexpdf to make LaTeX files and run them through pdflatex"
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
@echo " text to make text files"
@echo " man to make manual pages"
@echo " texinfo to make Texinfo files"
@echo " info to make Texinfo files and run them through makeinfo"
@echo " gettext to make PO message catalogs"
@echo " changes to make an overview of all changed/added/deprecated items"
@echo " xml to make Docutils-native XML files"
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
@echo " linkcheck to check all external links for integrity"
@echo " doctest to run all doctests embedded in the documentation (if enabled)"

clean:
rm -rf $(BUILDDIR)/*

html:
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."

dirhtml:
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."

singlehtml:
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
@echo
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."

pickle:
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
@echo
@echo "Build finished; now you can process the pickle files."

json:
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
@echo
@echo "Build finished; now you can process the JSON files."

htmlhelp:
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
@echo
@echo "Build finished; now you can run HTML Help Workshop with the" \
".hhp project file in $(BUILDDIR)/htmlhelp."

qthelp:
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
@echo
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/QElectroTech.qhcp"
@echo "To view the help file:"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/QElectroTech.qhc"

devhelp:
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
@echo
@echo "Build finished."
@echo "To view the help file:"
@echo "# mkdir -p $$HOME/.local/share/devhelp/QElectroTech"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/QElectroTech"
@echo "# devhelp"

epub:
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
@echo
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."

latex:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
@echo "Run \`make' in that directory to run these through (pdf)latex" \
"(use \`make latexpdf' here to do that automatically)."

latexpdf:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo "Running LaTeX files through pdflatex..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."

latexpdfja:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo "Running LaTeX files through platex and dvipdfmx..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."

text:
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
@echo
@echo "Build finished. The text files are in $(BUILDDIR)/text."

man:
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
@echo
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."

texinfo:
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
@echo
@echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
@echo "Run \`make' in that directory to run these through makeinfo" \
"(use \`make info' here to do that automatically)."

info:
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
@echo "Running Texinfo files through makeinfo..."
make -C $(BUILDDIR)/texinfo info
@echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."

gettext:
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
@echo
@echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."

changes:
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
@echo
@echo "The overview file is in $(BUILDDIR)/changes."

linkcheck:
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
@echo
@echo "Link check complete; look for any errors in the above output " \
"or in $(BUILDDIR)/linkcheck/output.txt."

doctest:
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
@echo "Testing of doctests in the sources finished, look at the " \
"results in $(BUILDDIR)/doctest/output.txt."
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

xml:
$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
@echo
@echo "Build finished. The XML files are in $(BUILDDIR)/xml."
.PHONY: help Makefile

pseudoxml:
$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
@echo
@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
29 changes: 25 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# QElectroTech-doc
Documentation QElectroTech
# Qelectrotech-doc

https://download.qelectrotech.org/qet/manual_0.7/build/index.html
This repo contains the source for the [Qelectrotech (QET)](https://qelectrotech.org/) documentation, generated by the [Sphinx-doc tool](https://www.sphinx-doc.org/fr/master/) to be (almost) always up-to-date for each releases of QET.

This manual is accessible from within the QET app under the "Help > Online Manual" option.

## Contributing
### Contributing Guidelines

In this section you will learn good contributing practices when proposing a change to the team.

#### Making Changes

Before making any change, **please create a branch and do your modifications specifically on it**. This will help us by keeping a clean commit history when we merge your addition. Otherwise, we would have to rebase your branch on upstream when merging, which could impact forks when they need to sync with `master`.\
For more info about rebasing, check the [Git Docs](https://git-scm.com/book/en/v2/Git-Branching-Rebasing).

### How to build documentation locally

In this section, you will learn on how to setup the sphinx tool to build the lo

1) Setup a [venv](https://docs.python.org/3/library/venv.html) and follow the activation procedure.
> please name it ".venv" as the .gitignore is configure to not track his changes
2) Use `pip install -r requirements.txt` to install the required dependencies
3) Run "make html" in your terminal
4) Open the "build/html/index.html file in your browser of choice.
5) Profit!

https://qelectrotech.org/forum/viewtopic.php?pid=16245#p16245
4 changes: 0 additions & 4 deletions build-cs/.buildinfo

This file was deleted.

Binary file removed build-cs/.doctrees/annex/color.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/annex/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/annex/text_font.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/annex/variables.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/basics/help.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/basics/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/basics/launch_linux.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/basics/launch_mac.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/basics/launch_windows.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/basics/quit.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/conductor/index.doctree
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 removed build-cs/.doctrees/conductor/type/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/conductor/what_is.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/drawing/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/drawing/lop.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/drawing/mounting_plate.doctree
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 removed build-cs/.doctrees/element/collection/index.doctree
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.
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.
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 removed build-cs/.doctrees/element/element_parts/arc.doctree
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 removed build-cs/.doctrees/element/index.doctree
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 removed build-cs/.doctrees/element/properties/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/element/type/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/element/what_is.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/environment.pickle
Binary file not shown.
Binary file removed build-cs/.doctrees/export&print/create_pdf.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/export&print/export_wires.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/export&print/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/export&print/print.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/folio/add_folio.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/folio/delete_folio.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/folio/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/folio/properties/display.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/folio/properties/index.doctree
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 removed build-cs/.doctrees/folio/title_block/index.doctree
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.
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 removed build-cs/.doctrees/folio/title_block/what_is.doctree
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/folio/type/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/folio/what_is.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/index.doctree
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/customize/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/elements.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/folio_tabs.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/help_bar.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/menu_bar.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/panels/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/project_tabs.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/search_menu.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/toolbars.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/interface/workspace.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/preferences/appearance.doctree
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/preferences/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/preferences/language.doctree
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 removed build-cs/.doctrees/preferences/settings_text.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/project/clean_project.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/project/close_project.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/project/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/project/new_project.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/project/open_project.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/project/properties/index.doctree
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 removed build-cs/.doctrees/project/save_project.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/project/what_is.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/reports/conductor_list.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/reports/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/reports/io_list.doctree
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 removed build-cs/.doctrees/reports/summary/index.doctree
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/basics/ellipse.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/basics/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/basics/line.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/basics/polygon.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/basics/rectangle.doctree
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 removed build-cs/.doctrees/schema/conductor/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/copy.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/cut.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/delete.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/element/index.doctree
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 removed build-cs/.doctrees/schema/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/layers.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/multiple_paste.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/paste.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/picture.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/replace/index.doctree
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/rotate.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/search.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/select/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/select/select_all.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/select/select_none.doctree
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/table.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/text/index.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/text/link_url.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/text/text_edit.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/text/text_editor.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/text/text_insert.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/text/text_move.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/text/text_rotate.doctree
Binary file not shown.
Binary file removed build-cs/.doctrees/schema/what_is.doctree
Binary file not shown.
Binary file not shown.
Binary file removed build-cs/_images/application-exit1.png
Binary file not shown.
Binary file removed build-cs/_images/arc1.png
Binary file not shown.
Binary file removed build-cs/_images/autoconnect1.png
Binary file not shown.
Binary file removed build-cs/_images/bring_forward1.png
Binary file not shown.
Binary file removed build-cs/_images/bring_forward2.png
Binary file not shown.
Binary file removed build-cs/_images/bring_forward3.png
Binary file not shown.
Binary file removed build-cs/_images/conductor21.png
Binary file not shown.
Binary file removed build-cs/_images/configure-toolbars1.png
Binary file not shown.
Binary file removed build-cs/_images/configure-toolbars2.png
Binary file not shown.
Binary file removed build-cs/_images/configure1.png
Binary file not shown.
Binary file removed build-cs/_images/configure2.png
Binary file not shown.
Binary file removed build-cs/_images/configure3.png
Binary file not shown.
Binary file removed build-cs/_images/dialog-information1.png
Binary file not shown.
Binary file removed build-cs/_images/document-open-recent1.png
Binary file not shown.
Loading