-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
249 changed files
with
7,753 additions
and
2,696 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"default": true, | ||
"MD009": false, | ||
"MD013": false, | ||
"MD022": false, | ||
"MD024": false, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
<ul class="nav nav-tabs" role="tablist"> | ||
<li class="nav-item ui-tab" role="presentation"> | ||
<button class="nav-link active" id="{{ include.id }}-kotlin-tab" data-toggle="tab" data-target="#{{ include.id }}-kotlin" type="button" role="tab" aria-controls="kotlin" aria-selected="true">Kotlin</button> | ||
</li> | ||
<li class="nav-item ui-tab" role="presentation"> | ||
<button class="nav-link" id="{{ include.id }}swift-tab" data-toggle="tab" data-target="#{{ include.id }}-swift" type="button" role="tab" aria-controls="swift" aria-selected="false">Swift</button> | ||
</li> | ||
</ul> | ||
<div class="tab-content" id="code-tab-content"> | ||
<div class="tab-pane fade show active" id="{{ include.id }}-kotlin" role="tabpanel" aria-labelledby="{{ include.id }}-kotlin-tab"> | ||
<pre><code class="language-kotlin">{{ include.kotlin }}</code></pre> | ||
</div> | ||
<div class="tab-pane fade" id="{{ include.id }}-swift" role="tabpanel" aria-labelledby="{{ include.id }}-swift-tab"> | ||
<pre><code class="language-swift">{{ include.swift }}</code></pre> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<table class="table table-bordered table-striped"> | ||
<tr> | ||
<th class="pbTh">Bidder Code</th> | ||
<td class="pbTd">{{ page.biddercode }}</td> | ||
<th class="pbTh">Prebid.org Member</th> | ||
<td class="pbTd">{% if page.prebid_member == true %}yes{% else %}no{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">Prebid.js Adapter</th> | ||
<td class="pbTd">{% if page.pbjs == true %}yes{% else %}no{% endif %}</td> | ||
<th class="pbTh">Prebid Server Adapter</th> | ||
<td class="pbTd">{% if page.pbs == true %}yes{% else %}no{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">Media Types</th> | ||
<td class="pbTd">{% unless page.media_types contains 'no-display' %}display{% if page.media_types contains 'video' %},{% endif %}{% endunless %}{% if page.media_types contains 'video' %} video{% endif %}{% if page.media_types != "no-display, native" and page.media_types contains 'native' %}, native{% endif %}{% if page.media_types == "no-display, native" %}native{% endif %}</td> | ||
<th class="pbTh">Multi Format Support</th> | ||
<td class="pbTd">{% if page.multiformat_supported %}{{page.multiformat_supported}}{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">TCF-EU Support</th> | ||
<td class="pbTd">{% if page.tcfeu_supported == true %}yes{% else %}no{% endif %}</td> | ||
<th class="pbTh">IAB GVL ID</th> | ||
<td class="pbTd">{% if page.gvl_id %}{{page.gvl_id}}{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">GPP Support</th> | ||
<td class="pbTd">{% if page.gpp_sids and page.gpp_sids != '' %}{{page.gpp_sids}}{% elsif page.gpp_supported == true and page.gpp_sids == nil %}some (check with bidder){% elsif page.gpp_supported == false and gpp_sids == nil %}None{% else %}check with bidder{% endif %}</td> | ||
<th class="pbTh">DSA Support</th> | ||
<td class="pbTd">{% if page.dsa_supported == true %}yes{% elsif page.dsa_supported == false %}no{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">USP/CCPA Support</th> | ||
<td class="pbTd">{% if page.usp_supported == true %}yes{% elsif page.usp_supported == false %}no{% else %}check with bidder{% endif %}</td> | ||
<th class="pbTh">COPPA Support</th> | ||
<td class="pbTd">{% if page.coppa_supported == true %}yes{% elsif page.coppa_supported == false %}no{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">Supply Chain Support</th> | ||
<td class="pbTd">{% if page.schain_supported == true %}yes{% elsif page.schain_supported == false %}no{% else %}check with bidder{% endif %}</td> | ||
<th class="pbTh">Demand Chain Support</th> | ||
<td class="pbTd">{% if page.dchain_supported == true %}yes{% elsif page.dchain_supported == false %}no{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">Safeframes OK</th> | ||
<td class="pbTd">{% if page.safeframes_ok == false %}no{% elsif page.safeframes_ok == true %}yes{% else %}check with bidder{% endif %}</td> | ||
<th class="pbTh">Supports Deals</th> | ||
<td class="pbTd">{% if page.deals_supported == false %}no{% elsif page.deals_supported == true %}yes{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">Floors Module Support</th> | ||
<td class="pbTd">{% if page.floors_supported == true %}yes{% elsif page.floors_supported == false %}no{% else %}check with bidder{% endif %}</td> | ||
<th class="pbTh">First Party Data Support</th> | ||
<td class="pbTd">{% if page.fpd_supported == true %}yes{% elsif page.fpd_supported == false %}no{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">User IDs</th> | ||
<td class="pbTd">{% if page.userIds and page.userIds != '' %}{{page.userIds}}{% else %}none{% endif %}</td> | ||
<th class="pbTh">ORTB Blocking Support</th> | ||
<td class="pbTd">{% if page.ortb_blocking_supported == true %}yes{% elsif page.ortb_blocking_supported == false %}no{% elsif page.ortb_blocking_supported == 'partial' %}partial{% else %}check with bidder{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<th class="pbTh">Privacy Sandbox</th> | ||
<td class="pbTd">{% if page.privacy_sandbox %}{{page.privacy_sandbox}}{% else %}check with bidder{% endif %}</td> | ||
{% if page.pbs == true %} | ||
<th class="pbTh">Prebid Server App Support</th> | ||
<td class="pbTd">{% if page.pbs_app_supported == false %}no{% elsif page.pbs_app_supported == true %}yes{% else %}check with bidder{% endif %}</td> | ||
{% else %} | ||
<th class="pbTh"></th> | ||
<td class="pbTd"></td> | ||
{% endif %} | ||
</tr> | ||
|
||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{: .alert.alert-warning :} | ||
This bidder requires the client side Prebid.js adapter to work on Prebid Server due to the dependency on the `transformBidParams` function. | ||
See [prebid.js #6361](https://github.com/prebid/Prebid.js/issues/6361) for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div markdown="span" class="pb-alert pb-alert-warning" role="alert"> | ||
Important: This resource should not be construed as legal advice and Prebid.org makes no guarantees about compliance with any law or regulation. | ||
Please note that because every company and its collection, use, and storage of personal data is different, you should seek independent legal advice | ||
relating to obligations under your regional regulations, including the GDPR, the ePrivacy Directive and individual country/province/state laws. Only a | ||
lawyer can provide you with legal advice specifically tailored to your situation. Nothing in this guide is intended to provide you with, or should be | ||
used as a substitute for, legal advice tailored to your business. | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.