-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c4f2111
Showing
65 changed files
with
11,430 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.DS_Store | ||
cache/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# dash-apidoc | ||
|
||
dash-apidoc is a docset for [Dash.app][] containing the latest [apiDoc documentation][]. | ||
|
||
![](screenshot.png) | ||
|
||
## Installing | ||
|
||
Install by opening Dash.app preferences, switch to `Downloads`, click `+`, and enter the feed URL | ||
`https://raw.githubusercontent.com/pfefferle/dash-apidoc/master/apiDoc.xml`. | ||
|
||
## Build | ||
|
||
To rebuild or update this docset run the following commands in the following order: | ||
|
||
1. `$ sh sync.sh` to grab the newest version of the documentation | ||
1. `$ python rebuild.py` to generate the docset from the grabbed sources | ||
1. `$ sh pack.sh` to build the tgz file for a new release | ||
|
||
## Thanks | ||
|
||
The [`sync.sh`][] and [`rebuild.py`][] scripts are based on [@willnorris][]' awesome [RFCDash Docset][] versions. | ||
|
||
[Dash.app]: http://kapeli.com/dash | ||
[apiDoc documentation]: http://apidocjs.com | ||
[open an issue]: https://github.com/pfefferle/dash-apidoc/issues | ||
[`pack.sh`]: https://github.com/pfefferle/dash-apidoc/blob/master/pack.sh | ||
[`sync.sh`]: https://github.com/pfefferle/dash-apidoc/blob/master/sync.sh | ||
[`rebuild.py`]: https://github.com/pfefferle/dash-apidoc/blob/master/rebuild.py | ||
[@willnorris]: https://willnorris.com | ||
[RFCDash Docset]: https://github.com/willnorris/rfcdash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleIdentifier</key> | ||
<string>apidoc</string> | ||
<key>CFBundleName</key> | ||
<string>apiDoc</string> | ||
<key>DocSetPlatformFamily</key> | ||
<string>apiDoc</string> | ||
<key>DashDocSetFamily</key> | ||
<string>dashtoc</string> | ||
<key>dashIndexFilePath</key> | ||
<string>apidocjs.com/index.html</string> | ||
<key>isDashDocset</key> | ||
<true/> | ||
<key>isJavaScriptEnabled</key> | ||
<true/> | ||
</dict> | ||
</plist> |
183 changes: 183 additions & 0 deletions
183
apiDoc.docset/Contents/Resources/Documents/apidocjs.com/css/easy-responsive-tabs.css
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
ul.resp-tabs-list, p { | ||
margin: 0px; | ||
padding: 0px; | ||
} | ||
|
||
.resp-tabs-list li { | ||
font-weight: 600; | ||
font-size: 13px; | ||
display: inline-block; | ||
padding: 13px 15px; | ||
margin: 0; | ||
list-style: none; | ||
cursor: pointer; | ||
float: left; | ||
} | ||
|
||
.resp-tabs-container { | ||
padding: 0px; | ||
background-color: #fff; | ||
clear: left; | ||
} | ||
|
||
h2.resp-accordion { | ||
cursor: pointer; | ||
padding: 5px; | ||
display: none; | ||
} | ||
|
||
.resp-tab-content { | ||
display: none; | ||
padding: 15px; | ||
} | ||
|
||
.resp-tab-active { | ||
border: 1px solid #c1c1c1; | ||
border-bottom: none; | ||
margin-bottom: -1px !important; | ||
padding: 12px 14px 14px 14px !important; | ||
} | ||
|
||
.resp-tab-active { | ||
border-bottom: none; | ||
background-color: #fff; | ||
} | ||
|
||
.resp-content-active, .resp-accordion-active { | ||
display: block; | ||
} | ||
|
||
.resp-tab-content { | ||
border: 1px solid #c1c1c1; | ||
} | ||
|
||
h2.resp-accordion { | ||
font-size: 13px; | ||
border: 1px solid #c1c1c1; | ||
border-top: 0px solid #c1c1c1; | ||
margin: 0px; | ||
padding: 10px 15px; | ||
} | ||
|
||
h2.resp-tab-active { | ||
border-bottom: 0px solid #c1c1c1 !important; | ||
margin-bottom: 0px !important; | ||
padding: 10px 15px !important; | ||
} | ||
|
||
h2.resp-tab-title:last-child { | ||
border-bottom: 12px solid #c1c1c1 !important; | ||
background: blue; | ||
} | ||
/*-----------Vertical tabs-----------*/ | ||
.resp-vtabs ul.resp-tabs-list { | ||
float: left; | ||
width: 30%; | ||
} | ||
|
||
.resp-vtabs .resp-tabs-list li { | ||
display: block; | ||
padding: 15px 15px !important; | ||
margin: 0; | ||
cursor: pointer; | ||
float: none; | ||
} | ||
|
||
.resp-vtabs .resp-tabs-container { | ||
padding: 0px; | ||
background-color: #fff; | ||
border: 1px solid #c1c1c1; | ||
float: left; | ||
width: 68%; | ||
min-height: 250px; | ||
border-radius: 4px; | ||
clear: none; | ||
} | ||
|
||
.resp-vtabs .resp-tab-content { | ||
border: none; | ||
} | ||
|
||
.resp-vtabs li.resp-tab-active { | ||
border: 1px solid #c1c1c1; | ||
border-right: none; | ||
background-color: #fff; | ||
position: relative; | ||
z-index: 1; | ||
margin-right: -1px !important; | ||
padding: 14px 15px 15px 14px !important; | ||
} | ||
|
||
.resp-arrow { | ||
width: 0; | ||
height: 0; | ||
float: right; | ||
margin-top: 3px; | ||
border-left: 6px solid transparent; | ||
border-right: 6px solid transparent; | ||
border-top: 12px solid #c1c1c1; | ||
} | ||
|
||
h2.resp-tab-active span.resp-arrow { | ||
border: none; | ||
border-left: 6px solid transparent; | ||
border-right: 6px solid transparent; | ||
border-bottom: 12px solid #9B9797; | ||
} | ||
|
||
/*-----------Accordion styles-----------*/ | ||
h2.resp-tab-active { | ||
background: #DBDBDB !important; | ||
} | ||
.resp-easy-accordion h2.resp-accordion { | ||
display: block; | ||
} | ||
.resp-easy-accordion .resp-tab-content { | ||
border: 1px solid #c1c1c1; | ||
} | ||
|
||
.resp-easy-accordion .resp-tab-content:last-child { | ||
border-bottom: 1px solid #c1c1c1 !important; | ||
} | ||
|
||
.resp-jfit { | ||
width: 100%; | ||
margin: 0px; | ||
} | ||
|
||
.resp-tab-content-active { | ||
display: block; | ||
} | ||
|
||
h2.resp-accordion:first-child { | ||
border-top: 1px solid #c1c1c1 !important; | ||
} | ||
|
||
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/ | ||
@media only screen and (max-width: 768px) { | ||
ul.resp-tabs-list { | ||
display: none; | ||
} | ||
|
||
h2.resp-accordion { | ||
display: block; | ||
} | ||
|
||
.resp-vtabs .resp-tab-content { | ||
border: 1px solid #C1C1C1; | ||
} | ||
|
||
.resp-vtabs .resp-tabs-container { | ||
border: none; | ||
float: none; | ||
width: 100%; | ||
min-height: initial; | ||
clear: none; | ||
} | ||
.resp-accordion-closed { | ||
display:none !important; | ||
} | ||
.resp-vtabs .resp-tab-content:last-child { | ||
border-bottom: 1px solid #c1c1c1 !important; | ||
} | ||
} |
Oops, something went wrong.