Skip to content

Commit 3514422

Browse files
committed
fix disqus comments url
1 parent 95bb328 commit 3514422

24 files changed

+35
-33
lines changed

Diff for: book/appendix_csvs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ <h3 id="_implementing_a_repository_and_unit_of_work_for_csvs">Implementing a Rep
516516
<script>
517517

518518
var disqus_config = function () {
519-
this.page.url = 'https://cosmicpython.com/book/appendix_csvs.html';
519+
this.page.url = 'https://www.cosmicpython.com/book/appendix_csvs.html';
520520
this.page.identifier = 'appendix_csvs';
521521
};
522522

Diff for: book/appendix_django.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ <h3 id="_steps_along_the_way">Steps Along the Way</h3>
758758
<script>
759759

760760
var disqus_config = function () {
761-
this.page.url = 'https://cosmicpython.com/book/appendix_django.html';
761+
this.page.url = 'https://www.cosmicpython.com/book/appendix_django.html';
762762
this.page.identifier = 'appendix_django';
763763
};
764764

Diff for: book/appendix_ds1_table.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ <h2 id="appendix_ds1_table">Appendix A: Summary Diagram and Table</h2>
253253
<script>
254254

255255
var disqus_config = function () {
256-
this.page.url = 'https://cosmicpython.com/book/appendix_ds1_table.html';
256+
this.page.url = 'https://www.cosmicpython.com/book/appendix_ds1_table.html';
257257
this.page.identifier = 'appendix_ds1_table';
258258
};
259259

Diff for: book/appendix_project_structure.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
746746
<script>
747747

748748
var disqus_config = function () {
749-
this.page.url = 'https://cosmicpython.com/book/appendix_project_structure.html';
749+
this.page.url = 'https://www.cosmicpython.com/book/appendix_project_structure.html';
750750
this.page.identifier = 'appendix_project_structure';
751751
};
752752

Diff for: book/appendix_validation.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ <h3 id="_validating_pragmatics">Validating Pragmatics</h3>
824824
<script>
825825

826826
var disqus_config = function () {
827-
this.page.url = 'https://cosmicpython.com/book/appendix_validation.html';
827+
this.page.url = 'https://www.cosmicpython.com/book/appendix_validation.html';
828828
this.page.identifier = 'appendix_validation';
829829
};
830830

Diff for: book/chapter_01_domain_model.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ <h3 id="_exploring_the_domain_language">Exploring the Domain Language</h3>
335335
so that the examples are easier to talk about.</p>
336336
</div>
337337
<div class="paragraph">
338-
<p><a data-type="xref" href="#allocation_notes" data-xrefstyle="select:nopage">#allocation_notes</a> shows some notes we might have taken while having a
338+
<p>The sidebar called <a href="#allocation_notes">Some Notes on Allocation</a> shows some notes we might have taken while having a
339339
conversation with our domain experts about allocation.</p>
340340
</div>
341341
<div id="allocation_notes" class="sidebarblock">
@@ -1247,7 +1247,7 @@ <h4 id="_exceptions_can_express_domain_concepts_too">Exceptions Can Express Doma
12471247
</div>
12481248
<div id="footer">
12491249
<div id="footer-text">
1250-
Last updated 2020-03-17 09:07:44 UTC
1250+
Last updated 2020-03-17 17:41:45 UTC
12511251
</div>
12521252
</div>
12531253
<style>
@@ -1325,7 +1325,7 @@ <h4 id="_exceptions_can_express_domain_concepts_too">Exceptions Can Express Doma
13251325
<script>
13261326

13271327
var disqus_config = function () {
1328-
this.page.url = 'https://cosmicpython.com/book/chapter_01_domain_model.html';
1328+
this.page.url = 'https://www.cosmicpython.com/book/chapter_01_domain_model.html';
13291329
this.page.identifier = 'chapter_01_domain_model';
13301330
};
13311331

Diff for: book/chapter_02_repository.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
13241324
<script>
13251325

13261326
var disqus_config = function () {
1327-
this.page.url = 'https://cosmicpython.com/book/chapter_02_repository.html';
1327+
this.page.url = 'https://www.cosmicpython.com/book/chapter_02_repository.html';
13281328
this.page.identifier = 'chapter_02_repository';
13291329
};
13301330

Diff for: book/chapter_03_abstractions.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
11031103
<script>
11041104

