File: projects.html

package info (click to toggle)
tmuxp 1.55.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,688 kB
  • sloc: python: 8,049; makefile: 202; sh: 14
file content (69 lines) | stat: -rw-r--r-- 2,533 bytes parent folder | download | duplicates (2)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<div class="sidebar-tree projects" id="sidebar-projects">
  <p class="caption" role="heading">
    <span class="caption-text"
      >team git-pull / <a href="https://www.git-pull.com/">Tony Narlock</a></span
    >:
  </p>

  <p class="indented-block">
    <span class="project-name">vcs-python</span>
    <a class="internal" href="https://vcspull.git-pull.com" class="current">vcspull</a>
    (<a class="internal" href="https://libvcs.git-pull.com">libvcs</a>),
    <a class="internal" href="https://g.git-pull.com">g</a>
  </p>
  <p class="indented-block">
    <span class="project-name">tmux-python</span>
    <a class="internal" href="https://tmuxp.git-pull.com" class="current">tmuxp</a>
    (<a class="internal" href="https://libtmux.git-pull.com">libtmux</a>)
  </p>

  <p class="indented-block">
    <span class="project-name">cihai</span>
    <span class="indent">
      <a class="internal" href="https://unihan-etl.git-pull.com" class="current">unihan-etl</a>
      (<a class="internal" href="https://unihan-db.git-pull.com">db</a>)
    </span>
    <span class="indent">
      <a class="internal" href="https://cihai.git-pull.com" class="current">cihai</a>
      (<a class="internal" href="https://cihai-cli.git-pull.com">cli</a>)
    </span>
  </p>

  <p class="indented-block">
    <span class="project-name">django</span>
    <span class="indent">
      <a class="internal" href="https://django-slugify-processor.git-pull.com" class="current">django-slugify-processor</a>
    </span>
    <span class="indent">
      <a class="internal" href="https://django-docutils.git-pull.com" class="current">django-docutils</a>
    </span>
  </p>

  <p class="indented-block">
    <span class="project-name">docs + tests</span>
    <span class="indent">
      <a class="internal" href="https://gp-libs.git-pull.com" class="current">gp-libs</a>
    </span>
  </p>

  <p class="indented-block">
    <span class="project-name">web</span>
    <span class="indent">
      <a class="internal" href="https://social-embed.git-pull.com" class="current">social-embed</a>
    </span>
  </p>
</div>
<script type="text/javascript">
(() => {
  const sidebar = document.getElementById("sidebar-projects")
  sidebar.querySelectorAll(`a[href*="${window.location.hostname}"]`)
    .forEach((link) => {
      if (!link.classList.contains("active")) {
        const d = document.createElement('span');
        d.innerHTML = link.innerHTML;
        d.classList.add("active");
        link.parentNode.replaceChild(d, link);
      }
    });
})()
</script>