From ef03469fec14f1f0358b690934fc173d744f4e7d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:26:01 +0200 Subject: Adding debian version 5.6.0-1. Signed-off-by: Daniel Baumann --- .../epoch/tests/render/basic/area.html | 450 +++++++++++++ .../epoch/tests/render/basic/bar.html | 745 +++++++++++++++++++++ .../epoch/tests/render/basic/histogram.html | 155 +++++ .../epoch/tests/render/basic/line.html | 471 +++++++++++++ .../epoch/tests/render/basic/model.html | 94 +++ .../epoch/tests/render/basic/options.html | 267 ++++++++ .../epoch/tests/render/basic/pie.html | 346 ++++++++++ .../epoch/tests/render/basic/scatter.html | 398 +++++++++++ 8 files changed, 2926 insertions(+) create mode 100644 debian/missing-sources/epoch/tests/render/basic/area.html create mode 100644 debian/missing-sources/epoch/tests/render/basic/bar.html create mode 100644 debian/missing-sources/epoch/tests/render/basic/histogram.html create mode 100644 debian/missing-sources/epoch/tests/render/basic/line.html create mode 100644 debian/missing-sources/epoch/tests/render/basic/model.html create mode 100644 debian/missing-sources/epoch/tests/render/basic/options.html create mode 100644 debian/missing-sources/epoch/tests/render/basic/pie.html create mode 100644 debian/missing-sources/epoch/tests/render/basic/scatter.html (limited to 'debian/missing-sources/epoch/tests/render/basic') diff --git a/debian/missing-sources/epoch/tests/render/basic/area.html b/debian/missing-sources/epoch/tests/render/basic/area.html new file mode 100644 index 0000000..ea23851 --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/area.html @@ -0,0 +1,450 @@ + + + + + + + + + + + +

Basic Area Chart Test

+ + +
    +
  1. Single Series
  2. +
  3. Single Series II
  4. +
  5. Multi Series
  6. +
  7. Multi Series II
  8. +
  9. Single Series Transition
  10. +
  11. Multi Series Transition
  12. +
  13. Single Series to Multi Series Transition
  14. +
  15. Layer Color Override
  16. +
  17. Categorical Color Switching
  18. +
  19. Multi Series without Labels
  20. +
  21. Hide/Show Layers
  22. +
  23. Data Format
  24. +
+ + + +
+

1. Single Series

+

It should display a plot of y = cos(x) + 1 over the range [0, 2π).

+
+
+ + + + + +
+

2. Single Series II

+

It should display a plot of y = sin(x) + 1 over the range [0, 2π).

+
+
+ + + + + +
+

3. Multi-series Plot

+

+ It should display a plot of the following functions stacked atop one another: +

    +
  • y = x
  • +
  • y = 2x
  • +
  • y = 3x
  • +
+ over the range [0, 10). +

+
+
+ + + + + +
+

4. Multi-series Plot II

+

+ It should display a plot of the following functions stacked atop one another: +

    +
  • y = |x|
  • +
  • y = x2
  • +
  • y = |x3|
  • +
+ over the range [-1, 1). +

+
+
+ + + + + +
+

5. Single Series Transition

+

+ It should correctly transition between the plots y = |x| over the range [-10, 10) and y = x2 over the range [-20, 20). The transition should be initiated when pressing the buttons below the plot. +

+
+

+ + +

+
+ + + + +
+

6. Multi Series Transition

+

+ It should correctly render and transition between Set A: +

    +
  • y = x
  • +
  • y = 2*x
  • +
  • y = 3*x
  • +
+ over the range [1, 100). and Set B: +
    +
  • y = ln(x)
  • +
  • y = 2*ln(x)
  • +
  • y = 3*ln(x)
  • +
+ over the range [1, 100). The transition should be initiated when pressing the buttons below the plot. +
+

+ + +

+
+ + + + + +
+

7. Single Series to Multi Series Transition

+

+ It should correctly transition between a single series, plotting the functions: +

    +
  • y = x2 - 0.5*x
  • +
+ To a multi series set, plotting the functions: +
    +
  • y = ln(x)
  • +
  • y = x
  • +
  • y = x * ln(x)
  • +
+ over the range [1, 4) for all plots. The transition should be initiated when pressing the buttons below the plot. +

