summaryrefslogtreecommitdiff
path: root/dpi
AgeCommit message (Collapse)Author
2011-09-06remove trailing whitespaceJorge Arellano Cid
2011-07-31fix leak in https certificate-checking workaroundcorvid
Thanks to Jeremy's valgrind logs
2011-07-30fix clang warningRob S
2011-07-29Workaround: request to only check the root URL's certificate (https).Jorge Arellano Cid
This avoids the dialog bombing that stems from loading multiple https images/resources in a single page. A proper fix would take either to implement the https-dpi as a server (with state), or to move back https handling into dillo.
2011-07-27escape '@' in wget log output shown in downloads dpi tooltipcorvid
There are opportunities for optimizations and cleverness, but it's nice to think of workarounds as something simple and minimally intrusive that you will get to rip out again someday. I'll have to check whether I've ever complained to the FLTK people about this specific problem.
2011-07-27disable symbol/shortcut interpretation in the downloads dpi's labelscorvid
TODO: '@' in the wget output tooltip
2011-06-30Workaround for downloads dpi: It had display glitches on some machines. !?Jorge Arellano Cid
2011-06-27Replaced fl_input() with a custom dialogJorge Arellano Cid
* avoids sound bell, allows customization (e.g. widgets, keyboard)
2011-06-21Eliminated a pack of 22 compiler warnings (gcc-4.6.1 amd64)Jorge Arellano Cid
2011-05-19delete []corvid
2011-05-18don't save huge cookiescorvid
Huge cookies confuse the code that reads them back in. I suppose there's always the possibility of getting a cookies.txt from something else, or a manually-edited one, but... Incidentally, the RFC thinks user agents should allow 4096 bytes for name+value+attributes, which we must be within, say, 50 bytes of.
2011-05-17cookies commentscorvid
I was going to say something in the comments about simplicity and not implementing every little bit of the rfc when we don't know of cookies that make it necessary, but then I suppose that's all implied with dillo.
2011-05-16cookies commentcorvid
2011-04-30downloads GUI: fixed a couple of rendering glitchesJorge Arellano Cid
Removing entries wasn't updating the screen. Workaround for a FLTK-1.3 bug with FL_ROUND_UP_BOX.
2011-04-29Fixed downloads dpi GUI (close and rename dialogs, colors)Jorge Arellano Cid
close and rename dialog had option processing reversed since the port. some colors of in the old theme were not showing. "continue" on a partial file didn't update the meter. All fixed now.
2011-04-16merge in recent changes from main repocorvid
2011-04-14https dpi: error strings for certificate error code 19 and 20corvid
I was tired of those meaningless numbers.
2011-03-09Minor resolve for previous patchJorge Arellano Cid
2011-03-09mergeJorge Arellano Cid
2011-03-09Merged indentation patch. Kept one-char indentation for child widgetsJorge Arellano Cid
2011-03-09mergeJorge Arellano Cid
2011-02-25merge in recent changes from main repocorvid
2011-02-11downloads dpi: init some time variablescorvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-February/008058.html
2011-02-07dpi/downloads.cc: make the indentation consistent.Jeremy Henty
2011-01-28**/Makefile.am: #include $(top_srcdir).Jeremy Henty
2011-01-28**/Makefile.am: replace .. paths with absolute paths using $(top_builddir).Jeremy Henty
2011-01-07downloads: fix progress barcorvid
2011-01-07downloader compilescorvid
and if you resize it, you can see that it's _sort_ of working, even.
2010-12-13typocorvid
2010-11-16downloads dpi: RAW_LABEL for the widget displaying the filenamecorvid
Noticed with http://portal.acm.org/ft_gateway.cfm?id=1039523&type=pdf which redirected to a filename with lots of ampersands.
2010-10-09make dillo compile with clangJohannes Hofmann
* Variable length arrays are not allowed in C++. They are supported in C99 and gcc seems to accept them in C++ mode. Replace the few places where variable length arrays are used. * The widget member in ComplexButtonResource was colliding with the widget member of FltkResource, so rename it to childWidget.
2010-09-13bookmarks dpi urlstr leakcorvid
noticed in Jeremy's valgrind logs
2010-08-22file dpi close pre tag for empty directory listingcorvid
2010-08-19turn off some cookie MSGscorvid
2010-08-05https clearer language in dialogcorvid
"trust certificate" didn't really suggest that we were going to save it away and trust it _forever_.
2010-08-03spellingcorvid
2010-08-03Show the self-signed cert warning dialog even when no CN given.corvid
I'm still not getting the page afterward -- wrote the request, read zero bytes -- but oh well.
2010-08-03Fix segfault with https and self-signed certscorvid
Crashed when no "/CN=" substring in certificate name. I saw this with calomel.org (which just had "/C=US", if I recall correctly).
2010-06-06vsource use a_Dpip_dsh_write_str when possiblecorvid
2010-06-06vsource page add title elementcorvid
2010-06-06vsource fix extraneous </pre> with empty source filecorvid
2010-05-16disallow nameless cookiescorvid
2010-04-05add id="dillo_vs" to view source pageJohannes Hofmann
This allows for custom styling of view source by adjusting ~/.dillo/style.css, e.g: #dillo_vs {background-color: orange !important}
2010-03-31use pre-wrap in vsourcecorvid
2010-03-22use the most specific cookiesrc rulecorvid
2010-03-22cookies use host-only as in draft speccorvid
Behaviour should be quite similar to before, but it'll be easier for someone else to understand if it matches the spec's way of doing things more closely.
2010-03-22fix reading maximum expiration date from cookies.txtcorvid
I did check that tm.tm_sec was 0 before adding the max time to it, so that wasn't the problem. (max - 1000) was fine... Surely safer in general to do like this anyway, so I didn't spend time really digging into details this time.
2010-03-22my testcases aren't smart enough for remove_fast on a domain's cookiescorvid
Nothing wrong with it in principle, but...
2010-03-22Cookies_load_cookies()corvid
2010-03-22limit total number of cookiescorvid