Change terminology from 'repo' to 'remote'

The add/delete/list-repo commands are renamed to add/delete/list-remote,
to align our terminology with ostree and git.
tingping/wmclass
Matthias Clasen 2015-01-19 20:16:00 -05:00
parent 7dfd383c96
commit cdc13dd25c
11 changed files with 42 additions and 42 deletions

View File

@ -28,9 +28,9 @@ xdg_app_helper_SOURCES = xdg-app-helper.c
xdg_app_SOURCES = \
xdg-app-main.c \
xdg-app-builtins.h \
xdg-app-builtins-add-repo.c \
xdg-app-builtins-delete-repo.c \
xdg-app-builtins-list-repos.c \
xdg-app-builtins-add-remote.c \
xdg-app-builtins-delete-remote.c \
xdg-app-builtins-list-remotes.c \
xdg-app-builtins-repo-contents.c \
xdg-app-builtins-install.c \
xdg-app-builtins-update.c \

View File

@ -14,9 +14,9 @@ XSLTPROC_FLAGS = \
man_MANS = \
xdg-app.1 \
xdg-app-add-repo.1 \
xdg-app-delete-repo.1 \
xdg-app-list-repos.1 \
xdg-app-add-remote.1 \
xdg-app-delete-remote.1 \
xdg-app-list-remotes.1 \
xdg-app-repo-contents.1 \
xdg-app-install-runtime.1 \
xdg-app-update-runtime.1 \

View File

@ -2,10 +2,10 @@
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry id="xdg-app-add-repo">
<refentry id="xdg-app-add-remote">
<refentryinfo>
<title>xdg-app add-repo</title>
<title>xdg-app add-remote</title>
<productname>xdg-app</productname>
<authorgroup>
@ -19,18 +19,18 @@
</refentryinfo>
<refmeta>
<refentrytitle>xdg-app add-repo</refentrytitle>
<refentrytitle>xdg-app add-remote</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>xdg-app-add-repo</refname>
<refname>xdg-app-add-remote</refname>
<refpurpose>Add a remote repository</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>xdg-app add-repo</command>
<command>xdg-app add-remote</command>
<arg choice="opt" rep="repeat">OPTION</arg>
<arg choice="plain">NAME</arg>
<arg choice="plain">URL</arg>
@ -111,7 +111,7 @@
<title>Examples</title>
<para>
<command>$ xdg-app --user add-repo --no-gpg-verify test-repo https://people.gnome.org/~alexl/gnome-sdk/repo/</command>
<command>$ xdg-app --user add-remote --no-gpg-verify test-repo https://people.gnome.org/~alexl/gnome-sdk/repo/</command>
</para>
</refsect1>
@ -120,8 +120,8 @@
<para>
<citerefentry><refentrytitle>xdg-app</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-delete-repo</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-list-repos</refentrytitle><manvolnum>1</manvolnum></citerefentry>
<citerefentry><refentrytitle>xdg-app-delete-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-list-remotes</refentrytitle><manvolnum>1</manvolnum></citerefentry>
</para>
</refsect1>

View File

@ -2,10 +2,10 @@
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry id="xdg-app-add-repo">
<refentry id="xdg-app-delete-remote">
<refentryinfo>
<title>xdg-app delete-repo</title>
<title>xdg-app delete-remote</title>
<productname>xdg-app</productname>
<authorgroup>
@ -19,18 +19,18 @@
</refentryinfo>
<refmeta>
<refentrytitle>xdg-app delete-repo</refentrytitle>
<refentrytitle>xdg-app delete-remote</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>xdg-app-delete-repo</refname>
<refname>xdg-app-delete-remote</refname>
<refpurpose>Delete a remote repository</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>xdg-app delete-repo</command>
<command>xdg-app delete-remote</command>
<arg choice="opt" rep="repeat">OPTION</arg>
<arg choice="plain">NAME</arg>
</cmdsynopsis>
@ -93,7 +93,7 @@
<title>Examples</title>
<para>
<command>$ xdg-app --user delete-repo dried-raisins</command>
<command>$ xdg-app --user delete-remote dried-raisins</command>
</para>
</refsect1>
@ -102,8 +102,8 @@
<para>
<citerefentry><refentrytitle>xdg-app</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-add-repo</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-list-repos</refentrytitle><manvolnum>1</manvolnum></citerefentry>
<citerefentry><refentrytitle>xdg-app-add-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-list-remotes</refentrytitle><manvolnum>1</manvolnum></citerefentry>
</para>
</refsect1>

View File

