Commit graph

465 commits

Author SHA1 Message Date
https://id.koumbit.net/anarcat
607b6f4320 make titles uniform 2014-03-31 15:14:07 +00:00
https://id.koumbit.net/anarcat
6a38091312 add xfce 2014-03-31 15:11:56 +00:00
http://joeyh.name/
32a580bfe4 Added a comment 2014-03-26 18:24:31 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnrP-0DGtHDJbWSXeiyk0swNkK1aejoN3c
10a7d19c5d Added a comment: new dev site for syno dsm 5.0 2014-03-25 10:20:46 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnftLWVOF0DUdXr2HSW4IKzuqtW8V7X3YU
61d89325a6 Added a comment: How can the git annex init command be called on the server? 2014-03-25 06:58:58 +00:00
https://www.google.com/accounts/o8/id?id=AItOawlFZFMFm-AapYAgV_V5X9HRJxWvhdiX9fY
83fd0560a2 Added a comment 2014-03-24 21:11:32 +00:00
https://launchpad.net/~maestro-alubia
5e7d3113f7 2014-03-24 15:47:48 +00:00
Joey Hess
f6eb967f1e webapp: Automatically install Nautilus integration scripts to get and drop files.
This commit was sponsored by Gian-Maria Daffre.
2014-03-22 15:51:30 -04:00
https://www.google.com/accounts/o8/id?id=AItOawmlnEK_po7A0xMC9Xdp0FdcBgYllsCORXM
8602a766f7 Added a comment: Shared google drive on multiple hosts 2014-03-14 16:40:12 +00:00
http://alan.petitepomme.net/
fff673674c Added a comment: still need to remove the remote after a "dead" 2014-03-07 18:03:47 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus
c3be59735d Added a comment 2014-03-03 07:44:30 +00:00
Joey Hess
31062ab2bf
number list 2014-03-02 20:27:37 -04:00
Joey Hess
03dc6dcab8
decruft 2014-03-02 20:26:27 -04:00
Joey Hess
d0fce426c4 pre-commit-annex hook script to automatically extract metadata from lots of types of files
Using the extract(1) program to do the heavy lifting.

Decided to make git-annex run pre-commit-annex when committing. Since
git-annex pre-commit also runs it, it'll be run when git commit is run too,
via the pre-commit hook. This basically gives back the pre-commit hook
that git-annex took away. The implementation avoids repeatedly looking
for the hook script when the assistant is running and committing
repeatedly; only checks if the hook is available once.

To make the script simpler, made git-annex metadata -s field?=value
only set a field when it's not already got a value.

This commit was sponsored by bak.
2014-03-02 20:11:58 -04:00
Joey Hess
2432ecbdcc simplify 2014-03-01 00:41:29 -04:00
Joey Hess
6a355686ff annex.listen can be configured, instead of using --listen 2014-03-01 00:31:17 -04:00
Joey Hess
0bc8dabb54 docs for remote webapp, securely 2014-02-28 22:39:06 -04:00
Joey Hess
fb2a38963f
show how to set up preferred content for IA like the webapp does 2014-02-28 18:42:31 -04:00
Joey Hess
ee8a443d49
layout 2014-02-23 00:27:18 -04:00
Joey Hess
f1fd42a7b5
add note 2014-02-23 00:13:19 -04:00
Joey Hess
7498c5dd96 annex.genmetadata can be set to make git-annex automatically set metadata (year and month) when adding files 2014-02-23 00:08:29 -04:00
Joey Hess
079b35a1a8 views: add automatically constructed file location metadata
When constructing views, metadata is available about the location of the
file in the view's reference branch. Allows incorporating parts of the
directory hierarchy in a view.

For example `git annex view tag=* podcasts/=*` makes a view in the form
tag/showname.

Performance impact: I benchmarked git annex view tag=* in the conference
proceedings repo to take 6.459s before this change, and 6.544s after.

