Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Dec 24, 2020. It is now read-only.
/pcjs.v1Public archive

Commita869762

Browse files
committed
Updated copyright in XSL templates
1 parentc621842 commita869762

34 files changed

+595
-595
lines changed

‎modules/pcx86/lib/chipset.js‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2673,7 +2673,7 @@ class ChipSet extends Component {
26732673
}else{
26742674
if(DEBUG){
26752675
this.printf(Messages.PIC+Messages.WARN+Messages.ADDRESS,"outPIC%d(%#04X): unexpected EOI for IRQ %d\n",iPIC,pic.port,nIRQ);
2676-
if(MAXDEBUG)this.dbg.stopCPU();
2676+
if(MAXDEBUG&&this.dbg)this.dbg.stopCPU();
26772677
}
26782678
}
26792679
/*
@@ -4264,8 +4264,8 @@ class ChipSet extends Component {
42644264

42654265
default:
42664266
if(!COMPILED){
4267-
this.printf(Messages.C8042,"unrecognized 8042 command: %#04X\n",this.b8042InBuff);
4268-
this.dbg.stopCPU();
4267+
this.printf(Messages.ALL,"unrecognized 8042 command: %#04X\n",this.b8042InBuff);
4268+
if(this.dbg)this.dbg.stopCPU();
42694269
}
42704270
break;
42714271
}
@@ -4359,8 +4359,8 @@ class ChipSet extends Component {
43594359
* determine if that's what the caller intended.
43604360
*/
43614361
if(!COMPILED){
4362-
this.printf(Messages.C8042,"unexpected 8042 output port reset: %#04X\n",b);
4363-
this.dbg.stopCPU();
4362+
this.printf(Messages.ALL,"unexpected 8042 output port reset: %#04X\n",b);
4363+
if(this.dbg)this.dbg.stopCPU();
43644364
}
43654365
this.cpu.resetRegs();
43664366
}

‎modules/shared/templates/common.xsl‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<divclass="common-bottom">
5050
<pclass="common-reference"></p>
5151
<pclass="common-copyright">
52-
<spanclass="common-copyright"><ahref="https://www.pcjs.org/">pcjs.org</a> © 2012-2019 by <ahref="https://jeffpar.com">@jeffpar</a></span><br/>
52+
<spanclass="common-copyright"><ahref="https://www.pcjs.org/">pcjs.org</a> © 2012-2020 by <ahref="https://jeffpar.com">@jeffpar</a></span><br/>
5353
<spanclass="common-copyright">The <ahref="https://github.com/jeffpar/pcjs">PCjs Project</a> is released under <ahref="https://gnu.org/licenses/gpl.html">GPLv3</a></span><br/>
5454
<span>Powered by <ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a>, <ahref="http://vanilla-js.com/"target="_blank">Vanilla JS</a>, and <ahref="https://github.com/jeffpar"target="_blank">GitHub</a></span>
5555
</p>

‎modules/shared/templates/components.xsl‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@
264264
</xsl:choose>
265265
<xsl:iftest="$APPCLASS = 'pcx86'"><divclass="{$CSSCLASS}-reference"style="padding-left:8px">[<ahref="#"onclick="savePC('{$machine}'); return false;">Save Machine</a>]</div></xsl:if>
266266
<divclass="{$CSSCLASS}-copyright">
267-
<ahref="{$SITEURL}"target="_blank"><xsl:value-ofselect="$APPNAME"/></a> v<xsl:value-ofselect="$APPVERSION"/> © 2012-2019 by <ahref="https://jeffpar.com"target="_blank">@jeffpar</a>
267+
<ahref="{$SITEURL}"target="_blank"><xsl:value-ofselect="$APPNAME"/></a> v<xsl:value-ofselect="$APPVERSION"/> © 2012-2020 by <ahref="https://jeffpar.com"target="_blank">@jeffpar</a>
268268
</div>
269269
<divstyle="clear:both"> </div>
270270
</xsl:if>

‎versions/c1pjs/1.75.7/c1p-uncompiled.js‎

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use strict";
22

33
/**
4-
* @copyright https://www.pcjs.org/modules/shared/lib/defines.js (C)Jeff Parsons2012-2019
4+
* @copyright https://www.pcjs.org/modules/shared/lib/defines.js (C) 2012-2019 Jeff Parsons
55
*/
66