+
+

+ + +

+
+ + + + +
+

8. Layer Color Override

+

+ It should display the first layer of the plot as pink, the second layer as green, and the third layer as blue. +

+
+
+ + + + + + +
+

9. Categorical Color Switching

+

+ It should change layer colors automatically when switching between the following categorical color classes on the containing element: +

    +
  • category10
  • +
  • category20
  • +
  • category20b
  • +
  • category20c
  • +
+ The colors should change when pressing the buttons for each categorical type below the chart. +

+ +
+ +

+ + + + +

+
+ + + +
+

10. Multi Series without Labels

+

+ Correctly render a multi-series plot of: +

    +
  • y = sin(x) + 1
  • +
  • y = cos(x) + 1
  • +
+ where the layers are given without labels. +

+
+
+ + + +
+

11. Hide/Show Layers

+

Correctly hide and show multiple layers

+
+

+ + + +

+
+ + + + diff --git a/debian/missing-sources/epoch/tests/render/basic/bar.html b/debian/missing-sources/epoch/tests/render/basic/bar.html new file mode 100644 index 0000000..07b5122 --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/bar.html @@ -0,0 +1,745 @@ + + + + + + + + + + + +

Basic Bar Chart Test

+ + +
    +
  1. Single Series
  2. +
  3. Single Series II
  4. +
  5. Multi Series
  6. +
  7. Multi Series II
  8. +
  9. Single Series Transition
  10. +
  11. Multi Series Transition
  12. +
  13. Single Series to Multi Series Transition
  14. +
  15. Layer Color Override
  16. +
  17. Categorical Color Switching
  18. +
  19. Multi Series without Labels
  20. +
  21. Horizontally Oriented Single Series
  22. +
  23. Horizontally Oriented Multi Series
  24. +
  25. Horizontally Oriented Multi Series Transition
  26. +
  27. Vertical to Horizontal Transition
  28. +
  29. Padding Changes
  30. +
  31. Hide/Show Layers
  32. +
  33. Data Formatting
  34. +
  35. Many bars
  36. +
+ + + +
+

1. Single Series

+

Display a plot of y = cos(x) + 1 over the range [0, 2π).

+
+
+ + + + + +
+

2. Single Series II

+

Display a plot of y = sin(x) + 1 over the range [0, 2π).

+
+
+ + + + + +
+

3. Multi-series Plot

+

+ Display a plot of the following functions stacked atop one another: +

    +
  • y = x
  • +
  • y = 2x
  • +
  • y = 3x
  • +
+ over the range [0, 10). +

+
+
+ + + + + +
+

4. Multi-series Plot II

+

+ Display a plot of the following functions stacked atop one another: +

    +
  • y = |x|
  • +
  • y = x2
  • +
  • y = |x3|
  • +
+ over the range [-1, 1). +

+
+
+ + + + + +
+

5. Single Series Transition

+

+ Correctly transition between the plots y = |x| over the range [-10, 10) and y = x2 over the range [-20, 20). The transition is initiated by pressing the buttons below the plot. +

+
+

+ + +

+
+ + + + +
+

6. Multi Series Transition

+

+ Correctly render and transition between Set A: +

    +
  • y = x
  • +
  • y = 2*x
  • +
  • y = 3*x
  • +
+ over the range [1, 100). and Set B: +
    +
  • y = ln(x)
  • +
  • y = 2*ln(x)
  • +
  • y = 3*ln(x)
  • +
+ over the range [1, 100). The transition is initiated by pressing the buttons below the plot. +
+

+ + +

+
+ + + + + +
+

7. Single Series to Multi Series Transition

+

+ Correctly transition between a single series, plotting the functions: +

    +
  • y = x2 - 0.5*x
  • +
+ To a multi series set, plotting the functions: +
    +
  • y = ln(x)
  • +
  • y = x
  • +
  • y = x * ln(x)
  • +
+ over the range [1, 4) for all plots. The transition is initiated by pressing the buttons below the plot. +

+
+

+ + +

+
+ + + + +
+

8. Layer Color Override

+

+ Display the first layer of the plot as pink, the second layer as green, and the third layer as blue. +

+
+
+ + + + + + +
+

9. Categorical Color Switching

+

