mirror of
https://github.com/clearlinux/bsdiff.git
synced 2026-09-03 12:21:38 +00:00
Initial commit
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
This commit is contained in:
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Executable
+40
@@ -0,0 +1,40 @@
|
||||
#!/bin/sh
|
||||
|
||||
# If using normal root, avoid changing anything.
|
||||
if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd $RPM_BUILD_ROOT
|
||||
|
||||
# Compress man pages
|
||||
COMPRESS="gzip -9 -n"
|
||||
COMPRESS_EXT=
|
||||
|
||||
for d in ./usr/man/man* ./usr/man/*/man* ./usr/info \
|
||||
./usr/share/man/man* ./usr/share/man/*/man* ./usr/share/info \
|
||||
./usr/kerberos/man ./usr/X11R6/man/man* ./usr/lib/perl5/man/man* \
|
||||
./usr/share/doc/*/man/man* ./usr/lib/*/man/man*
|
||||
do
|
||||
[ -d $d ] || continue
|
||||
for f in `find $d -type f`
|
||||
do
|
||||
[ -f "$f" ] || continue
|
||||
[ "`basename $f`" = "dir" ] && continue
|
||||
|
||||
case "$f" in
|
||||
*.Z) gunzip -f $f; b=`echo $f | sed -e 's/\.Z$//'`;;
|
||||
*.gz) gunzip -f $f; b=`echo $f | sed -e 's/\.gz$//'`;;
|
||||
*.bz2) bunzip2 -f $f; b=`echo $f | sed -e 's/\.bz2$//'`;;
|
||||
*) b=$f;;
|
||||
esac
|
||||
done
|
||||
|
||||
for f in `find $d -type l`
|
||||
do
|
||||
l=`ls -l $f | sed -e 's/.* -> //' -e 's/\.gz$//' -e 's/\.bz2$//' -e 's/\.Z$//'`
|
||||
rm -f $f
|
||||
b=`echo $f | sed -e 's/\.gz$//' -e 's/\.bz2$//' -e 's/\.Z$//'`
|
||||
ln -sf $l$COMPRESS_EXT $b$COMPRESS_EXT
|
||||
done
|
||||
done
|
||||
Executable
+56
@@ -0,0 +1,56 @@
|
||||
#!/bin/sh
|
||||
|
||||
# If using normal root, avoid changing anything.
|
||||
if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd $RPM_BUILD_ROOT
|
||||
|
||||
# Compress man pages
|
||||
COMPRESS="gzip -9 -n"
|
||||
COMPRESS_EXT=.gz
|
||||
|
||||
for d in ./usr/man/man* ./usr/man/*/man* ./usr/info \
|
||||
./usr/share/man/man* ./usr/share/man/*/man* ./usr/share/info \
|
||||
./usr/kerberos/man ./usr/X11R6/man/man* ./usr/lib/perl5/man/man* \
|
||||
./usr/share/doc/*/man/man* ./usr/lib/*/man/man*
|
||||
do
|
||||
[ -d $d ] || continue
|
||||
for f in `find $d -type f`
|
||||
do
|
||||
[ -f "$f" ] || continue
|
||||
[ "`basename $f`" = "dir" ] && continue
|
||||
|
||||
case "$f" in
|
||||
*.Z) gunzip -f $f; b=`echo $f | sed -e 's/\.Z$//'`;;
|
||||
*.gz) gunzip -f $f; b=`echo $f | sed -e 's/\.gz$//'`;;
|
||||
*.bz2) bunzip2 -f $f; b=`echo $f | sed -e 's/\.bz2$//'`;;
|
||||
*) b=$f;;
|
||||
esac
|
||||
|
||||
$COMPRESS $b </dev/null 2>/dev/null || {
|
||||
inode=`ls -i $b | awk '{ print $1 }'`
|
||||
others=`find $d -type f -inum $inode`
|
||||
if [ -n "$others" ]; then
|
||||
for afile in $others ; do
|
||||
[ "$afile" != "$b" ] && rm -f $afile
|
||||
done
|
||||
$COMPRESS -f $b
|
||||
for afile in $others ; do
|
||||
[ "$afile" != "$b" ] && ln $b$COMPRESS_EXT $afile$COMPRESS_EXT
|
||||
done
|
||||
else
|
||||
$COMPRESS -f $b
|
||||
fi
|
||||
}
|
||||
done
|
||||
|
||||
for f in `find $d -type l`
|
||||
do
|
||||
l=`ls -l $f | sed -e 's/.* -> //' -e 's/\.gz$//' -e 's/\.bz2$//' -e 's/\.Z$//'`
|
||||
rm -f $f
|
||||
b=`echo $f | sed -e 's/\.gz$//' -e 's/\.bz2$//' -e 's/\.Z$//'`
|
||||
ln -sf $l$COMPRESS_EXT $b$COMPRESS_EXT
|
||||
done
|
||||
done
|
||||
@@ -0,0 +1,36 @@
|
||||
<HTML><HEAD>
|
||||
<TITLE>Network Error</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<FONT face="Helvetica">
|
||||
<big><strong></strong></big><BR>
|
||||
</FONT>
|
||||
<blockquote>
|
||||
<TABLE border=0 cellPadding=1 width="80%">
|
||||
<TR><TD>
|
||||
<FONT face="Helvetica">
|
||||
<big>Network Error (tcp_error)</big>
|
||||
<BR>
|
||||
<BR>
|
||||
</FONT>
|
||||
</TD></TR>
|
||||
<TR><TD>
|
||||
<FONT face="Helvetica">
|
||||
A communication error occurred: ""
|
||||
</FONT>
|
||||
</TD></TR>
|
||||
<TR><TD>
|
||||
<FONT face="Helvetica">
|
||||
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
|
||||
</FONT>
|
||||
</TD></TR>
|
||||
<TR><TD>
|
||||
<FONT face="Helvetica" SIZE=2>
|
||||
<BR>
|
||||
For assistance, contact your network support team.
|
||||
</FONT>
|
||||
</TD></TR>
|
||||
</TABLE>
|
||||
</blockquote>
|
||||
</FONT>
|
||||
</BODY></HTML>
|
||||
File diff suppressed because it is too large
Load Diff
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
@@ -0,0 +1,13 @@
|
||||
adm:!!::
|
||||
wheel:!!::
|
||||
systemd-journal:!!::
|
||||
systemd-resolve:!!::
|
||||
systemd-network:!!::
|
||||
systemd-bus-proxy:!!::
|
||||
audio:!!::
|
||||
systemd-timesync:!!::
|
||||
nobody:!!::
|
||||
lp:!!::
|
||||
log:!!::
|
||||
systemd-journal-gateway:!!::
|
||||
input:!!::
|
||||
@@ -0,0 +1,13 @@
|
||||
wheel:!!::
|
||||
input:!!::
|
||||
systemd-journal-gateway:!!::
|
||||
systemd-network:!!::
|
||||
lp:!!::
|
||||
systemd-bus-proxy:!!::
|
||||
systemd-journal:!!::
|
||||
systemd-timesync:!!::
|
||||
log:!!::
|
||||
systemd-resolve:!!::
|
||||
adm:!!::
|
||||
nobody:!!::
|
||||
audio:!!::
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
................................................................................................................................................................................................................................................................
|
||||
Binary file not shown.
@@ -0,0 +1,67 @@
|
||||
<!-- proposed DTD for new glade format -->
|
||||
|
||||
<!ELEMENT glade-interface (requires*, widget*) >
|
||||
<!ATTLIST glade-interface
|
||||
xmlns CDATA #FIXED 'http://glade.gnome.org/glade-2.0.dtd' >
|
||||
|
||||
<!ELEMENT requires EMPTY >
|
||||
<!ATTLIST requires
|
||||
lib CDATA #REQUIRED >
|
||||
|
||||
<!ELEMENT widget (property*, accessibility?, signal*, accelerator*, child*) >
|
||||
<!ATTLIST widget
|
||||
class CDATA #REQUIRED
|
||||
id ID #REQUIRED >
|
||||
|
||||
<!ELEMENT property (#PCDATA) >
|
||||
<!-- type is an optional tag, and should be the string name of the
|
||||
GType for the property -->
|
||||
<!-- translatable specifies whether the property should be translated
|
||||
before use. -->
|
||||
<!ATTLIST property
|
||||
name CDATA #REQUIRED
|
||||
type CDATA #IMPLIED
|
||||
translatable (yes|no) 'no'
|
||||
agent CDATA #IMPLIED >
|
||||
|
||||
<!ELEMENT atkproperty (#PCDATA | accessibility)* >
|
||||
<!ATTLIST atkproperty
|
||||
name CDATA #REQUIRED
|
||||
type CDATA #IMPLIED >
|
||||
|
||||
<!ELEMENT atkrelation EMPTY >
|
||||
<!ATTLIST atkrelation
|
||||
target CDATA #REQUIRED
|
||||
type CDATA #REQUIRED >
|
||||
|
||||
<!ELEMENT atkaction EMPTY >
|
||||
<!ATTLIST atkaction
|
||||
action_name CDATA #REQUIRED
|
||||
description CDATA #IMPLIED >
|
||||
|
||||
<!ELEMENT accessibility (atkrelation | atkaction | atkproperty)* >
|
||||
|
||||
<!ELEMENT signal EMPTY >
|
||||
<!ATTLIST signal
|
||||
name CDATA #REQUIRED
|
||||
handler CDATA #REQUIRED
|
||||
after (yes|no) 'no'
|
||||
object IDREF #IMPLIED
|
||||
last_modification_time CDATA #IMPLIED >
|
||||
|
||||
<!ELEMENT accelerator EMPTY >
|
||||
<!ATTLIST accelerator
|
||||
key CDATA #REQUIRED
|
||||
modifiers CDATA #REQUIRED
|
||||
signal CDATA #REQUIRED >
|
||||
|
||||
<!ELEMENT child ((widget|placeholder), packing?) >
|
||||
<!-- internal children should not have any properties set on them.
|
||||
(Internal children are things like the scrollbars in a
|
||||
GtkScrolledWindow, or the vbox in a GtkDialog). -->
|
||||
<!ATTLIST child
|
||||
internal-child CDATA #IMPLIED >
|
||||
|
||||
<!ELEMENT packing (property+) >
|
||||
|
||||
<!ELEMENT placeholder EMPTY >
|
||||
Binary file not shown.
@@ -0,0 +1,14 @@
|
||||
prefix=/usr
|
||||
exec_prefix=/usr
|
||||
libdir=/usr/lib64
|
||||
includedir=/usr/include
|
||||
target=x11
|
||||
|
||||
gtk_binary_version=2.10.0
|
||||
gtk_host=x86_64-pc-linux-gnu
|
||||
|
||||
Name: GTK+
|
||||
Description: GTK+ Unix print support
|
||||
Version: 2.24.10
|
||||
Requires: gtk+-${target}-2.0 atk cairo gdk-pixbuf-2.0 gio-2.0 pangoft2
|
||||
Cflags: -I${includedir}/gtk-unix-print-2.0
|
||||
Binary file not shown.
@@ -0,0 +1,188 @@
|
||||
# Tcl autoload index file, version 2.0
|
||||
# This file is generated by the "auto_mkindex" command
|
||||
# and sourced to set up indexing information for one or
|
||||
# more commands. Typically each line is a command that
|
||||
# sets an element in the auto_index array, where the
|
||||
# element name is the name of a command and the value is
|
||||
# a script that loads the command.
|
||||
|
||||
set auto_index(_delete_indexlock) [list source [file join $dir index.tcl]]
|
||||
set auto_index(_close_updateindex) [list source [file join $dir index.tcl]]
|
||||
set auto_index(update_indexinfo) [list source [file join $dir index.tcl]]
|
||||
set auto_index(write_update_indexinfo) [list source [file join $dir index.tcl]]
|
||||
set auto_index(update_index) [list source [file join $dir index.tcl]]
|
||||
set auto_index(write_update_index) [list source [file join $dir index.tcl]]
|
||||
set auto_index(checkout_index) [list source [file join $dir index.tcl]]
|
||||
set auto_index(write_checkout_index) [list source [file join $dir index.tcl]]
|
||||
set auto_index(unstage_helper) [list source [file join $dir index.tcl]]
|
||||
set auto_index(do_unstage_selection) [list source [file join $dir index.tcl]]
|
||||
set auto_index(add_helper) [list source [file join $dir index.tcl]]
|
||||
set auto_index(do_add_selection) [list source [file join $dir index.tcl]]
|
||||
set auto_index(do_add_all) [list source [file join $dir index.tcl]]
|
||||
set auto_index(revert_helper) [list source [file join $dir index.tcl]]
|
||||
set auto_index(do_revert_selection) [list source [file join $dir index.tcl]]
|
||||
set auto_index(do_select_commit_type) [list source [file join $dir index.tcl]]
|
||||
set auto_index(merge_resolve_one) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_stage_workdir) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(do_merge_stage_workdir) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_add_resolution) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_force_stage) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_load_stages) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(read_merge_stages) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_resolve_tool) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_resolve_tool2) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(delete_temp_files) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_tool_get_stages) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_tool_start) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(read_mtool_output) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(merge_tool_finish) [list source [file join $dir mergetool.tcl]]
|
||||
set auto_index(::choose_font::pick) [list source [file join $dir choose_font.tcl]]
|
||||
set auto_index(::searchbar::new) [list source [file join $dir search.tcl]]
|
||||
set auto_index(::branch_create::dialog) [list source [file join $dir branch_create.tcl]]
|
||||
set auto_index(::branch_checkout::dialog) [list source [file join $dir branch_checkout.tcl]]
|
||||
set auto_index(_error_parent) [list source [file join $dir error.tcl]]
|
||||
set auto_index(error_popup) [list source [file join $dir error.tcl]]
|
||||
set auto_index(warn_popup) [list source [file join $dir error.tcl]]
|
||||
set auto_index(info_popup) [list source [file join $dir error.tcl]]
|
||||
set auto_index(ask_popup) [list source [file join $dir error.tcl]]
|
||||
set auto_index(hook_failed_popup) [list source [file join $dir error.tcl]]
|
||||
set auto_index(win32_read_lnk) [list source [file join $dir win32.tcl]]
|
||||
set auto_index(win32_create_lnk) [list source [file join $dir win32.tcl]]
|
||||
set auto_index(::linebar::new) [list source [file join $dir line.tcl]]
|
||||
set auto_index(::browser::new) [list source [file join $dir browser.tcl]]
|
||||
set auto_index(::browser_open::dialog) [list source [file join $dir browser.tcl]]
|
||||
set auto_index(do_about) [list source [file join $dir about.tcl]]
|
||||
set auto_index(InitTheme) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(gold_frame) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(tlabel) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(paddedlabel) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(Dialog) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(pave_toplevel) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(slistbox) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(get_bg_color) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(tspinbox) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(tentry) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(tentry_widgetproc) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(tchoosefont) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(on_choosefont) [list source [file join $dir themed.tcl]]
|
||||
set auto_index(::console::new) [list source [file join $dir console.tcl]]
|
||||
set auto_index(::console::embed) [list source [file join $dir console.tcl]]
|
||||
set auto_index(git_logo) [list source [file join $dir logo.tcl]]
|
||||
set auto_index(do_windows_shortcut) [list source [file join $dir shortcut.tcl]]
|
||||
set auto_index(do_cygwin_shortcut) [list source [file join $dir shortcut.tcl]]
|
||||
set auto_index(do_macosx_app) [list source [file join $dir shortcut.tcl]]
|
||||
set auto_index(::spellcheck::init) [list source [file join $dir spellcheck.tcl]]
|
||||
set auto_index(::spellcheck::_match_length) [list source [file join $dir spellcheck.tcl]]
|
||||
set auto_index(::spellcheck::available_langs) [list source [file join $dir spellcheck.tcl]]
|
||||
set auto_index(find_ssh_key) [list source [file join $dir sshkey.tcl]]
|
||||
set auto_index(do_ssh_key) [list source [file join $dir sshkey.tcl]]
|
||||
set auto_index(make_ssh_key) [list source [file join $dir sshkey.tcl]]
|
||||
set auto_index(kill_sshkey) [list source [file join $dir sshkey.tcl]]
|
||||
set auto_index(read_sshkey_output) [list source [file join $dir sshkey.tcl]]
|
||||
set auto_index(do_stats) [list source [file join $dir database.tcl]]
|
||||
set auto_index(do_gc) [list source [file join $dir database.tcl]]
|
||||
set auto_index(do_fsck_objects) [list source [file join $dir database.tcl]]
|
||||
set auto_index(hint_gc) [list source [file join $dir database.tcl]]
|
||||
set auto_index(::remote_branch_delete::dialog) [list source [file join $dir remote_branch_delete.tcl]]
|
||||
set auto_index(::remote_add::dialog) [list source [file join $dir remote_add.tcl]]
|
||||
set auto_index(load_last_commit) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(committer_ident) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(do_signoff) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(create_new_commit) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(setup_commit_encoding) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(commit_tree) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(commit_prehook_wait) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(commit_commitmsg) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(commit_commitmsg_wait) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(commit_writetree) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(commit_committree) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(commit_postcommit_wait) [list source [file join $dir commit.tcl]]
|
||||
set auto_index(load_all_heads) [list source [file join $dir branch.tcl]]
|
||||
set auto_index(load_all_tags) [list source [file join $dir branch.tcl]]
|
||||
set auto_index(radio_selector) [list source [file join $dir branch.tcl]]
|
||||
set auto_index(::blame::new) [list source [file join $dir blame.tcl]]
|
||||
set auto_index(::tools_add::dialog) [list source [file join $dir tools_dlg.tcl]]
|
||||
set auto_index(::tools_remove::dialog) [list source [file join $dir tools_dlg.tcl]]
|
||||
set auto_index(::tools_askdlg::dialog) [list source [file join $dir tools_dlg.tcl]]
|
||||
set auto_index(class) [list source [file join $dir class.tcl]]
|
||||
set auto_index(field) [list source [file join $dir class.tcl]]
|
||||
set auto_index(constructor) [list source [file join $dir class.tcl]]
|
||||
set auto_index(method) [list source [file join $dir class.tcl]]
|
||||
set auto_index(create_this) [list source [file join $dir class.tcl]]
|
||||
set auto_index(delete_this) [list source [file join $dir class.tcl]]
|
||||
set auto_index(make_dialog) [list source [file join $dir class.tcl]]
|
||||
set auto_index(make_toplevel) [list source [file join $dir class.tcl]]
|
||||
set auto_index(tools_list) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(tools_populate_all) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(tools_create_item) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(tools_populate_one) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(tools_exec) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(tools_run_silent) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(tools_consume_input) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(tools_complete) [list source [file join $dir tools.tcl]]
|
||||
set auto_index(clear_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(reshow_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(force_diff_encoding) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(handle_empty_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(show_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(show_unmerged_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(advance_diff_queue) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(show_other_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(get_conflict_marker_size) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(start_show_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(parse_color_line) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(read_diff) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(apply_hunk) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(apply_range_or_line) [list source [file join $dir diff.tcl]]
|
||||
set auto_index(::branch_rename::dialog) [list source [file join $dir branch_rename.tcl]]
|
||||
set auto_index(parse_git_date) [list source [file join $dir date.tcl]]
|
||||
set auto_index(format_date) [list source [file join $dir date.tcl]]
|
||||
set auto_index(reformat_date) [list source [file join $dir date.tcl]]
|
||||
set auto_index(build_encoding_table) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(tcl_encoding) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(force_path_encoding) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(get_path_encoding) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(build_encoding_submenu) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(popup_btn_menu) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(build_encoding_menu) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(do_build_encoding_menu) [list source [file join $dir encoding.tcl]]
|
||||
set auto_index(::choose_repository::pick) [list source [file join $dir choose_repository.tcl]]
|
||||
set auto_index(::choose_repository::_get_recentrepos) [list source [file join $dir choose_repository.tcl]]
|
||||
set auto_index(::choose_repository::_unset_recentrepo) [list source [file join $dir choose_repository.tcl]]
|
||||
set auto_index(::choose_repository::_append_recentrepos) [list source [file join $dir choose_repository.tcl]]
|
||||
set auto_index(::choose_repository::_is_git) [list source [file join $dir choose_repository.tcl]]
|
||||
set auto_index(::choose_repository::_objdir) [list source [file join $dir choose_repository.tcl]]
|
||||
set auto_index(::choose_repository::_new_ok) [list source [file join $dir choose_repository.tcl]]
|
||||
set auto_index(is_tracking_branch) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(all_tracking_branches) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(load_all_remotes) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(add_fetch_entry) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(add_push_entry) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(make_sure_remote_submenues_exist) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(update_all_remotes_menu_entry) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(populate_remotes_menu) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(add_single_remote) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(delete_from_menu) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(remove_remote) [list source [file join $dir remote.tcl]]
|
||||
set auto_index(::choose_rev::new) [list source [file join $dir choose_rev.tcl]]
|
||||
set auto_index(::choose_rev::new_unmerged) [list source [file join $dir choose_rev.tcl]]
|
||||
set auto_index(::choose_rev::_new) [list source [file join $dir choose_rev.tcl]]
|
||||
set auto_index(::status_bar::new) [list source [file join $dir status_bar.tcl]]
|
||||
set auto_index(::status_bar::two_line) [list source [file join $dir status_bar.tcl]]
|
||||
set auto_index(::branch_delete::dialog) [list source [file join $dir branch_delete.tcl]]
|
||||
set auto_index(fetch_from) [list source [file join $dir transport.tcl]]
|
||||
set auto_index(prune_from) [list source [file join $dir transport.tcl]]
|
||||
set auto_index(fetch_from_all) [list source [file join $dir transport.tcl]]
|
||||
set auto_index(prune_from_all) [list source [file join $dir transport.tcl]]
|
||||
set auto_index(push_to) [list source [file join $dir transport.tcl]]
|
||||
set auto_index(start_push_anywhere_action) [list source [file join $dir transport.tcl]]
|
||||
set auto_index(do_push_anywhere) [list source [file join $dir transport.tcl]]
|
||||
set auto_index(config_check_encodings) [list source [file join $dir option.tcl]]
|
||||
set auto_index(save_config) [list source [file join $dir option.tcl]]
|
||||
set auto_index(do_options) [list source [file join $dir option.tcl]]
|
||||
set auto_index(do_restore_defaults) [list source [file join $dir option.tcl]]
|
||||
set auto_index(do_save_config) [list source [file join $dir option.tcl]]
|
||||
set auto_index(::merge::dialog) [list source [file join $dir merge.tcl]]
|
||||
set auto_index(::merge::reset_hard) [list source [file join $dir merge.tcl]]
|
||||
set auto_index(::merge::_reset_wait) [list source [file join $dir merge.tcl]]
|
||||
set auto_index(::checkout_op::new) [list source [file join $dir checkout_op.tcl]]
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,179 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE policyconfig PUBLIC "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
|
||||
"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
|
||||
<policyconfig>
|
||||
|
||||
<vendor>The systemd Project</vendor>
|
||||
<vendor_url>http://www.freedesktop.org/wiki/Software/systemd</vendor_url>
|
||||
|
||||
<action id="org.freedesktop.login1.inhibit-block">
|
||||
<description>Allow applications to inhibit system shutdown and suspend</description>
|
||||
<message>Authentication is required to allow an application to inhibit system shutdown or suspend.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>yes</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.inhibit-delay">
|
||||
<description>Allow applications to delay system shutdown and suspend</description>
|
||||
<message>Authentication is required to allow an application to delay system shutdown or suspend.</message>
|
||||
<defaults>
|
||||
<allow_any>yes</allow_any>
|
||||
<allow_inactive>yes</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.set-user-linger">
|
||||
<description>Allow non-logged-in users to run programs</description>
|
||||
<message>Authentication is required to allow a non-logged-in user to run programs.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.attach-device">
|
||||
<description>Allow attaching devices to seats</description>
|
||||
<message>Authentication is required for attaching a device to a seat.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.flush-devices">
|
||||
<description>Flush device to seat attachments</description>
|
||||
<message>Authentication is required for resetting how devices are attached to seats.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.power-off">
|
||||
<description>Power off the system</description>
|
||||
<message>Authentication is required for powering off the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.power-off-multiple-sessions">
|
||||
<description>Power off the system while other users are logged in</description>
|
||||
<message>Authentication is required for powering off the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.power-off-ignore-inhibit">
|
||||
<description>Power off the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for powering off the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.reboot">
|
||||
<description>Reboot the system</description>
|
||||
<message>Authentication is required for rebooting the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.reboot-multiple-sessions">
|
||||
<description>Reboot the system while other users are logged in</description>
|
||||
<message>Authentication is required for rebooting the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.reboot-ignore-inhibit">
|
||||
<description>Reboot the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for rebooting the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.suspend">
|
||||
<description>Suspend the system</description>
|
||||
<message>Authentication is required for suspending the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.suspend-multiple-sessions">
|
||||
<description>Suspend the system while other users are logged in</description>
|
||||
<message>Authentication is required for suspending the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.suspend-ignore-inhibit">
|
||||
<description>Suspend the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for suspending the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.hibernate">
|
||||
<description>Hibernate the system</description>
|
||||
<message>Authentication is required for hibernating the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.hibernate-multiple-sessions">
|
||||
<description>Hibernate the system while other users are logged in</description>
|
||||
<message>Authentication is required for hibernating the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.hibernate-ignore-inhibit">
|
||||
<description>Hibernate the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for hibernating the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
</policyconfig>
|
||||
@@ -0,0 +1,179 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE policyconfig PUBLIC "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
|
||||
"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
|
||||
<policyconfig>
|
||||
|
||||
<vendor>The systemd Project</vendor>
|
||||
<vendor_url>http://www.freedesktop.org/wiki/Software/systemd</vendor_url>
|
||||
|
||||
<action id="org.freedesktop.login1.inhibit-block">
|
||||
<description>Allow applications to inhibit system shutdown and suspend</description>
|
||||
<message>Authentication is required to allow an application to inhibit system shutdown or suspend.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>yes</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.inhibit-delay">
|
||||
<description>Allow applications to delay system shutdown and suspend</description>
|
||||
<message>Authentication is required to allow an application to delay system shutdown or suspend.</message>
|
||||
<defaults>
|
||||
<allow_any>yes</allow_any>
|
||||
<allow_inactive>yes</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.set-user-linger">
|
||||
<description>Allow non-logged-in users to run programs</description>
|
||||
<message>Authentication is required to allow a non-logged-in user to run programs.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.attach-device">
|
||||
<description>Allow attaching devices to seats</description>
|
||||
<message>Authentication is required for attaching a device to a seat.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.flush-devices">
|
||||
<description>Flush device to seat attachments</description>
|
||||
<message>Authentication is required for resetting how devices are attached to seats.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.power-off">
|
||||
<description>Power off the system</description>
|
||||
<message>Authentication is required for powering off the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.power-off-multiple-sessions">
|
||||
<description>Power off the system while other users are logged in</description>
|
||||
<message>Authentication is required for powering off the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.power-off-ignore-inhibit">
|
||||
<description>Power off the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for powering off the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.reboot">
|
||||
<description>Reboot the system</description>
|
||||
<message>Authentication is required for rebooting the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.reboot-multiple-sessions">
|
||||
<description>Reboot the system while other users are logged in</description>
|
||||
<message>Authentication is required for rebooting the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.reboot-ignore-inhibit">
|
||||
<description>Reboot the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for rebooting the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.suspend">
|
||||
<description>Suspend the system</description>
|
||||
<message>Authentication is required for suspending the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.suspend-multiple-sessions">
|
||||
<description>Suspend the system while other users are logged in</description>
|
||||
<message>Authentication is required for suspending the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.suspend-ignore-inhibit">
|
||||
<description>Suspend the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for suspending the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.hibernate">
|
||||
<description>Hibernate the system</description>
|
||||
<message>Authentication is required for hibernating the system.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>yes</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.hibernate-multiple-sessions">
|
||||
<description>Hibernate the system while other users are logged in</description>
|
||||
<message>Authentication is required for hibernating the system while other users are logged in.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
<action id="org.freedesktop.login1.hibernate-ignore-inhibit">
|
||||
<description>Hibernate the system while an application asked to inhibit it</description>
|
||||
<message>Authentication is required for hibernating the system while an application asked to inhibit it.</message>
|
||||
<defaults>
|
||||
<allow_any>auth_admin_keep</allow_any>
|
||||
<allow_inactive>auth_admin_keep</allow_inactive>
|
||||
<allow_active>auth_admin_keep</allow_active>
|
||||
</defaults>
|
||||
</action>
|
||||
|
||||
</policyconfig>
|
||||
Reference in New Issue
Block a user