77
/**
@@ -11,7 +11,7 @@ var APPVERSION = ""; // this @define is overridden by the Clo
1111

1212
var XMLVERSION = null; // this is set in non-COMPILED builds by embedMachine() if a version number was found in the machine XML
1313

14-
var COPYRIGHT = "Copyright © 2012-2019 Jeff Parsons <Jeff@pcjs.org>";
14+
var COPYRIGHT = "Copyright © 2012-2020 Jeff Parsons <Jeff@pcjs.org>";
1515

1616
var LICENSE = "License: GPL version 3 or later <http://gnu.org/licenses/gpl.html>";
1717

@@ -89,7 +89,7 @@ var RS232 = {
8989

9090

9191
/**
92-
* @copyright https://www.pcjs.org/modules/shared/lib/dumpapi.js (C)Jeff Parsons2012-2019
92+
* @copyright https://www.pcjs.org/modules/shared/lib/dumpapi.js (C) 2012-2019 Jeff Parsons
9393
*/
9494

9595
/*
@@ -149,7 +149,7 @@ DumpAPI.asFileCommands = [DumpAPI.QUERY.FILE];
149149

150150

151151
/**
152-
* @copyright https://www.pcjs.org/modules/shared/lib/reportapi.js (C)Jeff Parsons2012-2019
152+
* @copyright https://www.pcjs.org/modules/shared/lib/reportapi.js (C) 2012-2019 Jeff Parsons
153153
*/
154154

