From: Jakub Narebski <jnareb@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org,
Giuseppe Bilotta <giuseppe.bilotta@gmail.com>,
Mark Rada <marada@uwaterloo.ca>,
Stephen Boyd <bebarino@gmail.com>, Nick Edelen <sirnot@gmail.com>,
Nguyen Thai Ngoc Duy <pclouds@gmail.com>
Subject: Re: What's cooking in git.git (Oct 2009, #04; Wed, 21)
Date: Thu, 22 Oct 2009 01:46:50 -0700 (PDT) [thread overview]
Message-ID: <m3ljj3es02.fsf@localhost.localdomain> (raw)
In-Reply-To: <7veiovly35.fsf@alter.siamese.dyndns.org>
Junio C Hamano <gitster@pobox.com> writes:
> * gb/maint-gitweb-esc-param (2009-10-13) 1 commit.
> (merged to 'next' on 2009-10-14 at 105f997)
> + gitweb: fix esc_param
> (this branch is used by sb/gitweb-link-author.)
Good. Beside fixing excaping of multibyte Unicode characters this
also finally makes gitweb use '+' and not '%20' to encode space ' '
in CGI parameters.
This reminds me that gitweb really should do conversion / marking data
as UTF-8 _on input_, to avoid situations where output is mangled
because of problems with Unicode. That goes to my gitweb's TODO.
> * mr/gitweb-snapshot (2009-09-26) 2 commits.
> - gitweb: append short hash ids to snapshot files
> (merged to 'next' on 2009-10-11 at 22ba047)
> + gitweb: check given hash before trying to create snapshot
>
> I lost track of the discussion around the tip commit. The bottom one may
> better go to 'master' regardless.
The tip commit should be fixed before accepting. There are some
problems with it as it is now:
* $hash parameter is abused to hold version suffix of snapshot
filename (and archive prefix), e.g. 'next-ae4ab03'; it really
should be done using separate variable, and perhaps even separate
subroutine which would generate snapshot name.
* I don't think it works with fully qualified refnames that gitweb
itself generate, e.g. 'refs/heads/next' or 'refs/tags/v1.6.0',
nor with hierarchical branch names such as 'mr/gitweb-snapshot';
snapshot name can't include '/', and prefix shouldn't include '/'
* when new test is running with --debug option, it dumps whole output
of gitweb for 'snapshot' action, which includes *binary data*, and
not only HTTP headers like it should (at least in first version).
> * sb/gitweb-link-author (2009-10-15) 1 commit
> - gitweb: linkify author/committer names with search
>
> Soon in 'next'.
Is this version that uses title attribute to show that this link is
different in that it leads to search results, not an action view?
> * jn/gitweb-blame (2009-09-01) 5 commits.
> - gitweb: Minify gitweb.js if JSMIN is defined
> - gitweb: Create links leading to 'blame_incremental' using JavaScript
> (merged to 'next' on 2009-10-11 at 73c4a83)
> + gitweb: Colorize 'blame_incremental' view during processing
> + gitweb: Incremental blame (using JavaScript)
> + gitweb: Add optional "time to generate page" info in footer
>
> Ajax-y blame. Probably the first three should go to 'master' by now?
The first three makes fairly 'invisible' change, but introduce
possibility of using JavaScript in gitweb. I'd like more testing with
different browsers than mine, but corrections if any can be done
in-tree.
The "Create links" patch is not ready yet.
> * rs/pretty-wrap (2009-10-17) 1 commit
> - Implement wrap format %w() as if it is a mode switch
> (this branch uses js/log-rewrap; is related to jc/strbuf-nested-expand.)
>
> When it comes to design issues to keep unnecessary complexity out, I tend
> to trust Rene (and Nico) a lot more than I trust myself. Tonight's 'pu'
> queues this series instead of my "nested" one.
> * jc/strbuf-nested-expand (2009-10-18) 3 commits
> . Teach --wrap to only indent without wrapping
> . Add %[wrap(width,in1,in2)<<any-string>>%] implementation
> . strbuf_nested_expand(): allow expansion to interrupt in the middle
> (this branch uses js/log-rewrap; is related to rs/pretty-wrap.)
>
> Ejected from 'pu' to let rs/pretty-wrap in as described above.
I think nested expand is easier to use than a mode switch: using
scoping (well, kind of) like in high-level programming languages is
IMVHO easier than programming a state machine like in assembler (or
e.g. OpenGL).
On the other hand this makes pretty format into a mini-language; also
we already have and use mode switches in the form of color codes.
Perhaps if color also used wrapping / nested expand, so one doesn't
have to track where to turn off and on which toggle...
> * jg/log-format-body-indent (2009-09-19) 1 commit.
> . git-log --format: Add %B tag with %B(x) option
...and this was yet another alternate solution (less generic, though)
> * jc/pretty-lf (2009-10-04) 1 commit.
> - Pretty-format: %[+-]x to tweak inter-item newlines
I understand that %a%+b expands to %a%n%b if %b has non-empty
expansion, and to %a if %b is empty, but what %-b is used for?
> * js/log-rewrap (2008-11-10) 2 commits
> - Add strbuf_add_wrapped_text() to utf8.[ch]
> - print_wrapped_text(): allow hard newlines
> (this branch is used by jc/strbuf-nested-expand and rs/pretty-wrap.)
>
> Soon in 'next'; regardless of how wrapping is exposed to --pretty=format,
> this code will be used, and it seems to be leak-free and reasonably done.
>
> We _might_ want to cherry-pick the tip of jc/strbuf-nested-expand to this
> series, though.
> --------------------------------------------------
> [Cooking]
>
> * ne/rev-cache (2009-10-19) 7 commits.
> - support for commit grafts, slight change to general mechanism
> - support for path name caching in rev-cache
> - full integration of rev-cache into git, completed test suite
> - administrative functions for rev-cache, start of integration into git
> - support for non-commit object caching in rev-cache
> - basic revision cache system, no integration or features
> - man page and technical discussion for rev-cache
>
> Still unstable? Has an extra test squashed in; tonight's 'pu' does not
> pass tests.
BTW. I would really prefer if this series was send with cover letter
explaining series and perhaps differences from previous version of
series as a whole (reordering, splitting and joining patches, new
patches etc.), and individual patches in series replies to this cover
letter, without 'Re: ' prefix in subject, and with explanation of the
difference from previous version (if any) in the commentary area.
> * nd/sparse (2009-08-20) 19 commits.
> - sparse checkout: inhibit empty worktree
> - Add tests for sparse checkout
> - read-tree: add --no-sparse-checkout to disable sparse checkout support
> - unpack-trees(): ignore worktree check outside checkout area
> - unpack_trees(): apply $GIT_DIR/info/sparse-checkout to the final index
> - unpack-trees(): "enable" sparse checkout and load $GIT_DIR/info/sparse-checkout
> - unpack-trees.c: generalize verify_* functions
> - unpack-trees(): add CE_WT_REMOVE to remove on worktree alone
> - Introduce "sparse checkout"
> - dir.c: export excluded_1() and add_excludes_from_file_1()
> - excluded_1(): support exclude files in index
> - unpack-trees(): carry skip-worktree bit over in merged_entry()
> - Read .gitignore from index if it is skip-worktree
> - Avoid writing to buffer in add_excludes_from_file_1()
> - Teach Git to respect skip-worktree bit (writing part)
> - Teach Git to respect skip-worktree bit (reading part)
> - Introduce "skip-worktree" bit in index, teach Git to get/set this bit
> - Add test-index-version
> - update-index: refactor mark_valid() in preparation for new options
Hmmm... what is happening with that series?
--
Jakub Narebski
Poland
ShadeHawk on #git
next prev parent reply other threads:[~2009-10-22 8:47 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-22 6:52 What's cooking in git.git (Oct 2009, #04; Wed, 21) Junio C Hamano
2009-10-22 8:34 ` ks/precompute-completion (was Re: What's cooking in git.git (Oct 2009, #04; Wed, 21)) Stephen Boyd
2009-10-22 17:11 ` Sverre Rabbelier
2009-10-22 18:56 ` Stephen Boyd
2009-10-22 22:20 ` A Large Angry SCM
[not found] ` <fabb9a1e0910221555k287b45ebwb15ac97851b845f9@mail.gmail.com>
[not found] ` <fabb9a1e0910221556s694a344ag8e5ae07c35351ee4@mail.gmail.com>
2009-10-22 23:05 ` A Large Angry SCM
2009-10-23 18:27 ` Sverre Rabbelier
2009-10-23 18:59 ` ks/precompute-completion Junio C Hamano
2009-10-23 19:16 ` ks/precompute-completion Sverre Rabbelier
2009-10-23 20:05 ` ks/precompute-completion Junio C Hamano
2009-10-23 20:09 ` ks/precompute-completion Sverre Rabbelier
2009-10-23 20:20 ` ks/precompute-completion Jakub Narebski
2009-10-23 20:22 ` ks/precompute-completion Sverre Rabbelier
2009-10-23 22:29 ` ks/precompute-completion A Large Angry SCM
2009-10-23 22:39 ` ks/precompute-completion Sverre Rabbelier
2009-10-22 23:07 ` ks/precompute-completion (was Re: What's cooking in git.git (Oct 2009, #04; Wed, 21)) Johannes Schindelin
2009-10-22 8:46 ` Jakub Narebski [this message]
2009-10-22 11:15 ` What's cooking in git.git (Oct 2009, #04; Wed, 21) Nguyen Thai Ngoc Duy
2009-10-22 15:31 ` skillzero
2009-10-22 21:42 ` Junio C Hamano
2009-10-22 19:01 ` Stephen Boyd
2009-10-24 6:45 ` Junio C Hamano
2009-10-23 11:25 ` [PATCH] add tests for git diff --submodule Jens Lehmann
2009-10-24 19:25 ` Junio C Hamano
2009-10-25 16:02 ` What's cooking in git.git (Oct 2009, #04; Wed, 21) Clemens Buchacher
2009-10-26 7:14 ` Junio C Hamano
2009-10-26 8:29 ` Clemens Buchacher
2009-10-26 9:01 ` Stephen Boyd
2009-10-26 10:07 ` Clemens Buchacher
2009-10-27 18:27 ` vl/git-gui topic Shawn O. Pearce
2009-10-28 7:17 ` Junio C Hamano
2009-10-27 18:37 ` jp/dirty-describe topic Shawn O. Pearce
2009-10-28 14:47 ` sp/smart-http topic Shawn O. Pearce
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m3ljj3es02.fsf@localhost.localdomain \
--to=jnareb@gmail.com \
--cc=bebarino@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=giuseppe.bilotta@gmail.com \
--cc=marada@uwaterloo.ca \
--cc=pclouds@gmail.com \
--cc=sirnot@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).