+ Change layer colors automatically when switching between the following categorical color classes on the containing element: +

    +
  • category10
  • +
  • category20
  • +
  • category20b
  • +
  • category20c
  • +
+ Change the categorical colors by pressing the buttons below the chart. +

+ +
+ +

+ + + + +

+
+ + + +
+

10. Multi Series without Labels

+

+ Correctly render a multi-series plot of: +

    +
  • y = sin(x) + 1
  • +
  • y = cos(x) + 1
  • +
+ where the layers are given without labels. +

+
+
+ + + +
+

11. Horizontally Oriented Single Series

+

+ Correctly render the single series plot of: +

    +
  • A - 20
  • +
  • B - 30
  • +
  • C - 60
  • +
+ using a horizontal orientation. +

+
+
+ + + +
+

12. Horizontally Oriented Multi Series

+

+ Correctly render the multi series plot of: +

    +
  • A - 10, 30
  • +
  • B - 20, 50
  • +
  • C - 60, 10
  • +
+ using a horizontal orientation. +

+
+
+ + + +
+

13. Horizontally Oriented Multi Series Transition

+

+ Correctly render the Horizontally oriented multi series plot of: +

    +
  • A - 10, 10
  • +
  • B - 20, 20
  • +
  • C - 30, 30
  • +
+ and transition to the single series plot: +
    +
  • A - 5
  • +
  • B - 10
  • +
  • C - 40
  • +
+

+
+

+ + +

+
+ + +
+

14. Vertical to Horizontal Transition

+
+

+ + +

+
+ + +
+

15. Padding Changes

+
+

+ + +

+
+ + +
+

16. Hide/Show Layers

+
+

+ + + + | + +

+
+ + +
+

17. Data Formatting

+

Ensure the chart works with the array, tuple, and key-value data formats.

+

+
+
+
+ + +
+

18. Bar Ticks

+

Ensure that we can use ticks option with bar charts.

+

+
+ + + diff --git a/debian/missing-sources/epoch/tests/render/basic/histogram.html b/debian/missing-sources/epoch/tests/render/basic/histogram.html new file mode 100644 index 0000000..505054e --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/histogram.html @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + +

Basic Bar Chart Test

+ + +
    +
  1. Beta(2, 5)
  2. +
  3. Beta(2, 5) Horizontal
  4. +
  5. Option: buckets
  6. +
  7. Options: bucketRange & cutOutliers
  8. +
+ + +
+

1. Beta(2, 5)

+

Plot a random selection of points from the Beta(2, 5) distribution as a histogram.

+
+

+
+ + + +
+

2. Beta(2, 5) Horizontal

+

Plot a random selection of points from Beta(2, 5) and display in a horizontal histogram.

+
+

+
+ + + +
+

3. Option: buckets

+

Plot Beta(2, 2) and change number of buckets on the fly.

+
+

+ + + + + | + +

+
+ + + +
+

4. Options: bucketRange & cutOutliers

+

Plot beta(2, 5) and change the bucket range on the fly.

+
+

+ + + | + + | + +

+
+ + + diff --git a/debian/missing-sources/epoch/tests/render/basic/line.html b/debian/missing-sources/epoch/tests/render/basic/line.html new file mode 100644 index 0000000..37de38d --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/line.html @@ -0,0 +1,471 @@ + + + + + + + + + + + +

Basic Line Chart Test

+ + +
    +
  1. Single Series
  2. +
  3. Single Series II
  4. +
  5. Multi Series
  6. +
  7. Single Series Transition
  8. +
  9. Multi Series Transition
  10. +
  11. Single to Multi Series Transition
  12. +
  13. Color Override
  14. +
  15. Categorical Colors
  16. +
  17. Multi Series without Labels
  18. +
  19. Multi Series with Fixed Domain
  20. +
  21. Show/Hide Layers
  22. +
+ + +
+

1. Single Series

+

Display a plot of y = cos(x) over the range [-2π, 2π).

+
+
+ + + + +
+

2. Single Series II

+

Display a plot of y = ex*sin(x) from [0, &pi).

+
+
+ + + + +
+

3. Multi Series

+

+ Display a plot of the following functions over the range [0, 2π]: +

    +
  • x*sin(x)
  • +
  • x*cos(x)
  • +
+

+
+
+ + + + +
+

4. Single Series Transition

+