155155
var ReportAPI = {
@@ -172,7 +172,7 @@ var ReportAPI = {
172172

173173

174174
/**
175-
* @copyright https://www.pcjs.org/modules/shared/lib/strlib.js (C)Jeff Parsons2012-2019
175+
* @copyright https://www.pcjs.org/modules/shared/lib/strlib.js (C) 2012-2019 Jeff Parsons
176176
*/
177177

178178
class Str {
@@ -1332,7 +1332,7 @@ Str.NamesOfMonths = ["January", "February", "March", "April", "May", "June", "Ju
13321332

13331333

13341334
/**
1335-
* @copyright https://www.pcjs.org/modules/shared/lib/usrlib.js (C)Jeff Parsons2012-2019
1335+
* @copyright https://www.pcjs.org/modules/shared/lib/usrlib.js (C) 2012-2019 Jeff Parsons
13361336
*/
13371337

13381338

@@ -1584,7 +1584,7 @@ Usr.getTime = Date.now || function() { return +new Date(); };
15841584

15851585

15861586
/**
1587-
* @copyright https://www.pcjs.org/modules/shared/lib/weblib.js (C)Jeff Parsons2012-2019
1587+
* @copyright https://www.pcjs.org/modules/shared/lib/weblib.js (C) 2012-2019 Jeff Parsons
15881588
*/
15891589

15901590

@@ -2764,7 +2764,7 @@ if (DEBUG && window) {
27642764

27652765

27662766
/**
2767-
* @copyright https://www.pcjs.org/modules/shared/lib/component.js (C)Jeff Parsons2012-2019
2767+
* @copyright https://www.pcjs.org/modules/shared/lib/component.js (C) 2012-2019 Jeff Parsons
27682768
*/
27692769

27702770
/*
@@ -4340,7 +4340,7 @@ if (!Function.prototype.bind) {
43404340

43414341

43424342
/**
4343-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/defines.js (C)Jeff Parsons2012-2019
4343+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/defines.js (C) 2012-2019 Jeff Parsons
43444344
*/
43454345

43464346
/**
@@ -4387,7 +4387,7 @@ var C1PJS = {
43874387
};
43884388

43894389
/**
4390-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/panel.js (C)Jeff Parsons2012-2019
4390+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/panel.js (C) 2012-2019 Jeff Parsons
43914391
*/
43924392

43934393

@@ -4493,7 +4493,7 @@ class C1PPanel extends Component {
44934493
Web.onInit(C1PPanel.init);
44944494

44954495
/**
4496-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/cpu.js (C)Jeff Parsons2012-2019
4496+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/cpu.js (C) 2012-2019 Jeff Parsons
44974497
*/
44984498

44994499

@@ -8361,7 +8361,7 @@ class C1PCPU extends Component {
83618361
Web.onInit(C1PCPU.init);
83628362

83638363
/**
8364-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/rom.js (C)Jeff Parsons2012-2019
8364+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/rom.js (C) 2012-2019 Jeff Parsons
83658365
*/
83668366

83678367

@@ -8580,7 +8580,7 @@ class C1PROM extends Component {
85808580
Web.onInit(C1PROM.init);
85818581

85828582
/**
8583-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/ram.js (C)Jeff Parsons2012-2019
8583+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/ram.js (C) 2012-2019 Jeff Parsons
85848584
*/
85858585

85868586

@@ -8652,7 +8652,7 @@ class C1PRAM extends Component {
86528652
Web.onInit(C1PRAM.init);
86538653

86548654
/**
8655-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/keyboard.js (C)Jeff Parsons2012-2019
8655+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/keyboard.js (C) 2012-2019 Jeff Parsons
86568656
*/
86578657

86588658

@@ -9734,7 +9734,7 @@ class C1PKeyboard extends Component {
97349734
Web.onInit(C1PKeyboard.init);
97359735

97369736
/**
9737-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/video.js (C)Jeff Parsons2012-2019
9737+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/video.js (C) 2012-2019 Jeff Parsons
97389738
*/
97399739

97409740

@@ -10349,7 +10349,7 @@ class C1PVideo extends Component {
1034910349
Web.onInit(C1PVideo.init);
1035010350

1035110351
/**
10352-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/serial.js (C)Jeff Parsons2012-2019
10352+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/serial.js (C) 2012-2019 Jeff Parsons
1035310353
*/
1035410354

1035510355

@@ -10771,7 +10771,7 @@ C1PSerialPort.AUTOLOAD_6502 = 2;
1077110771
Web.onInit(C1PSerialPort.init);
1077210772

1077310773
/**
10774-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/disk.js (C)Jeff Parsons2012-2019
10774+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/disk.js (C) 2012-2019 Jeff Parsons
1077510775
*/
1077610776

1077710777

@@ -12015,7 +12015,7 @@ class C1PDiskController extends Component {
1201512015
Web.onInit(C1PDiskController.init);
1201612016

1201712017
/**
12018-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/debugger.js (C)Jeff Parsons2012-2019
12018+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/debugger.js (C) 2012-2019 Jeff Parsons
1201912019
*/
1202012020

1202112021

@@ -14206,7 +14206,7 @@ if (DEBUGGER) {
1420614206
} // endif DEBUGGER
1420714207

1420814208
/**
14209-
* @copyright https://www.pcjs.org/modules/c1pjs/lib/computer.js (C)Jeff Parsons2012-2019
14209+
* @copyright https://www.pcjs.org/modules/c1pjs/lib/computer.js (C) 2012-2019 Jeff Parsons
1421014210
*/
1421114211

1421214212

@@ -14534,7 +14534,7 @@ class C1PComputer extends Component {
1453414534
Web.onInit(C1PComputer.init);
1453514535

1453614536
/**
14537-
* @copyright https://www.pcjs.org/modules/shared/lib/embed.js (C)Jeff Parsons2012-2019
14537+
* @copyright https://www.pcjs.org/modules/shared/lib/embed.js (C) 2012-2019 Jeff Parsons
1453814538
*/
1453914539

1454014540

‎versions/c1pjs/1.75.7/c1p.js‎

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎versions/c1pjs/1.75.7/common.xsl‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<divclass="common-bottom">
4949
<pclass="common-reference"></p>
5050
<pclass="common-copyright">
51-
<spanclass="common-copyright"><ahref="https://www.pcjs.org/">pcjs.org</a> © 2012-2019 by <ahref="https://jeffpar.com">@jeffpar</a></span><br/>
51+
<spanclass="common-copyright"><ahref="https://www.pcjs.org/">pcjs.org</a> © 2012-2020 by <ahref="https://jeffpar.com">@jeffpar</a></span><br/>
5252
<spanclass="common-copyright">The <ahref="https://github.com/jeffpar/pcjs">PCjs Project</a> is released under <ahref="https://gnu.org/licenses/gpl.html">GPLv3</a></span><br/>
5353
<span>Powered by <ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a>, <ahref="http://vanilla-js.com/"target="_blank">Vanilla JS</a>, and <ahref="https://github.com/jeffpar"target="_blank">GitHub</a></span>
5454
</p>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp