Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-08-11 | Merge branch 'working-split/api-keys' into workingv1.2 | Florian Pritz | 3 | -9/+90 | |
2013-08-11 | Add -a option to generate a new api key | Florian Pritz | 1 | -2/+50 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-08-11 | make curlopts and useragent global variables | Florian Pritz | 1 | -2/+5 | |
Needed for apikey patch. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-08-11 | Add API key support | Florian Pritz | 3 | -6/+36 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-07-28 | Added file name option for stdin pastes (-n <file name>)v1.1.4 | Joakim Reinert | 2 | -3/+10 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-06-16 | Fix syntax errors in manpage | Florian Pritz | 1 | -1/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-05-11 | fb-helper: Remove forms array; use curl_formadd directlyv1.1.3 | Florian Pritz | 1 | -19/+16 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-05-11 | fb-helper: Add help output | Florian Pritz | 1 | -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-11 | Default to https | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-02-14 | Don't save timestamp when gzipping | Florian Pritz | 1 | -3/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-01-09 | fb-helper: exit on unknown option errorv1.1.2 | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-01-09 | Add debugging support | Florian Pritz | 3 | -2/+22 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2013-01-09 | fb-helper: Use getopt | Florian Pritz | 2 | -21/+37 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-11-27 | Add timeouts to shell clientv1.1.1 | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-11-12 | fb-helper.c: Fix description | Florian Pritz | 1 | -1/+1 | |
This is not a script so don't call it one. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-11-09 | fb.1: Remove reference to fb_username/fb_password | Florian Pritz | 1 | -1/+1 | |
These options don't exist and shouldn't have been documented. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-27 | Add support for config filev1.1 | Florian Pritz | 2 | -0/+25 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-09 | Lowercase most variable names | Florian Pritz | 1 | -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> | |||||
2012-10-09 | Move internal variables further down | Florian Pritz | 1 | -10/+10 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-07 | Makefile: Honor LDFLAGS | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-09-22 | fb-helper: only display progress bar is stderr is a tty | Florian Pritz | 1 | -4/+9 | |
If fb is used in a cronjob we don't care about the progress bar. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-09-22 | fb-helper: initialise *curl and check before cleaning up | Florian Pritz | 1 | -2/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-15 | fix netrc line in help messagev1.0.5 | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-06-12 | Fix bug with 0-byte files on Darwinv1.0.4n0nsense/master | Florian Pritz | 1 | -1/+1 | |
Seems like wc -c $file doesn't return "0 $file" on Darwin. wc -c < $file is simpler because it doesn't need cut and works fine, so we just use that. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-12 | Fix date in manpage | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-11 | fb.1: move netrc information into the description | Florian Pritz | 1 | -8/+8 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-07 | Replace echo with printf | Florian Pritz | 1 | -24/+28 | |
echo is inconsistent across different platforms and this also removes an unneeded fork. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-07 | Replace -n option to echo with | tr -d "\n" | Florian Pritz | 1 | -1/+1 | |
The echo builtin on darwin doesn't support any options and will output them. References: https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/echo.1.html Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-14 | Makefile: install requires all | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-11 | fb.1: upstream now requires accounts, adapt the manpagev1.0.3 | Florian Pritz | 1 | -2/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-06 | Print "better" message when $file can't be read | Florian Pritz | 1 | -2/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-04 | Makefile: add PREFIX support | Florian Pritz | 1 | -3/+4 | |
This allows users to easily install to /usr/local, instead of forcing them to change 3 variables. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-04 | Error on 0-byte files | Florian Pritz | 2 | -0/+10 | |
No point in uploading a really empty file and it might even cause confusion to see an empty page when clicking the link. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-04 | fb-helper: properly clean up upon error | Florian Pritz | 1 | -5/+10 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-03-15 | Makefile: get rid of MY_CFLAGS; allow users to override CFLAGS | Florian Pritz | 1 | -3/+2 | |
CFLAGS=-O0 make; will still work as expected make CFLAGS=-O0; allows to completely override the flags, ignoring what is set in the makefile. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-03-14 | Makefile: create all manpage dirsv1.0.2 | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-03-14 | Makefile: preserve some flags even if $CFLAGS is setv1.0.1 | Florian Pritz | 1 | -2/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-03-14 | properly quote all uses of $STAT.v1.0 | Moritz Wilhelmy | 1 | -3/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-03-14 | unify `uname -s` cases | Florian Pritz | 1 | -5/+8 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-03-01 | use pbcopy instead of xclip on Darwin | Florian Pritz | 1 | -1/+5 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-18 | fb.in: fix stat call on darwin | Florian Pritz | 1 | -2/+1 | |
%b returns blocks, but we want bytes (%z) Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-16 | fb-helper.c: remove "OVER 9000" joke | Florian Pritz | 1 | -3/+1 | |
9000 hours is just over one year and probably nobody is ever going to hit this. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-14 | Fixes errors on Mac OS X | Markus | 1 | -0/+1 | |
2012-02-10 | fb-helper.c: remove unused FORMAT_ARRAY_SIZE define | Florian Pritz | 1 | -1/+0 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-10 | fb-helper.c: change format_bytes() arguments and buffer size | Florian Pritz | 1 | -7/+7 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-10 | fb-helper.c: clean up curl options; set follow location | Florian Pritz | 1 | -2/+5 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-10 | fb-helper.c: remove unused warning for callback parameters | Florian Pritz | 1 | -1/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-10 | fb-helper.c: calculate a moving average of the upload speed | Florian Pritz | 1 | -5/+32 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-02-10 | fb-helper.c: calculate ETA for the upload | Florian Pritz | 1 | -3/+36 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-01-26 | change license in manpage | Florian Pritz | 1 | -14/+4 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> |