Overview
Comment: | Update the package uploader client tool to expose the server ID. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1720eb4c52661ce7f14d366a712b0bd0 |
User & Date: | mistachkin on 2016-12-28 01:17:51 |
Other Links: | manifest | tags |
References
2016-12-28
| ||
01:29 | Fix broken Eagle widget numbering from check-in [1720eb4c52661ce7]. check-in: 3b7faf08dc user: mistachkin tags: trunk | |
Context
2016-12-28
| ||
01:19 | Fix a typo from the previous check-in. check-in: 6003a33192 user: mistachkin tags: trunk | |
01:17 | Update the package uploader client tool to expose the server ID. check-in: 1720eb4c52 user: mistachkin tags: trunk | |
00:49 | Make handling of private server IDs more consistent. check-in: f181118f24 user: mistachkin tags: trunk | |
Changes
Modified client/1.0/neutral/pkgr_upload.eagle from [90922fdcb5] to [4468dcb1b1].
︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - + | # emit the command line usage information. # proc usage { {error ""} } { if {[string length $error] > 0} then {puts stdout $error} puts stdout "usage:\ [file tail [info nameofexecutable]]\ |
︙ |
Modified client/1.0/neutral/pkgr_upload.eagle.asc from [68a93dfe02] to [69f7afba7e].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |
Modified client/1.0/neutral/pkgr_upload.eagle.harpy from [abf7b5234c] to [3d1117266c].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | THE ASSOCIATED SOFTWARE MAY NOT WORK PROPERLY IF THIS FILE IS ALTERED. --> <Certificate xmlns="https://eagle.to/2011/harpy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Protocol>None</Protocol> <Vendor>Mistachkin Systems</Vendor> |
Modified client/1.0/neutral/pkgr_upload.eagle.harpy.asc from [15722dd634] to [a23929460e].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |
Modified client/1.0/neutral/pkgu.eagle from [0ff42c1d8c] to [df7593b1a7].
︙ | |||
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 | 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 | + + + + | # NOTE: This procedure initializes the array containing data derived from # the command line arguments, if any. The argv argument should be # the list of command line arguments. # # <internal> proc setupArgumentData { argv } { variable argumentData if {![info exists argumentData(serverId)]} then { set argumentData(serverId) "" } if {![info exists argumentData(apiKey)]} then { set argumentData(apiKey) "" } if {![info exists argumentData(package)]} then { set argumentData(package) "" |
︙ | |||
1078 1079 1080 1081 1082 1083 1084 | 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 | - + - + - + - + - + - + + + + + - + + + + + + + + + + + + + | } if {![info exists argumentData(fileNames)]} then { set argumentData(fileNames) [list] } if {[llength $argv] >= 1} then { |
︙ | |||
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 | 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 | + | if {[isEagle]} then { set sender [lindex $args 1]; # NOTE: Disposal. set e [lindex $args 2]; # NOTE: Disposal. } if {[haveArgumentData]} then { set serverId $argumentData(serverId) set apiKey $argumentData(apiKey) set package $argumentData(package) set patchLevel $argumentData(patchLevel) set language $argumentData(language) set version $argumentData(version) set platform $argumentData(platform) set fileNames $argumentData(fileNames) |
︙ | |||
1294 1295 1296 1297 1298 1299 1300 | 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 | - - + + | $platform eq [::PackageDownloader::getPlatform]} then { set scriptPlatform "" } else { set scriptPlatform $platform } set script [createRepositoryScript \ |
︙ | |||
1365 1366 1367 1368 1369 1370 1371 | 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 | - + + + | $widgets(2) Text "" $widgets(4) Text "" $widgets(6) Text "" $widgets(8) Text "" $widgets(10) Text "" $widgets(12) Text "" |
︙ | |||
1407 1408 1409 1410 1411 1412 1413 | 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 | - - + + - - + + + + + + + + + + + + + + + + + + + | $form MaximizeBox false $form AutoSize true $form add_Closed [namespace code [list handleFormClosedEvent]] ########################################################################### set widgets(1) [object create -alias Label] |
︙ | |||
1590 1591 1592 1593 1594 1595 1596 1597 | 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 | + + + + + + + + + + + - + | wm minsize $toplevel 250 0 wm protocol $toplevel WM_DELETE_WINDOW \ [namespace code [list handleFormClosedEvent]] ########################################################################### set widgets(label,serverId) [label [appendArgs \ $toplevel .la_serverId] -text "Server ID (normally blank)"] ########################################################################### set widgets(entry,serverId) [entry [appendArgs \ $toplevel .e_serverId] -textvariable [appendArgs \ [namespace current] ::argumentData(serverId)]] ########################################################################### set widgets(label,apiKey) [label [appendArgs \ |
︙ | |||
1683 1684 1685 1686 1687 1688 1689 | 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 | + - + | set widgets(button,clear) [button \ [appendArgs $toplevel .b_clear] -text Clear -command \ [namespace code [list clearEventHandler]]] ########################################################################### pack $widgets(label,serverId) $widgets(entry,serverId) \ |
︙ |
Modified client/1.0/neutral/pkgu.eagle.asc from [eea5b6272a] to [9502643d8e].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |
Modified client/1.0/neutral/pkgu.eagle.harpy from [0f50c0dc2b] to [d0511f7893].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | THE ASSOCIATED SOFTWARE MAY NOT WORK PROPERLY IF THIS FILE IS ALTERED. --> <Certificate xmlns="https://eagle.to/2011/harpy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Protocol>None</Protocol> <Vendor>Mistachkin Systems</Vendor> |
Modified client/1.0/neutral/pkgu.eagle.harpy.asc from [568f51696e] to [45103e5850].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |