Quote from IRobotSoft Administrator on 07/09/16 at 06:15:27:Not quite understand your problem for the first curr link. There is no href link in the html anyway. You can add an "After each tuple" event to the Table action, and with condition: CurrLink is null, assign it the value of TargetUrl.
The "prev" and "cur" links send the user to a new page showing a old/new content diff between two versions of the article page.
Prev shows the diff between the selected line (version of the page) and the previous version of the page (the next line in the list).
Cur shows the difference between the selected line and the
current version of the page.
On History Pages the first item in the list
IS the current version of the page, thus it is moot to have a "cur" link on that line.
Wikipedia decided to keep the text "(cur | prev)" even though there is no HREF link for cur. Actually the Wikimedia software just
suppresses the anchor tag during the page generation and leaves the text content the same.
First item in list: Code:<span class="mw-history-histlinks">
(cur |
<a title="" href="/w/index.php?title=English_language&diff=727784939&oldid=727742573">prev</a>
)
</span>
Second item in list: Code:<span class="mw-history-histlinks">
(
<a title="English language" href="/w/index.php?title=English_language&diff=727784939&oldid=727742573">cur</a>
|
<a title="English language" href="/w/index.php?title=English_language&diff=727742573&oldid=727639069">prev</a>
)
</span>
This means that the CurrLink field
should be null/empty/blank for the first item. That much is correct, but IRobotSoft apparently
skips the entire list item when it cannot find an anchor tag for that one field.
All other fields are then showing as "(null)" according to the in-program test run interface and the resulting CSV file
starts on the second list item with a Tuple variable value of "1" even though it is technically the 2nd tuple processed.
The desired output would be that the first list item have all fields filled exactly like the others list items do but the CurrLink field would just be a blank (x'20').