From Wiki96
Jump to: navigation, search
(added a bit of history)
Line 1: Line 1:
[[File:Iframe app example.png|thumb|The Windows 96 Wiki application represents a typical iframe app.]]
[[File:Iframe app example.png|thumb|The Windows 96 Wiki application represents a typical iframe app.]]
An "Iframe App" refers to a single-window application which simply incorporates a full size <code><iframe></code> element filled to the window content container. Said Iframe will usually point to an external resource (resource not hosted within the Windows 96 environment) and will have very little logic to integrate with the Windows 96 API.
An "iFrame App" refers to a single-window application which simply incorporates a full size <code><iframe></code> element filled to the window content container. Said iFrame will usually point to an external resource (resource not hosted within the Windows 96 environment) and will have very little logic to integrate with the Windows 96 API.


Iframe apps are extremely simple to create, and require little to no effort compared to more complex applications. This is sometimes useful for hosting external content which does not necessarily want to rely on Windows 96 specific APIs.
Iframe apps are extremely simple to create, and require little to no effort compared to more complex applications. This is sometimes useful for hosting external content which does not necessarily want to rely on Windows 96 specific APIs.


=== Criticism ===
=== Subtypes ===
A lot of users and developers are against Iframe apps, since they are extremely easy to code and require almost no knowledge of the Windows 96 API and program structure.


=== History ===
==== Hosted ====
The first Iframe App seems to be [https://rel2sp2.windows96.net/data/api-examples/Guided%20Samples/3_Iframeable%20App.js an API example from v2] probably made by [[Ctrlz]]. This app had an iframe pointing to [https://sys36.net sys36.net]and originated from [[Windows 96 v2 Service Pack 1]].
A hosted IFrame app is an application which has its resources hosted on the Windows 96 server itself. Hosted iFrame apps have the advantage of being able to access the top level window object without restrictions, since they are hosted on the same origin. This access usually allows hosted iFrame apps to integrate more directly with the Windows 96 environment, since all APIs are available to the frame.


the first ''community-made'' Iframe App I([[User:NanderTGA|NanderTGA]]) could find was RecordRTC by Jame AKA ctrli, uploaded in a thread on discord (in the creations channel) to publish packages for Nander to upload to his repository. This package was never uploaded as he either forgot or didn't want to convert the icon to a different resolution.
=== Criticism ===
A lot of users and developers object to most simple iFrame apps, since they are extremely easy to code and require almost no knowledge of the Windows 96 API and program structure.

Revision as of 00:09, 18 November 2022

The Windows 96 Wiki application represents a typical iframe app.

An "iFrame App" refers to a single-window application which simply incorporates a full size <iframe> element filled to the window content container. Said iFrame will usually point to an external resource (resource not hosted within the Windows 96 environment) and will have very little logic to integrate with the Windows 96 API.

Iframe apps are extremely simple to create, and require little to no effort compared to more complex applications. This is sometimes useful for hosting external content which does not necessarily want to rely on Windows 96 specific APIs.

Subtypes

Hosted

A hosted IFrame app is an application which has its resources hosted on the Windows 96 server itself. Hosted iFrame apps have the advantage of being able to access the top level window object without restrictions, since they are hosted on the same origin. This access usually allows hosted iFrame apps to integrate more directly with the Windows 96 environment, since all APIs are available to the frame.

Criticism

A lot of users and developers object to most simple iFrame apps, since they are extremely easy to code and require almost no knowledge of the Windows 96 API and program structure.