Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
hrw committed Oct 14, 2024
0 parents commit eeffc4e
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) Marcin Juszkiewicz

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Set of common HTML template parts for my tables.
23 changes: 23 additions & 0 deletions author-tables-help.inc.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<h2>Author info</h2>
<p>
Table is maintained by <a href="https://marcin.juszkiewicz.com.pl/">Marcin Juszkiewicz</a> &mdash; AArch64/Arm developer working at Red Hat as Linaro assignee.
</p>

<h2>My table pages</h2>
<ul>
<li><a href="https://gpages.juszkiewicz.com.pl/arm-socs-table/arm-socs.html">AArch64 SoC features table</a></li>
<li><a href="https://gpages.juszkiewicz.com.pl/arm-socs-table/arm-cpu-cores.html">AArch64 cpu cores information</a></li>
<li><a href="https://gpages.juszkiewicz.com.pl/syscalls-table/syscalls.html">Linux kernel system calls for all architectures</a></li>
<li><a href="https://gpages.juszkiewicz.com.pl/sbsa-ref-status/bsa-sbsa.html">Arm BSA/SBSA checklist</a></li>
</ul>

<h2>How to help</h2>
<p>
Sources used to generate table are available in <a
href="https://github.com/hrw/arm-socs-table">git repository at github</a>.
Patches are always welcomed.
</p>

<h2>Build info</h2>
<p>Table generated on <strong>{{ generate_time }} UTC</strong>.</p>

53 changes: 53 additions & 0 deletions css.inc.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<style type="text/css">
table {
border: 1px solid #000;
}
table th {
text-align: center;
padding: 0.5em;
line-height: 2em;
color: white;
}
table thead {
border: 1px solid black;
background-color: grey;
}
table.dataTable thead th {
text-align: center
}
table td {
padding: 0.5em;
}
table.dataTable.stripe>tbody>tr:nth-child(odd)>*,table.dataTable.display>tbody>tr:nth-child(odd)>* {
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.20);
}
table td.category_title {
font-weight: bold;
font-size: 120%;
}
table td.title {
font-weight: bold;
}
table td.mark {
text-align: center;
font-weight: bold;
}
.legacy, #infotable tbody tr.odd td.legacy {
background-color: lightpink;
}
/* FixedColumns forces white here */
table.dataTable thead tr > .dtfc-fixed-start {
background-color: grey !important;
}
</style>
20 changes: 20 additions & 0 deletions datatables-js-css.inc.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- DataTables 2 + Buttons + ColumnVisibility + ColumnReorder + FixedColumns + FixedHeaders + Mark -->

<link href="https://cdn.datatables.net/2.1.8/css/dataTables.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/buttons/3.1.2/css/buttons.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/colreorder/2.0.4/css/colReorder.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/fixedcolumns/5.0.3/css/fixedColumns.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/fixedheader/4.0.1/css/fixedHeader.dataTables.min.css" rel="stylesheet">

<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="https://cdn.datatables.net/2.1.8/js/dataTables.min.js"></script>
<script src="https://cdn.datatables.net/buttons/3.1.2/js/dataTables.buttons.min.js"></script>
<script src="https://cdn.datatables.net/buttons/3.1.2/js/buttons.colVis.min.js"></script>
<script src="https://cdn.datatables.net/colreorder/2.0.4/js/dataTables.colReorder.min.js"></script>
<script src="https://cdn.datatables.net/fixedcolumns/5.0.3/js/dataTables.fixedColumns.min.js"></script>
<script src="https://cdn.datatables.net/fixedheader/4.0.1/js/dataTables.fixedHeader.min.js"></script>

<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/plug-ins/1.10.13/features/mark.js/datatables.mark.min.css"/>
<script type="text/javascript" src="https://cdn.jsdelivr.net/g/mark.js(jquery.mark.min.js)"></script>
<script type="text/javascript" src="https://cdn.datatables.net/plug-ins/1.12.1/features/mark.js/datatables.mark.js"></script>

0 comments on commit eeffc4e

Please sign in to comment.