Skip to content

Commit

Permalink
automatic commit at releng box
Browse files Browse the repository at this point in the history
  • Loading branch information
mc36 committed Feb 4, 2023
1 parent 4f18193 commit 4d5c20e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/net/freertr/user/userExec.java
Original file line number Diff line number Diff line change
Expand Up @@ -928,6 +928,7 @@ public static void getHelpPipes(userHelping hl, int beg, boolean privi) {
hl.add(null, (beg + 1) + " . level raw level hierarchy");
hl.add(null, (beg + 1) + " . csv level hierarchy in csv");
hl.add(null, (beg + 1) + " . html level hierarchy in html");
hl.add(null, (beg + 1) + " . xml level hierarchy in xml");
hl.add(null, (beg + 1) + " . setdel level hierarchy in set/delete");
hl.add(null, (beg + 1) + " . summary just the summary of columns");
hl.add(null, (beg + 1) + " . linenumbers prepend lines with numbers");
Expand Down
14 changes: 14 additions & 0 deletions src/net/freertr/user/userReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import net.freertr.enc.encXml;
import net.freertr.pipe.pipeSetting;
import net.freertr.pipe.pipeSide;
import net.freertr.tab.tabGen;
Expand Down Expand Up @@ -152,6 +153,10 @@ private enum mode {
* htmlized
*/
html,
/**
* xmlized
*/
xml,
/**
* prepend line numbers
*/
Expand Down Expand Up @@ -761,6 +766,11 @@ public List<String> doFilterList(List<String> lst) {
case html:
lst = userFilter.sectionDump(userFilter.text2section(lst), userFormat.tableMode.html);
return doSecond(lst);
case xml:
encXml xml = new encXml();
userFilter.section2xml(xml, "/config", userFilter.text2section(lst));
lst = xml.toXMLlst();
return doSecond(lst);
case linenum:
lst = bits.lst2lin(lst, true);
return doSecond(lst);
Expand Down Expand Up @@ -1581,6 +1591,10 @@ public cmds setFilter(cmds cmd) {
filterM = mode.html;
return cmd;
}
if (a.equals("xml")) {
filterM = mode.xml;
return cmd;
}
if (a.equals("setdel")) {
filterM = mode.setdel;
return cmd;
Expand Down
2 changes: 1 addition & 1 deletion src/rtr.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
url;file;result;test
-;-;-;freeRouter v23.2.4-cur, done by cs@nop.
-;-;-;2023-02-04 08:14:47, took 00:09:37, with 80 workers, on 3102 cases, 0 failed, 0 traces, 1 retries
-;-;-;2023-02-04 08:44:49, took 00:09:00, with 80 workers, on 3102 cases, 0 failed, 0 traces, 1 retries
-;-;-;./rtr.bin
http://sources.freertr.org/cfg/basic01.tst;basic01.tst;success;dummy test
http://sources.freertr.org/cfg/basic02.tst;basic02.tst;success;interface with slot
Expand Down
2 changes: 1 addition & 1 deletion src/rtr.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</style>
<title>tester</title></head><body>
release: freeRouter v23.2.4-cur, done by cs@nop.<br/>
tested: 2023-02-04 08:14:47, took 00:09:37, with 80 workers, on 3102 cases, 0 failed, 0 traces, 1 retries<br/>
tested: 2023-02-04 08:44:49, took 00:09:00, with 80 workers, on 3102 cases, 0 failed, 0 traces, 1 retries<br/>
jvm: ./rtr.bin<br/>
<br/>
<table><thead><tr><td><b>file</b></td><td><b>result</b></td><td><b>test</b></td></tr></thead><tbody>
Expand Down

0 comments on commit 4d5c20e

Please sign in to comment.