Skip to content

Documetation points to some nonexistent marble diagrams  #5067

@Stephan202

Description

@Stephan202

Noticed this while reading some JavaDoc in the context of a 1.2.6 -> 2.0.5 upgrade. I wrote the following script to list all JavaDoc-referenced PNGs which do not yield an HTTP 200 response when resolved:

#!/usr/bin/env bash

find . -name '*.java' -print0 \
  | xargs -0 grep '^\s*\*' \
  | grep -oP 'https.*?\.png' \
  | sort -u \
  | while read -r I; do
      curl -L -o /dev/null -s -w "%{http_code} ${I}\n" "${I}"
    done \
  | grep -v '^200'

And then applied it to the 2.x branch (rev 0a2610e). The output is:

404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.toObservable.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.concat.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.error.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.flatMapCompletable.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.flatMap.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.flatMapPublisher.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.flatMapSingle.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.just.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.map.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.merge.oo.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.merge.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.observeOn.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.subscribeOn.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/onExceptionResumeNextViaMaybe.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/S.BehaviorProcessor.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.flatMapCompletable.png
404 https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.flatMapMaybe.png

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions