-
Notifications
You must be signed in to change notification settings - Fork 9k
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
Added regex to replace / with _ in resource name #1
Merged
fehguy
merged 1 commit into
swagger-api:master
from
DealerDotCom:feature/resourceNameIssues
Sep 28, 2011
Merged
Added regex to replace / with _ in resource name #1
fehguy
merged 1 commit into
swagger-api:master
from
DealerDotCom:feature/resourceNameIssues
Sep 28, 2011
Conversation
This file contains 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
fehguy
added a commit
that referenced
this pull request
Sep 28, 2011
Added regex to replace / with _ in resource name thanks @jdpgrailsdev!
fehguy
pushed a commit
that referenced
this pull request
Nov 4, 2013
Update to latest swagger-ui code
cguillot
pushed a commit
to cguillot/swagger-ui
that referenced
this pull request
Nov 19, 2014
shelljs (https://www.npmjs.org/package/shelljs) allows unix command to be executed on Windows. swagger-apigh-1
cguillot
pushed a commit
to cguillot/swagger-ui
that referenced
this pull request
Nov 19, 2014
Replace execution of unix related operations such as cp, rm, and cat with shelljs' methods to support cross platform. swagger-apigh-1
cguillot
pushed a commit
to cguillot/swagger-ui
that referenced
this pull request
Nov 19, 2014
Without -f content of dist will remain the same. swagger-apigh-1
cguillot
pushed a commit
to cguillot/swagger-ui
that referenced
this pull request
Nov 19, 2014
cguillot
pushed a commit
to cguillot/swagger-ui
that referenced
this pull request
Nov 19, 2014
gwicke
added a commit
to gwicke/swagger-ui
that referenced
this pull request
Mar 9, 2015
Support RFC 6570 optional path segments
russell
pushed a commit
to russell/swagger-ui
that referenced
this pull request
Jun 28, 2015
Changed try button to be shown by default
fehguy
pushed a commit
that referenced
this pull request
Dec 16, 2015
Fix $ref strings treated as objects by JSONEditor
mkrufky
pushed a commit
to mkrufky/swagger-ui
that referenced
this pull request
Feb 26, 2016
update swagger client
zyoung51
pushed a commit
to zyoung51/swagger-ui
that referenced
this pull request
Mar 2, 2016
Modify index.html for RackHD
vincent-zurczak
referenced
this pull request
in roboconf/swagger-ui
Aug 18, 2016
Update to latest swagger-ui code
vincent-zurczak
referenced
this pull request
in roboconf/swagger-ui
Aug 19, 2016
Fix $ref strings treated as objects by JSONEditor
banders
referenced
this pull request
in banders/swagger-ui
Feb 3, 2017
Merge swagger ui head 04 02 2016
lshaw-sb
referenced
this pull request
in SmartBear/swagger-ui
May 10, 2019
…ult-margins-padding Reset default text margins, Add updated spacing to information-container, scheme-container
eLvErDe
pushed a commit
to eLvErDe/swagger-ui
that referenced
this pull request
Dec 3, 2019
char0n
added a commit
that referenced
this pull request
Jul 14, 2021
char0n
added a commit
that referenced
this pull request
Jul 30, 2021
char0n
added a commit
that referenced
this pull request
Jul 30, 2021
char0n
added a commit
that referenced
this pull request
Aug 11, 2021
char0n
added a commit
that referenced
this pull request
Sep 10, 2021
char0n
added a commit
that referenced
this pull request
Sep 13, 2021
char0n
added a commit
that referenced
this pull request
Sep 13, 2021
char0n
added a commit
that referenced
this pull request
Sep 15, 2021
char0n
added a commit
that referenced
this pull request
Sep 20, 2021
char0n
added a commit
that referenced
this pull request
Oct 8, 2021
char0n
added a commit
that referenced
this pull request
Oct 12, 2021
char0n
added a commit
that referenced
this pull request
Oct 22, 2021
char0n
added a commit
that referenced
this pull request
Nov 2, 2021
char0n
added a commit
that referenced
this pull request
Nov 3, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I found an issue with the Swagger UI with resources with forward slashes in their path. For instance, if you have a resource bound to a nested URI path, such as /widgets/widget, the Swagger UI cannot handle this, as forward slashes are not allowed in DOM ID values (it causes the click handlers to expand the widgets on the UI to not work). Therefore, I applied a simple fix to replace all instances of '/' with '_' to get the UI working again.