summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-02-13Fix compression handlingFlorian Pritz1-8/+40
gzip/xz compressed the original file and removed the uncompressed version. This is really bad so compress to a temp file. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-12-09Fix ID extraction from URLsFlorian Pritz1-0/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-11-29Use ANSI code to clear output lineFlorian Pritz1-11/+3
\033[K clears the line starting from the cursor position. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-11-09Save temp file in tempdirFlorian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-11-08Handle URL argumentsFlorian Pritz1-1/+37
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.py: Humanize sizes in history outputFlorian Pritz1-2/+18
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.py: Drop Enum dependency in favor of python2Florian Pritz1-2/+7
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.py: Adjust shebang to conventionFlorian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.py: Allow for missing config fileFlorian Pritz1-8/+21
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.py: Ignore missing clipboard commandsFlorian Pritz1-2/+10
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.py: Use version variable from MakefileFlorian Pritz1-2/+4
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18Drop old fb-client and adjust MakefileFlorian Pritz4-913/+5
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.1: Update documentation for v2Florian Pritz1-24/+22
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-18fb.py: makedirs: Check if dir already existsFlorian Pritz1-2/+4
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-14fb.py: display_history: Handle multipastesFlorian Pritz1-4/+32
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-14fb.py: Use correct config field for max request sizeFlorian Pritz1-2/+2
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-09-13Add first version of fb-client v2v2.0.0.alpha.1Florian Pritz1-0/+573
Granted, this is pretty complete for a first commit... Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-07-27Automatically create multipastev1.5.0Florian Pritz2-2/+9
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-06-17Use bash regex instead of sed -rv1.4.3Florian Pritz1-2/+3
sed -r is not supported on OS X and using bash actually makes the code easier. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-03-03fb-helper: Enable response compressionv1.4.2Florian Pritz1-0/+2
This especially improves speed when displaying long histories. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-11-19Remove tempfile in do_uploadv1.4.1Florian Pritz1-0/+1
This would upload the data.* files if one runs `fb -m $url1 $url2` Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-08-29Support multipastesv1.4Florian Pritz3-12/+79
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-08-29Remove one more mention of netrcFlorian Pritz1-1/+0
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-07-20Update manpage: deprecate netrc; misc cleanupv1.3.3Florian Pritz1-16/+20
- https instead of http - MiB instead of MB - Tell users to use api keys rathern than netrc Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-02-19Support combining -n and -t to set the tarball namev1.3.2Florian Pritz2-4/+4
This does change the default from upload to stdin, but I don't care. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-09-08Create all required directories for apikeyv1.3.1Florian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-09-02Fix conflict between --data-urlencode and -Fv1.3.0Florian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-09-02Use bash arrays to allow spaces in apikey file pathFlorian Pritz1-18/+18
This also fixes a bug in the shell uploader which used single quotes around the argument to --data-urlencode which sadly doesn't work at all. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-09-02Document -a and -H in manpageFlorian Pritz1-0/+4
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-08-28Create config dir if neededv1.2.1Florian Pritz1-0/+3
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-08-15fb-helper: Fix improper handling of failing realloc() in load_file()Florian Pritz1-2/+4
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-08-15Makefile: use CC from env if setFlorian Pritz1-1/+1
Allows us to run scan-build Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-08-11Merge branch 'working-split/api-keys' into workingv1.2Florian Pritz3-9/+90
2013-08-11Add -a option to generate a new api keyFlorian Pritz1-2/+50
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-08-11make curlopts and useragent global variablesFlorian Pritz1-2/+5
Needed for apikey patch. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-08-11Add API key supportFlorian Pritz3-6/+36
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-07-28Added file name option for stdin pastes (-n <file name>)v1.1.4Joakim Reinert2-3/+10
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-06-16Fix syntax errors in manpageFlorian Pritz1-1/+2
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-05-11fb-helper: Remove forms array; use curl_formadd directlyv1.1.3Florian Pritz1-19/+16
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-05-11fb-helper: Add help outputFlorian Pritz1-1/+22
It is still meant to be only used as a backend for fb-client, but this makes testing easier. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-05-11Default to httpsFlorian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-02-14Don't save timestamp when gzippingFlorian Pritz1-3/+3
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-01-09fb-helper: exit on unknown option errorv1.1.2Florian Pritz1-0/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-01-09Add debugging supportFlorian Pritz3-2/+22
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-01-09fb-helper: Use getoptFlorian Pritz2-21/+37
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2012-11-27Add timeouts to shell clientv1.1.1Florian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2012-11-12fb-helper.c: Fix descriptionFlorian Pritz1-1/+1
This is not a script so don't call it one. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2012-11-09fb.1: Remove reference to fb_username/fb_passwordFlorian Pritz1-1/+1
These options don't exist and shouldn't have been documented. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2012-10-27Add support for config filev1.1Florian Pritz2-0/+25
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2012-10-09Lowercase most variable namesFlorian Pritz1-99/+99
I don't like the look of everything being upper case and it certainly complicates writing the variable names. Signed-off-by: Florian Pritz <bluewind@xinu.at>