Helped GN set up the new TV, and got the condenser mic working for video-conferencing. The TV's own speakers are sufficient, probably, but I've connected the others anyway.
URLs containing "editor" are all being redirected to the HCMC site, even though only the www/editor URLs were supposed to be; that borks our adaptiveDB projects, so I've written to pts to see if we can get it fixed. MS's two projects Bilibin and St Pete were also screwed up, being in a "projects" folder, but in that case, I've just moved the projects up one level to the hcmc/www, and we'll cope with the changed URLs.
Since it's not trivial to get this done, these are the steps:
- Ask NETS to add the domain to the UVic DNS servers, pointing at the root of hcmc.uvic.ca.
- Ask sysadmin to set up the apache virtual host on HCMC's web cluster.
- Test locally.
- Ask the person with the domain record to log into their registrar and set the DNS IPs to UVic's servers.
For the record, this one points at /home1t/thewali/www/
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrunIt should be resolved by running the following in the terminal:
sudo xcode-select --resetAs it's a sudo command you'll need to provide an admin password.
Ports are listed starting at the pillar with the red tape and moving around the room counter clockwise, separated by panel.
Pillar facing window (north)
D107 - patched in
D108 - patched in
D109 - patched in
D110 - patched in
D135 - patched in
D136
Pillar (east side of pillar, west wall of lab)
D76
D77
Wall on right (west)
D75 - patched in
D78
D119
D121
D73
D95
D127
D128
D129
D130 - patched in
D115 - patched in
D116 - patched in
D117
D118
D111 - patched in
D112 - patched in
D113
D114
D131
D132
D133
D134
Back wall (south)
D213 - patched in
D214 - patched in
Left wall (east)
D190
D191
D192
D193
D73 - patched in
D74 - patched in
D188 - patched in
D189 - patched in
Janelle
153 Research
154 Admin unused Research
Judy
47 Research
48 Admin (phone)
Stewart
44 Research
43 Admin (phone)
Martin
55 Research
57 Research
58 Admin (phone)
Pat
233 Research
234 Research
56 Admin (phone)
Greg
59 Research
60 Research
195 Admin (phone)
55 Research
57 Research
58 Admin (phone)
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="all" name="test">
<!-- This is a test file for figuring out how best to
integrate file diffing checks into ant build files. -->
<!-- We need ant-contrib to do foreach. -->
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
<!-- Two filesets to diff. -->
<fileset id="files1" dir="${basedir}/files1" includes="*.txt"/>
<fileset id="files2" dir="${basedir}/files2" includes="*.txt"/>
<target name="diffOneFile">
<propertyregex property="otherFile" input="${inFile}" regexp="files1" replace="files2" global="true"/>
<echo message="diffing ${inFile} against ${otherFile}"/>
<trycatch>
<try>
<fail message="${inFile} is different from ${otherFile}.">
<condition>
<not>
<filesmatch file1="${inFile}" file2="${otherFile}"/>
</not>
</condition>
</fail>
</try>
<catch>
<echo message="ERROR: DIFF FAILURE..."/>
<exec dir="." executable="diff">
<arg line="-u"/>
<arg file="${inFile}"/>
<arg file="${otherFile}"/>
</exec>
<fail message="Build failed because of differences between ${inFile} and ${otherFile}. See diff output above."/>
</catch>
</trycatch>
</target>
<target name="diffFileSets">
<foreach target="diffOneFile" param="inFile">
<path>
<fileset refid="files1"/>
</path>
</foreach>
</target>
<target name="all">
<antcall target="diffFileSets"/>
</target>
</project>
At HC's request, created a TEIC org and a jenkins repo on hub.docker.com, and pushed the image up there. I first had to do a clean build after deleting every docker image that could be found on the system (docker rmi -f tei-jenkins && docker rmi $(docker images -a -q)), then I built (docker build -t teic:jenkins .) and tagged the build (docker tag 61c5096c86b2 teic/jenkins) then pushed it (docker push teic/jenkins). Took a while to figure out how to do that, so I'm documenting here. I think pushing an image only works when it's tagged with exactly the right org/repo tag.
Spent much of the day working on this bug, which although it afflicts our TEI plugin, actually seems to be caused as far as I can see by a Saxon bug; but there's something about running Saxon in the Oxygen context which makes it happen, while running exactly the same transformation command outside of Oxygen does not fail. No solution yet; we've rolled back the plugin release for the moment.