Skip to content

Commit 8dec76a

Browse files
authored
Ogury adapter: set pbs to true
2 parents 25d8442 + 828cc25 commit 8dec76a

File tree

1,209 files changed

+48005
-38304
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,209 files changed

+48005
-38304
lines changed

.bowerrc

-3
This file was deleted.

.devcontainer/devcontainer.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"image": "mcr.microsoft.com/devcontainers/jekyll:2",
3+
"customizations": {
4+
"vscode": {
5+
"extensions": [
6+
"rebornix.Ruby",
7+
"DavidAnson.vscode-markdownlint"
8+
]
9+
}
10+
}
11+
}

.github/pull_request_template.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<!--
22
Thanks for improving the documentation 😃
33
Please give a short description and check the matching checkboxes to help us review this as quick as possible.
4+
5+
Please make the PR writeable. This allows us to fix typos, grammar and linting errors ourselves, which makes
6+
merging and reviewing a lot faster for everybody.
47
-->
58

69
## 🏷 Type of documentation

.github/workflows/ci.yml

+16-5
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,23 @@ on:
99
- master
1010

1111
jobs:
12+
# based on https://github.com/DavidAnson/markdownlint-cli2-action/blob/main/.github/workflows/changed.yml
13+
# runs markdown lint only for changed files
1214
markdownlint:
1315
name: run markdownlint
1416
runs-on: ubuntu-latest
15-
container: ghcr.io/igorshubovych/markdownlint-cli:v0.35.0
1617
steps:
17-
- uses: actions/checkout@master
18-
- name: markdownlint-cli
19-
run: |
20-
markdownlint --config .markdownlint.json --ignore-path .markdownlintignore "**/*.md"
18+
- uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
- uses: tj-actions/changed-files@v44
22+
id: changed-files
23+
with:
24+
files: '**/*.md'
25+
separator: ","
26+
- uses: DavidAnson/markdownlint-cli2-action@v16
27+
if: steps.changed-files.outputs.any_changed == 'true'
28+
with:
29+
globs: "${{ steps.changed-files.outputs.all_changed_files }},!_includes"
30+
separator: ","
31+
config: '.markdownlint.json'

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Gemfile.lock
33
/dist/bootstrap
44
/dist/jquery
55
/.idea
6+
/.vscode
67
.DS_Store
78
/vendor
89
/.bundle
@@ -12,6 +13,7 @@ Gemfile.lock
1213

1314
# Files generated by `npm install`
1415
node_modules/
16+
!_sass/node_modules
1517
/.vs/prebid.github.io/v17/.suo
1618
/.vs/slnx.sqlite
1719
/.vs

.markdownlint.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"default": true,
3+
"MD009": false,
34
"MD013": false,
5+
"MD022": false,
46
"MD024": false,
57
"MD025": false,
68
"MD033": false,
79
"MD036": false
8-
}
10+
}

.markdownlintignore