@ -2,10 +2,10 @@
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry id="xdg-app-list-repos">
<refentry id="xdg-app-list-remotes">
<refentryinfo>
<title>xdg-app list-repos</title>
<title>xdg-app list-remotes</title>
<productname>xdg-app</productname>
<authorgroup>
@ -19,18 +19,18 @@
</refentryinfo>
<refmeta>
<refentrytitle>xdg-app list-repos</refentrytitle>
<refentrytitle>xdg-app list-remotes</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>xdg-app-list-repos</refname>
<refname>xdg-app-list-remotes</refname>
<refpurpose>List remote repositories</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>xdg-app list-repos</command>
<command>xdg-app list-remotes</command>
<arg choice="opt" rep="repeat">OPTION</arg>
</cmdsynopsis>
</refsynopsisdiv>
@ -99,7 +99,7 @@
<title>Examples</title>
<para>
<command>$ xdg-app list-repos --user --show-urls</command>
<command>$ xdg-app list-remotes --user --show-urls</command>
</para>
<programlisting>
testrepo http://209.132.179.91/repo/
@ -111,8 +111,8 @@ testrepo http://209.132.179.91/repo/
<para>
<citerefentry><refentrytitle>xdg-app</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-add-repo</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-delete-repo</refentrytitle><manvolnum>1</manvolnum></citerefentry>
<citerefentry><refentrytitle>xdg-app-add-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>xdg-app-delete-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry>
</para>
</refsect1>

View File

@ -107,21 +107,21 @@
<variablelist>
<varlistentry>
<term><citerefentry><refentrytitle>xdg-app-add-repo</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
<term><citerefentry><refentrytitle>xdg-app-add-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
<listitem><para>
Add a remote repository.
</para></listitem>
</varlistentry>
<varlistentry>
<term><citerefentry><refentrytitle>xdg-app-delete-repo</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
<term><citerefentry><refentrytitle>xdg-app-delete-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
<listitem><para>
Delete a remote repository.
</para></listitem>
</varlistentry>
<varlistentry>
<term><citerefentry><refentrytitle>xdg-app-list-repos</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
<term><citerefentry><refentrytitle>xdg-app-list-remotes</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
<listitem><para>
Lists remote repositories.

View File

@ -18,7 +18,7 @@ static GOptionEntry options[] = {
};
gboolean
xdg_app_builtin_add_repo (int argc, char **argv, GCancellable *cancellable, GError **error)
xdg_app_builtin_add_remote (int argc, char **argv, GCancellable *cancellable, GError **error)
{
GOptionContext *context;
gboolean ret = FALSE;

View File

@ -9,7 +9,7 @@
#include "xdg-app-builtins.h"
gboolean
xdg_app_builtin_delete_repo (int argc, char **argv, GCancellable *cancellable, GError **error)
xdg_app_builtin_delete_remote (int argc, char **argv, GCancellable *cancellable, GError **error)
{
GOptionContext *context;
gboolean ret = FALSE;

View File

@ -17,7 +17,7 @@ static GOptionEntry options[] = {
};
gboolean
xdg_app_builtin_list_repos (int argc, char **argv, GCancellable *cancellable, GError **error)
xdg_app_builtin_list_remotes (int argc, char **argv, GCancellable *cancellable, GError **error)
{
GOptionContext *context;
gboolean ret = FALSE;

View File

@ -28,9 +28,9 @@ void usage_error (GOptionContext *context,
#define BUILTINPROTO(name) gboolean xdg_app_builtin_ ## name (int argc, char **argv, GCancellable *cancellable, GError **error)
BUILTINPROTO(add_repo);
BUILTINPROTO(delete_repo);
BUILTINPROTO(list_repos);
BUILTINPROTO(add_remote);
BUILTINPROTO(delete_remote);
BUILTINPROTO(list_remotes);
BUILTINPROTO(repo_contents);
BUILTINPROTO(install_runtime);
BUILTINPROTO(update_runtime);

View File

@ -19,9 +19,9 @@ typedef struct {
} XdgAppCommand;
static XdgAppCommand commands[] = {
{ "add-repo", xdg_app_builtin_add_repo },
{ "delete-repo", xdg_app_builtin_delete_repo },
{ "list-repos", xdg_app_builtin_list_repos },
{ "add-remote", xdg_app_builtin_add_remote },
{ "delete-remote", xdg_app_builtin_delete_remote },
{ "list-remotes", xdg_app_builtin_list_remotes },
{ "repo-contents", xdg_app_builtin_repo_contents },
{ "install-runtime", xdg_app_builtin_install_runtime },
{ "update-runtime", xdg_app_builtin_update_runtime },