11051105
var disqus_config = function () {
1106-
this.page.url = 'https://cosmicpython.com/book/chapter_03_abstractions.html';
1106+
this.page.url = 'https://www.cosmicpython.com/book/chapter_03_abstractions.html';
11071107
this.page.identifier = 'chapter_03_abstractions';
11081108
};
11091109

Diff for: book/chapter_04_service_layer.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,9 @@ <h4 id="_a_typical_service_function">A Typical Service Function</h4>
673673
this is what we mean when we say we should "depend on abstractions." Our
674674
<em>high-level module</em>, the service layer, depends on the repository abstraction.
675675
And the <em>details</em> of the implementation for our specific choice of persistent
676-
storage also depend on that same abstraction. See Figures <a data-type="xref" href="#service_layer_diagram_abstract_dependencies" data-xrefstyle="select:labelnumber">#service_layer_diagram_abstract_dependencies</a> and <a data-type="xref" href="#service_layer_diagram_test_dependencies" data-xrefstyle="select:labelnumber">#service_layer_diagram_test_dependencies</a>.</p>
676+
storage also depend on that same abstraction. See
677+
<a href="#service_layer_diagram_abstract_dependencies">Abstract dependencies of the service layer</a> and
678+
<a href="#service_layer_diagram_test_dependencies">Tests provide an implementation of the abstract dependency</a>.</p>
677679
</div>
678680
<div class="paragraph">
679681
<p>See also in <a href="/book/appendix_csvs.html">[appendix_csvs]</a> a worked example of swapping out the
@@ -1173,7 +1175,7 @@ <h4 id="_the_dip_in_action">The DIP in Action</h4>
11731175
</div>
11741176
<div id="footer">
11751177
<div id="footer-text">
1176-
Last updated 2020-03-17 09:07:44 UTC
1178+
Last updated 2020-03-17 17:37:09 UTC
11771179
</div>
11781180
</div>
11791181
<style>
@@ -1251,7 +1253,7 @@ <h4 id="_the_dip_in_action">The DIP in Action</h4>
12511253
<script>
12521254

12531255
var disqus_config = function () {
1254-
this.page.url = 'https://cosmicpython.com/book/chapter_04_service_layer.html';
1256+
this.page.url = 'https://www.cosmicpython.com/book/chapter_04_service_layer.html';
12551257
this.page.identifier = 'chapter_04_service_layer';
12561258
};
12571259

Diff for: book/chapter_05_high_gear_low_gear.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
818818
<script>
819819

820820
var disqus_config = function () {
821-
this.page.url = 'https://cosmicpython.com/book/chapter_05_high_gear_low_gear.html';
821+
this.page.url = 'https://www.cosmicpython.com/book/chapter_05_high_gear_low_gear.html';
822822
this.page.identifier = 'chapter_05_high_gear_low_gear';
823823
};
824824

Diff for: book/chapter_06_uow.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
10831083
<script>
10841084

10851085
var disqus_config = function () {
1086-
this.page.url = 'https://cosmicpython.com/book/chapter_06_uow.html';
1086+
this.page.url = 'https://www.cosmicpython.com/book/chapter_06_uow.html';
10871087
this.page.identifier = 'chapter_06_uow';
10881088
};
10891089

Diff for: book/chapter_07_aggregate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1458,7 +1458,7 @@ <h3 id="_part_i_recap">Part I Recap</h3>
14581458
<script>
14591459

14601460
var disqus_config = function () {
1461-
this.page.url = 'https://cosmicpython.com/book/chapter_07_aggregate.html';
1461+
this.page.url = 'https://www.cosmicpython.com/book/chapter_07_aggregate.html';
14621462
this.page.identifier = 'chapter_07_aggregate';
14631463
};
14641464

Diff for: book/chapter_08_events_and_message_bus.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
12071207
<script>
12081208

12091209
var disqus_config = function () {
1210-
this.page.url = 'https://cosmicpython.com/book/chapter_08_events_and_message_bus.html';
1210+
this.page.url = 'https://www.cosmicpython.com/book/chapter_08_events_and_message_bus.html';
12111211
this.page.identifier = 'chapter_08_events_and_message_bus';
12121212
};
12131213

Diff for: book/chapter_09_all_messagebus.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1334,7 +1334,7 @@ <h4 id="_why_have_we_achieved">Why Have We Achieved?</h4>
13341334
<script>
13351335

