mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
Remove license from individual files, consolidate information into AUTHORS and LICENSE
This commit is contained in:
parent
9ee7906472
commit
da3d660b50
21
AUTHORS
Normal file
21
AUTHORS
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The primary authors are:
|
||||||
|
|
||||||
|
Joel Schaerer
|
||||||
|
William Ting
|
||||||
|
|
||||||
|
Here is an inevitably incomplete list of much appreciated contributors -- people
|
||||||
|
who have submitted patches, reported bugs, maintained packages, and in general
|
||||||
|
made autojump that much better (in no particular order):
|
||||||
|
|
||||||
|
Tanguy Ortolo
|
||||||
|
Thibault North
|
||||||
|
Olivier Mehani
|
||||||
|
Fabien Bourgeois
|
||||||
|
Binh Nguyen
|
||||||
|
Neeraj Verma
|
||||||
|
Evan Shelhamer
|
||||||
|
xiannaitong
|
||||||
|
Pierre Gueth
|
||||||
|
Tom Parker
|
||||||
|
Liyang Chang
|
||||||
|
Jez Ng
|
14
LICENSE
14
LICENSE
@ -1,3 +1,17 @@
|
|||||||
|
autojump is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
autojump is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
full GNU General Public License below for more details.
|
||||||
|
|
||||||
|
autojump is a small tool that maintains a database of your most
|
||||||
|
used directories, and finds the best match to help you jump to
|
||||||
|
frequently used places.
|
||||||
|
|
||||||
GNU GENERAL PUBLIC LICENSE
|
GNU GENERAL PUBLIC LICENSE
|
||||||
Version 3, 29 June 2007
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
17
bin/_j
17
bin/_j
@ -1,21 +1,4 @@
|
|||||||
#compdef j
|
#compdef j
|
||||||
|
|
||||||
#Copyright Joel Schaerer 2008, 2009
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
cur=${words[2, -1]}
|
cur=${words[2, -1]}
|
||||||
|
|
||||||
autojump --completion ${=cur[*]} | while read i; do
|
autojump --completion ${=cur[*]} | while read i; do
|
||||||
|
20
bin/autojump
20
bin/autojump
@ -1,24 +1,4 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
"""Copyright Joel Schaerer 2008-2012
|
|
||||||
This file is part of autojump
|
|
||||||
|
|
||||||
autojump is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
autojump is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Autojump is a small tool that maintains a database of your most
|
|
||||||
used directories, and finds the best match to help you jump to
|
|
||||||
frequently used places."""
|
|
||||||
|
|
||||||
from __future__ import division, print_function
|
from __future__ import division, print_function
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
@ -1,20 +1,3 @@
|
|||||||
#Copyright Joel Schaerer 2008, 2009
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
#This shell snippet sets the prompt command and the necessary aliases
|
|
||||||
_autojump()
|
_autojump()
|
||||||
{
|
{
|
||||||
local cur
|
local cur
|
||||||
|
@ -1,19 +1,4 @@
|
|||||||
# Source autojump on BASH or ZSH depending on the shell
|
# Source autojump on BASH or ZSH depending on the shell
|
||||||
#Copyright Joel Schaerer 2008, 2009
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
if [ "$BASH_VERSION" ] && [ -n "$PS1" ] && echo $SHELLOPTS | grep -v posix >>/dev/null; then
|
if [ "$BASH_VERSION" ] && [ -n "$PS1" ] && echo $SHELLOPTS | grep -v posix >>/dev/null; then
|
||||||
if [ -f ~/.autojump/etc/profile.d/autojump.bash ]; then
|
if [ -f ~/.autojump/etc/profile.d/autojump.bash ]; then
|
||||||
source ~/.autojump/etc/profile.d/autojump.bash
|
source ~/.autojump/etc/profile.d/autojump.bash
|
||||||
|
@ -1,19 +1,3 @@
|
|||||||
#Copyright Joel Schaerer 2008, 2009
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
# determine the data directory according to the XDG Base Directory Specification
|
# determine the data directory according to the XDG Base Directory Specification
|
||||||
if [[ -n ${XDG_DATA_HOME} ]] && [[ ${XDG_DATA_HOME} =~ ${USER} ]]; then
|
if [[ -n ${XDG_DATA_HOME} ]] && [[ ${XDG_DATA_HOME} =~ ${USER} ]]; then
|
||||||
export AUTOJUMP_DATA_DIR="${XDG_DATA_HOME}/autojump"
|
export AUTOJUMP_DATA_DIR="${XDG_DATA_HOME}/autojump"
|
||||||
|
@ -1,21 +1,4 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
|
||||||
#Copyright Joel Schaerer and Pierre Gueth 2008, 2009
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import cPickle
|
import cPickle
|
||||||
import os.path
|
import os.path
|
||||||
|
15
install.sh
15
install.sh
@ -1,19 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#Copyright Joel Schaerer 2008-2012
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
function add_msg {
|
function add_msg {
|
||||||
echo
|
echo
|
||||||
|
15
uninstall.sh
15
uninstall.sh
@ -1,19 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#Copyright Joel Schaerer 2008-2012
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
function help_msg {
|
function help_msg {
|
||||||
echo "sudo ./uninstall.sh [--prefix /usr/local]"
|
echo "sudo ./uninstall.sh [--prefix /usr/local]"
|
||||||
|
Loading…
Reference in New Issue
Block a user