Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pllim committed Nov 19, 2024
1 parent a81d776 commit dc9e2e0
Show file tree
Hide file tree
Showing 3 changed files with 1,822 additions and 3 deletions.
15 changes: 12 additions & 3 deletions affiliated/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,14 @@ <h1 id="affiliated-package-list">Affiliated Packages Registry<a class="paralink"
<col width="3%" />
<col/>
</colgroup>
<thead valign="bottom">
<tr class="row-odd">
<th class="head"></th>
<th class="head"></th>
<th class="head"></th>
<th class="head"></th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td rowspan="1">Loading...</td>
<td rowspan="1">&nbsp;</td>
Expand Down Expand Up @@ -411,7 +419,8 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
continue;
}

namerow = tab.insertRow(i*4);
console.log("HERE"+namerow)
namerow = tab.insertRow(i*4 + 1);

nmcell = namerow.insertCell(0);
urlcell = namerow.insertCell(1);
Expand All @@ -425,7 +434,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
repocell.innerHTML = repo_translator(package["repository_link"]);
//pypicell.innerHTML = pypi_translator(package["package_name"]); // FIXME: https://github.com/pyOpenSci/pyopensci.github.io/issues/390

descrow = tab.insertRow(i*4 + 1);
descrow = tab.insertRow(i*4 + 2);
descrow.insertCell(0).innerHTML = "";
desccell = descrow.insertCell(1);
desccell.colSpan = "3";
Expand All @@ -440,7 +449,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
}
}

maintrow = tab.insertRow(i*4 + 2);
maintrow = tab.insertRow(i*4 + 3);
maintrow.insertCell(0).innerHTML = "";
maintcell = maintrow.insertCell(1);
maintcell.colSpan = "3";
Expand Down
Loading

0 comments on commit dc9e2e0

Please sign in to comment.