13361336
var disqus_config = function () {
1337-
this.page.url = 'https://cosmicpython.com/book/chapter_09_all_messagebus.html';
1337+
this.page.url = 'https://www.cosmicpython.com/book/chapter_09_all_messagebus.html';
13381338
this.page.identifier = 'chapter_09_all_messagebus';
13391339
};
13401340

Diff for: book/chapter_10_commands.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
887887
<script>
888888

889889
var disqus_config = function () {
890-
this.page.url = 'https://cosmicpython.com/book/chapter_10_commands.html';
890+
this.page.url = 'https://www.cosmicpython.com/book/chapter_10_commands.html';
891891
this.page.identifier = 'chapter_10_commands';
892892
};
893893

Diff for: book/chapter_11_external_events.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
966966
<script>
967967

968968
var disqus_config = function () {
969-
this.page.url = 'https://cosmicpython.com/book/chapter_11_external_events.html';
969+
this.page.url = 'https://www.cosmicpython.com/book/chapter_11_external_events.html';
970970
this.page.identifier = 'chapter_11_external_events';
971971
};
972972

Diff for: book/chapter_12_cqrs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
12731273
<script>
12741274

12751275
var disqus_config = function () {
1276-
this.page.url = 'https://cosmicpython.com/book/chapter_12_cqrs.html';
1276+
this.page.url = 'https://www.cosmicpython.com/book/chapter_12_cqrs.html';
12771277
this.page.identifier = 'chapter_12_cqrs';
12781278
};
12791279

Diff for: book/chapter_13_dependency_injection.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1478,7 +1478,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
14781478
<script>
14791479

14801480
var disqus_config = function () {
1481-
this.page.url = 'https://cosmicpython.com/book/chapter_13_dependency_injection.html';
1481+
this.page.url = 'https://www.cosmicpython.com/book/chapter_13_dependency_injection.html';
14821482
this.page.identifier = 'chapter_13_dependency_injection';
14831483
};
14841484

Diff for: book/epilogue_1_how_to_get_there_from_here.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@ <h3 id="_wrap_up">Wrap-Up</h3>
13141314
<script>
13151315

13161316
var disqus_config = function () {
1317-
this.page.url = 'https://cosmicpython.com/book/epilogue_1_how_to_get_there_from_here.html';
1317+
this.page.url = 'https://www.cosmicpython.com/book/epilogue_1_how_to_get_there_from_here.html';
13181318
this.page.identifier = 'epilogue_1_how_to_get_there_from_here';
13191319
};
13201320

Diff for: book/introduction.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ <h3 id="_a_place_for_all_our_business_logic_the_domain_model">A Place for All Ou
569569
<script>
570570

571571
var disqus_config = function () {
572-
this.page.url = 'https://cosmicpython.com/book/introduction.html';
572+
this.page.url = 'https://www.cosmicpython.com/book/introduction.html';
573573
this.page.identifier = 'introduction';
574574
};
575575

Diff for: book/part1.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ <h2 id="part1">Part 1: Building an Architecture to Support Domain Modeling</h2>
243243
<script>
244244

245245
var disqus_config = function () {
246-
this.page.url = 'https://cosmicpython.com/book/part1.html';
246+
this.page.url = 'https://www.cosmicpython.com/book/part1.html';
247247
this.page.identifier = 'part1';
248248
};
249249

Diff for: book/part2.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ <h2 id="part2">Part 2: Event-Driven Architecture</h2>
216216
<script>
217217

218218
var disqus_config = function () {
219-
this.page.url = 'https://cosmicpython.com/book/part2.html';
219+
this.page.url = 'https://www.cosmicpython.com/book/part2.html';
220220
this.page.identifier = 'part2';
221221
};
222222