-11
This file was deleted.
Binary file not shown.

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
source 'https://rubygems.org'
22
gem 'github-pages', '>= 228'
3-
3+
gem 'ffi', '1.16.3'
44
gem "webrick", "~> 1.7"

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# docs.prebid.org source
2+
13
This repository contains the source files for the Prebid.js documentation site at [Prebid.org](https://prebid.org).
24

35
Please see the sections below for more information:
@@ -35,15 +37,15 @@ All docs are under the license shown in the `LICENSE` file in this directory.
3537

3638
The site is hosted on GitHub pages, and uses [Jekyll](https://jekyllrb.com/) to generate the HTML. Jekyll is written in the [Ruby](https://www.ruby-lang.org/en/) language.
3739

38-
1. follow the instructions at https://jekyllrb.com/docs/installation/ for your OS
40+
1. follow the instructions at [jekyllrb.com/docs/installation/](https://jekyllrb.com/docs/installation/) for your OS
3941
1. gem install github-pages
4042
1. start Jekyll as described below
4143

42-
For CSS, the site uses Laravel Mix to build CSS from Sass (scss-flavored) source files. Under the hood Laravel Mix uses Webpack.
44+
For CSS, the site uses Jekyll board tools to compile SCSS down to CSS.
4345

44-
1. follow the instructions at https://nodejs.dev to install Node.js for your OS
45-
1. `npm ci` to install packages for building assets
46-
1. build assets as described below
46+
1. Install `boostrap` via `npm install` to make the build work
47+
1. [Jekyll assets management](https://jekyllrb.com/docs/assets/)
48+
1. [Jekyll SASS plugin](https://jekyllrb.com/docs/configuration/sass/)
4749

4850
The markdown files are linted via [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli). VSCode supports the [.markdownlintignore](.markdownlintignore) file.
4951
You may need to configure the disabled rules specified in [.markdownlint.json](.markdownlint.json) directly in your project settings. You can invoke linting in CLI via
@@ -106,6 +108,10 @@ This means an adaptor is not available to download from Prebid.org as soon as th
106108

107109
<a name="thanks"></a>
108110

111+
## Liquid Templating
112+
113+
* [jekyll - check for non empty](https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/jekyll/liquid/conditionals/non-empty.html)
114+
109115
## Thanks
110116

111117
Many thanks to the following people who have submitted content to Prebid.org. We really appreciate the help!

_assets/sass/main.scss

-43
This file was deleted.

_assets/sass/vendor/_bootstrap.scss

-17
This file was deleted.

_assets/sass/vendor/_bourbon.scss

-2
This file was deleted.

_assets/sass/vendor/_include-media.scss

-2
This file was deleted.

_config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ collections:
8787

8888
port: 8080
8989

90-
exclude: ['README.md', 'LICENSE', 'bower.json', 'Gemfile.lock', 'Gemfile', 'vendor', 'node_modules', '_assets', 'mix-manifest.json', 'webpack.mix.js', 'find-ungrouped-bidders.sh' ]
90+
exclude: ['README.md', 'LICENSE', 'Gemfile.lock', 'Gemfile', 'vendor', 'find-ungrouped-bidders.sh' ]
91+
include: ['node_modules']
9192

9293
keep_files:
9394
- assets/css/main-bundle.css

_data/dropdown_v2.yml

+17-17
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
- subsectionId: 0
6262
sectionId: 1
6363
sectionName: Product
64-
title: Analytics
65-
link: /overview/analytics.html
64+
title: Modules
65+
link: /dev-docs/modules/index.html
6666
needsDivider: 0
6767
isHeader: 0
6868
isSubHeader: 0
@@ -71,8 +71,8 @@
7171
- subsectionId: 0
7272
sectionId: 1
7373
sectionName: Product
74-
title: Modules
75-
link: /dev-docs/modules/index.html
74+
title: Publisher API
75+
link: /dev-docs/publisher-api-reference.html
7676
needsDivider: 0
7777
isHeader: 0
7878
isSubHeader: 0
@@ -81,8 +81,8 @@
8181
- subsectionId: 0
8282
sectionId: 1
8383
sectionName: Product
84-
title: Publisher API
85-
link: /dev-docs/publisher-api-reference.html
84+
title: Bidder Params
85+
link: /dev-docs/bidders.html
8686
needsDivider: 0
8787
isHeader: 0
8888
isSubHeader: 0
@@ -91,8 +91,8 @@
9191
- subsectionId: 0
9292
sectionId: 1
9393
sectionName: Product
94-
title: Bidder Params
95-
link: /dev-docs/bidders.html
94+
title: Analytics
95+
link: /overview/analytics.html
9696
needsDivider: 0
9797
isHeader: 0
9898
isSubHeader: 0
@@ -244,15 +244,6 @@
244244
isHeader: 0
245245
isSubSectionStart: 0
246246

247-
- subsectionId: 2
248-
sectionId: 2
249-
sectionName: Support
250-
title: Training Videos
251-
link: /videos/index.html
252-
needsDivider: 0
253-
isHeader: 0
254-
isSubSectionStart: 0
255-
256247
- subsectionId: 2
257248
sectionId: 2
258249
sectionName: Support
@@ -285,6 +276,15 @@
285276
sectionName: Support
286277
title: Prebid Server
287278
link: /faq/prebid-server-faq.html
279+
needsDivider: 0
280+
isHeader: 0
281+
isSubSectionStart: 0
282+
283+
- subsectionId: 3
284+
sectionId: 2
285+
sectionName: Support
286+
title: Prebid Mobile
287+
link: /faq/prebid-mobile-faq.html
288288
needsDivider: 1
289289
isHeader: 0
290290
isSubSectionStart: 0

_data/partners.yml

-5
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,6 @@
173173
imgURL: /assets/images/partners/community/Adform-Logo.png
174174
type: community
175175

176-
- company: Adomik
177-
link: https://adomik.com/
178-
imgURL: /assets/images/partners/community/Adomik-logo.png
179-
type: community
180-
181176
- company: Adtelligent
182177
link: https://adtelligent.com/
183178
type: community

0 commit comments

Comments
 (0)