+ Correctly transition between the functions y = 1 / x and y = x2 over the range [1, 2). + Use the buttons below the chart to initiate the transitions. +

+
+

+ + +

+
+ + + + +
+

5. Multi Series Transition

+

+ Correctly transition between Set A: +

    +
  • y = sin(x)
  • +
  • y = x - x3/3! + x5/5!
  • +
+ Set B: +
    +
  • y = cos(x)
  • +
  • y = 1 - x2/2! + x4/4!
  • +
+ and Set C: +
    +
  • y = sin(x) - (x - x3/3! + x5/5!)
  • +
  • y = cos(x) - (1 - x2/2! + x4/4!)
  • +
+

+
+

+ + + +

+
+ + + + +
+

6. Single to Multi Series Transition

+

+ Correctly transition between Set A: +

    +
  • y = ln(x)
  • +
+ Set B: +
    +
  • y = ln(x)
  • +
  • y = x * ln(x)
  • +
  • y = x * ln(x)2
  • +
+

+
+

+ + +

+
+ + + + +
+

7. Color Override

+

+ Display the first layer of the plot as pink, the second layer as green, and the third layer as blue. +

+
+
+ + + + + + +
+

Categorical Colors

+

+ Change layer colors automatically when switching between the following categorical color classes on the containing element: +

    +
  • category10
  • +
  • category20
  • +
  • category20b
  • +
  • category20c
  • +
+ Change the categorical colors by pressing the buttons below the chart. +

+
+

+ + + + +

+
+ + + + + +
+

9. Multi Series without Labels

+

+ Correctly render a multi-series plot of: +

    +
  • y = sin(x)
  • +
  • y = cos(x)
  • +
+ where the layers are given without labels. +

+
+
+ + + +
+

10. Multi Series with Fixed Domain

+

+ Display a plot of the following functions: +

    +
  • x*sin(x)
  • +
  • x*cos(x)
  • +
+ On the domain [0, 5] and range [0, 4]. +

+
+
+ + + + +
+

11. Show/Hide Layers

+
+

+ + + +

+
+ + + +
+

12. Multi-axis

+
+
+ + + diff --git a/debian/missing-sources/epoch/tests/render/basic/model.html b/debian/missing-sources/epoch/tests/render/basic/model.html new file mode 100644 index 0000000..2814fd8 --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/model.html @@ -0,0 +1,94 @@ + + + + + + + + + + + + +

Basic Chart Model / Data Test

+ + +

+ + + +

+ +
+
+
+ + + + \ No newline at end of file diff --git a/debian/missing-sources/epoch/tests/render/basic/options.html b/debian/missing-sources/epoch/tests/render/basic/options.html new file mode 100644 index 0000000..5ff2d7e --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/options.html @@ -0,0 +1,267 @@ + + + + + + + + + + + + +

Basic Chart Options and Events

+ +
    +
  1. Axes
  2. +
  3. Margins
  4. +
  5. Ticks and Tick Formats
  6. +
  7. Resize
  8. +
  9. Domain
  10. +
  11. Range
  12. +
+ + +
+

1. Axes

+

+ Correctly add and remove axes when options are set. +

+
+
+ + + + + + +
+
+ + + + +
+

2. Margins

+

+ Correctly resize margins when options are set. +

+
+
+ + + +
+
+ + + +
+

3. Ticks and Tick Formats

+

+ Correctly resize margins when options are set. +

+
+
+ + +
+
+ + + +
+

4. Resize

+

+ Correctly resize the chart when the width and height options are set. +

+
+
+ + +
+
+ + + +
+

6. Option: domain

+
+

+ + +

+
+ + + + +
+

7. Option: range

+
+

+ + +

+
+ + + + \ No newline at end of file diff --git a/debian/missing-sources/epoch/tests/render/basic/pie.html b/debian/missing-sources/epoch/tests/render/basic/pie.html new file mode 100644 index 0000000..fe105e8 --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/pie.html @@ -0,0 +1,346 @@ + + + + + + + + + + + +

Basic Pie Chart Test

+ +
    +
  1. Basic Pie Test
  2. +
  3. Basic Donut Test
  4. +
  5. Pie Tranisition I
  6. +
  7. Pie Tranisition II
  8. +
  9. Color Override
  10. +
  11. Categorical Colors
  12. +
  13. Pie Chart Layers without Labels
  14. +
  15. Margin Changes
  16. +
  17. Inner Changes
  18. +
  19. Show/Hide Layers
  20. +
