summaryrefslogtreecommitdiffstatshomepage
Commit message (Expand)AuthorAge
...
| * CGIT 0.8.3.3v0.8.3.3Lars Hjemli2010-08-03
| * ui-refs.c: avoid segfault on unparsed ref objectsLars Hjemlipre { line-height: 125%; } td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef CMD_H
#define CMD_H

typedef void (*cgit_cmd_fn)(struct cgit_context *ctx);

struct cgit_cmd {
	const char *name;
	cgit_cmd_fn fn;
	unsigned int want_repo:1,
		want_layout:1;
};

extern struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx);

#endif /* CMD_H */
06-22 16:15:48 +0200'>2010-06-22 |\| | | | | |/ / / |/| | | | * | | ui-shared.c: path-limit style nitpickLars Hjemli2010-06-19 | * | | ui-log: Preserve path limit in outgoing linksJohan Herland2010-06-19 | * | | ui-shared: Preserve path limit in "tab bar" linksJohan Herland2010-06-19 | * | | ui-commit: Preserve path limit in links to commit pageJohan Herland2010-06-19 | * | | ui-commit: Preserve path limit in links to tree and diff pagesJohan Herland2010-06-19 | * | | ui-patch: Apply path limit to generated patchJohan Herland2010-06-19 | * | | ui-commit: Limit diff based on path limit in qry.pathJohan Herland2010-06-19 | * | | ui-diff: Teach diffstat to obey path limitJohan Herland2010-06-19 | * | | ui-tree: Remove unnecessary path breadcrumb navigationJohan Herland2010-06-19 | * | | ui-shared: Teach "breadcrumb" navigation to path limit display beneath tab barJohan Herland2010-06-19 | * | | ui-shared: Display path limit directly beneath tab bar in relevant pagesJohan Herland2010-06-19 | * | | ui-shared: Replace ctx.qry.path with ctx.qry.vpathJohan Herland2010-06-19 | * | | struct cgit_cmd: Differentiate between various usages of ctx.qry.pathJohan Herland2010-06-19 | * | | ui-shared: Remove needless cgit_get_cmd() call, and refactor hc() accordinglyJohan Herland2010-06-19 | * | | ui-shared: Improve const-ness in APIJohan Herland2010-06-19 | * | | Remove unused variable in shared.cJohan Herland2010-06-19 | * | | Fix small typo in cgitrc exampleJohan Herland2010-06-19 | | |/ | |/| * | | Fix style of commit-filter links in commit-subject.Johan Herland2010-06-19 * | | Merge branch 'stable'Lars Hjemli2010-06-19 |\ \ \ | | |/ | |/| | * | CGIT 0.8.3.2v0.8.3.2Lars Hjemli2010-06-19 * | | Merge branch 'ag/atom-fixes'Lars Hjemli2010-06-19 |\ \ \ | * | | Add 'max-atom-items' config variableAaron Griffin2010-03-22 | * | | Add all=1 query param for atom feedsAaron Griffin2010-03-22 | | |/ | |/| * | | Merge branch 'lh/noweb'Lars Hjemli2010-06-19 |\ \ \ | * | | scan-tree: add test for noweb-file in repo dirLars Hjemli2010-02-28 * | | | Merge branch 'ml/plain-improvements-part1'Lars Hjemli2010-06-19 |\ \ \ \ | * | | | ui-plain: print directory listingsMark Lodato2010-01-31 | * | | | ui-plain: more efficient walk_tree()Mark Lodato2010-01-31 | * | | | ui-plain: remove unused curr_rev variableMark Lodato2010-01-30 * | | | | Merge branch 'sn/subject-link'Lars Hjemli2010-06-19 |\ \ \ \ \ | * | | | | Optionally generate verbose parent linksLars Hjemli2010-02-27 | * | | | | display subject instead of sha1 as link title of parentsStefan Naewe2010-02-27 * | | | | | Merge branch 'stable'Lars Hjemli2010-04-08 |\ \ \ \ \ \ | |_|_|_|/ / |/| | | | / | | |_|_|/ | |/| | |