Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Commit

Permalink
Filecleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsverkoyen committed Dec 24, 2012
1 parent 17fcad2 commit 3ef213b
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 47 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog since 1.0.5

* Fixed filesPost so it can handle folders with spaces.

# Changelog since 1.0.4

* Fixed filesPost so it returns a boolean.
* Some code styling

# Changelog since 1.0.3
* Corrected the authorize-URL (thx to Jacob Budin).

# Changelog since 1.0.2

* Added methods to enable oauth-usage.

# Changelog since 1.0.1

* Bugfix: when doing multiple calles where GET and POST is mixed, the postfields
should be reset (thx to Daniel Hüsken)

# Changelog since 1.0.0

* fixed some issues with generation off the basestring
22 changes: 22 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) Tijs Verkoyen. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.

This software is provided by the author "as is" and any express or implied
warranties, including, but not limited to, the implied warranties of
merchantability and fitness for a particular purpose are disclaimed. In no event
shall the author be liable for any direct, indirect, incidental, special,
exemplary, or consequential damages (including, but not limited to, procurement
of substitute goods or services; loss of use, data, or profits; or business
interruption) however caused and on any theory of liability, whether in
contract, strict liability, or tort (including negligence or otherwise) arising
in any way out of the use of this software, even if advised of the possibility
of such damage.
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
# Dropbox class

> Dropbox is the easiest way to store, sync, and, share files online. There's no complicated interface to learn. Dropbox works seamlessly with your operating system and automatically makes sure your files are up-to-date. Available for Windows, Mac, and Linux.
> Dropbox is the easiest way to store, sync, and, share files online. There's no
> complicated interface to learn. Dropbox works seamlessly with your operating
> system and automatically makes sure your files are up-to-date.
## About

PHP Dropbox is a (wrapper)class to communicate with [Dropbox](http://dropbox.com).

## License

PHP Dropbox is [BSD](http://classes.verkoyen.eu/overview/bsd) licensed.

## Documentation

The class is well documented inline. If you use a decent IDE you'll see that each method is documented with PHPDoc.
More documentation can be found on [http://classes.verkoyen.eu/dropbox/docs](http://classes.verkoyen.eu/dropbox/docs).
The class is well documented inline. If you use a decent IDE you'll see that
each method is documented with PHPDoc.

## Sites using this class

* [SumoCoders](http://www.sumocoders.be)
* [SumoCoders](http://www.sumocoders.be)
39 changes: 0 additions & 39 deletions dropbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,47 +3,8 @@
/**
* Dropbox class
*
* This source file can be used to communicate with Dropbox (http://dropbox.com)
*
* The class is documented in the file itself. If you find any bugs help me out and report them. Reporting can be done by sending an email to php-dropbox-bugs[at]verkoyen[dot]eu.
* If you report a bug, make sure you give me enough information (include your code).
*
* @todo implement /delta
* @todo implement /copy_ref
*
* Changelog since 1.0.5
* - Fixed filesPost so it can handle folders with spaces.
*
* Changelog since 1.0.4
* - Fixed filesPost so it returns a boolean.
* - Some code styling
*
* Changelog since 1.0.3
* - Corrected the authorize-URL (thx to Jacob Budin).
*
* Changelog since 1.0.2
* - Added methods to enable oauth-usage.
*
* Changelog since 1.0.1
* - Bugfix: when doing multiple calles where GET and POST is mixed, the postfields should be reset (thx to Daniel Hüsken)
*
* Changelog since 1.0.0
* - fixed some issues with generation off the basestring
*
* License
* Copyright (c), Tijs Verkoyen. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.
*
* This software is provided by the author "as is" and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the author be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
*
* @author Tijs Verkoyen <php-dropbox@verkoyen.eu>
* @version 1.0.6
*
* @copyright Copyright (c), Tijs Verkoyen. All rights reserved.
* @license BSD License
*/
Expand Down

0 comments on commit 3ef213b

Please sign in to comment.