FWIW, I considered making the syntax for this be podcasts/*, which might
be easier for the user to learn. However, I think it's not as good:

* The user has to then juggle two different syntaxes, and podcasts/* will
  be expanded by the shell so they also need to quote it, while podcasts/=*
  is unlikely to be expanded by the shell.
* It would allow for things like podcasts/*/* and *.mp3 which do not
  map well into views.

This commit was sponsored by Aurélien Pinceaux.
2014-02-22 16:27:53 -04:00
http://grossmeier.net/
57e3b037ed Added a comment: confirmed 2014-02-21 17:53:02 +00:00
http://joeyh.name/
3bb5f9a344 Added a comment: good 2014-02-21 15:20:40 +00:00
http://grossmeier.net/
3f5569b515 Added a comment 2014-02-20 22:04:58 +00:00
http://joeyh.name/
bf368b8aff Added a comment 2014-02-20 19:34:48 +00:00
http://joeyh.name/
5c40f18b74 Added a comment 2014-02-20 19:24:09 +00:00
Joey Hess
0dba83aa87
update 2014-02-19 17:50:30 -04:00
Joey Hess
dd7b99c860 add tip about metadata driven views (and more flexible view filtering)
While writing this documentation, I realized that there needed to be a way
to stay in a view like tag=* while adding a filter like tag=work that
applies to the same field.

So, there are really two ways a view can be refined. It can have a new
"field=explicitvalue" filter added to it, which does not change the
"shape" of the view, but narrows the files it shows.
Or, it can have a new view added, which adds another level of
subdirectories.

So, added a vfilter command, which takes explicit values to add to the
filter, and rejects changes that would change the shape of the view.

And, made vadd only accept changes that change the shape of the view.

And, changed the View data type slightly; now components that can match
multiple metadata values can be visible, or not visible.

This commit was sponsored by Stelian Iancu.
2014-02-19 16:29:56 -04:00
Greg Grossmeier
4650a1f749 initremote -> enableremote, pretty sure 2014-02-18 15:53:48 -08:00
http://grossmeier.net/
be67112e43 Added a comment: missing steps? 2014-02-18 23:51:01 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnhrtcVb6osHXjvZeNpj9diqh_JjyARc30
bffb383bdb Possibly missing space 2014-01-31 13:37:37 +00:00
https://www.google.com/accounts/o8/id?id=AItOawlUmrSFcLMuk2ny0QNlx4BosEuhG0ij0XQ
5027420f57 removed 2014-01-27 19:14:21 +00:00
https://www.google.com/accounts/o8/id?id=AItOawlUmrSFcLMuk2ny0QNlx4BosEuhG0ij0XQ
716fc72996 Added a comment: Same thing using the assistant? 2014-01-27 16:44:22 +00:00
Joey Hess
53ed600da8 update 2014-01-24 01:05:01 -04:00
Joey Hess
7cccd8babd tip 2014-01-24 00:50:07 -04:00
Joey Hess
d66535f065 global numcopies setting
* numcopies: New command, sets global numcopies value that is seen by all
  clones of a repository.
* The annex.numcopies git config setting is deprecated. Once the numcopies
  command is used to set the global number of copies, any annex.numcopies
  git configs will be ignored.
* assistant: Make the prefs page set the global numcopies.

This global numcopies setting is needed to let preferred content
expressions operate on numcopies.

It's also convenient, because typically if you want git-annex to preserve N
copies of files in a repo, you want it to do that no matter which repo it's
running in. Making it global avoids needing to warn the user about gotchas
involving inconsistent annex.numcopies settings.
(See changes to doc/numcopies.mdwn.)

Added a new variety of git-annex branch log file, that holds only 1 value.
Will probably be useful for other stuff later.

