-
Notifications
You must be signed in to change notification settings - Fork 91
/
openlook_wiki.html
5531 lines (5416 loc) · 286 KB
/
openlook_wiki.html
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
<div id="0">
<div class="sidebar">
<div class="box">
<div class="head">Search</div>
<div class="pad">
<form class="search_form" name="articles" action="wiki.php" method="get">
<input type="hidden" name="action" value="search">
<input type="search" placeholder="Search for articles" name="search" size="20">
<input value="Search" type="submit" class="hidden">
</form>
<br style="line-height: 10px;">
<a href="wiki.php?action=browse" class="brackets">Browse the article</a>
</div>
</div>
<div class="box">
<div class="head">Table of contents</div>
<div class="body">
</div>
</div>
<div class="box box_info pad">
<ul>
<li>
<strong>Protect:</strong>
<ul>
<li>Read: Beginner</li>
<li>Edit: Supporter</li>
</ul>
</li>
<li>
<strong>Details:</strong>
<ul>
<li>Version: r64</li>
<li>Last editor: <span style="font-weight: bold;">
<a href="user.php?id=32581">T3LgB1XvOn</a>
</span>
</li>
<li>Last updated: <span class="time tooltip">5 months, 3 weeks ago</span>
</li>
</ul>
</li>
<li>
<strong>Alias:</strong>
<ul>
<li id="alias_wiki">
<a href="wiki.php?action=article&name=wiki">wiki</a>
</li>
<li id="alias_Help">
<a href="wiki.php?action=article&name=Help">Help/...</a>
</li>
<li id="alias_wiki">
<a href="wiki.php?action=article&name=wiki">wiki</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="header">
<h2>Wiki</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Addition</a>
<a href="reports.php?action=submit&type=wiki&article=1" class="brackets">Submission</a>
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">
<span style="color:green">
<strong>[basic info]</strong>
</span>
<br>
<ul>
<li>
<a target="_blank" href="/logchecker.php">Log Checker</a>
</li>
<li>
<a target="_blank" href="/wiki.php? action=article&id=2">
<span style="color:red">Warning</span> and other sanctions information
</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=4">Precautions when using µTorrent v1.8.3 or later</a>
</li>
<li>
<a target="_blank" href="/wiki.php? action=article&id=5">The concept of a "group" at the heart of Gazelle Tracker</a>
</li>
</ul>
<br>
<br>
<span style="color:green">
<strong>[user account]</strong>
</span>
<br>
<ul>
<li>
<a target="_blank" href="/wiki.php?action=article&id=26">Membership level - promotion conditions</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=33">Member Level - Permissions by Level</a>
</li>
<li>
<a target="_blank" href="/wiki.php ?action=article&id=7">Inactive account, inactive torrent</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=8"> Multi-IP/Multi-Account/Passkey related usage information</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=10">Profile inquiry</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=35">Do not download & Off</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=53">VPN Allowance</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=54">Email service whitelist</a>
</li>
</ul>
<br>
<br>
<span style="color:green">
<strong>[related to torrenting and sending]</strong>
</span>
<br>
<ul>
<li>
<a target="_blank" href="/wiki.php?action=article&id=34">Description of each icon in the torrent list</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=21">Ratio & FreeLeech</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=29">Bonus points</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=3">How to download</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=24">How to use Notification RSS (uTorrent) - #1</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=25">How to use Notification RSS (uTorrent) - #2</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=49">Migrating from uTorrent to Deluge or qBittorrent</a>
</li>
</ul>
<br>
<br>
<span style="color:green">
<strong>[upload]</strong>
</span>
<br>
<ul>
<li>
<a target="_blank" href="/wiki.php?action=article&id=13">How to upload a torrent</a>
</li>
<li>
<a target="_blank " href="/wiki.php?action=article&id=52">Write name and title in English</a>
</li>
<li>
<a target="_blank" href="/wiki.php? action=article&id=14">Add format (another upload method)</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=15 ">How to attach images and use image hosting services</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=16">Capture screenshots, snapshots </a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=17">Check video information</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=18">How to use BDInfo
</li>
<li>
<a target="_blank" href="/wiki.php ?action=article&id=20">Standard input criteria</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article&id=36">Request for correction How do you deal with (report)?</a>
</li>
</ul>
<br>
<br>
<span style="color:green">
<strong>[General Site/Other]</strong>
</span>
<br>
<ul>
<li>
<a target="_blank" href="/wiki.php?action=article&id=22">IRC channel list</a>
</li>
<li>
<a target="_blank " href="/wiki.php?action=article&id=11">How to use BBCCode</a>
</li>
<li>
<a target="_blank" href="/wiki.php?action=article& id=12">Type of emoticon</a>
</li>
</ul>
<br>
<br>
<span style="color:green">
<strong>[WiKi Test]</strong>
</span>
<br>
<ul>
<li>
<a target="_blank" href="/wiki.php?action=article&id=23">WiKi usage test</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="2">
<div class="sidebar">
<div class="box">
<div class="head">Search</div>
<div class="pad">
<form class="search_form" name="articles" action="wiki.php" method="get">
<input type="hidden" name="action" value="search">
<input type="search" placeholder="Search for articles" name="search" size="20">
<input value="Search" type="submit" class="hidden">
</form>
<br style="line-height: 10px;">
<a href="wiki.php?action=browse" class="brackets">Browse the article</a>
</div>
</div>
<div class="box">
<div class="head">Table of contents</div>
<div class="body">
</div>
</div>
<div class="box box_info pad">
<ul>
<li>
<strong>Protect:</strong>
<ul>
<li>Read: Beginner</li>
<li>Edit: Supporter</li>
</ul>
</li>
<li>
<strong>Details:</strong>
<ul>
<li>Version: r20</li>
<li>Last editor: <span style="font-weight: bold;">
<a href="user.php?id=43115">MadCat</a>
</span>
</li>
<li>Last updated: <span class="time tooltip">2 years, 7 months ago</span>
</li>
</ul>
</li>
<li>
<strong>Alias:</strong>
<ul>
<li id="alias_ban">
<a href="wiki.php?action=article&name=ban">ban</a>
</li>
<li id="alias_warning">
<a href="wiki.php?action=article&name=warning">warning</a>
</li>
<li id="alias_warning">
<a href="wiki.php?action=article&name=warning">warning</a>
</li>
<li id="alias_ban">
<a href="wiki.php?action=article&name=ban">Ban</a>
</li>
<li id="alias_Block">
<a href="wiki.php?action=article&name=Block">Block</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="header">
<h2>Information about various sanctions including warnings</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Add</a>
<a href="reports.php?action=submit&type=wiki&article=2" class="brackets">Request edit</a>
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">Users who break the rules face consequences. For smooth operation, please follow the <a target="_blank" href="/rules.php">
<strong>
<span style="color:red">rule</span>
</strong>
</a>. Minor rule violations simply issue a warning, while serious rule violations result in account bans.
<br>
<br>
<div style="text-align:center">
<strong>
<span style="color:green">
<span class="size4">Type of sanction</span>
</span>
</strong><!-- div-->
<br>
<br>
<strong>
<span style="color:red">Warning</span>
</strong>
<br>
<br>
Warnings are the most common sanctions. If you receive a warning, check what rules you have violated and avoid receiving the same warning.
<br>
<br>
Users who have been warned will see the following icon next to their ID.
<br>
<br>
<center>
<a href="https://myimg.me/images/2019/09/25/49dfbed955da29a61c759983278fc934.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy loaded" alt="https://myimg.me/images/2019/09/25/49dfbed955da29a61c759983278fc934.png" src="https://myimg.me/images/2019/09/25/49dfbed955da29a61c759983278fc934.png" data-ll-status="loaded">
</a>
</center>
<br>
<br>
Degradation during the warning period will be charged at the same time, and will be adjusted automatically by the scheduler at the end of the warning period. However, Beginner is not automatically adjusted, and after 8 weeks of Beginner, your account will be automatically blocked.
<br>
<br>
The duration of the warning depends on its severity. Intentional violations of the rules or continuous violations of the same rules act as aggravating factors. Also, if you break the rules again while already being warned, you may end up with an extended period or your account being banned.
<br>
<br>
<strong>
<span style="color:red">Limit permissions</span>
</strong>
<br>
<br>
If necessary, you can restrict some or all of the user's permissions such as invitations, uploads, and writing. You cannot use that authority until the management decides that it is okay to allow it again.
<br>
<br>
<strong>
<span style="color:red">Deactivate account (block account)</span>
</strong>
<br>
<br>
When it is necessary to restrict access to the site, the management will deactivate the member's account. The following icon is displayed next to the ID of a deactivated account.
<br>
<center>
<a href="https://myimg.me/images/2019/09/25/02c6eb463ec3b45a016a2aafe7bf98a6.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy loaded" alt="https://myimg.me/images/2019/09/25/02c6eb463ec3b45a016a2aafe7bf98a6.png" src="https://myimg.me/images/2019/09/25/02c6eb463ec3b45a016a2aafe7bf98a6.png" png"="" data-ll-status="loaded">
</a>
</center>
<br>
<br>
<strong>
<span style="color:red">Other</span>
</strong>
<br>
<br>
IP can be blocked according to operational needs.
<br>
Upload credits may be reduced at the operator's discretion if it is found that an unfair advantage has been obtained.
<br>
You can confiscate invitations from users who do not normally use invitation privileges.
<br>
<br>
<div style="text-align:center">
<strong>
<span style="color:green">
<span class="size4">Fatal violation</span>
</span>
</strong><!-- div-->
<br>
<br>
Any acts prohibited by the rules, which seriously impede the operation, or violations related to the security of the site will result in immediate loss of membership from the site without warning.
<br>
<br>
Abuse of errors in the source of this tracker or any known use without reporting it is also considered abnormal use.
<br>
If a function supported by this tracker works abnormally, please do not personally check it and report it through the tracker feedback.
<br>
<br>
Cheating to gain weight by using abnormal actions or shortcuts is absolutely prohibited.
<br>
<br>
<div style="text-align:center">
<strong>
<span style="color:green">
<span class="size4">Attitude to accept sanctions</span>
</span><!-- strong-->
</strong>
</div>
<strong>
<br>
<br>
If you've been warned by mistake, go through the rules again to make sure you don't make the same mistake. You don't need to be discouraged and discouraged from your normal activities just because you've been warned. If you have received any action from the management, such as having your authority restricted or your rating being adjusted, you should be respectful and wait until it is released.
<br>
<br>
If you feel that you are in an unfair situation or that you have been subjected to excessive sanctions for your mistakes, please use the management message to request a consultation. It will be adjusted if the management has reason enough to judge it.
<br>
<br>
As a rule of thumb, the final decision on everything that happens on the site rests with the management team, and users are obligated to abide by it. You can claim your opinion, but you must accept it when the final decision is made. Nevertheless, if repeated and excessive appeals continue, additional sanctions may be imposed.</strong>
</div>
<strong>
</strong>
</div>
<strong>
</strong>
</div>
</div>
</div>
</div>
<div id="4">
<div class="header">
<h2>Precautions when using µTorrent v1.8.3 or later</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Add</a>
<a href="reports.php?action=submit&type=wiki&article=4" class="brackets">Request edit</a>
</div>
</div>
<div class="sidebar">
<div class="box">
<div class="head">Search</div>
<div class="pad">
<form class="search_form" name="articles" action="wiki.php" method="get">
<input type="hidden" name="action" value="search">
<input type="search" placeholder="Search for articles" name="search" size="20">
<input value="Search" type="submit" class="hidden">
</form>
<br style="line-height: 10px;">
<a href="wiki.php?action=browse" class="brackets">Browse the article</a>
</div>
</div>
<div class="box">
<div class="head">Table of contents</div>
<div class="body">
</div>
</div>
<div class="box box_info pad">
<ul>
<li>
<strong>Protect:</strong>
<ul>
<li>Read: Beginner</li>
<li>Edit: Supporter</li>
</ul>
</li>
<li>
<strong>Details:</strong>
<ul>
<li>Version: r10</li>
<li>Last editor: <span style="font-weight: bold;">
<a href="user.php?id=12">wizard</a>
</span>
</li>
<li>Last updated: <span class="time tooltip">3 years, 1 month ago</span>
</li>
</ul>
</li>
<li>
<strong>Alias:</strong>
<ul>
<li id="alias_preservefileorder">
<a href="wiki.php?action=article&name=preservefileorder">preservefileorder</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">It is inconvenient that the file list of torrent information is displayed in order of capacity, so we are often asked to change it. However, the torrent file list is not sorted by this site. It just prints them out in the order they are stored in the torrent seed. The problem is in the seed file itself, so be careful when creating it.
<br>
<br>
This is a problem caused by adding an option to torrent creation after utorrent v1.8.3.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://i.imgur.com/YNtg3fv.gif" data-rel="prettyPhoto">
<img style="max-width : 500px;" class="lazy loaded" alt="https://i.imgur.com/YNtg3fv.gif" src="https://i.imgur.com/YNtg3fv.gif" data-ll-status="loaded">
</a>
</center>
</div>
<br>
<br>
In the Create New Torrent window, an option called <strong>Preserve file order</strong> has been added as indicated by a box. This option is to select whether to sort by file name when generating torrent seeds. If this option is not selected, they will be sorted by capacity. It is unchecked by default, so you need to check it.
<br>
<br>
You can see why this is important by looking at the picture below.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://i.imgur.com/4icqG2o.png" data-rel="prettyPhoto">
<img style="max-width : 500px;" class="lazy loaded" alt="https://i.imgur.com/4icqG2o.png" src="https://i.imgur.com/4icqG2o.png" data-ll-status="loaded">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>Unchecked</strong>
</div>
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://i.imgur.com/SMI3sCx.png" data-rel="prettyPhoto">
<img style="max-width : 500px;" class="lazy loaded" alt="https://i.imgur.com/SMI3sCx.png" src="https://i.imgur.com/SMI3sCx.png" data-ll-status="loaded">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>When checked</strong>
</div>
<br>
<br>
In general, sorting by file name is used, and sorting by capacity is rarely used. In terms of convenience, sorting by file name is overwhelmingly convenient.
<br>
<br>
<span style="color:red">
<strong>So, make sure to check Preserve file order in uTorrent 1.8.3 or later.</strong>
</span>
</div>
</div>
</div>
</div>
<div id="5">
<div class="header">
<h2>Upload - group concept cleanup</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Add</a>
<a href="reports.php?action=submit&type=wiki&article=5" class="brackets">Request edit</a>
</div>
</div>
<div class="sidebar">
<div class="box">
<div class="head">Search</div>
<div class="pad">
<form class="search_form" name="articles" action="wiki.php" method="get">
<input type="hidden" name="action" value="search">
<input type="search" placeholder="Search for articles" name="search" size="20">
<input value="Search" type="submit" class="hidden">
</form>
<br style="line-height: 10px;">
<a href="wiki.php?action=browse" class="brackets">Browse the article</a>
</div>
</div>
<div class="box">
<div class="head">Table of contents</div>
<div class="body">
</div>
</div>
<div class="box box_info pad">
<ul>
<li>
<strong>Protect:</strong>
<ul>
<li>Read: Beginner</li>
<li>Edit: Supporter</li>
</ul>
</li>
<li>
<strong>Details:</strong>
<ul>
<li>Version: r14</li>
<li>Last editor: <span style="font-weight: bold;">
<a href="user.php?id=43115">MadCat</a>
</span>
</li>
<li>Last updated: <span class="time tooltip">2 years, 7 months ago</span>
</li>
</ul>
</li>
<li>
<strong>Alias:</strong>
<ul>
<li id="alias_group concept">
<a href="wiki.php?action=article&name=group concept">group,...</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">
<strong>Grouping function</strong> - In our tracker, a group is a function that puts related data together in one place.
<br>
<br>
Since the original source of our trackers was developed for music trackers, the 'artist' and 'album title' become the key elements of the group. The biggest commonality between each group is the “artist”, and within one group, the artist’s “album title” is common. Also within that group are small groups like "Format" and "Edition Type". This structure is illustrated as follows.
<br>
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/5f92505a27e099558a4cbf26f8e6e1df.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy loaded" alt="https://myimg.me/images/2019/09/26/5f92505a27e099558a4cbf26f8e6e1df.png" src="https://myimg.me/images/2019/09/26/5f92505a27e099558a4cbf26f8e6e1df.png" data-ll-status="loaded">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>General structure of groups</strong>
</div>
<br>
<br>
<br>
Examples of music category materials are as follows.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/783804837e4ee1f263b27a403ddeaa32.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy loaded" alt="https://myimg.me/images/2019/09/26/783804837e4ee1f263b27a403ddeaa32.png" src="https://myimg.me/images/2019/09/26/783804837e4ee1f263b27a403ddeaa32.png" data-ll-status="loaded">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>Group structure in music</strong>
</div>
<br>
<br>
<br>
Examples of TV category materials are as follows.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/a477b8c2b08e76dd0a88faeceaca8a2f.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy loaded" alt="https://myimg.me/images/2019/09/26/a477b8c2b08e76dd0a88faeceaca8a2f.png" src="https://myimg.me/images/2019/09/26/a477b8c2b08e76dd0a88faeceaca8a2f.png" data-ll-status="loaded">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>Group structure for TV shows</strong>
</div>
<br>
<br>
<br>
An example of the Movie category material is as follows.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/7ddcc249bf031e6091796a3083b8c04e.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy loaded" alt="https://myimg.me/images/2019/09/26/7ddcc249bf031e6091796a3083b8c04e.png" src="https://myimg.me/images/2019/09/26/7ddcc249bf031e6091796a3083b8c04e.png" data-ll-status="loaded">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>Group structure in movie</strong>
</div>
<br>
<br>
<br>
Did you get the hang of it?
<br>
<br>
<br>
For those of you who don't know why you need that yet, here's an example.
<br>
Let's take a look at what it will look like when grouping is done properly.
<br>
<br>
The target is TV, which is the category the grouping will be actively applied to.
<br>
Let's use the tragic drama '2009 Foreigners', which ended early.
<br>
<br>
<br>
If you watch a few dramas come and go, and see the list printed, it'll be something like this.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/fb218d204b99ee9df69db5026e32d0ac.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/fb218d204b99ee9df69db5026e32d0ac.png" data-src="https://myimg.me/images/2019/09/26/fb218d204b99ee9df69db5026e32d0ac.png">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>① Displayed in torrent list</strong>
</div>
<br>
<br>
You can see E02 and E03, and there are videos in various formats for each episode.
<br>
<br>
<br>
Click on the program title to enter. This area corresponds to the <strong>large group</strong> seen in the diagram above.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/5090c85cba8830c732fa9169567f3409.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/5090c85cba8830c732fa9169567f3409.png" data-src="https://myimg.me/images/2019/09/26/5090c85cba8830c732fa9169567f3409.png">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>② Appearance of program group</strong>
</div>
<br>
<br>
Torrents of E02 and E03 are neatly gathered. It's a pity I don't have E01.
<br>
You can find them separately in the search, but what did you put them here for? Then why is music grouped by artist? If you do a search anyway, you will find all music related to the artist. The advantage of a group is that it is not just collected, but that the order is arranged naturally, so it is easy to know which sashimi is omitted or duplicated, and information about the target corresponding to the group can be viewed.
<br>
Instead, the information here has to be filled out by someone. Someone should link the program poster. It is not a part that you write when uploading a torrent, but you need to do some manual work separately. But it's not that difficult. There are 7 torrents up right now, and only one of the torrent uploaders needs to come forward and write it. Or anyone looking at this place can write it. Anyone can freely edit by going to 'Edit Artist' among the various menus at the top. It's kind of like a wiki. (*Everyone has the right to edit, and there is a difference in the scope of edits depending on the membership level.)
<br>
With care written by only one person, all relevant torrents in the program group can benefit from it. Those who want to touch instead of seeing materials that have only been uploaded torrents without any explanation or are written incorrectly in P will be able to solve the problem here.
<br>
If you look on the right side, there is a section called 'Similar Artist', where you can write the name of the related program and link it. For example, we can link other dramas in which Yoon Tae-young appeared. If you use it well, you can conveniently navigate through related programs with just a click. (*The 'Similar Artist' feature does not work properly yet)
<br>
<br>
Now, since most of the group-related signs are based on music, they are coming out as 'artists' rather than 'programs'.
<br>
⇒ <a target="_blank" href="/artist.php?id=16">Example of writing reference</a>
<br>
<br>
If all the episodes were uploaded, they would be lined up in order, but if the hundreds of episodes are all scattered here, the scrolling would be too long. However, you can upload packs for one season or multiple episodes, so someone will upload them as packs. Sessions corresponding to that will be deleted. It would be nice to see the unfinished ones lined up by each episode and the finished ones arranged neatly by season, right?
<br>
<br>
<br>
Now that we're done browsing, let's dive into each episode. Press E03 the 3rd time to enter.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/35055a8daa9f5c782766f860170008e8.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/35055a8daa9f5c782766f860170008e8.png" data-src="https://myimg.me/images/2019/09/26/35055a8daa9f5c782766f860170008e8.png">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>③ Appearance of episode group</strong>
</div>
<br>
<br>
It looks like only a part of the list has been ripped off, but it's nothing special.
<br>
However, if you look closely, there is information about the third episode, not the entire program. This is a drama with a continuous story, so it may not be of much use, but it will be useful as a guide for the cast in programs where guests change frequently like entertainment programs. This too can be modified by anyone if they wish. Go to the 'Edit Contents' menu at the top and edit it in the same way as 'Edit Artist'. (*Everyone has the right to edit, and there is a difference in the scope of edits depending on the membership level.)
<br>
<br>
But I can't see any screenshots or video encoding information.
<br>
I was curious, so I clicked on one of the top lists.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/c97dd1cb2bd7fe2f22f7deda4e77e979.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/c97dd1cb2bd7fe2f22f7deda4e77e979.png" data-src="https://myimg.me/images/2019/09/26/c97dd1cb2bd7fe2f22f7deda4e77e979.png">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>④ torrent information expanded</strong>
</div>
<br>
<br>
Oh, it was hidden here. Why did you hide it so tightly?
<br>
That's just to make it easy to see multiple formats in one place.
<br>
You can easily compare each torrent by unfolding it without moving the page, closing it, and expanding the other one.
<br>
<br>
<br>
It is necessary to distinguish the use of the area in Figure ③ above and the area in Figure ④ above.
<br>
No. ③ is a place to store common information of all torrents bound here like the plot of each episode, and No. ④ is where you have to enter your own information that is different for each torrent material. Screenshots will be different for each torrent. So, you have to enter the hidden area of No. ④. If you put it in the area of No. 3, it will be difficult for the person who uploads material of a different quality or release next time. They should only play on their own land.
<br>
<br>
<br>
This is an important distinction, so let's see where these areas relate to when uploading torrents.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://i.imgur.com/0kOvEz5.png" data-rel="prettyPhoto">
<img style="max-width : 500px;" class="lazy" alt="https://i.imgur.com/0kOvEz5.png" data-src="https://i.imgur.com/0kOvEz5.png">
</a>
</center>
</div>
<br>
<div style="text-align:center">
<strong>⑤ Upload form</strong>
</div>
<br>
<br>
<br>
I'm explaining the group, so I can't help but follow that part.
<br>
If you look at the top of the picture, there is a part marked in green and a part marked in orange.
<br>
The part marked in green corresponds to the owner of the 'large group'. Here, the title of the program will be '2009 Foreign Team'.
<br>
The part marked in orange is probably a 'small group'. You must enter a 'broadcast round'.
<br>
These two parts have the same structure as the data of other categories to which the group is applied, so either category should be entered with special care.
<br>
<br>
And if you look down, there is an area marked in blue and red.
<br>
<span style="color:blue">blue</span> is the area of ③ mentioned above. Enter the general information for that round.
<br>
<span style="color:red">Red</span> is only applicable to uploading torrents, and is the area shown in figure ④ above.
<br>
It would be appropriate to include screenshots and encoding information.
<br>
<br>
The two divisions are also applied in the same structure to other classifications, only the name is different. Just remember to put general information in the upper area and the information directly related to the torrent in the lower area, so you don't make the mistake of writing in the wrong place.
<br>
<br>
<br>
Now, if you have looked at this much, wouldn't it have been better to understand the group?
<br>
<br>
The same goes for movie groups. The only difference is that 'director' is entered instead of 'program title' and 'movie title' is entered instead of 'running'. Everything else has the same structure. You have a large group of several movies from the same director, and clicking on each movie will create a smaller group of movies containing that movie's multiple formats.
<br>
Other classifications are omitted because the group is less important.
<br>
<br>
<br>
<br>
<strong>Using format addition</strong>
<br>
<br>
As mentioned above, in order to properly form a group, you must enter a name that exactly matches the part that binds the 'large group' and the 'small group'. If you enter the 'name' correctly, it will be automatically bound. But if it's even slightly different, the human eye knows that it's related, but the computer doesn't know it and throws it in the wrong place. In order to prevent duplication before registering any materials, you can also check whether there are related materials during the search process. And if it has already been uploaded, you can apply the name used for the material as it is. There is a function to help input even a little in such a case. It's called <strong>add format</strong>.
<br>
<br>
Format addition is available only when certain materials have already been registered. Because it is on the information page of that material.
<br>
<br>
<br>
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/f083b9fdae097327baf67bf3d4fd5537.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/f083b9fdae097327baf67bf3d4fd5537.png" data-src="https://myimg.me/images/2019/09/26/f083b9fdae097327baf67bf3d4fd5537.png">
</a>
</center>
</div>
<br>
<br>
As shown in the picture, there is a 'Add Format' menu. Shall we go inside?
<br>
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/d19e93862299bc7a45e4ae3494a07fd7.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/d19e93862299bc7a45e4ae3494a07fd7.png" data-src="https://myimg.me/images/2019/09/26/d19e93862299bc7a45e4ae3494a07fd7.png">
</a>
</center>
</div>
<br>
<br>
It came out like an upload form to fill in when uploading, but if you look closely, something is different.
<br>
Pre-entered parts are sparse. If you look closely, the pre-entered information corresponds to the same information as previously uploaded torrents. Since the classification that uses the 'Add Format' function is a movie now, parts that can be recycled without re-entering such as director, movie title, and production year, especially those related to grouping, are entered in advance for convenience. As long as you enter the rest of the information correctly, you do not have to worry about whether it will be a group or not. Therefore, if you want to upload a file that is different only in the format of the file that has already been uploaded, you can actively use the 'Add Format' menu to upload data systematically and conveniently.
<br>
Also, in the case of area ③, which contains general information that is not directly related to torrents, the contents entered later will overwrite the previous contents. It would be futile if someone wrote it well before and uploaded it, but someone who uploads it later writes it out roughly and overwrites it. The general information is kept as it is when 'add format' is done, so be sure to use 'add format' function when adding data with only a different format for that reason.
<br>
And don't forget that those of you who are the first to post related material are pioneers. Depending on how you upload it in the first place, you need to be especially careful when uploading as it can determine whether a good or bad upload will follow.
<br>
<br>
<br>
<br>
<strong>Customize grouped output</strong>
<br>
<br>
If you are not familiar with gazelle or like a style like P, the style in which the torrent list is output may be awkward. Most of them use the default settings as they are, so the things hanging around each group are different, so it won't catch your eye at first. Just because grouping is done, it is not necessary to apply and output the search contents unconditionally. There are three output methods, so you can choose the one you like.
<br>
<br>
If you go to the '<strong>Profile</strong>' menu next to the ID, there is a '<strong>Torrent grouping</strong>' item. There are two selection menus, and the default output method is different depending on how you select them.
<br>
<br>
<br>
<strong>1) group torrent by default - open group by default</strong>
<br>
<br>
This is the default state when no settings are touched.
<br>
While applying a group, all of them are opened and printed by default.
<br>
It may look a bit complicated, but you can see all the printed contents in detail at a glance.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/2bd067eb269030ae11ee072e16a9d907.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/2bd067eb269030ae11ee072e16a9d907.png" data-src="https://myimg.me/images/2019/09/26/2bd067eb269030ae11ee072e16a9d907.png">
</a>
</center>
</div>
<br>
<br>
<br>
<strong>2) group torrent by default - close group by default</strong>
<br>
<br>
Apply a group to the list, but close it by default.
<br>
When you click the [+] part, it changes to [-] like the blue part in the picture and the group opens.
<br>
It has the advantage of being able to open and view only the necessary data.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/abe3d263b45340cd40968adec68e6e45.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/abe3d263b45340cd40968adec68e6e45.png" data-src="https://myimg.me/images/2019/09/26/abe3d263b45340cd40968adec68e6e45.png">
</a>
</center>
</div>
<br>
<br>
<br>
<strong>3) Ungroup torrents by default - (regardless)</strong>
<br>
<br>
Turn off the group to print. There is no way to open it on a list.
<br>
It can be said that it is most similar to P's style.
<br>
<br>
<div style="text-align:center">
<center>
<a href="https://myimg.me/images/2019/09/26/cb94980c139ffd1a5d109ca1045c636e.png" data-rel="prettyPhoto">
<img style="max-width: 500px;" class="lazy" alt="https://myimg.me/images/2019/09/26/cb94980c139ffd1a5d109ca1045c636e.png" data-src="https://myimg.me/images/2019/09/26/cb94980c139ffd1a5d109ca1045c636e.png">
</a>
</center>
</div>
<br>
<br>
<br>
<br>
No. 1 can see a lot of information, but it's a bit cluttered.
<br>
No. 3 looks familiar, but it is inconvenient to have to go inside to see the information properly.
<br>
<br>
In the future, I plan to use setting 2, which is a style that combines the strengths of the two.
<br>
<br>
Everyone has their own style, so choose the one you like and use it.
</div>
</div>
</div>
</div>
<div id="26">
<div class="header">
<h2>Account - Membership level, upgrade conditions</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Add</a>
<a href="reports.php?action=submit&type=wiki&article=26" class="brackets">Request edit</a>
</div>
</div>
<div class="sidebar">
<div class="box">
<div class="head">Search</div>
<div class="pad">
<form class="search_form" name="articles" action="wiki.php" method="get">
<input type="hidden" name="action" value="search">
<input type="search" placeholder="Search for articles" name="search" size="20">
<input value="Search" type="submit" class="hidden">
</form>
<br style="line-height: 10px;">
<a href="wiki.php?action=browse" class="brackets">Browse the article</a>
</div>
</div>
<div class="box">
<div class="head">Table of contents</div>
<div class="body">
</div>