Diff for: book/preface.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ <h3 id="_a_brief_overview_of_what_youll_learn">A Brief Overview of What You&#821
312312
<h4 id="_part1"><a data-type="xref" data-xrefstyle="chap-num-title" href="/book/part1.html">#part1</a></h4>
313313
<div class="dlist">
314314
<dl>
315-
<dt class="hdlist1">Domain modeling and DDD (Chapters <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_01_domain_model.html">#chapter_01_domain_model</a> and <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_07_aggregate.html">#chapter_07_aggregate</a>)</dt>
315+
<dt class="hdlist1">Domain modeling and DDD (Chapters <a href="/book/chapter_01_domain_model.html">1</a>, <a href="/book/chapter_02_repository.html">2</a> and <a href="/book/chapter_07_aggregate.html">7</a>)</dt>
316316
<dd>
317317
<p>At some level, everyone has learned the lesson that complex business
318318
problems need to be reflected in code, in the form of a model of the domain.
@@ -324,7 +324,7 @@ <h4 id="_part1"><a data-type="xref" data-xrefstyle="chap-num-title" href="/book/
324324
the right aggregate, and how this choice relates to questions of data
325325
integrity.</p>
326326
</dd>
327-
<dt class="hdlist1">Repository, Service Layer, and Unit of Work patterns (Chapters <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_02_repository.html">#chapter_02_repository</a>, <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_04_service_layer.html">#chapter_04_service_layer</a>, and <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_05_high_gear_low_gear.html">#chapter_05_high_gear_low_gear</a>)</dt>
327+
<dt class="hdlist1">Repository, Service Layer, and Unit of Work patterns (Chapters <a href="/book/chapter_02_repository.html">2</a>, <a href="/book/chapter_04_service_layer.html">4</a>, and <a href="/book/chapter_05_high_gear_low_gear.html">5</a>)</dt>
328328
<dd>
329329
<p>In these three chapters we present three closely related and
330330
mutually reinforcing patterns that support our ambition to keep
@@ -338,7 +338,7 @@ <h4 id="_part1"><a data-type="xref" data-xrefstyle="chap-num-title" href="/book/
338338
</div>
339339
<div class="dlist">
340340
<dl>
341-
<dt class="hdlist1">Some thoughts on testing and abstractions (Chapters <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_03_abstractions.html">#chapter_03_abstractions</a> and <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_06_uow.html">#chapter_06_uow</a>)</dt>
341+
<dt class="hdlist1">Some thoughts on testing and abstractions (Chapter <a href="/book/chapter_03_abstractions.html">3</a> and <a href="/book/chapter_05_high_gear_low_gear.html">5</a>)</dt>
342342
<dd>
343343
<p>After presenting the first abstraction (the Repository pattern), we take the
344344
opportunity for a general discussion of how to choose abstractions, and
@@ -353,7 +353,7 @@ <h4 id="_part1"><a data-type="xref" data-xrefstyle="chap-num-title" href="/book/
353353
<h4 id="_part2"><a data-type="xref" data-xrefstyle="chap-num-title" href="/book/part2.html">#part2</a></h4>
354354
<div class="dlist">
355355
<dl>
356-
<dt class="hdlist1">Event-driven architecture (Chapters <a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_08_events_and_message_bus.html">#chapter_08_events_and_message_bus</a>&#8211;<a data-type="xref" data-xrefstyle="select:labelnumber" href="/book/chapter_11_external_events.html">#chapter_11_external_events</a>)</dt>
356+
<dt class="hdlist1">Event-driven architecture (Chapters <a href="/book/chapter_08_events_and_message_bus.html">8</a>-<a href="/book/chapter_11_external_events.html">11</a>)</dt>
357357
<dd>
358358
<p>We introduce three more mutually reinforcing patterns: the Domain Events, Message Bus, and Handler patterns. <em>Domain events</em> are a vehicle for capturing the idea that some
359359
interactions with a system are triggers for others. We use a <em>message
@@ -633,14 +633,14 @@ <h3 id="_acknowledgments">Acknowledgments</h3>
633633
</div>
634634
<div id="footer">
635635
<div id="footer-text">
636-
Last updated 2020-03-17 11:40:42 UTC
636+
Last updated 2020-03-17 17:22:33 UTC
637637
</div>
638638
</div>
639639
<div><div id="disqus_thread" style="margin: 10px"></div>
640640
<script>
641641

642642
var disqus_config = function () {
643-
this.page.url = 'https://cosmicpython.com/book/preface.html';
643+
this.page.url = 'https://www.cosmicpython.com/book/preface.html';
644644
this.page.identifier = 'preface';
645645
};
646646

Diff for: fragments/disqus_comments.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<script>
33

44
var disqus_config = function () {
5-
this.page.url = 'https://cosmicpython.comPAGE_URL';
5+
this.page.url = 'https://www.cosmicpython.comPAGE_URL';
66
this.page.identifier = 'PAGE_IDENTIFIER';
77
};
88

0 commit comments

Comments
 (0)