Update README.md #9
Annotations
13 warnings and 2 notices
Julia 1.6 - ubuntu-latest - x64 - push
The following actions uses Node.js version which is deprecated and will be forced to run on node20: codecov/codecov-action@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Julia 1 - ubuntu-latest - x64 - push
The following actions uses Node.js version which is deprecated and will be forced to run on node20: codecov/codecov-action@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Julia 1.6 - ubuntu-latest - x86 - push
The following actions uses Node.js version which is deprecated and will be forced to run on node20: codecov/codecov-action@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Julia pre - ubuntu-latest - x64 - push
The following actions uses Node.js version which is deprecated and will be forced to run on node20: codecov/codecov-action@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Julia pre - ubuntu-latest - x86 - push
The following actions uses Node.js version which is deprecated and will be forced to run on node20: codecov/codecov-action@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Documentation:
../../../.julia/packages/Documenter/PLD7m/src/Expanders.jl#L564
failed to run `@example` block in src/examples/manipulate.md:10-24
```@example manipulate
using Winston
using Tk
using Compat; import Compat.String
function render(c, p)
ctx = getgc(c)
Base.Graphics.set_source_rgb(ctx, 1, 1, 1)
Base.Graphics.paint(ctx)
Winston.page_compose(p, Tk.cairo_surface(c))
reveal(c)
Tk.update()
end
```
value =
ArgumentError: Package Winston not found in current path.
- Run `import Pkg; Pkg.add("Winston")` to install the Winston package.
|
Documentation:
../../../.julia/packages/Documenter/PLD7m/src/Expanders.jl#L564
failed to run `@example` block in src/examples/manipulate.md:30-101
```@example manipulate
module ManipulateContext
using Winston
end
abstract type ManipulateWidget end
get_label(widget::ManipulateWidget) = widget.label
mutable struct SliderWidget <: ManipulateWidget
nm
label
initial
rng
end
function make_widget(parent, widget::SliderWidget)
sl = Slider(parent, widget.rng)
set_value(sl, widget.initial)
sl
end
slider(nm::AbstractString, label::AbstractString, rng::UnitRange, initial::Integer) = SliderWidget(nm, label, initial, rng)
slider(nm::AbstractString, label::AbstractString, rng::UnitRange) = slider(nm, label, rng, minimum(rng))
slider(nm::AbstractString, rng::UnitRange) = slider(nm, nm, rng, minimum(rng))
mutable struct PickerWidget <: ManipulateWidget
nm
label
initial
vals
end
function make_widget(parent, widget::PickerWidget)
cb = Combobox(parent)
set_items(cb, widget.vals)
set_value(cb, widget.initial)
set_editable(cb, false)
cb
end
picker(nm::AbstractString, label::AbstractString, vals::Vector{T}, initial) where {T <: AbstractString} = PickerWidget(nm, label, initial, vals)
picker(nm::AbstractString, label::AbstractString, vals::Vector{T}) where {T <: AbstractString} = picker(nm, label, vals, vals[1])
picker(nm::AbstractString, vals::Vector{T}) where {T <: AbstractString} = picker(nm, nm, vals)
picker(nm::AbstractString, label::AbstractString, vals::Dict, initial) = PickerWidget(nm, label, vals, initial)
picker(nm::AbstractString, label::AbstractString, vals::Dict) = PickerWidget(nm, label, vals, [string(k) for (k,v) in vals][1])
picker(nm::AbstractString, vals::Dict) = picker(nm, nm, vals)
mutable struct CheckboxWidget <: ManipulateWidget
nm
label
initial
end
function make_widget(parent, widget::CheckboxWidget)
w = Checkbutton(parent, widget.label)
set_value(w, widget.initial)
w
end
get_label(widget::CheckboxWidget) = nothing
checkbox(nm::AbstractString, label::AbstractString, initial::Bool) = CheckboxWidget(nm, label, initial)
checkbox(nm::AbstractString, label::AbstractString) = checkbox(nm, label, false)
mutable struct ButtonWidget <: ManipulateWidget
label
nm
end
make_widget(parent, widget::ButtonWidget) = Button(parent, widget.label)
get_label(widget::ButtonWidget) = nothing
button(label::AbstractString) = ButtonWidget(label, nothing)
```
value =
ArgumentError: Package Winston not found in current path.
- Run `import Pkg; Pkg.add("Winston")` to install the Winston package.
|
Documentation:
../../../.julia/packages/Documenter/PLD7m/src/Expanders.jl#L564
failed to run `@example` block in src/examples/manipulate.md:105-115
```@example manipulate
mutable struct EntryWidget <: ManipulateWidget
nm
label
initial
end
make_widget(parent, widget::EntryWidget) = Entry(parent, widget.initial)
entry(nm::AbstractString, label::AbstractString, initial::AbstractString) = EntryWidget(nm, label, initial)
entry(nm::AbstractString, initial::AbstractString) = EntryWidget(nm, nm, initial)
entry(nm::AbstractString) = EntryWidget(nm, nm, "{}")
```
value = UndefVarError: `ManipulateWidget` not defined
|
Documentation:
../../../.julia/packages/Documenter/PLD7m/src/Expanders.jl#L564
failed to run `@example` block in src/examples/manipulate.md:171-194
```@example manipulate
ex = quote
x = linspace( 0, n * pi, 100 )
c = cos(x)
s = sin(x)
p = FramedPlot()
setattr(p, "title", title)
if fillbetween
add(p, FillBetween(x, c, x, s) )
end
add(p, Curve(x, c, "color", color) )
add(p, Curve(x, s, "color", "blue") )
file(p, "example1.png")
p
end
obj = manipulate(ex,
slider("n", "[0, n*pi]", 1:10)
,entry("title", "Title", "title")
,checkbox("fillbetween", "Fill between?", true)
,picker("color", "Cos color", ["red", "green", "yellow"])
,button("update")
)
```
value = UndefVarError: `slider` not defined
|
Documentation:
../../../.julia/packages/Documenter/PLD7m/src/Expanders.jl#L564
failed to run `@example` block in src/examples/process.md:5-15
```@example process
f = "logo.gif"
using Base64
function process_file(f)
a = readchomp(`cat $f`)
"<!-- $f -->\n<img src='data:image/gif;base64,$(base64encode(a))'></img>"
end
process_file(f)
```
value =
failed process: Process(`cat logo.gif`, ProcessExited(1)) [1]
|
Documentation:
../../../.julia/packages/Documenter/PLD7m/src/Expanders.jl#L564
failed to run `@example` block in src/examples/sketch.md:5-32
```@example sketch
using Tk
using Graphics
function sketch_window()
w = Window("drawing", 400, 300)
c = Canvas(w)
pack(c)
lastx = 0
lasty = 0
cr = getgc(c)
set_source_rgb(cr, 1, 1, 1)
paint(cr)
reveal(c)
set_source_rgb(cr, 0, 0, 0.85)
c.mouse.button1press = function (c, x, y)
lastx = x; lasty = y
end
c.mouse.button1motion = function (c, x, y)
move_to(cr, lastx, lasty)
line_to(cr, x, y)
stroke(cr)
reveal(c)
lastx = x; lasty = y
end
c
end
```
value =
ArgumentError: Package Graphics not found in current path.
- Run `import Pkg; Pkg.add("Graphics")` to install the Graphics package.
|
Documentation:
../../../.julia/packages/Documenter/PLD7m/src/deployconfig.jl#L307
Currently the GitHub Pages build is not triggered when using `GITHUB_TOKEN` for authentication. See issue #1177 (https://github.com/JuliaDocs/Documenter.jl/issues/1177) for more information.
|
Julia 1 - ubuntu-latest - x86 - push
The following actions uses Node.js version which is deprecated and will be forced to run on node20: codecov/codecov-action@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Julia 1.6 - ubuntu-latest - x64 - push
[setup-julia] If you are testing 1.6 as a Long Term Support (lts) version, consider using the new "lts" version specifier instead of "1.6" explicitly, which will automatically resolve the current lts.
|
Julia 1.6 - ubuntu-latest - x86 - push
[setup-julia] If you are testing 1.6 as a Long Term Support (lts) version, consider using the new "lts" version specifier instead of "1.6" explicitly, which will automatically resolve the current lts.
|