Main:Home: Difference between revisions

From Memento Database Wiki
Jump to navigation Jump to search
mNo edit summary
Tags: Mobile edit Mobile web edit
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Stamp|2022-01-17|4.10.4|1.10.1| Memento wiki home page}}
{{Stamp|2022-07-23|4.12.0|1.11.1}}
{{BannerMenu}}
{{BannerMenu}}
[[Dev:To be done]]
{{PageTitle| The Memento Wiki Home Page (Wiki22)}}


{{PageTitle|The Memento Database application}}
=== The '''''About''''' index — An index of inks to the pages about Memento & the Wiki ===
{{PageSubtitle|The Wiki home page}}
{{NoteToSelf|Announce the About index}}


== Memento & the Wiki ==
{{NoteToAuthors|Maybe put a link to FAQs here and move the FAQs there}}
The Memento Database application is a personal & professional database application that comes in 2 editions, each of which run on various computing platforms. Memento Database runs within the Java Runtime Environment.
 
=== The '''''About''''' index — An index of links to the pages about Memento & the Wiki ===
{{NoteToSelf|Briefly announce the About index}}
 
{{NoteToAuthors|Maybe put a link to FAQs here and move the FAQs to separate pages}}
For answers to frequently-asked questions, [[About:MementoFaq|read our FAQ]].
For answers to frequently-asked questions, [[About:MementoFaq|read our FAQ]].


{| class="wikitable" style="width:100%"
{| class="wikitable" style="width:100%"
|+ A few of the questions that are frequently asked
|+ A few of the questions that are frequently asked
<br/>[[Faq:MementoApp|''(The <u>'''full'''</u> Memento Database FAQ can be found <u>here</u>.)'']]
<br/>[[Faq:MemApp|''(The <u>'''full'''</u> Memento Database FAQ can be found <u>here</u>.)'']]
! About the Memento ''application'' !! About the Memento ''wiki''
! About the Memento ''application'' !! About the Memento ''wiki''
|-
|-
| style="width:50%" | [[How:GettingStartedMementoApp|'''How do I get started''' installing & using the Memento ''application''?]]
| style="width:50%" | [[How:GettingStartedMemApp|'''How do I get started''' installing & using the Memento ''application''?]]
| style="width:50%" | [[How:GettingStartedMementoWiki|'''How do I get started''' accessing & using the Memento '''wiki'''?]]
| style="width:50%" | [[How:GettingStartedMemWiki|'''How do I get started''' accessing & using the Memento '''wiki'''?]]
|-
|-
| style="width:50%" | [[About:WhatsMemento|What is the Memento Database application?]]
| style="width:50%" | [[Faq:WhatsMem|What is the Memento Database application?]]
| style="width:50%" | [[About:WhatsMementoWiki| What is the Memento wiki?]]
| style="width:50%" | [[Faq:WhatsMemWiki|What is the Memento wiki?]]
|-
|-
| style="width:50%" | [[About:WhatMementoDoes|What does the Memento Database application do?]]
| style="width:50%" | [[Faq:WhatMemDoes|What does the Memento Database application do?]]
| style="width:50%" | [[About:WhatMementoWikiDoes|What does the Memento wiki do?]]
| style="width:50%" | [[Faq:WhatMemWikiDoes|What does the Memento wiki do?]]
|-
|-
| style="width:50%" | [[About:HowMementoWorks|How does the Memento Database application do what it does?]]
| style="width:50%" | [[Faq:HowMemWorks|How does the Memento Database application do what it does?]]
| style="width:50%" | [[About:HowMementoWikiWorks|How does the Memento wiki do what it does?]]
| style="width:50%" | [[Faq:HowDoesMemWikiWork|How does the Memento wiki do what it does?]]
|}
|}


