I am using old version (2018.3.1017) of Kendo ui. So current version has many changes. But I want to get documents or usage or demos of this version.
For example, https://demos.telerik.com/kendo-ui/grid/index has current version examples. How can I find documentation of 2018?
One way I can think of is to use a web archiver to look at old version of the page, like archive.org.
Here's the relevant page for your example:
https://web.archive.org/web/20180601000000*/https://demos.telerik.com/kendo-ui/grid/index
You get a calendar in which you can go to a specific year and see the dates on which the page was archived and view one of those archives. Since you're using 2018.3.1017, I guess you can check out the archive that was done on March 9th or April 3rd, 2018, since I don't know when this version was released and when the documentation was updated.
Related
I'm using PyCharm, I've imported gspread successfully into Python (3.10). Am able to update a Google sheet on Google drive.. Works well. Want to email spreadsheet using .share. According to documentation:
sh.share('blah#blah.co.nz', perm_type='user', role='writer')
should work but .share not available in drop down list. The drop down list displays a whole bunch of items but no .share option. I've download and imported the lastest version of gspread. I'm thinking that the .share functionality may not be running in this version or am I doing something wrong? looking at other help messages, .share is being used by others. Any comments? Thanks
Hi if you have imported the latest version of gspread then (as of today) it should be version 5.4.0 and the documentation for that version for that method is: here
If you look at the code in the same version it is: here too and the method is called share. But it is in the spreadsheet object.
So it should be used like this:
...
sph = client.open("my_spreadsheet")
sph.share('blah#blah.co.nz', perm_type='user', role='writer')
Like the documentation of python or django, how do I have multiple versions of my doc with sphinx ?
I saved my doc on git, and I want my user to be able to see documentation for different version like v2.7,v3.4, etc
Thank you for the help
You could just use Read The Docs to host your documentation for you. They automatically handle multiple versions with a dropdown:
https://docs.readthedocs.io/en/latest/index.html
If you'd like to host your own documentation on GitHub Pages or some other web server, I made a Sphinx extension that does what you're looking for:
https://github.com/sphinx-contrib/sphinxcontrib-versioning
There's the sphinx-multiversion extension.
It's similar to sphinxcontrib-versioning, but sphinxcontrib-versioning doesn't seem to be actively maintained. The last release was in 2016, and it doesn't work with more recent versions of Sphinx (issue #77). sphinx-multiversion is a new implementation (see comment by the author).
Note on healthiness of the project: as of December 2020, it seems that SMV is a one-person project and there are a number of open issues and pull requests that haven't been responded to (though see this comment by the author).
The Wiki page lists and links to version 2.2 of event drag library (threedubmedia.com).
However, the examples point to version 2.3, hosted in 6pac.github site.
What is this version about? Where does it come from? Can anybody give some information about it?
It's my repo. So for v2.3, we (#lfilho did these changes I believe) simply took 2.2 and updated it to be compatible with jQuery 2 and 3.
ThreeDub weren't involved, and the 2.2 version remains the latest release from them.
I am trying to find all versions or it's dates for KendoUI controls History. However I found history dates from April 2014 onwards.
http://www.telerik.com/support/whats-new/kendo-ui/release-history
does any body have list of all version dates.
Thanks In Advance,
Ramesh
Before 2014, its distributed name was Kendo UI Web. You can find related version list with release dates on NuGet: https://www.nuget.org/packages/KendoUIWeb/
Like the documentation of python or django, how do I have multiple versions of my doc with sphinx ?
I saved my doc on git, and I want my user to be able to see documentation for different version like v2.7,v3.4, etc
Thank you for the help
You could just use Read The Docs to host your documentation for you. They automatically handle multiple versions with a dropdown:
https://docs.readthedocs.io/en/latest/index.html
If you'd like to host your own documentation on GitHub Pages or some other web server, I made a Sphinx extension that does what you're looking for:
https://github.com/sphinx-contrib/sphinxcontrib-versioning
There's the sphinx-multiversion extension.
It's similar to sphinxcontrib-versioning, but sphinxcontrib-versioning doesn't seem to be actively maintained. The last release was in 2016, and it doesn't work with more recent versions of Sphinx (issue #77). sphinx-multiversion is a new implementation (see comment by the author).
Note on healthiness of the project: as of December 2020, it seems that SMV is a one-person project and there are a number of open issues and pull requests that haven't been responded to (though see this comment by the author).