-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_fixture.json
9033 lines (9033 loc) · 245 KB
/
get_fixture.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"model": "contenttypes.contenttype",
"pk": 1,
"fields": {
"app_label": "admin",
"model": "logentry"
}
},
{
"model": "contenttypes.contenttype",
"pk": 2,
"fields": {
"app_label": "auth",
"model": "permission"
}
},
{
"model": "contenttypes.contenttype",
"pk": 3,
"fields": {
"app_label": "auth",
"model": "group"
}
},
{
"model": "contenttypes.contenttype",
"pk": 4,
"fields": {
"app_label": "auth",
"model": "user"
}
},
{
"model": "contenttypes.contenttype",
"pk": 5,
"fields": {
"app_label": "contenttypes",
"model": "contenttype"
}
},
{
"model": "contenttypes.contenttype",
"pk": 6,
"fields": {
"app_label": "sessions",
"model": "session"
}
},
{
"model": "contenttypes.contenttype",
"pk": 7,
"fields": {
"app_label": "styleguide",
"model": "styleguideentry"
}
},
{
"model": "contenttypes.contenttype",
"pk": 8,
"fields": {
"app_label": "styleguide",
"model": "section"
}
},
{
"model": "contenttypes.contenttype",
"pk": 9,
"fields": {
"app_label": "styleguide",
"model": "guide"
}
},
{
"model": "contenttypes.contenttype",
"pk": 10,
"fields": {
"app_label": "styleguide",
"model": "quicklink"
}
},
{
"model": "contenttypes.contenttype",
"pk": 11,
"fields": {
"app_label": "tags",
"model": "tag"
}
},
{
"model": "sessions.session",
"pk": "0jmb5c1h7a119kuq4qub6ap79lcmvmsx",
"fields": {
"session_data": "YjBmNWE1YmJiZjBlOTA1YTI5ZTJhMjgwMmVmZWRlZTUyMmJiNzJiNjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJjZjE1NjkwNDNhOGFmZDEzNjc5MDQxZWUwYTlkM2M5MTMyOWU1YmEwIn0=",
"expire_date": "2020-06-06T04:51:28.632Z"
}
},
{
"model": "sessions.session",
"pk": "5vsy6rmdlrnkotsvgvai2ap5xwy17spz",
"fields": {
"session_data": "YjBmNWE1YmJiZjBlOTA1YTI5ZTJhMjgwMmVmZWRlZTUyMmJiNzJiNjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJjZjE1NjkwNDNhOGFmZDEzNjc5MDQxZWUwYTlkM2M5MTMyOWU1YmEwIn0=",
"expire_date": "2020-06-05T20:38:54.679Z"
}
},
{
"model": "styleguide.section",
"pk": 1,
"fields": {
"name": "News"
}
},
{
"model": "styleguide.section",
"pk": 2,
"fields": {
"name": "A&E"
}
},
{
"model": "styleguide.section",
"pk": 3,
"fields": {
"name": "Opinion"
}
},
{
"model": "styleguide.section",
"pk": 4,
"fields": {
"name": "Sports"
}
},
{
"model": "styleguide.section",
"pk": 5,
"fields": {
"name": "Design"
}
},
{
"model": "styleguide.styleguideentry",
"pk": 2,
"fields": {
"title": "\"10 Questions\"",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-05-22T20:44:33.393Z",
"tags": [
1
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 3,
"fields": {
"title": "8-clap",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 4,
"fields": {
"title": "Academic Senate",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 5,
"fields": {
"title": "academic years",
"content": "When referring to the academic year that begins in fall 2016 and ends in spring 2017, use 2016-2017.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": [
1,
2,
3
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 6,
"fields": {
"title": "accent marks",
"content": "Use accent marks for proper nouns such as Bruin Caf\u00e9 or Beyonc\u00e9. Do not use an accent mark in general uses of words such as cafe, naivete, facade.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 7,
"fields": {
"title": "Ackerman Union",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 8,
"fields": {
"title": "Acosta Training Center",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 9,
"fields": {
"title": "actor names in reviews",
"content": "for reviews only, after we introduce a character, we put the name of the actor who plays them in parenthesis",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
2,
3
],
"sections": [
2
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 10,
"fields": {
"title": "admissions",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
4,
5
],
"sections": [
1,
3
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 11,
"fields": {
"title": "African American studies, Asian American studies",
"content": "Do not hyphenate if referring to the major.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 12,
"fields": {
"title": "All-Freshman Team",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": [
4
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 13,
"fields": {
"title": "Anaheim",
"content": "The city in California stands alone in Daily Bruin stories.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 14,
"fields": {
"title": "Arthur Ashe Student Health and Wellness Center",
"content": "Arthur Ashe Student Health and Wellness Center on first reference. On subsequent references and in headlines, Ashe Center or student health and wellness center is acceptable.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 15,
"fields": {
"title": "Associated Students UCLA",
"content": "Associated Students UCLA on first reference. ASUCLA is acceptable on subsequent references.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 16,
"fields": {
"title": "at UCLA",
"content": "If a club or organization name has at UCLA as part of its official name, state it on first reference.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 17,
"fields": {
"title": "Bakersfield",
"content": "The city in California stands alone in Daily Bruin stories.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 18,
"fields": {
"title": "Baseball, softball",
"content": "**Positions**\n\n* C - Catcher (2)\n* Infielders\n+ 1B - First baseman (3)\n+ 2B - Second baseman (4)\n+ SS - Shortstop (6)\n+ 3B - Third baseman (5)\n* Outfield\n+ LF - Left fielder (7)\n+ CF - Center fielder (8)\n+ RF - Right fielder (9)\n+ DH - Designated hitter\n+ DP - Designated player (Softball only)\n* P - Pitcher (1)\n+ SP - Starting pitcher\n+ RP - Relief pitcher\n+ Set-up man+ Closer\n\n* Leadoff hitter - the first hitter\n\n\nIn a baseball/softball story, you might see a reference to a 4-6-3 double play (or some other numbers), this means the play went from the second baseman (4) to the shortstop (6) to the first baseman (3)\n\n**Stats**\n\nBatting:\n\n* AB - At-bats (Word), when a hitter goes to bat and gets either a hit or is out. Walks and hits by pitch do not count for at-bats* PA - Plate appearance, when a hitter goes to bat. (At-bats+walks+hits by pitch)* H - Hits (Word), when a hitter reaches base after hitting the ball.\n* R - Runs (word)* RBIs - Runs batted in (word), the runs a batter\u2019s hit results in being scored.\n* BB - Walks, when a hitter reaches base after four balls* K/SO - Strikeouts, when a hitter is out after three strikes.\n* Full count - when a batter in a 3-2 counts (3 balls, 2 strikes* LOB - Runner stranded on base* RISP - Runner in scoring position, when a runner is on second or third base.\n* HR - Home run (Word), when a batter hits the ball out of the park* Solo home run - a home run where one person scores* S - Steal.\n* HBP - Hit by pitch, when a batter is hit by a pitch and and advances to first base. One of the few terms in baseball which exactly what it sounds like.\n* BA/AVG - Batting average (H/AB)\n\n\t+ A batting average above .300 is very good+ A batting average between .200 and .300 is some level between passable and good.\n\t+ A batting average below .200 is bad and probably means hitting baseballs is something you\u2019re bad at.\n\t\n\t* OBP - On-base percentage (H+BB+HBP)/(AB+BB+HBP+Sacrifice flys)\n* SLG - Slugging percentage (Singles + (Doubles*2) + (Triples*3) + (Home Runs*4) / AB)* OPS: On-base plug slugging (SLG% + OB%)\n* .XXX/.YYY/.ZZZ - The triple slash (BA/OBP/SLG)\n* Single - advances to first base* Double - advances to second base\n* Triple - advances to third base* Sac fly - Sacrifice fly, when a hitter \u2018sacrifices himself\u2019 so another runner can advance to another base* Extra-base hits - doubles, triples, and home runs\n* Sac bunt\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPitching:\n\n* IP - Innings pitched (use style of 1 1/3 , not 1.1)\n* Baseball is divided into nine innings (also referred to as frames) and softball is divided into seven. In each inning, except sometimes the ninth, each team bats and pitches once. Each 1/3 of an inning represents one batter getting out. Three outs ends an inning.\n* W-L - Wins-losses record for pitchers. The pitcher who is pitching when the winning run is scored gets the win/loss.\n* No decision - When a pitcher pitches, but does not receive a win or loss.\n* R - Runs\n* ER - Earned runs (not the same as runs, is when a run is scored by a hitter who reached on base not off an error)\n* BB - Walks. When a pitcher throws four balls.\n* K/SO - Strikeouts. When a pitcher throws three strikes.\n* WP - Wild pitch\n* BK - Balk\n* HBP - Hit by pitch\n* IBB - Intentional walk\n* BF - Batters faced\n* NP - Number of pitches\n* H - Hold\n* S/SV - Save. A save is a bit complicated, so here is a nice link.\n* ERA - Earned run average (ER / IP * 9). The lower, the better.\n+ An ERA below 2 is rare, while an ERA above 5 is concerning\n* WHIP - Walks plus hits per inning pitched ([BB+H]/IP). The lower, the better.\n* Complete game - when a pitcher pitches the entire game. Relatively rare.\n* No-hitter - when a pitcher does not allow a hit for an entire game. Rare.\n* Perfect game - when a pitcher does not allow a man on base for an entire game. Very rare.\n\n\nFielding:\n\n* Outs - there are three outs in each inning.\n* Ground out\n* Strikeout\n* Fly out\n* Sac fly\n\n\n**Common Terminology**\n\n* UCLA plays in the Pac-12, which is baseball only has 11 teams and in softball, 9 teams:\n+ UCLA+ USC (no softball team)\n+ Utah\n+ Arizona\n+ Arizona State\n+ Washington\n+ Washington State (no softball team)\n+ Oregon\n+ Oregon State\n+ Stanford\n+ California\n\n* The college baseball postseason consists of the Pac-12 tournament and NCAA tournament, which ends with the College World Series. The college softball postseason consists of the same tournaments, though the final round is called the Women\u2019s College World Series.\n* Unlike other sports, the baseball and softball NCAA tournaments are double elimination, meaning a team needs to lose two games to be eliminated, not one.\n* In both baseball and softball, seasons are divided into series, sets of three or four games between the same teams. Winning a series means winning a majority of these games. Sweeping a series means winning all of them.\n\n\n**Rankings**\n\nThe Daily Bruin uses the D1Baseball.com rankings. Another commonly referenced ranking is the Rating Percentage Index (RPI) rankings.\n\n\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
6,
7
],
"sections": [
4
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 19,
"fields": {
"title": "basketball",
"content": "**Stats:**\n\n* MIN - Minutes\n* In college basketball, games are 40 minutes\n* FGA - Field goal attempts (includes 3-point shots)\n* FGM - Field goals made\n* FG - Field goals, any shot which a free throw\n* FG% - Field goal percentage (FGM/FGA)\n* 3PT - 3-point shots\n* A 3PT% above 40 is very good and a 3PT% below 33 is bad. Shots from the 3-point line are described as \u201cbeyond the arc\u201d\n* FT - Free throw (the free throw line is sometime referred to as the charity stripe)\n* FT% - Free throw percentage\n* OREB/ORB - Offensive rebounds\n* DREB/DRB - Defensive rebounds\n* REB/TOT - Rebounds (offensive rebounds + defensive rebounds)\n* PF - Personal fouls (if you get five fouls you foul out, if you get one or two, you\u2019re in foul trouble)\n* A/AST - Assists\n* TO - Turnovers\n* BLK - Blocks\n* STL - Steals\n* PTS - Points\n* 2ndChPts - Second chance points\n* PtsPaint - points in the paint\n* eFG% - Effective field goal percentage (FGM + (0.5*3PT made) / FGA)\n* Triple-double - When a player gets 10+ in three stats other than turnovers or fouls (typically points, rebounds, and assists)\n* Double-double - When a player gets 10+ in two stats other than turnovers or fouls\n* Five-by-five - When a player gets 5+ in at least five stats other than turnovers or fouls\n* Fast break - when a team attempts to move the ball up court and into scoring position as quickly as possible\n* The paint - the painted area of the basketball court near the basket\n* Free throw line - not hyphenated\n* 3s - 3 pointers are written as numerals\n\n\n**Positions:**\n\n* Guards\n* PG/1 - Point guard\n* SG/2 - Shooting guards\n* Forwards\n* SF/3 - Small forwards\n* PF/4 - Power forwards\n* C/5 - Center\n* Wings: Shooting guards and small forwards\n* Big man: Centers and occasionally power forwards\n\n\n**Common terminology:**\n\n* UCLA plays in the Pacific-12 Conference. Teams in the Pac-12 include:\n+ California\n+ Stanford\n+ USC\n+ UCLA\n+ Arizona (In men\u2019s basketball, Arizona and UCLA are traditionally the two best teams in the Pac-12 and have an intense rivalry.)\n+ Arizona State\n+ Colorado\n+ Utah\n+ Washington\n+ Washington State\n+ Oregon\n+ Oregon State\n\n\nUCLA is considered a mens college basketball blue blood, meaning that historically it is one of the best programs in the country. The other blue bloods typically include Duke, North Carolina, Indiana, Kentucky and Kansas.\n\nThere is currently a massive FBI investigation into men\u2019s college basketball.\n\nEach Pac-12 team plays 18 conference games, along with about 12 out-of-conferences games every year.\n\nThe postseason of college basketball includes the Pac-12 tournament, which consists of every team in the Pac-12 competing for an automatic bid to the NCAA tournament, which is the final competition. If a team does not win an automatic bid, it can still get an at-large bid. The NCAA tournament is more commonly known as March Madness.\n\nRankings: The Daily Bruin uses the AP Poll for both mens and womens basketball. Other commonly referenced rankings in DB stories are KenPom.coms rankings and the NCAA NET ratings.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
8
],
"sections": [
4
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 20,
"fields": {
"title": "BearWear",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
9,
10
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 21,
"fields": {
"title": "Berkeley",
"content": "The city in California stands alone in Daily Bruin stories.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 22,
"fields": {
"title": "Beverly Hills",
"content": "The city in California stands alone in Daily Bruin stories.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 23,
"fields": {
"title": "Big Blue Bus",
"content": "Use Santa Monica Big Blue Bus on first reference. Big Blue Bus can be used on second reference.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 24,
"fields": {
"title": "Billy Wilder Theater",
"content": "Billy Wilder Theater on first reference. On subsequent references, theater is acceptable.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 25,
"fields": {
"title": "Biomedical Sciences Research Building",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 26,
"fields": {
"title": "board of directors, board of trustees",
"content": "Always lowercase.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
11
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 27,
"fields": {
"title": "Boelter Hall",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 28,
"fields": {
"title": "Bombshelter, Court of Sciences Student Center",
"content": "Court of Sciences Student Center somewhere in the body of the story to refer to the building. Bombshelter OK on other references, headlines, and in quotes.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 29,
"fields": {
"title": "BookZone",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
12
],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 30,
"fields": {
"title": "Botany Building",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 31,
"fields": {
"title": "Boyer Hall",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 32,
"fields": {
"title": "Bradley International Hall",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 33,
"fields": {
"title": "Broad Art Center",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 34,
"fields": {
"title": "Bruin Caf\u00e9",
"content": "Include an accent mark per the \"accent marks\" entry. Do not abbreviate *BCafe*.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
13
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 35,
"fields": {
"title": "Bruin Day",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 36,
"fields": {
"title": "Bruin Film Society",
"content": "BFS on second reference.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": [
1,
2
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 37,
"fields": {
"title": "Bruin Health Pharmacy",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 38,
"fields": {
"title": "Bruin Plate",
"content": "B Plate on second reference",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
14
],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 39,
"fields": {
"title": "Bruin Plaza",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 40,
"fields": {
"title": "Bruin Walk",
"content": "Use to describe the physical location.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
15
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 41,
"fields": {
"title": "BruinAlert",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 42,
"fields": {
"title": "BruinCard",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 43,
"fields": {
"title": "BruinCare",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 44,
"fields": {
"title": "Bruintized",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 45,
"fields": {
"title": "Bruinwalk",
"content": "When referring to the professor review website, use \"Bruinwalk\" For the physical location on campus, see the Bruin Walk entry.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 46,
"fields": {
"title": "Bunche Hall",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 47,
"fields": {
"title": "Burbank",
"content": "The city in California stands alone in Daily Bruin stories.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 48,
"fields": {
"title": "Caf\u00e9 1919",
"content": "Include an accent mark per the \"accent marks\" entry.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
13
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 49,
"fields": {
"title": "California cities",
"content": "The following cities in California stand alone:\n\n* Anaheim\n* Bakersfield\n* Berkeley\n* Beverly Hills\n* Burbank\n* Culver City\n* Davis\n* Fresno\n* Glendale\n* Irvine\n* Malibu\n* Marina del Rey\n* Merced\n* Oakland\n* Pasadena\n* Riverside\n* Sacramento\n* Santa Barbara\n* San Bernardino\n* Santa Cruz\n* Santa Monica\n* West Hollywood\n\n\nIn stories about football, *Pasadena* also stands alone. Per the AP Stylebook, *Los Angeles*, *San Francisco* and *San Diego* already stand alone.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31
],
"sections": [
1,
2,
3,
4
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 50,
"fields": {
"title": "Campbell Hall",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 51,
"fields": {
"title": "campus buildings",
"content": "For buildings and locations that do not appear here, refer to UCLA\u2019s website and include just the last name of the individual whom the building or location is named after.\n\nFor professional schools and relevant buildings, on first reference, use the formal name in headline case: Anderson School of Management. On subsequent references, use School of Management or management school.\n\nSimilarly, use Terasaki Life Sciences Building on first reference. On second and subsequent reference, life sciences building is acceptable.For the names of centers, on second reference capitalize Center only if it follows a proper noun:\n\n* Gonda Center* Ashe Center* alumni center\n\n\n\n\nThe exception is for Ronald Reagan UCLA Medical Center, which should never be abbreviated. On second and subsequent references, use the medical center or the hospital.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
32,
33,
34
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 52,
"fields": {
"title": "Campus Queries",
"content": "Set the Q&A part off from the italicized blurb at the beginning and bold the Q and A. In Campus Queries, you should get a flag above the headline, the headline should be a question, and the question and answers should be justified.\n\n*Campus Queries is a series in which Daily Bruin readers and staff present science-related questions for UCLA professors and experts to answer.*\n\nenter here\n\n**Q:** What are deepfakes?\n\n**A:** Deepfake videos transform a recording of someone into artificial scenarios that never actually occurred using machine learning algorithms.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 53,
"fields": {
"title": "campus room numbers",
"content": "Use the abbreviated form for rooms in campus buildings: *Math Sciences 4210*, not *Math Sciences Building, Room 4210.*\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
35,
36
],
"sections": [
1
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 54,
"fields": {
"title": "Canyon Point",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 55,
"fields": {
"title": "Capitol Records Building",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 56,
"fields": {
"title": "Carnesdale Commons",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 57,
"fields": {
"title": "catch-and-run",
"content": "hyphenate as a noun\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": [
4
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 58,
"fields": {
"title": "CCLE",
"content": "Short for Common Collaborative Learning Environment. Use CCLE on all references.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 59,
"fields": {
"title": "Center for Health Sciences",
"content": "",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 60,
"fields": {
"title": "championship, tournament",
"content": "lowercase the c in championship and do not use championships unless referring to multiple championships",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
37,
38
],
"sections": [
4
]
}
},
{
"model": "styleguide.styleguideentry",
"pk": 61,
"fields": {
"title": "Charles E. Young Research Library",
"content": "Charles E. Young Research Library on first reference. For subsequent references, Young Research Library is acceptable.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 62,
"fields": {
"title": "Chicana/o and Central American studies",
"content": "refer to the major in this way rather than the way the website does",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [
39,
40,
41
],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 63,
"fields": {
"title": "city of Los Angeles",
"content": "with lowercase city\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",
"pk": 64,
"fields": {
"title": "colons",
"content": "Names of events or organizations with a colon should be given in full on first reference. On subsequent references, you can drop the portion after the colon. Ex: All of Us: A Campaign to Rethink Mental Health.\n\n",
"created_at": "2020-02-17T23:29:10.695Z",
"updated_at": "2020-02-18T23:24:32.299Z",
"tags": [],
"sections": []
}
},
{
"model": "styleguide.styleguideentry",