summaryrefslogtreecommitdiff
path: root/templates/pages/developer/coding.html
blob: 594abbf4b550d89f9f64456c486107dc9612af4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{%extends "base/page.html"%}
{%block title%}Coding{%endblock%}
{%block contents%}

<h1>Coding <i class="fa fa-code"></i></h1>

<p>The following links are useful when exploring the PostgreSQL source code.</p>

<h2>Code access and information</h2>
<ul>
    <li><a href="https://git.postgresql.org/gitweb?p=postgresql.git">Web interface to the Source Code Repository</a></li>
    <li><a href="/docs/current/git.html">Information about the Source Code Repository</a></li>
    <li><a href="https://doxygen.postgresql.org/">Source Code Browser</a> (Doxygen)</li>
    <li><a href="/developer/backend/">Backend Flowchart</a></li>
    <li><a href="https://babel.postgresql.org/">Translating</a></li>
    <li><a href="https://wiki.postgresql.org/wiki/Developer_and_Contributor_Resources">Developer Section on wiki.postgresql.org</a></li>
</ul>

<h2>Search Code By Git Commit Hash</h2>
<div class="row">
  <div class="col-6">
  <form action="https://git.postgresql.org/gitweb" method="get">
    <input type="hidden" name="p" value="postgresql.git" />
    <input type="hidden" name="a" value="commitdiff" />
    <div class="input-group">
      <input class="form-control" type="text" name="h" type="text" size="40" placeholder="e.g. &quot;861861edcc04a6e3ebdfe363311f122e2b226196&quot;">
      <span class="input-group-btn">
        <button class="btn btn-default" type="submit"><i class="fas fa-search"></i></button>
      </span>
    </div><!-- /input-group -->
  </form>
</div>
</div>
<h2>Documentation</h2>
<ul>
    <li><a href="https://wiki.postgresql.org/wiki/Developer_FAQ">Frequently Asked Questions for Developers</a></li>
</ul>

{%endblock%}