Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit efa65f9

Browse files
committed
Pass on plugin_doc files (until action.updater), added some screenshots
1 parent 26cdd9b commit efa65f9

File tree

18 files changed

+83
-28
lines changed

18 files changed

+83
-28
lines changed
1.28 MB
Loading
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
<p>The "Shared Elements" repository uses this driver to display, and modify the metadata generated by all the share actions : shared files ("publiclets"), shared folders ("delegated repositories"), and shared users. Like access.ajxp_conf, it's a good demonstration of how Pydio can be used to browse data other than filesystem.</p>
1+
<p>
2+
This driver is used to serve the "Welcome Page" with workspaces lists, tuto and links to mobile apps.
3+
</p>
4+
<p style="text-align: center">
5+
<img src="ajxp_home.png">
6+
</p>
68.9 KB
Loading
Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
<p>The "Shared Elements" repository uses this driver to display, and modify the metadata generated by all the share actions : shared files ("publiclets"), shared folders ("delegated repositories"), and shared users. Like access.ajxp_conf, it's a good demonstration of how Pydio can be used to browse data other than filesystem.</p>
1+
<p>
2+
This driver is used to serve the "My Account" panel. It provides a way to edit user profile and adress book by default, and
3+
has some component hooks to display more preferences panels contributed by various plugins (WebDAV preferences, API Keys, etc).
4+
</p>
5+
<p>
6+
Like access.ajxp_conf, it's a good demonstration of how Pydio can be used to browse data other than filesystem.
7+
</p>
8+
<p style="text-align: center">
9+
<img src="ajxp_user.png">
10+
</p>
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
<p>The demo driver extends the access.fs driver and return an error on any "write" actions. It's used essentially on Pydio.info demo website. We could give the demo user only "read" access to the demo repository, but using this driver allows to demonstrate more features, even if they are disabled.</p>
1+
<p>
2+
The demo driver extends the access.fs driver and return an error on any "write" actions. It's used essentially on Pydio.info demo website.
3+
We could give the demo user only "read" access to the demo repository, but using this driver allows to demonstrate more features, even if they are disabled.
4+
</p>
40.4 KB
Loading
Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
<p>The Dropbox plugin is still experimental, and shall be used to access a dropbox account via their API. To use it, you must first register as Dropbox developer to get your API Key. This is typically a driver with wich you create a Repository Template, leaving the users credential empty and filling only your API Key info : that way, the users are able to access their own DropBox account without the administrator having to know their credentials, but using a shared API Key. See the documentation about the Repository Templates.</p>
2-
<p>Pear::Http_OAuth package must also be installed on your server in order to make the connection.</p>
1+
<p>
2+
The Dropbox plugin can be used to access a dropbox account via API. To use it, you must first register as Dropbox developer to get your API Key.
3+
</p>
4+
<p>
5+
This is typically a driver with wich you create a Repository Template, leaving the users credential empty and filling only your API Key info : that way, the users are able to access their own DropBox account without the administrator having to know their credentials, but using a shared API Key. See the documentation about the Repository Templates.
6+
</p>
7+
<p style="text-align: center">
8+
<img src="access_dropbox.png">
9+
</p>
10+
<p>
11+
In Pydio v6, Pear::Http_OAuth package was required. It is not anymore in v7 and following.
12+
</p>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<p><b>Disclaimer:</b> If you installed Pydio by the linux repository ( apt / yum ), you must install the "pydio-plugin-access.ftp" package.</p>
22
<p>Use Pydio server as proxy to a remote FTP server. If the filesystem you want to browse is not locally accessible by the server and you can access it via FTP, use this driver for browsing the data. The user/password used to authenticate against the FTP server can be set in various ways, either using one credential for all users, or setting each users credentials, or even using the ftp server as the credential provider.</p>
33
<p>The plugin can be linked to the <b>auth.ftp</b> to transform Pydio into a fully-feature generic FTP client, allowing your users to log in to any ftp server they want. See auth.ftp for more info.</p>
4-
<p>If you have the right accesses, you should also consider the plugin access.sftp, that uses SSH access to browse a server. It can be an interesting solution when you are struggling with permissions problems.</p>
4+
<p>If you have enough accesses, you should also consider the plugin access.sftp, that uses SSH access to browse a server. It can be an interesting solution when you are struggling with permissions problems.</p>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<p>
2+
This plugin is used for the "Shared Files" page. It is presenting to the user a collection of all files that have been
3+
shared with them.
4+
</p>
5+
<p>
6+
Files can be either shared by a local user, or by a remote user through Federated Sharing.
7+
</p>
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<p><b>Disclaimer:</b> If you installed Pydio by the linux repository ( apt / yum ), you must install the "pydio-plugin-access.s3" adn the "pydio-plugin-metastore.s3" package before.</p>
2-
<p>Use Amazon Simple Storage S3 as a file container. This extension requires the following to be installed :
3-
<ul>
4-
<li>PHP cURL extension</li>
5-
<li>PHP OpenSSL extension</li>
6-
<li>Amazon PHP Sdk V2 or V3 : just drop the aws.phar inside the plugin folder</li>
7-
</ul>
8-
Once all this is installed, you should be able to access an S3 storage, using the API keys provided on your Amazon console.
1+
<p>
2+
<b>Disclaimer:</b> If you installed Pydio by the linux repository ( apt / yum ), you must install the "pydio-plugin-access.s3" adn the "pydio-plugin-metastore.s3" package before.
3+
</p>
4+
<p>Use Amazon Simple Storage S3 as a file container. This extension should work out-of-the-box in Pydio 7, as we package
5+
the AWS SDK for PHP v3 directly.
6+
</p>
7+
<p>
8+
To be able to access an S3 storage, you will have to use the API keys provided on your Amazon console.
99
</p>

0 commit comments

Comments
 (0)