+ + +
+

Basic Pie Test

+

+ Correctly render a pie chart with three categories: +

    +
  • A - 20
  • +
  • B - 45
  • +
  • C - 35
  • +
+

+
+
+ + + + +
+

2. Basic Donut Test

+

+ Correctly render a donut chart with three categories: +

    +
  • A - 50
  • +
  • B - 30
  • +
  • C - 20
  • +
+

+
+
+ + + + +
+

3. Pie Tranisition I

+

+ Correctly transition between set A: +

    +
  • A - 20
  • +
  • B - 80
  • +
+ and set B: +
    +
  • A - 20
  • +
  • B - 30
  • +
  • C - 50
  • +
+ Use the buttons below the chart to initiate the transitions. +

+
+

+ + +

+
+ + + + +
+

4. Pie Tranisition II

+

+ Correctly transition between set A: +

    +
  • A - 20
  • +
  • B - 80
  • +
+ and set B: +
    +
  • A - 50
  • +
  • B - 50
  • +
+ Use the buttons below the chart to initiate the transitions. +

+
+

+ + +

+
+ + + + +
+

5. Color Override

+

+ Override the colors as such: +

    +
  • A - Pink
  • +
  • B - Green
  • +
  • C - Blue
  • +
+

+
+
+ + + + + + +
+

6. Categorical Colors

+

+ Correctly transition between different categorical colors sets. +

+
+

+ + + + +

+
+ + + + + + +
+

7. Pie Chart Layers without Labels

+

+ Correctly render a pie chart with three categories: +

    +
  • 30
  • +
  • 35
  • +
  • 35
  • +
+ when the layers are not provided labels. +

+
+
+ + + + +
+

8. Margin Changes

+
+

+ + +

+
+ + + +
+

9. Inner Changes

+
+

+ + + +

+
+ + + +
+

10. Show/Hide Layers

+
+

+ + + +

+
+ + + \ No newline at end of file diff --git a/debian/missing-sources/epoch/tests/render/basic/scatter.html b/debian/missing-sources/epoch/tests/render/basic/scatter.html new file mode 100644 index 0000000..31f1e42 --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/basic/scatter.html @@ -0,0 +1,398 @@ + + + + + + + + + + + +

Basic Scatter Plot Test

+ +
    +
  1. Single Series
  2. +
  3. Multi Series
  4. +
  5. Single Series Transition
  6. +
  7. Multi Series Transition
  8. +
  9. Multi Series Transition II
  10. +
  11. Color Override
  12. +
  13. Categorical Colors
  14. +
  15. Multi Series without Labels
  16. +
  17. Single Series with Radius
  18. +
  19. Radius Change
  20. +
  21. Show/Hide Layers
  22. +
+ + +
+

1. Single Series

+

Render a single random series scatter plot.

+
+
+ + + +
+

2. Multi Series

+

Render three random scatter series in the same plot.

+
+
+ + + +
+

3. Single Series Transition

+

+ Transition from one random series to another random series. Use the + buttons below the plot to initiate the transition. +

+
+

+ + +

+
+ + + +
+

4. Multi Series Transition

+

+ Transition from a set of multiple randoms series random series to another of multiple random series. Use the + buttons below the plot to initiate the transition. +

+
+

+ + +

+
+ + + +
+

5. Multi Series Transition II

+

+ Transition from a multi-series set of random data to a single series set of random data. +

+
+

+ + +

+
+ + + +
+

6. Color Override

+

The first series should be pink, the second green, and thrid blue.

+
+
+ + + + +
+

7. Categorical Colors

+

+ Correctly transition between different categorical color sets. +

+
+

+ + + + +

+
+ + + +
+

8. Multi Series without Labels

+

Correctly render two random scatter plots when labels are not specified for the layers.

+
+
+ + + +
+

9. Single Series with Radius

+

Render a single random series scatter plot with different radii.

+
+

+ +

+
+ + + +
+

10. Radius Change

+
+

+ + + + +

+
+ + + +
+

11. Show/Hide Layers

+
+

+ + + +

+
+ + + + -- cgit v1.2.3