diff options
author | Adrien BUSTANY <madcat@mymadcat.com> | 2008-05-24 19:52:36 +0200 |
---|---|---|
committer | Adrien BUSTANY <madcat@mymadcat.com> | 2008-05-24 19:52:36 +0200 |
commit | b23c127c7ac39a7fa1224c71ffd7c7f0d0a2856c (patch) | |
tree | 1bd57dad7b6b76652f422229e7985f6b02902036 | |
parent | 9255ccd748f20bbb5409ec078f0f07f947893cab (diff) |
GetBackendDetail
-rw-r--r-- | lib/Daemon.cpp | 4 | ||||
-rw-r--r-- | lib/Daemon.h | 1 | ||||
-rw-r--r-- | lib/coverage-daemon.txt | 36 | ||||
-rw-r--r-- | lib/coverage-transaction.txt | 100 |
4 files changed, 73 insertions, 68 deletions
diff --git a/lib/Daemon.cpp b/lib/Daemon.cpp index 186e5ef..ffe5303 100644 --- a/lib/Daemon.cpp +++ b/lib/Daemon.cpp @@ -15,6 +15,10 @@ QStringList Daemon::getActions() { return actions.split(";"); } +void Daemon::getBackendDetails(QString &name, QString &author) { + name = proxy->GetBackendDetail(author); +} + void Daemon::suggestQuit() { proxy->SuggestDaemonQuit(); } diff --git a/lib/Daemon.h b/lib/Daemon.h index dda8bbe..49f7603 100644 --- a/lib/Daemon.h +++ b/lib/Daemon.h @@ -19,6 +19,7 @@ public: // PackageKit functions QStringList getActions(); + void getBackendDetails(QString &name, QString &author); void suggestQuit(); Transaction* newTransaction(); diff --git a/lib/coverage-daemon.txt b/lib/coverage-daemon.txt index 77c7099..d07e1c9 100644 --- a/lib/coverage-daemon.txt +++ b/lib/coverage-daemon.txt @@ -3,23 +3,23 @@ IF DONE METHODS : - GetActions - GetBackendDetail - GetFilters - GetGroups - GetTid - GetTimeSinceAction - GetTransactionList - StateHasChanged - SuggestDaemonQuit - GetNetworkState - SetProxy +X GetActions + GetBackendDetail + GetFilters + GetGroups + GetTid + GetTimeSinceAction + GetTransactionList + StateHasChanged +X SuggestDaemonQuit + GetNetworkState + SetProxy - SIGNALS : + SIGNALS : - TransactionListChanged - Locked - NetworkStateChanged - RestartSchedule - RepoListChanged - UpdatesChanged
\ No newline at end of file + TransactionListChanged + Locked + NetworkStateChanged + RestartSchedule + RepoListChanged + UpdatesChanged diff --git a/lib/coverage-transaction.txt b/lib/coverage-transaction.txt index 7037f05..bb6c1fd 100644 --- a/lib/coverage-transaction.txt +++ b/lib/coverage-transaction.txt @@ -4,54 +4,54 @@ IF DONE METHODS : - AcceptEula - Cancel - GetAllowCancel - GetDepends - GetDetails - GetFiles - GetOldTransactions - GetPackageLast - GetPackages - GetProgress - GetRepoList - GetRequires - GetRole - GetStatus - GetUpdateDetail - GetUpdates - InstallFiles - InstallPackages - InstallSignature - IsCallerActive - RefreshCache - RemovePackages - RepoEnable - RepoSetData - Resolve - Rollback - SearchDetails - SearchFile - SearchGroup - SearchName - UpdatePackages - UpdateSystem - WhatProvides + AcceptEula +X Cancel + GetAllowCancel + GetDepends + GetDetails + GetFiles + GetOldTransactions + GetPackageLast + GetPackages + GetProgress + GetRepoList + GetRequires + GetRole + GetStatus + GetUpdateDetail + GetUpdates + InstallFiles + InstallPackages + InstallSignature + IsCallerActive + RefreshCache + RemovePackages + RepoEnable + RepoSetData + Resolve + Rollback + SearchDetails + SearchFile + SearchGroup +X SearchName + UpdatePackages + UpdateSystem + WhatProvides - SIGNALS : - AllowCancel - CallerActiveChanged - Details - ErrorCode - Files - Finished - Message - Package - ProgressChanged - RepoDetail - RepoSignatureRequired - EulaRequired - RequireRestart - StatusChanged - Transaction - UpdateDetail
\ No newline at end of file + SIGNALS : + AllowCancel + CallerActiveChanged +X Details + ErrorCode + Files +X Finished + Message + Package + ProgressChanged + RepoDetail + RepoSignatureRequired + EulaRequired + RequireRestart + StatusChanged + Transaction + UpdateDetail |