-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
make help #prints targets | ||
# Build for a release | ||
export EMBED_PASHUA=1; make clean zip; unset EMBED_PASHUA; make zip | ||
# Settings | ||
# Settings (telling make to embed the Pashua app inside the script library) | ||
export EMBED_PASHUA=0 | ||
export EMBED_PASHUA=1 | ||
unset EMBED_PASHUA | ||
# Log file | ||
open ~/Library/Logs/Catsdeep/ASPashua.log # Open in console | ||
less +G ~/Library/Logs/Catsdeep/ASPashua.log # Show last part with less | ||
# Control logging of the library | ||
defaults write com.catsdeep.ASPashua do_log -bool TRUE | ||
defaults read com.catsdeep.ASPashua | ||
defaults delete com.catsdeep.ASPashua |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
ASPashua examples | ||
================= | ||
|
||
In this folder you will find examples how to use the ASPashua scripting library. | ||
|
||
`dpd` denotes an example with the handler `display pashua dialog`. | ||
|
||
1. Demonstrates the usage of `display pashua dialog` with the form definition in an external file | ||
2. Demonstrates the usage of `display pashua dialog` with the form definition as an inline string | ||
3. Same, but more elaborate | ||
4. Demontrates how to set a custom location for `Pashua.app` | ||
5. Shows how to do form validation and use dynamic values with a form definition in an external file | ||
6. Same, but with the form definition as an inline string | ||
7. Demonstrates how to dynamic populate the options of an popup control |