This commit was sponsored by Nicolas Pouillard.
2014-01-20 16:47:56 -04:00
https://www.google.com/accounts/o8/id?id=AItOawnRRUUZo3W7pAoRoST8P_l0PtUBhvYuzDg
272a661f54 Added a comment: web storage 2014-01-17 22:59:28 +00:00
https://www.google.com/accounts/o8/id?id=AItOawll4Kgp7nMuOKdB0FfbcYZ3KRq7HCS0Slc
029fb5bfc8 Added a comment: Using Gitolite 3.2 2014-01-17 20:14:16 +00:00
Joey Hess
ed6f5f5c7e move a non-tip to the forum 2014-01-13 15:25:00 -04:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
6ca2dbb9c1 2014-01-11 13:25:48 +00:00
Kyle Meyer
3ca4580b2e Add magit-annex to emacs integration tips 2014-01-10 18:38:57 -05:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
e617ae2211 2014-01-10 14:35:18 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
bed4d17748 2014-01-10 14:34:55 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
db0c847522 2014-01-10 14:34:11 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
063aed263a 2014-01-10 14:33:59 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
aad689a4bd 2014-01-10 14:33:41 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
401139ff31 2014-01-10 14:33:30 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
34b6082912 2014-01-10 14:33:01 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
e916571a37 2014-01-10 14:32:34 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
3998bec7c8 2014-01-10 14:32:10 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
fe703f4e82 2014-01-10 14:31:37 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
786f526a8f 2014-01-10 14:31:08 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
f414c54ea8 2014-01-10 14:30:37 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
bbd3dea531 2014-01-10 14:29:55 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkWQXo7MLYIDa-ep04UTbdz8KuvfjwLDCQ
cb820cb80d 2014-01-08 22:06:17 +00:00
http://joeyh.name/
02999125d0 Added a comment 2014-01-03 21:19:39 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmWBvsZvSsAL8P2ye3F0OBStjFCVnOImzM
0877c4287c Added a comment: Why fsck? 2014-01-02 22:09:05 +00:00
Joey Hess
b73b1e45d2 add newlines between dummy numbered items 2014-01-02 13:29:32 -04:00
Joey Hess
88eacbb92a Revert "fix markdown" (markdown is crap)
This reverts commit 84a01721e7.
2014-01-02 13:29:04 -04:00
Joey Hess
84a01721e7 fix markdown 2014-01-02 13:28:10 -04:00
Joey Hess
26f098f2ed fix link 2014-01-02 13:27:20 -04:00
Greg Grossmeier
05514bc5d9 redo numbering the lazy way until and unless there's a better way in mdwn 2014-01-02 09:20:04 -08:00
Greg Grossmeier
4cd6788866 Added tip on installing on a Synology NAS 2014-01-01 22:41:07 -08:00
http://joeyh.name/
27f76acaf7 Added a comment 2013-12-31 19:26:55 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnXlmnJKsPulm2S_hwwRm3Ky27Zyf-wKMw
94cf5dcce0 Added a comment: Pulling *.flac files as well... too much data 2013-12-31 19:26:36 +00:00
sameerds
4812347237 Added a comment: a shell script that handles spaces in file names 2013-12-31 10:24:17 +00:00
Joey Hess
f28efa5833 link 2013-12-30 13:54:47 -04:00
Joey Hess
4a36d569c3 tell how to find youtube playlist feeds 2013-12-30 13:35:33 -04:00
http://jspk.clavid.com/
57344c9781 Added a comment: gcrypted repository structure 2013-12-30 12:07:50 +00:00
Joey Hess
8befeaffa0 update 2013-12-29 16:21:20 -04:00
Joey Hess
81f498559a importfeed: Support youtube playlists. 2013-12-29 15:52:20 -04:00
gernot
afb776f6c5 Fix a git command 2013-12-23 03:11:52 +00:00
Joey Hess
42d26e6965 typo 2013-12-20 10:38:17 -04:00
https://www.google.com/accounts/o8/id?id=AItOawm9IQStaE1el95_9s77CgmJhxZwCwUeN9A
0d03aa27db Added a comment: You can also use it for LIVE display now 2013-12-19 14:29:19 +00:00
Richard Hartmann
b11d88dd17 doc/: s/amoung/among/gi
Qouth ye olde [Wiktionary](http://en.wiktionary.org/wiki/amoung)

Archaic spelling of among.
2013-12-18 22:09:18 +01:00
https://www.google.com/accounts/o8/id?id=AItOawlVE8SthKoKKW--nFZW3_T6YXrdxNQPUe8
6be4a204bb update davfs2 method with new box.com dav url 2013-12-18 20:23:44 +00:00
https://www.google.com/accounts/o8/id?id=AItOawlmvi8Z-rUen8xIety5uiJitI5rnMrz8Jk
7bf42404b4 Added a comment: updated url for drive mount 2013-12-18 20:20:22 +00:00
http://joeyh.name/
385780b8c7 Added a comment 2013-12-17 16:11:52 +00:00
https://openid.stackexchange.com/user/e65e6d0e-58ba-41de-84cc-1f2ba54cf574
36696cee39 Added a comment: forget command 2013-12-17 05:52:54 +00:00
http://joeyh.name/
1291c10818 Added a comment 2013-12-16 17:04:56 +00:00
https://openid.stackexchange.com/user/e65e6d0e-58ba-41de-84cc-1f2ba54cf574
3a903ea563 2013-12-16 06:06:46 +00:00
https://openid.stackexchange.com/user/e65e6d0e-58ba-41de-84cc-1f2ba54cf574
0cc203047a Added a comment: Update? 2013-12-16 00:31:28 +00:00
http://joeyh.name/
aaa7d69c32 Added a comment 2013-12-12 19:58:53 +00:00
http://joeyh.name/
e2969cce2c Added a comment 2013-12-12 19:27:23 +00:00
Joey Hess
e3fa0ebd03 update for direct mode guard 2013-12-12 14:08:37 -04:00
http://joeyh.name/
2c3c888a58 Added a comment 2013-12-12 17:35:28 +00:00
https://www.google.com/accounts/o8/id?id=AItOawlY4LE-xEyztjJeXSot7JIGGFWgBfabgwc
6a7761e286 Added a comment: GPG Key specification 2013-12-09 13:32:52 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmLdL4zLty4fsfaIXNtPMS5RXs4y8OAk0o
5ce8128bf9 Added a comment 2013-12-08 20:41:45 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmLdL4zLty4fsfaIXNtPMS5RXs4y8OAk0o
33913a3bbd Added a comment: Disappearing files 2013-12-08 12:16:37 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnZEanlyzay_QlEAL0CWpyZcRTyN7vay8U
649ffe6ef5 Tech fix 2013-11-30 15:04:35 +00:00
https://www.google.com/accounts/o8/id?id=AItOawlVE8SthKoKKW--nFZW3_T6YXrdxNQPUe8
505097bab7 https://support.box.com/hc/communities/public/questions/200261028-Does-Box-support-FTP-or-WebDAV- 2013-11-28 16:52:58 +00:00
TroisSinges
39abdaedb1 typo with tabs 2013-11-28 07:26:46 +00:00
TroisSinges
f935390e10 git rm doesn't work, we better have to reset. No git commit is necessary, then. 2013-11-28 07:25:31 +00:00
Richard Hartmann
be43bb8f70 doc: perl -p -i -e s/certianly/certainly/ 2013-11-25 21:40:19 +01:00
https://www.google.com/accounts/o8/id?id=AItOawm9tgeFE5v-arAYYftSv3yUTI5Q4qB2C9M
847e39761c Added a comment 2013-11-23 02:14:12 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnZEanlyzay_QlEAL0CWpyZcRTyN7vay8U
234939c7c4 2013-11-21 15:33:35 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnZEanlyzay_QlEAL0CWpyZcRTyN7vay8U
28f0bb00c6 2013-11-21 13:21:03 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnZEanlyzay_QlEAL0CWpyZcRTyN7vay8U
73e42d5e65 2013-11-21 12:37:48 +00:00
Joey Hess
4dbc1ac6c3 revert spam 2013-11-20 00:47:03 -04:00