summaryrefslogtreecommitdiff
path: root/tests/ephy-download-test.c
Commit message (Collapse)AuthorAgeFilesLines
* Purge unnecessary use of g_str_equalMichael Catanzaro2017-09-131-1/+1
| | | | This function is intended for use in hash tables.
* Remove private headersMichael Catanzaro2016-10-311-1/+0
| | | | | There's no public API anymore and no extensions. Having private headers years later serves no purpose and is just confusing.
* Relicense to GPLv3+Michael Catanzaro2016-10-071-14/+12
| | | | | | | | To use GMP. Because a few GPLv3+ files had already snuck in by mistake. And because http://www.gnu.org/licenses/rms-why-gplv3.html
* download: Get rid of EPHY_DOWNLOAD_ACTION_DO_NOTHINGMichael Catanzaro2016-05-091-1/+0
| | | | | | | | | This differs from EPHY_DOWNLOAD_ACTION_NONE in that it explicitly informs EphyDownload that it should not perform any download action. Maybe that was actually important in the past, but nowadays there's absolutely no difference, so just get rid of it. https://bugzilla.gnome.org/show_bug.cgi?id=610586
* UncrustifyMichael Catanzaro2016-03-291-9/+9
| | | | | | | | | | | | | | For a better future. Apologies when your 'git blame' resolves to this. I'm actually really impressed how well uncrustify works. This required only a little one-time manual work to avoid extra space in 'else {'. This breaks function prototype alignment, but we should get rid of most of those anyway. We decided to start aligning function parameters, like other GNOME applications. It looks nicer this way, and I couldn't teach uncrustify the previous Epiphany style.
* Remove FSF address from license headersMichael Catanzaro2015-12-071-3/+1
|
* downloads: Remove the window property of EphyDownloadCarlos Garcia Campos2015-10-261-1/+1
| | | | Downloads are global now, we no longer need to associate them to a window.
* ephy-download-test: Register the applicationClaudio Saavedra2015-09-091-0/+1
| | | | Otherwise the inhibition will fail.
* tests: remove deprecated libsoup API usageClaudio Saavedra2014-08-271-5/+8
|
* embed: Remove ephy_embed_prefs_init/shutdown methodsCarlos Garcia Campos2014-02-281-1/+0
| | | | | Create the WebKitWebViewGroup object on demand when the first web view is created.
* Make temporary download files "hidden"William Jon McCann2014-01-291-1/+1
|
* downloads: Remove unused EphyDownload:source propertyCarlos Garcia Campos2014-01-081-2/+5
|
* downloads: Remove ephy_download_start()Carlos Garcia Campos2014-01-081-1/+0
| | | | | This doesn't make sense now in WebKit2, because a WebKitDownload object represents an already started download.
* ephy-download-test.c: initialize the file_helpers earlierClaudio Saavedra2013-08-291-1/+2
| | | | The shell needs these to be ready, otherwise the test will break.
* ephy-download-test: do nothing when the download is finishedXan Lopez2013-03-131-0/+1
| | | | | | | We don't want the default action to run, which in this case is to fire GEdit with the dummy file we are downloading. https://bugzilla.gnome.org/show_bug.cgi?id=695782
* Fix download tests in WK2Manuel Rego Casasnovas2013-03-121-4/+0
| | | | | | Modify ephy_download_dispose to disconnect WebKitDownload from all the handlers. https://bugzilla.gnome.org/show_bug.cgi?id=694579
* ephy-download-test: comment out this test for now, since it's brokenXan Lopez2013-03-111-0/+4
| | | | We'll fix it soon but I want to be able to run make check.
* ephy-download: Make EphyDownload:window a construct only propertyCarlos Garcia Campos2013-01-041-1/+1
| | | | | | | | It's always set right after the download object is created and it doesn't have any effect when it's set after the download has been added to the embed shell. This way we can make sure that when the download is added to the embed shell the parent window has already been set if there's any.
* ephy-shell: remove the ephy_shell globalDiego Escalante Urrelo2012-12-101-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=683614
* Run all tests in test modeXan Lopez2012-10-081-1/+1
| | | | That's what it's for!
* Include libsoup header explicitly when requiredCarlos Garcia Campos2012-06-211-0/+1
| | | | Instead of relying on webkit header to include it.
* Ensure private profile dirs actually do exist.Xan Lopez2012-05-081-1/+3
| | | | | Perhaps PRIVATE_PROFILE should implicitly add ENSURE_EXISTS, seems logical. Do this for new.
* Allow for more fine-grained file helpers initXan Lopez2012-05-071-1/+1
| | | | | | | | | | Since we are about to migrate our profile dir, allow file helpers init to not ensure the profile dir exists (it was hardcoded until now). For this we get rid of the ugly boolean parameters and add a flags parameter, which preserves the old behaviors and allows for this new option. We update all the callers in the tree.
* Move a few EphyShell methods to ephy-private.hXan Lopez2012-04-141-0/+1
| | | | These are clearly not meant to be used outside of Epiphany.
* tests: use EPHY_EMBED_SHELL_MODE_PRIVATE not FALSEDiego Escalante Urrelo2012-04-111-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673684
* ephy-download-test: correctly use fixture objectsDiego Escalante Urrelo2012-04-021-17/+2
| | | | | | | | Do not use adhoc EphyDownload objects that have no proper destination set, or your current user's downloads directory will be filled with test files. https://bugzilla.gnome.org/show_bug.cgi?id=673274
* tests: rename files to avoid duplicate namesDiego Escalante Urrelo2012-02-101-0/+212
Append -test to .c files in tests/ to avoid duplicating filenames in the repository. https://bugzilla.gnome.org/show_bug.cgi?id=669766