Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jarek/6852: rename more packages #6860

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/clojure/Clojure.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"metadata": {},
"outputs": [],
"source": [
"%import com.twosigma.beakerx.widget.integers.IntSlider"
"%import com.twosigma.beakerx.widget.integer.IntSlider"
]
},
{
Expand All @@ -192,7 +192,7 @@
"metadata": {},
"outputs": [],
"source": [
"%unimport com.twosigma.beakerx.widget.integers.IntSlider"
"%unimport com.twosigma.beakerx.widget.integer.IntSlider"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions doc/groovy/ClasspathMagicCommands.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
"metadata": {},
"outputs": [],
"source": [
"%import com.twosigma.beakerx.widget.integers.IntSlider\n",
"%import com.twosigma.beakerx.widget.integer.IntSlider\n",
"w = new IntSlider()\n",
"w.value = 60\n",
"w"
Expand All @@ -277,7 +277,7 @@
"metadata": {},
"outputs": [],
"source": [
"%unimport com.twosigma.beakerx.widget.integers.IntSlider"
"%unimport com.twosigma.beakerx.widget.integer.IntSlider"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion doc/groovy/EasyForm.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
"metadata": {},
"outputs": [],
"source": [
"import com.twosigma.beakerx.widget.integers.IntSlider\n",
"import com.twosigma.beakerx.widget.integer.IntSlider\n",
"\n",
"w = new IntSlider()\n",
"\n",
Expand Down
58 changes: 29 additions & 29 deletions doc/groovy/JavaWidgets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntSlider\n",
"import com.twosigma.beakerx.widget.integer.IntSlider\n",
"\n",
"w = new IntSlider()\n",
"w.value = 60\n",
Expand Down Expand Up @@ -235,7 +235,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntProgress\n",
"import com.twosigma.beakerx.widget.integer.IntProgress\n",
"bar = new IntProgress()\n",
"bar.value = 10\n",
"bar"
Expand Down Expand Up @@ -361,7 +361,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.selections.RadioButtons\n",
"import com.twosigma.beakerx.widget.selection.RadioButtons\n",
"rb = new RadioButtons()\n",
"rb.options=['alpha', 'beta', 'delta', 'gamma']\n",
"rb.value = 'beta'\n",
Expand Down Expand Up @@ -427,7 +427,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.selections.Select\n",
"import com.twosigma.beakerx.widget.selection.Select\n",
"select = new Select()\n",
"select.options=['Linux', 'Windows', 'OSX']\n",
"select.value = 'Windows'\n",
Expand Down Expand Up @@ -493,7 +493,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.bools.Checkbox\n",
"import com.twosigma.beakerx.widget.bool.Checkbox\n",
"cb = new Checkbox()\n",
"cb"
]
Expand Down Expand Up @@ -643,7 +643,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.strings.Text\n",
"import com.twosigma.beakerx.widget.string.Text\n",
"t = new Text()\n",
"t.value = \"Text example 1\"\n",
"t"
Expand Down Expand Up @@ -708,7 +708,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.strings.Textarea\n",
"import com.twosigma.beakerx.widget.string.Textarea\n",
"ta = new Textarea()\n",
"ta.value = \"Textarea example 1\"\n",
"ta"
Expand Down Expand Up @@ -773,7 +773,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.bools.ToggleButton\n",
"import com.twosigma.beakerx.widget.bool.ToggleButton\n",
"tb = new ToggleButton()\n",
"tb.tooltip = \"ToggleButton tooltip 1\"\n",
"tb.icon = 'check'\n",
Expand Down Expand Up @@ -1019,7 +1019,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.strings.Label\n",
"import com.twosigma.beakerx.widget.string.Label\n",
"label = new Label()\n",
"label.value = \"Label 1\"\n",
"label"
Expand Down Expand Up @@ -1084,7 +1084,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.strings.HTML\n",
"import com.twosigma.beakerx.widget.string.HTML\n",
"label = new HTML()\n",
"label.value = \"Hello <b>World</b>\"\n",
"label"
Expand Down Expand Up @@ -1205,7 +1205,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntRangeSlider\n",
"import com.twosigma.beakerx.widget.integer.IntRangeSlider\n",
"w = new IntRangeSlider()\n",
"w.value = [10,40]\n",
"w.orientation = \"horizontal\"\n",
Expand All @@ -1232,7 +1232,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.BoundedIntText\n",
"import com.twosigma.beakerx.widget.integer.BoundedIntText\n",
"w = new BoundedIntText()\n",
"w.min = 0\n",
"w.max = 10\n",
Expand All @@ -1258,7 +1258,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntText\n",
"import com.twosigma.beakerx.widget.integer.IntText\n",
"w = new IntText()\n",
"w"
]
Expand All @@ -1282,7 +1282,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntText\n",
"import com.twosigma.beakerx.widget.integer.IntText\n",
"w = new IntText()\n",
"w"
]
Expand All @@ -1306,7 +1306,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.Play\n",
"import com.twosigma.beakerx.widget.integer.Play\n",
"w = new Play()\n",
"w"
]
Expand Down Expand Up @@ -1409,7 +1409,7 @@
"source": [
"//Example with passing different type to value\n",
"\n",
"import com.twosigma.beakerx.widget.integers.IntRangeSlider\n",
"import com.twosigma.beakerx.widget.integer.IntRangeSlider\n",
"w = new IntRangeSlider()\n",
"w.value = [\"10\",[49.6]]\n",
"w.orientation = \"horizontal\"\n",
Expand Down Expand Up @@ -1438,7 +1438,7 @@
"source": [
"//Example with passing different type to value\n",
"\n",
"import com.twosigma.beakerx.widget.integers.IntRangeSlider\n",
"import com.twosigma.beakerx.widget.integer.IntRangeSlider\n",
"import java.util.Collection\n",
"\n",
"Collection<Object> list = new ArrayList<>()\n",
Expand Down Expand Up @@ -1471,7 +1471,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.bools.Valid\n",
"import com.twosigma.beakerx.widget.bool.Valid\n",
"\n",
"w = new Valid()\n",
"w.description = 'Valid!'\n",
Expand Down Expand Up @@ -1500,9 +1500,9 @@
],
"source": [
"import com.twosigma.beakerx.widget.selectioncontainer.Accordion\n",
"import com.twosigma.beakerx.widget.bools.Valid\n",
"import com.twosigma.beakerx.widget.bool.Valid\n",
"import com.twosigma.beakerx.widget.floats.BoundedFloatText\n",
"import com.twosigma.beakerx.widget.strings.Text\n",
"import com.twosigma.beakerx.widget.string.Text\n",
"\n",
"t = new Text()\n",
"t.value = \"Text example 1\"\n",
Expand Down Expand Up @@ -1537,7 +1537,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.strings.Label\n",
"import com.twosigma.beakerx.widget.string.Label\n",
"widget = new Label()\n",
"widget.value = \"\\$\\$\\\\frac{n!}{k!(n-k)!} = \\\\binom{n}{k}\\$\\$\"\n",
"widget\n"
Expand All @@ -1562,7 +1562,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.selections.SelectionSlider\n",
"import com.twosigma.beakerx.widget.selection.SelectionSlider\n",
"widget = new SelectionSlider()\n",
"widget.options=['scrambled', 'sunny side up', 'poached', 'over easy']\n",
"widget.value='sunny side up'\n",
Expand Down Expand Up @@ -1591,7 +1591,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.strings.HTMLMath\n",
"import com.twosigma.beakerx.widget.string.HTMLMath\n",
"widget = new HTMLMath()\n",
"widget.value = \"\\$x^2\\$ and \\$\\$\\\\frac{x+1}{x-1}\\$\\$\"\n",
"widget "
Expand Down Expand Up @@ -1636,7 +1636,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.selections.ToggleButtons\n",
"import com.twosigma.beakerx.widget.selection.ToggleButtons\n",
"widget = new ToggleButtons()\n",
"widget.description='Speed:'\n",
"widget.options=['Slow', 'Regular', 'Fast']\n",
Expand Down Expand Up @@ -1665,8 +1665,8 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.Play\n",
"import com.twosigma.beakerx.widget.integers.IntSlider\n",
"import com.twosigma.beakerx.widget.integer.Play\n",
"import com.twosigma.beakerx.widget.integer.IntSlider\n",
"import com.twosigma.beakerx.widget.box.HBox\n",
"import com.twosigma.beakerx.widget.link.Link\n",
"import com.twosigma.beakerx.widget.link.DirectionalLink\n",
Expand Down Expand Up @@ -1704,7 +1704,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntSlider\n",
"import com.twosigma.beakerx.widget.integer.IntSlider\n",
"invisibleSlider = new IntSlider()\n",
"invisibleSlider.max = 200\n",
"invisibleSlider.min = 10\n",
Expand Down Expand Up @@ -1741,7 +1741,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntSlider\n",
"import com.twosigma.beakerx.widget.integer.IntSlider\n",
"import com.twosigma.beakerx.widget.box.HBox\n",
"import com.twosigma.beakerx.widget.box.VBox\n",
"\n",
Expand All @@ -1768,7 +1768,7 @@
}
],
"source": [
"import com.twosigma.beakerx.widget.integers.IntSlider\n",
"import com.twosigma.beakerx.widget.integer.IntSlider\n",
"import com.twosigma.beakerx.widget.box.HBox\n",
"import com.twosigma.beakerx.widget.box.VBox\n",
"\n",
Expand Down
Loading