This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Start of custom alert--> | |
~[tlist_sql;select CASE customalert WHEN 1 THEN '<a class="dialogDivC" title="customalert Student" href="#hiddenDivDialog"><img src="/images/alert_customalert.gif"></a>' ELSE '' END from ps.students s join ps.U_customalertDBextension i on s.DCID = i.STUDENTSDCID join ps.cc cc on cc.STUDENTID = s.ID where cc.id = '[ccid]';]~(studentid;)[/tlist_sql] | |
<div id="hiddenDivDialog" class="hide"><div class="studentAlert" id="alert-customalert~(studentfrn)"> | |
<img class="alertImage" src="/images/alert_customalert.gif" /> | |
<div class="alertContent"><p class="alertHeader">customalert Student</p></div></div> | |
<!-- End of custom alert --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr bgcolor="#f6f6f6"> | |
<td colspan="4" class="bold">custom Alert</td> | |
</tr> | |
<tr bgcolor="#edf3fe"> | |
<td class="bold">custom Alert</td> | |
<td><input type="checkbox" name="[Students.U_Info]customalert" value="0"></td></tr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- custom insertion point added by someone on mm/dd/yyyy --> | |
~[cust.insertion_point:custom.studentalerts] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Start of custom alert --> | |
  ~[if.~([Students.U_Info]Alertcustomalert)="1"]<a class="dialogDivC" title="custom alert Student" href="#hiddenDivDialog"><img src="/images/alert_customalertfield.gif"></a> | |
<div id="hiddenDivDialog" class="hide"> | |
<<div class="studentAlert" id="alert-customalert~(studentfrn)"> | |
<img class="alertImage" src="/images/alert_customalert.gif" /> | |
<div class="alertContent"> | |
<p class="alertHeader">~(studentname)</p> | |
<p>~([Students.U_Info]Alertcustomalert;if.fieldvalue.1.then=CustomAlert)<br> <br><a href="/admin/students/misc.html?frn=~(studentfrn)"> Other information</a></p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gci 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' | sort pschildname -des | foreach-object {$_.name; $_.GetValue("Version");} | |
<# credit http://stackoverflow.com/questions/3487265/powershell-script-to-return-versions-of-net-framework-on-a-machine#comment3650817_3491193#> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<configuration> | |
<startup useLegacyV2RuntimeActivationPolicy="true"> | |
<supportedRuntime version="v4.0.30319"/> | |
<supportedRuntime version="v2.0.50727"/> | |
</startup> | |
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doGet() { | |
// you only need to modify the next four lines of this code then publish web app | |
var email = 'email address'; //what you use to login to nest | |
var password = 'password' ////what you use to login to nest | |
var zip = 'zip code'; | |
var sheetid = 'sheet id'; //on your spreadsheet url its everything between /d/ <sheet id> /edit | |
/* to publish web app just: | |
1) Make sure the four variables are set above before you publish | |
2) Click Publish --> Deploy as web app |