Compare commits
2 Commits
nhb-remove
...
fgh_lfg-lo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d91176bc90 | ||
|
|
a55246bc59 |
68
.github/ISSUE_TEMPLATE/primer.yml
vendored
@@ -1,68 +0,0 @@
|
||||
name: Report an issue with the "Medley Interlisp for the Newcomer" primer
|
||||
description: Use this template to report issues or make suggestions.
|
||||
title: "[Primer] <short title here>"
|
||||
labels:
|
||||
- primer
|
||||
- documentation
|
||||
body:
|
||||
- type: dropdown
|
||||
id: problemType
|
||||
attributes:
|
||||
label: "What type of issue are you reporting?"
|
||||
options:
|
||||
- Suggested improvement
|
||||
- Incorrect explanation / code sample
|
||||
- Confusing explanation
|
||||
- Outdated information
|
||||
- Broken link
|
||||
- Typo / Grammar
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: location
|
||||
attributes:
|
||||
label: "Section of the primer where the issue occurs"
|
||||
options:
|
||||
- Introduction
|
||||
- Medley online and Medley Local
|
||||
- Understanding and Navigating the Interface
|
||||
- Understanding Lisp Syntax
|
||||
- Atoms, Functions and Lists
|
||||
- Variable Bindings and Scope
|
||||
- Iterators and Conditionals
|
||||
- The File Browser
|
||||
- Debugging
|
||||
- Editing functions with SEdit
|
||||
- Build Your First Interactive Program
|
||||
- Saving Your Work
|
||||
- TEdit, The WYSIWYG Editor
|
||||
- Drawing and Displaystreams
|
||||
- Making a Graph with Grapher
|
||||
- Additional Resources
|
||||
- General Feedback (not specific to a section)
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: issueLocationDetails
|
||||
attributes:
|
||||
label: "Please provide more details about the location of the issue"
|
||||
description: "For example, the specific page title, section heading, or url."
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: issueDescription
|
||||
attributes:
|
||||
label: "Description of the issue"
|
||||
description: "Please provide a detailed description of the issue you encountered."
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: suggestedFix
|
||||
attributes:
|
||||
label: "Suggested fix or improvement"
|
||||
description: "If you have a suggestion for how to fix or improve the issue, please provide it here."
|
||||
validations:
|
||||
required: false
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "## Thank you for helping us improve the **Medley Interlisp for the Newcomer** primer!"
|
||||
@@ -1,6 +1,6 @@
|
||||
name: New "What People Are Saying" entry
|
||||
description: 'Suggest a new entry for the "What People Are Saying" page'
|
||||
title: "What People Are Saying suggestion"
|
||||
name: "New entry for **What People Are Saying**"
|
||||
description: "Suggest a new entry for the **What People are Saying** page"
|
||||
title: "What People are Saying suggestion"
|
||||
body:
|
||||
- type: dropdown
|
||||
id: contentType
|
||||
@@ -24,7 +24,7 @@ body:
|
||||
id: additionalInformation
|
||||
attributes:
|
||||
label: Additional information
|
||||
description: "Use this space to supply any additional information on the suggested item."
|
||||
description: "Use this space to supply any addiitonal information on the suggested item."
|
||||
validations:
|
||||
required: false
|
||||
- type: markdown
|
||||
|
||||
6
.github/workflows/buildDocker.yml
vendored
@@ -154,8 +154,7 @@ jobs:
|
||||
if [ "${{ inputs.draft }}" = "false" ];
|
||||
then
|
||||
docker_tags="${docker_image}:latest,${docker_image}:${MEDLEY_RELEASE#*-}_${MAIKO_RELEASE#*-}"
|
||||
platforms="linux/amd64"
|
||||
#,linux/arm64
|
||||
platforms="linux/amd64,linux/arm64"
|
||||
else
|
||||
docker_tags="${docker_image}:draft"
|
||||
platforms="linux/amd64"
|
||||
@@ -172,8 +171,7 @@ jobs:
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
with:
|
||||
platforms: linux/amd64
|
||||
# ,linux/arm64,linux/arm/v7
|
||||
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||
|
||||
# Setup the Docker Buildx funtion
|
||||
- name: Set up Docker Buildx
|
||||
|
||||
2
.github/workflows/buildReleaseInclDocker.yml
vendored
@@ -131,7 +131,7 @@ jobs:
|
||||
run: |
|
||||
if [ ! "${{ needs.inputs.outputs.draft }}" = "true" ]
|
||||
then
|
||||
gh workflow run buildAndDeployMedleyDocker.yml --repo Interlisp/online --ref main
|
||||
gh workflow run buildAndDeployMedleyDocker.yml --repo Interlisp/online --ref master
|
||||
fi
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.ONLINE_TOKEN }}
|
||||
|
||||
7
.github/workflows/doHCFILES.yml
vendored
@@ -52,12 +52,6 @@ jobs:
|
||||
- name: Checkout Medley repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Checkout maiko
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.repository_owner }}/maiko
|
||||
path: ./maiko
|
||||
|
||||
- name: Checkout notecards
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
@@ -85,7 +79,6 @@ jobs:
|
||||
--repo ${{ github.repository_owner }}/maiko \
|
||||
--pattern '*-linux.x86_64.tgz'
|
||||
tar -xzf /tmp/maiko.tgz
|
||||
touch ./maiko/linux.x86_64/.skip
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.MU_TOKEN }}
|
||||
|
||||
|
||||
12
.gitignore
vendored
@@ -13,9 +13,11 @@ maiko/
|
||||
# normally when you have derived files, you ignore them from git
|
||||
# because they will get regenerated when you rebuild.
|
||||
# MEDLEY-UTILS HCFILES regenerates
|
||||
# index.html files are also produced by HCFILES
|
||||
*.pdf
|
||||
index.html
|
||||
|
||||
# do not ignore .pdf files after all... rather, [new workflow](scripts/make-gh-pages.md) stores it in the src repository gh-pages branch.
|
||||
|
||||
# *.pdf
|
||||
# index.html
|
||||
|
||||
|
||||
# all loadup files
|
||||
@@ -30,10 +32,6 @@ loadups/*.dribble
|
||||
loadups/whereis.hash
|
||||
loadups/apps.sysout
|
||||
loadups/fuller.database
|
||||
loadups/build/
|
||||
loadups/tagged
|
||||
loadups/gitinfo
|
||||
|
||||
|
||||
# manual cross-reference files
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
First, we want to thank you for helping reach the goal of restoring Medley Interlisp
|
||||
to the point where it is as useful today as it was 30 years ago.
|
||||
|
||||
This guide is meant to help you make useful contributions, whether to the [Maiko](https://github.com/Interlisp/maiko) C-based virtual machine implementation, the [Medley](https://github.com/Interlisp/medley) Lisp code (in Interlisp and Common Lisp), or [documentation](https://interlisp.org/software/using-medley). There are a number of [GitHub](https://github.com/Interlisp/medley/discussions/categories/github-use) problems that could use some attention.
|
||||
This guide is meant to help you make useful contributions, whether to the [Maiko](https://github.com/Interlisp/maiko) C-based virtual machine implementation, the [Medley](https://github.com/Interlisp/medley) Lisp code (in Interlisp and Common Lisp), or [documentation](https://github.com/Interlisp/medley/wiki). There are a number of [GitHub](https://github.com/Interlisp/medley/discussions/categories/github-use) problems that could use some attention.
|
||||
|
||||
## Working with Maiko
|
||||
|
||||
@@ -17,8 +17,6 @@ The current arrangement of files and extentions is awkward for working on the im
|
||||
* The most useful contributions are reproducible errors -- things that don't work as documented.
|
||||
* Second most useful are reports of unexpected behavior -- things that aren't documented but behave unexpectedly.
|
||||
|
||||
To report these errors and behaviors [open an issue](https://github.com/Interlisp/medley/issues).
|
||||
|
||||
## Reporting a bug or feature request
|
||||
* Ensure the bug was not already reported by searching on GitHub under [Issues](https://github.com/Interlisp/medley/issues) or [Discussions](https://github.com/Interlisp/medley/discussions). Note that all issues and Discussions are found in the Medley repository, using labels to distinguish. Discussions are for questions or topics where there is some disagreement or uncertainty about the "right" direction.
|
||||
* If you're unable to find a discussion or open issue addressing the problem, open a new one. Be sure to include a title
|
||||
@@ -26,7 +24,7 @@ and clear description, as much relevant information as possible. Use the issue t
|
||||
|
||||
## Did you write a patch that fixes a bug?
|
||||
* Some bug fixes and "improvements" have unintended consequences, well beyond what you might expect for well-written modern code. We don't have testing new builds automated or integrated. Be sure you've tested your patch.
|
||||
* Open a new GitHub pull request with the patch.
|
||||
* Open a new [GitHub pull request](https://github.com/Interlisp/maiko/pulls) with the patch.
|
||||
* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.
|
||||
* Keep Pull Requests small and easily reviewable. https://www.thedroidsonroids.com/blog/splitting-pull-request for
|
||||
a writeup of good practices.
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
(DEFINE-FILE-INFO PACKAGE (PROGN (DEFPACKAGE "CLOS-BROWSER" (USE "CLOS" "LISP") (EXPORT "CLOS-ICON"
|
||||
"CLOS-BROWSER" "ADD-BROWSER-METHOD" "BROWSE-CLASS")) (CLFIND-PACKAGE "USER")) READTABLE "XCL" BASE
|
||||
10)
|
||||
(DEFINE-FILE-INFO PACKAGE (PROGN (DEFPACKAGE "CLOS-BROWSER" (USE "CLOS") (EXPORT "CLOS-ICON"
|
||||
"CLOS-BROWSER" "ADD-BROWSER-METHOD" "BROWSE-CLASS")) (CLFIND-PACKAGE "USER")) READTABLE "XCL" BASE
|
||||
10)
|
||||
|
||||
(IL:FILECREATED "28-Apr-2025 18:32:38"
|
||||
IL:|{DSK}<Users>arunwelch>DOCUMENTS>MEDLEY-WORKSPACE>RELEASE>NEW-CLOS-BROWSER.;4| 91934
|
||||
(IL:FILECREATED " 5-Dec-2023 12:07:41" IL:{CLOS}NEW-CLOS-BROWSER.\;3 91622
|
||||
|
||||
:EDIT-BY "akw"
|
||||
:EDIT-BY "mth"
|
||||
|
||||
:CHANGES-TO (IL:PROPS (IL:NEW-CLOS-BROWSER IL:MAKEFILE-ENVIRONMENT))
|
||||
|
||||
:PREVIOUS-DATE "26-Apr-2025 17:16:46"
|
||||
IL:|{DSK}<Users>arunwelch>DOCUMENTS>MEDLEY-WORKSPACE>RELEASE>NEW-CLOS-BROWSER.;3|)
|
||||
:PREVIOUS-DATE " 5-Dec-2023 00:58:05" IL:{CLOS}NEW-CLOS-BROWSER.\;2)
|
||||
|
||||
|
||||
; Copyright (c) 1991, 2020, 2023 by Venue.
|
||||
|
||||
(IL:PRETTYCOMPRINT IL:NEW-CLOS-BROWSERCOMS)
|
||||
|
||||
(IL:RPAQQ IL:NEW-CLOS-BROWSERCOMS
|
||||
@@ -275,7 +275,7 @@ IL:|{DSK}<Users>arunwelch>DOCUMENTS>MEDLEY-WORKSPACE>RELEASE>NEW-CLOS-BROWSER.;3
|
||||
|
||||
(IL:PUTPROPS IL:NEW-CLOS-BROWSER IL:MAKEFILE-ENVIRONMENT (:PACKAGE (PROGN (XCL:DEFPACKAGE
|
||||
"CLOS-BROWSER"
|
||||
(:USE "CLOS" "LISP")
|
||||
(:USE "CLOS")
|
||||
(:EXPORT "CLOS-ICON"
|
||||
"CLOS-BROWSER"
|
||||
"ADD-BROWSER-METHOD"
|
||||
@@ -1159,14 +1159,9 @@ Below this line operates on individual slots and methods."
|
||||
(DOCUMENTATION (SLOT-VALUE CLOS-BROWSER::SELF 'CLOS-BROWSER::CLASS)))
|
||||
|
||||
(DEFMETHOD CLOS-BROWSER::PRINT-CLASS ((CLOS-BROWSER::SELF CLOS-BROWSER::CLOS-BROWSER-NODE))
|
||||
(IF (IL:HASDEF (SLOT-VALUE (SLOT-VALUE CLOS-BROWSER::SELF 'CLOS-BROWSER::CLASS)
|
||||
'CLOS::NAME)
|
||||
'CLOS-BROWSER::CLASSES)
|
||||
(PPRINT (IL:GETDEF (SLOT-VALUE (SLOT-VALUE CLOS-BROWSER::SELF `CLOS-BROWSER::CLASS)
|
||||
'CLOS::NAME)
|
||||
'CLOS-BROWSER::CLASSES))
|
||||
(IL:PROMPTPRINT "No Printable Definition for the class " (SLOT-VALUE CLOS-BROWSER::SELF
|
||||
'WEB::NAME))))
|
||||
(PPRINT (IL:GETDEF (SLOT-VALUE (SLOT-VALUE CLOS-BROWSER::SELF `CLOS-BROWSER::CLASS)
|
||||
'CLOS::NAME)
|
||||
'CLOS-BROWSER::CLASSES)))
|
||||
|
||||
(DEFMETHOD CLOS-BROWSER::SPECIALIZE-CLASS ((CLOS-BROWSER::NODE CLOS-BROWSER::CLOS-BROWSER-NODE)
|
||||
&OPTIONAL CLOS-BROWSER::FORM CLOS-BROWSER::NEW-CLASS-NAME)
|
||||
@@ -1216,8 +1211,7 @@ Below this line operates on individual slots and methods."
|
||||
(RETURN))))))
|
||||
(IL:SETCURSOR CLOS-BROWSER::ORIGINALCURSOR))))))
|
||||
|
||||
(DEFUN CLOS-BROWSER::LYRIC-COMPLETE-SPECIALIZE (IGNORE STRUCTURE)
|
||||
(IL:* IL:\; "Edited 26-Apr-2025 14:31 by arunwelch")
|
||||
(DEFUN CLOS-BROWSER::LYRIC-COMPLETE-SPECIALIZE (IGNORE STRUCTURE)
|
||||
(LET ((CLOS-BROWSER::ORIGINALCURSOR (IL:CURSOR)))
|
||||
(UNWIND-PROTECT
|
||||
(PROGN (IL:SETCURSOR IL:WAITINGCURSOR)
|
||||
@@ -1230,7 +1224,8 @@ Below this line operates on individual slots and methods."
|
||||
(IL:* IL:|;;| "check for bug")
|
||||
|
||||
(WHEN (SYMBOLP CLOS-BROWSER::SUB-CLASS)
|
||||
(SETQ CLOS-BROWSER::SUB-CLASS (FIND-CLASS CLOS-BROWSER::SUB-CLASS)))
|
||||
(SETQ CLOS-BROWSER::SUB-CLASS (CLOS::SYMBOL-CLASS CLOS-BROWSER::SUB-CLASS
|
||||
)))
|
||||
(DOLIST (CLOS-BROWSER::BROWSER (SLOT-VALUE CLOS-BROWSER:CLOS-ICON
|
||||
'CLOS-BROWSER::CLASS-BROWSERS))
|
||||
(DOLIST (CLOS-BROWSER::SUPER-CLASS (SLOT-VALUE CLOS-BROWSER::SUB-CLASS
|
||||
@@ -1392,12 +1387,14 @@ Below this line operates on individual slots and methods."
|
||||
(0 (FORMAT T "Unspecialized methods cannot be copied. ~A" (CLOS::FULL-METHOD-NAME
|
||||
CLOS-BROWSER::METHOD NIL)))
|
||||
(1 (SETQ CLOS-BROWSER::FROM-CLASS (CAR CLOS-BROWSER::NON-T-CLASSES)))
|
||||
(OTHERWISE (SETQ CLOS-BROWSER::FROM-CLASS (FIND-CLASS (IL:PROMPTFORWORD
|
||||
(FORMAT NIL
|
||||
(OTHERWISE (SETQ CLOS-BROWSER::FROM-CLASS (CLOS::SYMBOL-CLASS
|
||||
(IL:PROMPTFORWORD (FORMAT NIL
|
||||
"Which class in ~A do you wish to move from?"
|
||||
(CLOS::FULL-METHOD-NAME
|
||||
CLOS-BROWSER::METHOD
|
||||
NIL))))))))
|
||||
(
|
||||
CLOS::FULL-METHOD-NAME
|
||||
|
||||
CLOS-BROWSER::METHOD
|
||||
NIL))))))))
|
||||
|
||||
(IL:* IL:|;;| "should contain from-class. If it is not the same, abort.")
|
||||
|
||||
@@ -1468,7 +1465,7 @@ Below this line operates on individual slots and methods."
|
||||
"fix bug in the inconsistent way CLOS objects store T class specializers and do method lookup.")
|
||||
|
||||
(WHEN (EQ CLOS-BROWSER::CLASS T)
|
||||
(SETQ CLOS-BROWSER::CLASS (FIND-CLASS T)))
|
||||
(SETQ CLOS-BROWSER::CLASS (CLOS::SYMBOL-CLASS T)))
|
||||
(LET ((CLOS-BROWSER::NODE (CLOS-BROWSER::BROWSER-CONTAINS-P
|
||||
CLOS-BROWSER::CLASS CLOS-BROWSER::BROWSER)))
|
||||
(WHEN CLOS-BROWSER::NODE
|
||||
@@ -1585,8 +1582,7 @@ Below this line operates on individual slots and methods."
|
||||
(IL:|if| PACKAGE
|
||||
IL:|then| (IN-PACKAGE PACKAGE))))
|
||||
|
||||
(DEFUN CLOS-BROWSER::CLASSES-IN-PACKAGE (PACKAGE &OPTIONAL CLOS-BROWSER::MAP-ON-PACKAGE)
|
||||
(IL:* IL:\; "Edited 26-Apr-2025 14:25 by arunwelch")
|
||||
(DEFUN CLOS-BROWSER::CLASSES-IN-PACKAGE (PACKAGE &OPTIONAL CLOS-BROWSER::MAP-ON-PACKAGE)
|
||||
"Retrieves a list of all the classes for a given package. When map-on-package is t this can be very slow."
|
||||
|
||||
(IL:* IL:|;;| "The maphash is always fast, whereas for some strange reason map-on-package varys among packages greatly.")
|
||||
@@ -1598,7 +1594,7 @@ Below this line operates on individual slots and methods."
|
||||
(DO-SYMBOLS (CLOS-BROWSER::SYM PACKAGE)
|
||||
(IF (AND (EQ (SYMBOL-PACKAGE CLOS-BROWSER::SYM)
|
||||
PACKAGE)
|
||||
(FIND-CLASS CLOS-BROWSER::SYM T))
|
||||
(CLOS::SYMBOL-CLASS CLOS-BROWSER::SYM T))
|
||||
(PUSH CLOS-BROWSER::SYM CLOS-BROWSER::CLASSES)))
|
||||
(MAPHASH #'(LAMBDA (CLOS-BROWSER::KEY CLOS-BROWSER::VAL)
|
||||
(IF (EQ (SYMBOL-PACKAGE CLOS-BROWSER::KEY)
|
||||
@@ -1627,16 +1623,17 @@ Below this line operates on individual slots and methods."
|
||||
IL:|BackgroundMenuCommands|)
|
||||
|
||||
(SETQ IL:|BackgroundMenu| NIL)
|
||||
(IL:PUTPROPS IL:NEW-CLOS-BROWSER IL:COPYRIGHT ("Venue" 1991 2020 2023))
|
||||
(IL:DECLARE\: IL:DONTCOPY
|
||||
(IL:FILEMAP (NIL (11846 13516 (CLOS-BROWSER:BROWSE-CLASS 11846 . 13516)) (13518 14861 (
|
||||
CLOS-BROWSER::COLLECT-FAMILY 13518 . 14861)) (14863 16895 (CLOS-BROWSER::MAKE-NODES 14863 . 16895)) (
|
||||
16897 17572 (CLOS-BROWSER::CLOS-BROWSER-CLOSE-FN 16897 . 17572)) (17574 18506 (CLOS-BROWSER::BROWSER-CONTAINS-P
|
||||
17574 . 18506)) (42339 42663 (CLOS-BROWSER::EDIT 42339 . 42663)) (42665 48259 (
|
||||
CLOS-BROWSER::MAKE-METHOD-MENU-ITEMS 42665 . 48259)) (48261 49739 (CLOS-BROWSER::MAKE-TOP-LEVEL-METHOD-MENU-ITEMS
|
||||
48261 . 49739)) (49741 51031 (CLOS-BROWSER::MAKE-MULTI-METHOD-SUB-MENU 49741 . 51031)) (65408 66025 (
|
||||
CLOS-BROWSER::COMPLETE-ADD-METHOD 65408 . 66025)) (66027 68239 (CLOS-BROWSER::COMPLETE-SPECIALIZE
|
||||
66027 . 68239)) (68241 69946 (CLOS-BROWSER::LYRIC-COMPLETE-SPECIALIZE 68241 . 69946)) (69948 70113 (
|
||||
CLOS-BROWSER::THIS-CLASS-NODE-P 69948 . 70113)) (70115 70217 (CLOS::CLASS-DIRECT-METHODS 70115 . 70217
|
||||
)) (86738 87753 (CLOS-BROWSER::REPLACE-SPECIALIZERS 86738 . 87753)) (88064 89648 (CLOS-BROWSER::IN-SELECT-PACKAGE
|
||||
88064 . 89648)) (89650 90900 (CLOS-BROWSER::CLASSES-IN-PACKAGE 89650 . 90900)))))
|
||||
(IL:FILEMAP (NIL (11770 13440 (CLOS-BROWSER:BROWSE-CLASS 11770 . 13440)) (13442 14785 (
|
||||
CLOS-BROWSER::COLLECT-FAMILY 13442 . 14785)) (14787 16819 (CLOS-BROWSER::MAKE-NODES 14787 . 16819)) (
|
||||
16821 17496 (CLOS-BROWSER::CLOS-BROWSER-CLOSE-FN 16821 . 17496)) (17498 18430 (CLOS-BROWSER::BROWSER-CONTAINS-P
|
||||
17498 . 18430)) (42263 42587 (CLOS-BROWSER::EDIT 42263 . 42587)) (42589 48183 (
|
||||
CLOS-BROWSER::MAKE-METHOD-MENU-ITEMS 42589 . 48183)) (48185 49663 (CLOS-BROWSER::MAKE-TOP-LEVEL-METHOD-MENU-ITEMS
|
||||
48185 . 49663)) (49665 50955 (CLOS-BROWSER::MAKE-MULTI-METHOD-SUB-MENU 49665 . 50955)) (64981 65598 (
|
||||
CLOS-BROWSER::COMPLETE-ADD-METHOD 64981 . 65598)) (65600 67812 (CLOS-BROWSER::COMPLETE-SPECIALIZE
|
||||
65600 . 67812)) (67814 69482 (CLOS-BROWSER::LYRIC-COMPLETE-SPECIALIZE 67814 . 69482)) (69484 69649 (
|
||||
CLOS-BROWSER::THIS-CLASS-NODE-P 69484 . 69649)) (69651 69753 (CLOS::CLASS-DIRECT-METHODS 69651 . 69753
|
||||
)) (86457 87472 (CLOS-BROWSER::REPLACE-SPECIALIZERS 86457 . 87472)) (87783 89367 (CLOS-BROWSER::IN-SELECT-PACKAGE
|
||||
87783 . 89367)) (89369 90516 (CLOS-BROWSER::CLASSES-IN-PACKAGE 89369 . 90516)))))
|
||||
IL:STOP
|
||||
|
||||
2
docs/html-primer/Medley-Primer-OnePage.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Medley-Primer-OnePage</title></head><frameset cols="310pt,*" rows="94%"><frame src="Medley-Primer-OnePage_files/headings.htm" name="headings"/><frame src="Medley-Primer-OnePage_files/content.htm" name="content"/></frameset></html>
|
||||
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_001.png
Normal file
|
After Width: | Height: | Size: 772 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_002.png
Normal file
|
After Width: | Height: | Size: 799 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_003.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_004.png
Normal file
|
After Width: | Height: | Size: 488 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_005.png
Normal file
|
After Width: | Height: | Size: 420 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_006.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_007.gif
Normal file
|
After Width: | Height: | Size: 98 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_008.gif
Normal file
|
After Width: | Height: | Size: 97 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_009.gif
Normal file
|
After Width: | Height: | Size: 99 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_010.gif
Normal file
|
After Width: | Height: | Size: 69 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_011.gif
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_012.gif
Normal file
|
After Width: | Height: | Size: 577 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_013.gif
Normal file
|
After Width: | Height: | Size: 836 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_014.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_015.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_016.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_017.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_018.gif
Normal file
|
After Width: | Height: | Size: 925 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_019.gif
Normal file
|
After Width: | Height: | Size: 916 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_020.gif
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_021.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_022.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_023.gif
Normal file
|
After Width: | Height: | Size: 792 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_024.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_025.gif
Normal file
|
After Width: | Height: | Size: 312 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_026.gif
Normal file
|
After Width: | Height: | Size: 828 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_027.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_028.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_029.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_030.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_031.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_032.gif
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_033.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_034.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_035.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_036.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_037.gif
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_038.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_039.gif
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_040.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_041.gif
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_042.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_043.gif
Normal file
|
After Width: | Height: | Size: 741 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_044.gif
Normal file
|
After Width: | Height: | Size: 871 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_045.gif
Normal file
|
After Width: | Height: | Size: 660 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_046.gif
Normal file
|
After Width: | Height: | Size: 751 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_047.gif
Normal file
|
After Width: | Height: | Size: 69 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_048.gif
Normal file
|
After Width: | Height: | Size: 727 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_049.gif
Normal file
|
After Width: | Height: | Size: 892 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_050.gif
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_051.gif
Normal file
|
After Width: | Height: | Size: 78 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_052.gif
Normal file
|
After Width: | Height: | Size: 77 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_053.gif
Normal file
|
After Width: | Height: | Size: 70 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_054.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_055.gif
Normal file
|
After Width: | Height: | Size: 947 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_056.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_057.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_058.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_059.gif
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_060.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_061.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_062.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_063.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_064.gif
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_065.gif
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_066.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_067.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_068.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_069.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_070.gif
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_071.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_072.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_073.gif
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_074.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_075.gif
Normal file
|
After Width: | Height: | Size: 544 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_076.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_077.gif
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_078.gif
Normal file
|
After Width: | Height: | Size: 661 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_079.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_080.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_081.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_082.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_083.gif
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_084.gif
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_085.gif
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_086.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_087.gif
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_088.gif
Normal file
|
After Width: | Height: | Size: 901 B |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_089.gif
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
docs/html-primer/Medley-Primer-OnePage_files/Image_090.gif
Normal file
|
After Width: | Height: | Size: 2.1 KiB |