Line 36: Line 30:
|+ Miscellaneous articles regarding the Memento Database application
|+ Miscellaneous articles regarding the Memento Database application
|-
|-
| style="width:50%" | [[About:MementoDatabase|About the Memento Database application]]
| style="width:50%" | [[About:MemDb|About the Memento Database application]]
[[About:MementoTiers|Structure of the Memento application]]
[[About:MemTiers|Structure of the Memento application]]
<br/>[[About:Scripting|Scripting in Memento]]
<br/>[[About:Scripting|Scripting in Memento]]
<br/>[[About:ColorCodes|HTML Color codes]]
<br/>[[About:ColorCodes|HTML Color codes]]
| style="width:50%" | [[About:IntroWiki|Introduction to the Wiki]]
| style="width:50%" | [[About:WikiIntro|Introduction to the Wiki]]
[[About:MementoWiki|About the Memento Wiki]]
[[About:MemWiki|About the Memento Wiki]]
<br/>[[About:WikiHome]]
<br/>[[About:WikiHome]]
|}
|}
== The '''''Memento Database application''''' indices ==
{{NoteLine|Insert here announcement of indices to follow}}
== The Memento application user-interface layer ==
{{NoteLine|Replace the following line with a corrected version}}
This provides links to access information about topics within the Memento [[About:UiLayer|the user-interface application layer]]
{{NoteLine|Create glossary entries for user interface, user-interface application layer, application structure, application layer, database application layer, scripting application layer, etc}}
{{NoteLine|Insert here the UI index wikitext}}
== The Memento application ''Scripting'' layer ==
Yada
{| class="wikitable" style="width:100%"
! About the Memento Database application !! About the Memento wiki
|-
| [[Index:UiLinks|User interface links?]]
|-
| [[Index:MobileLinks|Mobile links?]] || [[Index:DesktopLinks|Desktop links?]]
|-
| [[Index:ScriptingLinks|Scripting links?]]
| [[Index:DatabaseLinks|Database links?]]
|}
=== Scripting examples ===
{{NoteLine|Insert here an announcement & maybe an intro}}
{| class="wikitable" width="100%" align="left"
|+ Example: To open a contact given a <u>Web account</u> with a profile containing a phone number to use, a Memento Intent object using an Android action to view «<u>'''TBD'''</u>»
{{NoteLine|Finish table caption & align the columns to the left}}
<pre>
var w ="https://wa.me/phone_number"
var i = intent("android.intent.action.VIEW")
i.date(w)
i.send()
// The difficulty may be in concatenating https://wa.me/ to the contact number,
//    which is achieved with three variables:
var w1 = "https://wa.me/"; var t = entry().field ("Phone"); var w = w1 + t;
'''Example'''
var name = entry().field("Name")
// Now you will need one more variable to concatenate with the previous ones:
var d="?text="
// which results:
var w = w1 + t + d // respect this order for the sake of nomenclature
// The data now follows:
// var w = w1 + t + d + name
// Line breaks, if necessary in view of the data to be sent, are achieved with \n to insert into a variable and then join.
'''Example'''
var ml = "\n"
var w = w1 + t + d + name + ml
</pre>
== The Memento application ''Database'' layer ==
Yada
{| class="wikitable" style="width:100%"
! About the Memento Database application !! About the Memento wiki
|-
| [[Index:UiLinks|User interface links?]]
|-
| [[Index:MobileLinks|Mobile links?]] || [[Index:DesktopLinks|Desktop links?]]
|-
| [[Index:ScriptingLinks|Scripting links?]]
| [[Index:DatabaseLinks|Database links?]]
|}
== Getting started & getting help regarding the Memento application & its Wiki ==
Yada
=== The '''''Support''''' Index ===
Yada
{| class="wikitable"
! Getting started !! Troubleshooting !! Getting support
|-
| [[Support:GettingStartedAdmin|How do I get started '''setting up''' the Memento application?]]
<br/>[[Faq:GettingStartedUsing|How do I get started '''using''' the Memento application?]]
<br/>[[Faq:HowTroubleshoot|How do I troubleshoot my use of the Memento application?]]
<br/>[[Faq:HowGetSupport|How do I get support if I need it?]]
|}
<hr><hr>
=== About the Memento Database application Editions & Platforms ===
{{NoteLine|Insert here an intro, what's an edition, what's a platform, what's a release?}}
==== About Memento editions & their platforms====
*The Mobile edition &mdash; an edition that runs on mobile device '''''platforms''''', such as Google's Android OS and Apple's iOS OS.
**The edition on the Android platform dates back to 2015 or earlier.
**The edition on the iOS platform has not yet been released (as of Jan 2022 and is currently undergoing beta testing.
*The Desktop edition &mdash; an edition first released in 2017, simultaneously for these platforms...
**Microsoft's Windows PCs
**Apple's MacOS PCs
**Linux PCs
==== About Memento &mdash; Information about the Memento Database application====
For information about Memento, see the [[About:Home|About Memento home page]].
==== About the Memento wiki &mdash; Information about the user-authored Memento wiki====
For information about the user-authored Memento wiki, see [[Where is the wiki home page?]]
<hr><hr>
=== The '''''UI (user interface) & indices into it''''' (Presentation layer) ===
Like all indices, these provide direct access to the various facilities of Memento. The UI indices (one for each edition) are specific to the OS platforms it runs on.
If you're not very familiar with Memento, read [[Faq:MementoApp|the Memento FAQ]].
<hr>
{| style="width: 100%" <!-- Put these 2 launchers side by side -->
| style="width:50%" |
==== [[Main:Mobile home|'''''Mobile edition home page & index''''' (Mobile presentation layer)]] ====
[[Main:Mobile index|The <u>index</u> to the Mobile edition of the Memento Database]]
| style="width:50%" |
==== [[Main:Desktop home|'''''Desktop edition home page & index''''' (Desktop presentation layer)]] ====
[[Main:Desktop index|The <u>index</u> to the Desktop edition of the Memento Database]]
|}
<hr>
{| style="width:100%"
|
=== '''''Scripting index ''''' <small>&mdash; Navigating the Memento '''''Scripting tier''''' (Application tier) facilities &mdash; '''''Scripting''''' the Memento Database Application</small>===
[[Main:Scripting index|The (almost entirely) edition-independent index to the Memento Database application]]
=== '''''Database index''''' <small>&mdash; Navigating the Memento '''''Database tier''''' (Data tier) facilities &mdash; '''''Database & Data Structure''''' in the Memento Database application</small>===
[[Main:Database index|The index to the (almost entirely) edition-independent index to the Memento Database application]] provides links to all the Wiki22 (Memento wiki 2022) pages for the Database & data structure areas within the Memento Database application.
|}
<hr><hr>

Latest revision as of 05:10, 23 July 2022

« Page as of 2022-07-23, editions Mobile 4.12.0, Desktop 1.11.1 »

Wiki
Home
About
Wiki | Memento
Getting started
Wiki | Memento
Indexes
Mobile | Desktop | Scripting
Support
Wiki | Memento
 The Memento Wiki Home Page (Wiki22)

The About index — An index of inks to the pages about Memento & the Wiki


« NOTE TO SELF: Announce the About index »



« NOTE TO AUTHORS: Maybe put a link to FAQs here and move the FAQs there »


For answers to frequently-asked questions, read our FAQ.

A few of the questions that are frequently asked
(The full Memento Database FAQ can be found here.)
About the Memento application About the Memento wiki
How do I get started installing & using the Memento application? How do I get started accessing & using the Memento wiki?
What is the Memento Database application? What is the Memento wiki?
What does the Memento Database application do? What does the Memento wiki do?
How does the Memento Database application do what it does? How does the Memento wiki do what it does?
Miscellaneous articles regarding the Memento Database application
About the Memento Database application

Structure of the Memento application
Scripting in Memento
HTML Color codes

Introduction to the Wiki

About the Memento Wiki
About:WikiHome