Questions tagged [exclusionpath]

19 questions
26
votes
3 answers

Python Sphinx exclude patterns

I'm generating documentation with Sphinx for project with structure like this : + project | +- docs | +- tests | +- workflow -+- definitions -+- | +- I want to exclude tests, and…
jmt
  • 719
  • 1
  • 9
  • 28
7
votes
1 answer

How to exclude folders from c++ core guidelines checkers check path?

My problem is that the Nuget packages (inside solutions /packages folder) are causing a lot of warnings and analyzing them is taking ages. I have tried excluding folders from static analysis with no success. I have an understanding that this would…
Horttanainen
  • 83
  • 3
  • 8
6
votes
1 answer

How to set Sphinx's `exclude_patterns` from the command line?

I'm using Sphinx on Windows. Most of my documentation is for regular users, but there are some sub-pages with content for administrators only. So I want to build two versions of my documentation: a complete version, and a second version with the…
Christian Specht
  • 35,843
  • 15
  • 128
  • 182
5
votes
0 answers

textView with exclusionPaths and video

I put photos inside a textView if there is video in the text, then I replace the video's photo with the player, the problem arose with the player, I can't understand why the player position is not correct, I noticed replaceCharacters does not work…
Vasya2014
  • 203
  • 1
  • 5
  • 25
2
votes
1 answer

UItextview word wrapping with exclusion paths (swift)

I am working on an application that allows the user to add an image and move it around in a UITextView. The text flows around the image using exclusionPaths, but the words will break if there is not enough room on the remainder of the line instead…
2
votes
3 answers

How to properly resize textview with exclusionPaths inside of table header view

I have added a view to my tableView header consisting of an imageView and a textView. The image view is left aligned in the top corner and the textview extends over the imageview to the right side of the screen like as follows. The textView can…
havak5
  • 714
  • 1
  • 6
  • 20
1
vote
1 answer

How can I generate rst file in parts of directory into HTML file in Sphinx?

Display my Sphinx project's directory structure. cd myproject/source tree -d . ├── django ├── document ├── excel ├── github ├── _images ├── _templates └── vim Everytime I execute the command make html, all the *.rst files in django, document,…
showkey
  • 482
  • 42
  • 140
  • 295
1
vote
1 answer

Powershell Get-ChildItem exclusions and piping

I'm working on a Powershell script to compare directories, and I want to clean up some of the code if possible. The script as a whole works exactly like I want it to, but I feel like the code I've included below (which is only a small part of it)…
1
vote
0 answers

Bash script read lines from file with exclusions

This will no doubt be simple for someone, but I'm not a bash wizard by any means. I tend to learn as I go when I need to do something. I've got a script that optimizes images and requires only that it be called with the image folder as an argument.…
David Rahrer
  • 553
  • 1
  • 5
  • 11
0
votes
1 answer

Changing path to WSL remote

I have an issue with VS Code and WSL remote extension. On my machine, Windows Defender Firewall blocked node. I do not have sufficient rights to unblock it, but admins created excluded folder, where based on what they said "I can copy everything…
0
votes
1 answer

apidoc not excluding exclude_patterns

I have the following directory structure: +project_name | +---project_name | |---subpackage | |---__init__.py | |---api.py | |---mock_run.py | +---docs |---conf.py I don't want mock_run in my docs so in the conf.py I…
DeanLa
  • 1,871
  • 3
  • 21
  • 37
0
votes
0 answers

IDEA+Gradle: exclude sources from tree and compilation?

In IDEA 2019 I have created a Gradle project and added the following lines to the build.gradle file: plugins { id 'java' } sourceSets { main { java { srcDir "../src" include "com/example/abc/**" …
Goblin Alchemist
  • 829
  • 5
  • 11
0
votes
0 answers

excluded directories in find command not properly piped to -exec cp

I am trying to copy a folder containing a subfolder structure, while excluding a specified subfolder by using the find -exec cp command. I have managed to use multiple working excluding options when I am using the find command alone, but once I add…
Sam
  • 1
  • 1
0
votes
0 answers

exclude folder and file patterns for java compiler in idea intellij

I recently migrated from eclipse to intellij. I have many folders and files to be excluded from compilation. Eg. I have about 40-50 folders named 'test' containing class files and folders that needs to be excluded. I also need to exclude any class…
Chetan
  • 3
  • 3
0
votes
1 answer

Jmeter-How to exclude specific url of recording?

I need a pattern to exclude this url /XXX/XXX/UIDL?windowName=1 of recordings, i try with many patterns but none of them worked https://i.stack.imgur.com/azqol.jpg
Ale Bufa
  • 13
  • 1
  • 3
1
2