-
Notifications
You must be signed in to change notification settings - Fork 132
feat: session
submodule
#3895
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
clatapie
wants to merge
16
commits into
feat/main_commands
Choose a base branch
from
feat/session_submodule
base: feat/main_commands
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,655
−1,126
Open
feat: session
submodule
#3895
Changes from 3 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
d594b81
feat: ``session`` submodule
clatapie b7d185a
chore: adding changelog file 3894.documentation.md [dependabot-skip]
pyansys-ci-bot d7e2653
chore: adding changelog file 3895.documentation.md [dependabot-skip]
pyansys-ci-bot d270dec
feat: commands ordered by name
clatapie f46fea4
feat: commands ordered by pyname
clatapie 7058040
Merge branch 'feat/main_commands' into feat/session_submodule
clatapie d3153d7
fix: removing ``slashexit`` + commenting ``mypy`` as it is not working
clatapie 15d962a
chore: merge remote-tracking branch 'origin/feat/main_commands' into …
germa89 16afab3
fix: update no abort logging and command execution in MapdlGrpc class…
germa89 dd610d5
fix: uncomment mypy hook configuration in pre-commit settings
germa89 0ec8c46
delete: remove duplicated fragment
germa89 1f47975
fix: improve cwd method to validate directory paths and handle quotes…
germa89 f9eea4e
feat: adding latest enhancements
clatapie b20d382
feat: applying latest ``pyconverter-xml2py`` changes
clatapie 8797d0e
Merge branch 'feat/main_commands' into feat/session_submodule
clatapie 009cfda
chore: adding changelog file 3895.miscellaneous.md [dependabot-skip]
pyansys-ci-bot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
feat: ``session`` submodule |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
feat: ``session`` submodule |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
.. _ref_files_commands_api: | ||
|
||
***** | ||
.. _ref_files: | ||
|
||
|
||
Files | ||
***** | ||
===== | ||
|
||
|
||
.. currentmodule:: ansys.mapdl.core | ||
.. currentmodule:: ansys.mapdl.core._commands.session.files | ||
|
||
These SESSION commands are for file operations, such as deleting, | ||
copying, and listing. | ||
.. autoclass:: ansys.mapdl.core._commands.session.files.Files | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
|
||
Mapdl.anstoaqwa | ||
Mapdl.anstoasas | ||
Mapdl.assign | ||
Mapdl.copy | ||
Mapdl.slashdelete | ||
Mapdl.fcomp | ||
Mapdl.lgwrite | ||
Mapdl.starlist | ||
Mapdl.slashclog | ||
Mapdl.slashfdele | ||
Mapdl.rename | ||
:template: base.rst | ||
:toctree: _autosummary | ||
|
||
|
||
Files.anstoaqwa | ||
Files.anstoasas | ||
Files.assign | ||
Files.copy | ||
Files.fclean | ||
Files.fcomp | ||
Files.lgwrite | ||
Files.slashclog | ||
Files.slashdelete | ||
Files.slashfdele | ||
Files.slashrename | ||
Files.starlist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
.. _ref_session: | ||
|
||
Session | ||
======= | ||
|
||
.. list-table:: | ||
|
||
* - :ref:`ref_run_controls` | ||
* - :ref:`ref_processor_entry` | ||
* - :ref:`ref_files` | ||
* - :ref:`ref_list_controls` | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:hidden: | ||
|
||
run_controls | ||
processor_entry | ||
files | ||
list_controls |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
.. _ref_list_controls_commands_api: | ||
|
||
************* | ||
List controls | ||
************* | ||
.. _ref_list_controls: | ||
|
||
.. currentmodule:: ansys.mapdl.core | ||
|
||
These SESSION commands are used to control listings and printed program output. | ||
ListControls | ||
============ | ||
|
||
|
||
.. currentmodule:: ansys.mapdl.core._commands.session.list_controls | ||
|
||
.. autoclass:: ansys.mapdl.core._commands.session.list_controls.ListControls | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
:template: base.rst | ||
:toctree: _autosummary | ||
|
||
|
||
Mapdl.com | ||
Mapdl.golist | ||
Mapdl.gopr | ||
Mapdl.nolist | ||
Mapdl.nopr | ||
ListControls.com | ||
ListControls.golist | ||
ListControls.gopr | ||
ListControls.nolist | ||
ListControls.nopr | ||
ListControls.slashgo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
.. _ref_processor_entry_commands_api: | ||
|
||
*************** | ||
Processor entry | ||
*************** | ||
.. _ref_processor_entry: | ||
|
||
.. currentmodule:: ansys.mapdl.core | ||
|
||
These SESSION commands are used to enter and exit the various processors in the program. | ||
ProcessorEntry | ||
============== | ||
|
||
|
||
.. currentmodule:: ansys.mapdl.core._commands.session.processor_entry | ||
|
||
.. autoclass:: ansys.mapdl.core._commands.session.processor_entry.ProcessorEntry | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
|
||
Mapdl.aux2 | ||
Mapdl.aux3 | ||
Mapdl.aux12 | ||
Mapdl.aux15 | ||
Mapdl.finish | ||
Mapdl.map | ||
Mapdl.post1 | ||
Mapdl.post26 | ||
Mapdl.prep7 | ||
Mapdl.quit | ||
Mapdl.slashsolu | ||
:template: base.rst | ||
:toctree: _autosummary | ||
|
||
|
||
ProcessorEntry.finish | ||
ProcessorEntry.post1 | ||
ProcessorEntry.post26 | ||
ProcessorEntry.prep7 | ||
ProcessorEntry.quit | ||
ProcessorEntry.slashsolu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,35 @@ | ||
.. _ref_run_controls_commands_api: | ||
|
||
************ | ||
Run controls | ||
************ | ||
.. _ref_run_controls: | ||
|
||
.. currentmodule:: ansys.mapdl.core | ||
|
||
These SESSION commands control the overall characteristics of the | ||
session, including the job name, Graphical User Interface behavior, and | ||
file switching. | ||
RunControls | ||
=========== | ||
|
||
|
||
.. currentmodule:: ansys.mapdl.core._commands.session.run_controls | ||
|
||
.. autoclass:: ansys.mapdl.core._commands.session.run_controls.RunControls | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
|
||
Mapdl.config | ||
Mapdl.cwd | ||
Mapdl.exit | ||
Mapdl.filname | ||
Mapdl.input | ||
Mapdl.keyw | ||
Mapdl.memm | ||
Mapdl.nerr | ||
Mapdl.pause | ||
Mapdl.slashstatus | ||
Mapdl.starstatus | ||
Mapdl.syp | ||
Mapdl.sys | ||
Mapdl.unpause | ||
:template: base.rst | ||
:toctree: _autosummary | ||
|
||
|
||
RunControls.config | ||
RunControls.cwd | ||
RunControls.filname | ||
RunControls.input | ||
RunControls.keyw | ||
RunControls.memm | ||
RunControls.menu | ||
RunControls.mstart | ||
RunControls.nerr | ||
RunControls.output | ||
RunControls.pause | ||
RunControls.slashexit | ||
RunControls.slashstatus | ||
RunControls.syp | ||
RunControls.sys | ||
RunControls.ui | ||
RunControls.uis | ||
RunControls.unpause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.