-
Notifications
You must be signed in to change notification settings - Fork 2
Change_Log
bmatzelle edited this page Sep 13, 2010
·
7 revisions
- Had to make a very small but show-stopper fix to the Ruby gem. See the 2.1.0 release notes below for the full list of changes.
- Added the Vuzit::Event class for loading up the Vuzit Analytics API data for tracking document usage.
- Added the Vuzit::Page class for loading the page text of a document. This is commonly used for search engine optimization (SEO) purposes to attract web traffic to your documents by inputting the text into a web page.
- Added document web ID checking to all methods to make debugging applications easier.
- Set the default “output” setting of the Vuzit::Document find_all method to “minimal” so it only returns the IDs of documents by default. This makes the service and client run much faster.
- Increased the upload HTTP timeout for large files to prevent errors and made the upload file parameter an optional IO so that it can be loaded from a database.
- Added find_all method that searches the Vuzit account for documents that have that matching text.
- Added options to the signature method for the new query feature.
- Added “excerpt” to the Document class
This release includes some minor fixes for the 1.2.0 release.
- Fixed an issue where a Vuzit Web Server server running IIS would reject the VuzitRuby client API requests.
- Fixed a small service-url option bug in VuzitCL.
- Fixed the README documentation.
Added SSL, download_url, document status and provided a rewrite of the VuzitCL application. There also were some interface changes to methods and classes.
- Added a User-Agent to all requests
- Renamed the Vuzit::Exception class to Vuzit::ClientException to match the other classes.
- Renamed “get_signature” to “signature”. Various cleanups.
- Made all of the Document instance properties read only. Added status to the list of returned flags. Added the download_url method so that the URL to the document can be downloaded.
- Total rewrite of VuzitCL so that it has a variety of sub-commands.
- Added SSL support.
Updated the gem for VuzitCL.
- Added VuzitCL to the gem.
Initial public release of the library.
- Document view (Vuzit_Document.find) added.
- Document destroy/delete (Vuzit_Document.destroy) added.
- Document upload from disk: Vuzit_Document.upload(string path).