Change http:// links to https://

This commit is contained in:
RealRancor
2016-01-13 14:15:21 +01:00
parent 7af6a2154f
commit 5cef9fec02
23 changed files with 50 additions and 50 deletions

View File

@@ -346,7 +346,7 @@ Status codes:
Example
-------
* POST ``http://admin:secret@myowncloud.org/ocs/v1.php/cloud/users/Frank/subadmins -d
* POST ``https://admin:secret@example.com/ocs/v1.php/cloud/users/Frank/subadmins -d
groupid="group"``
* Makes the user ``Frank`` a subadmin of the ``group`` group
@@ -384,7 +384,7 @@ Status codes:
Example
-------
* DELETE ``http://admin:secret@myowncloud.org/ocs/v1.php/cloud/users/Frank/subadmins -d groupid="oldgroup"``
* DELETE ``https://admin:secret@example.com/ocs/v1.php/cloud/users/Frank/subadmins -d groupid="oldgroup"``
* Removes ``Frank's`` subadmin rights from the ``oldgroup`` group
XML Output
@@ -419,7 +419,7 @@ Status codes:
Example
-------
* GET ``http://admin:secret@myowncloud.org/ocs/v1.php/cloud/users/Frank/subadmins``
* GET ``https://admin:secret@example.com/ocs/v1.php/cloud/users/Frank/subadmins``
* Returns the groups of which ``Frank`` is a subadmin
XML Output
@@ -574,7 +574,7 @@ Status codes:
Example
-------
* GET ``http://admin:secret@myowncloud.org/ocs/v1.php/cloud/groups/mygroup/subadmins``
* GET ``https://admin:secret@example.com/ocs/v1.php/cloud/groups/mygroup/subadmins``
* Return the subadmins of the group: ``mygroup``
XML Output

View File

@@ -50,7 +50,7 @@ respective manuals:
* `ownCloud Android App`_
* `ownCloud iOS App`_
.. _`ownCloud User Manual`: http://doc.owncloud.org/
.. _`ownCloud Desktop Client`: http://doc.owncloud.org/
.. _`ownCloud Android App`: http://doc.owncloud.org/
.. _`ownCloud iOS App`: http://doc.owncloud.org/
.. _`ownCloud User Manual`: https://doc.owncloud.org/server/9.0/user_manual/
.. _`ownCloud Desktop Client`: https://doc.owncloud.org/desktop/2.1/
.. _`ownCloud Android App`: https://doc.owncloud.org/android/
.. _`ownCloud iOS App`: https://doc.owncloud.org/ios/

View File

@@ -65,7 +65,7 @@ part of the ownCloud installation, it will be downloaded from the app store,
installed and enabled.
You can view new, unreviewed or unstable applications in the
`ownCloud Apps Store <http://apps.owncloud.com/>`_.
`ownCloud Apps Store <https://apps.owncloud.com/>`_.
To view or install apps from the ownCloud Apps Store:
@@ -149,4 +149,4 @@ To enable installation from your own apps store:
<?php
"appstoreenabled" => true,
"appstoreurl" => "http://api.apps.owncloud.com/v1",
"appstoreurl" => "https://api.owncloud.com/v1",

View File

@@ -134,7 +134,7 @@ Apache and MariaDB, by issuing the following commands in a terminal::
Now download the archive of the latest ownCloud version:
* Go to the `ownCloud Download Page <http://owncloud.org/install>`_.
* Go to the `ownCloud Download Page <https://owncloud.org/install>`_.
* Go to **Download ownCloud Server > Download > Archive file for
server owners** and download either the tar.bz2 or .zip archive.
* This downloads a file named owncloud-x.y.z.tar.bz2 or owncloud-x.y.z.zip
@@ -151,7 +151,7 @@ Now download the archive of the latest ownCloud version:
* You may also verify the PGP signature::
wget https://download.owncloud.org/community/owncloud-x.y.z.tar.bz2.asc
wget https://www.owncloud.org/owncloud.asc
wget https://owncloud.org/owncloud.asc
gpg --import owncloud.asc
gpg --verify owncloud-x.y.z.tar.bz2.asc owncloud-x.y.z.tar.bz2

View File

@@ -101,7 +101,7 @@ help::
sudo -u www-data php console.php files:scan --all
See `the owncloud.org support page <http://owncloud.org/support>`_ for further
See `the owncloud.org support page <https://owncloud.org/support>`_ for further
resources for both home and enterprise users.
Sometimes, ownCloud can get *stuck in a upgrade*. This is usually due to the

View File

@@ -42,7 +42,7 @@ App Development
Intro
=====
Before you start, please check if there already is a similar app in the `App Store <http://apps.owncloud.com>`_, or an official `ownCloud app <https://github.com/owncloud/core/wiki/Maintainers#apps-repo>`_ (see Apps Repo and Other app repos) that you could contribute to. Also, feel free to communicate your idea and plans to the `user mailing list <http://mailman.owncloud.org/mailman/listinfo/user>`_ or `developer mailing list <http://mailman.owncloud.org/mailman/listinfo/devel>`_ so other contributors might join in.
Before you start, please check if there already is a similar app in the `App Store <https://apps.owncloud.com>`_, or an official `ownCloud app <https://github.com/owncloud/core/wiki/Maintainers#apps-repo>`_ (see Apps Repo and Other app repos) that you could contribute to. Also, feel free to communicate your idea and plans to the `user mailing list <https://mailman.owncloud.org/mailman/listinfo/user>`_ or `developer mailing list <https://mailman.owncloud.org/mailman/listinfo/devel>`_ so other contributors might join in.
Then, please make sure you have set up a development environment:
@@ -143,4 +143,4 @@ PHPDoc Class Documentation
--------------------------
ownCloud class and function documentation:
* `ownCloud App API <http://api.owncloud.org/namespaces/OCP.html>`_
* `ownCloud App API <https://api.owncloud.org/namespaces/OCP.html>`_

View File

@@ -25,17 +25,17 @@ The :file:`appinfo/info.xml` contains metadata about the app:
<documentation>
<user>http://doc.owncloud.org</user>
<admin>http://doc.owncloud.org</admin>
<user>https://doc.owncloud.org</user>
<admin>https://doc.owncloud.org</admin>
</documentation>
<category>tool</category>
<website>http://www.owncloud.org</website>
<website>https://owncloud.org</website>
<bugs>http://github.com/owncloud/theapp/issues</bugs>
<bugs>https://github.com/owncloud/theapp/issues</bugs>
<repository type="git">http://github.com/owncloud/theapp.git</repository>
<repository type="git">https://github.com/owncloud/theapp.git</repository>
<ocsid>1234</ocsid>

View File

@@ -4,7 +4,7 @@ Translation
.. sectionauthor:: Bernhard Posselt <dev@bernhard-posselt.com>
ownCloud's translation system is powered by `Transifex <https://www.transifex.com/projects/p/owncloud/>`_. To start translating sign up and enter a group. If your community app should be added to Transifex contact one of the `core developers <http://owncloud.org/contact/>`_ to set it up for you.
ownCloud's translation system is powered by `Transifex <https://www.transifex.com/projects/p/owncloud/>`_. To start translating sign up and enter a group. If your community app should be added to Transifex contact one of the `core developers <https://owncloud.org/contact/>`_ to set it up for you.
PHP
===

View File

@@ -24,7 +24,7 @@ With each level come requirements and a position in the store.
Official
^^^^^^^^
Official apps are developed by and within the ownCloud community and its `Github <http://github.com/owncloud>`_ repository and offer functionality central to ownCloud. They are ready for serious use and can be considered a part of ownCloud.
Official apps are developed by and within the ownCloud community and its `Github <https://github.com/owncloud>`_ repository and offer functionality central to ownCloud. They are ready for serious use and can be considered a part of ownCloud.
Requirements:

View File

@@ -9,7 +9,7 @@ This tutorial will outline how to create a very simple notes app. The finished a
Setup
=====
After the `development tool <https://github.com/owncloud/ocdev/blob/master/README.rst#installation>`_ has been installed the :doc:`development environment needs to be set up <../general/devenv>`. This can be done by either `downloading the zip from the website <http://owncloud.org/install/>`_ or cloning it directly from GitHub::
After the `development tool <https://github.com/owncloud/ocdev/blob/master/README.rst#installation>`_ has been installed the :doc:`development environment needs to be set up <../general/devenv>`. This can be done by either `downloading the zip from the website <https://owncloud.org/install/>`_ or cloning it directly from GitHub::
ocdev setup core --dir owncloud --branch $BRANCH

View File

@@ -279,7 +279,7 @@ Release.
.. _existing ones: https://ci.tmit.eu/job/acceptance-test/cucumber-html-reports/?
.. _“Given … when … then …“: https://github.com/cucumber/cucumber/wiki/Given-When-Then
.. _unit tests: https://github.com/owncloud/core/tree/master/tests
.. _Code Review Documentation: http://owncloud.org/dev/code-reviews-on-github/
.. _Code Review Documentation: https://owncloud.org/dev/code-reviews-on-github/
.. _Jenkins: https://ci.tmit.eu/
.. _cucumber: http://cukes.info/
.. _transifex: https://www.transifex.com/projects/p/owncloud/

View File

@@ -10,9 +10,9 @@ Bug Triaging is the process of checking bug reports to see if they are still val
Why do you want to join
=======================
Helping to bring the number if issues down makes it easier for developers to spend their time productively and bug triagers thus **contribute greatly to ownCloud development**! Triaging a bug doesnt take long so the work comes in small chunks and you dont need many skills, just some patience and sometimes perseverance.
Helping to bring the number of issues down makes it easier for developers to spend their time productively and bug triagers thus **contribute greatly to ownCloud development**! Triaging a bug doesnt take long so the work comes in small chunks and you dont need many skills, just some patience and sometimes perseverance.
Bug triagers who contribute significantly should ask to be listed as an active contributor on the `owncloud.org <http://owncloud.org>`_ page!
Bug triagers who contribute significantly should ask to be listed as an active contributor on the `owncloud.org <https://owncloud.org>`_ page!
How do you triage bugs
======================
@@ -34,7 +34,7 @@ Triaging follows these steps:
General considerations
======================
* You need a `github account <http://github.com>`_ to contribute to bug triaging.
* You need a `github account <https://github.com>`_ to contribute to bug triaging.
* If you are not familiar with the github issue tracker interface (which is used by ownCloud to handle bug reports), you `may find this guide useful <https://guides.github.com/features/issues/>`_.
* You will initially only be able to comment on issues. The ability to close issues or assign labels will be given liberally to those who have shown to be willing and able to contribute. Just ask on IRC!
* Read `our bug reporting guidelines <https://github.com/owncloud/core/blob/master/CONTRIBUTING.md#submitting-issues>`_ so you know what a good report should look like and where things belong. The `issue template <https://raw.github.com/owncloud/core/master/issue_template.md>`_ asks specifically for some information developers need to solve issues.
@@ -125,7 +125,7 @@ Now, the developers can pick the issue up. Note that while we wish we would alwa
Collaboration
=============
You can just get started with bug triaging. But if you want, you can register on the `testpilot mailing list <http://mailman.owncloud.org/mailman/listinfo/testpilots>`_ and perhaps introduce yourself to `testpilots@owncloud.org <testpilots@owncloud.org>`_. On this list we announce and discuss testing and bug triaging related subjects.
You can just get started with bug triaging. But if you want, you can register on the `testpilot mailing list <https://mailman.owncloud.org/mailman/listinfo/testpilots>`_ and perhaps introduce yourself to `testpilots@owncloud.org <testpilots@owncloud.org>`_. On this list we announce and discuss testing and bug triaging related subjects.
You can also join the **#owncloud-testing** channel on **irc.freenode.net** (`link for IRC clients <irc://#owncloud-testing@freenode.net>`_ and `link to webchat <https://webchat.freenode.net/>`_) to ask questions but keep in mind that people aren't active 24/7 and it can occasionally take a while to get a response. Last but not least, ownCloud contributor `Jan Borchardt has a great guide for developers and triagers <https://gist.github.com/jancborchardt/6155185>`_ about dealing with issues, including some 'stock answers' and thoughts on how to deal with pull requests.

View File

@@ -7,7 +7,7 @@ Help and Communication
Mailing lists
-------------
Communicate via mail on our `mailing lists <http://mailman.owncloud.org>`_.
Communicate via mail on our `mailing lists <https://mailman.owncloud.org>`_.
IRC channels
------------
@@ -21,5 +21,5 @@ Chat with us on `IRC <http://www.irchelp.org/>`_. All channels are on **irc.free
Maintainers
-----------
* `Contact <http://owncloud.org/contact/>`_ a maintainer of a certain app or division
* `Contact <https://owncloud.org/contact/>`_ a maintainer of a certain app or division

View File

@@ -55,7 +55,7 @@ App config
"appstoreenabled" => true,
/* URL of the appstore to use, server should understand OCS */
"appstoreurl" => "http://api.apps.owncloud.com/v1",
"appstoreurl" => "https://api.owncloud.com/v1",
/* Mode to use for sending mail, can be sendmail, smtp, qmail or php, see PHPMailer docs */
"mail_smtpmode" => "sendmail",

View File

@@ -6,8 +6,8 @@ Coding Style & General Guidelines
General
-------
* Ideally, discuss your plans on the `mailing list <http://mailman.owncloud.org/mailman/listinfo/devel>`_ to see if others want to work with you on it
* We use `Github <http://github.com/owncloud>`_, please get an account there and clone the repositories you want to work on
* Ideally, discuss your plans on the `mailing list <https://mailman.owncloud.org/mailman/listinfo/devel>`_ to see if others want to work with you on it
* We use `Github <https://github.com/owncloud>`_, please get an account there and clone the repositories you want to work on
* Fixes go directly to master, nevertheless they need to be tested thoroughly.
* New features are always developed in a branch and only merged to master once they are fully done.
* Software should work. We only put features into master when they are complete. It's better to not have a feature instead of having one that works poorly.
@@ -15,7 +15,7 @@ General
* When you are finished, use the merge request function on Github to create a pull request. The other developers will look at it and give you feedback. You can signify that your PR is ready for review by adding the label "5 - ready for review" to it. You can also post your merge request to the mailing list to let people know. See `the code review page for more information <../bugtracker/codereviews.html>`_
* It is key to keep changes separate and small. The bigger and more hairy a PR grows, the harder it is to get it in. So split things up where you can in smaller changes - if you need a small improvement like a API addition for a big feature addition, get it in first rather than adding it to the big piece of work!
* Decisions are made by consensus. We strive for making the best technical decisions and as nobody can know everything, we collaborate. That means a first negative comment might not be the final word, neither is positive feedback an immediate GO. ownCloud is built out of modular pieces (apps) and maintainers have a strong influence. In case of disagreement we consult other seasoned contributors.
* We need a signed contributor agreement from you to commit into the core repository (apps don't need that). All the information is in our `Contributor agreement FAQ <http://owncloud.org/contribute/agreement/>`_.
* We need a signed contributor agreement from you to commit into the core repository (apps don't need that). All the information is in our `Contributor agreement FAQ <https://owncloud.org/contribute/agreement/>`_.
Labels
------
@@ -72,7 +72,7 @@ Coding
* No global variables or functions
* Unit tests
* HTML should be HTML5 compliant
* Check these `database performance tips <http://mailman.owncloud.org/pipermail/devel/2014-June/000262.html>`_
* Check these `database performance tips <https://mailman.owncloud.org/pipermail/devel/2014-June/000262.html>`_
* When you ``git pull``, always ``git pull --rebase`` to avoid generating extra commits like: *merged master into master*

View File

@@ -11,7 +11,7 @@ Please follow the steps on this page to set up your development environment.
Set up web server and database
==============================
First `set up your web server and database <http://doc.owncloud.org/server/9.0/admin_manual/#installation>`_ (**Section**: Manual Installation - Prerequisites).
First `set up your web server and database <https://doc.owncloud.org/server/9.0/admin_manual/#installation>`_ (**Section**: Manual Installation - Prerequisites).
.. TODO ON RELEASE: Update version number above on release
Get the source
@@ -19,7 +19,7 @@ Get the source
There are two ways to obtain ownCloud sources:
* Using the `stable version <http://doc.owncloud.org/server/9.0/admin_manual/#installation>`_
* Using the `stable version <https://doc.owncloud.org/server/9.0/admin_manual/#installation>`_
.. TODO ON RELEASE: Update version number above on release
* Using the development version from `GitHub`_ which will be explained below.

View File

@@ -61,4 +61,4 @@ The recommendation is to automatically do 10000 PROPFINDs or file uploads, measu
Getting help
------------
If you need help with performance or other issues please ask on our `mailing list <http://mailman.owncloud.org/mailman/listinfo/devel>`_ or on our IRC channel **#owncloud-dev** on **irc.freenode.net**.
If you need help with performance or other issues please ask on our `mailing list <https://mailman.owncloud.org/mailman/listinfo/devel>`_ or on our IRC channel **#owncloud-dev** on **irc.freenode.net**.

View File

@@ -246,4 +246,4 @@ Always validate the URL before redirecting if the requested URL is on the same d
Getting help
------------
If you need help to ensure that a function is secure please ask on our `mailing list <http://mailman.owncloud.org/mailman/listinfo/devel>`_ or on our IRC channel **#owncloud-dev** on **irc.freenode.net**.
If you need help to ensure that a function is secure please ask on our `mailing list <https://mailman.owncloud.org/mailman/listinfo/devel>`_ or on our IRC channel **#owncloud-dev** on **irc.freenode.net**.

View File

@@ -5,7 +5,7 @@ ownCloud Developer Documentation
================================
If you want to contribute please read the `Contributor agreement
<http://owncloud.org/about/contributor-agreement/>`_
<https://owncloud.org/about/contributor-agreement/>`_
+-------------------------+-------------------------+-----------------------------+
|:doc:`app/index` |:doc:`core/index` |`Documentation`_ |
@@ -23,7 +23,7 @@ If you want to contribute please read the `Contributor agreement
| mailinglist and forum | | |
+-------------------------+-------------------------+-----------------------------+
.. _ownCloud appstore: http://apps.owncloud.com/
.. _ownCloud appstore: https://apps.owncloud.com/
.. _Translation: https://www.transifex.com/projects/p/owncloud/
.. _Documentation: https://github.com/owncloud/documentation#owncloud-documentation

View File

@@ -17,7 +17,7 @@ Furthermore, during bug fixing the ownCloud developers often do not have the pos
Another benefit is a closer relationship to the developers: **You know what people are responsible for which parts** and it is easier to get help.
If you want you will be listed as an active contributor on the `owncloud.org <http://owncloud.org>`_ page.
If you want you will be listed as an active contributor on the `owncloud.org <https://owncloud.org>`_ page.
Who can join
@@ -26,7 +26,7 @@ Anyone who is interested in improving the quality on his/her setup and is willin
How do you join
---------------
Simply register on the `testpilot mailing list <http://mailman.owncloud.org/mailman/listinfo/testpilots>`_ and send an introduction of your personal setup and interests to `testpilots@owncloud.org <testpilots@owncloud.org>`_
Simply register on the `testpilot mailing list <https://mailman.owncloud.org/mailman/listinfo/testpilots>`_ and send an introduction of your personal setup and interests to `testpilots@owncloud.org <testpilots@owncloud.org>`_
You can also join the **#owncloud-testing** channel on **irc.freenode.net** but keep in mind that we may take longer to answer ;)

View File

@@ -492,9 +492,9 @@ To get the properties of files in the root folder:
.. _KB2668751: https://support.microsoft.com/kb/2668751
.. _KB2123563: https://support.microsoft.com/kb/2123563
.. _in your file manager: http://en.wikipedia.org/wiki/Webdav#WebDAV_client_applications
.. _ownCloud sync clients: http://doc.owncloud.org/desktop/1.7/
.. _Mount ownCloud to a local folder without sync: http://owncloud.org/use/webdav/
.. _Android: http://github.com/owncloud/android
.. _ownCloud sync clients: https://doc.owncloud.org/desktop/2.1/
.. _Mount ownCloud to a local folder without sync: https://owncloud.org/use/webdav/
.. _Android: https://github.com/owncloud/android
.. _WebDAV Navigator: http://seanashton.net/webdav/
.. _Android devices: https://play.google.com/store/apps/details?id=com.schimera.webdavnavlite
.. _iPhones: https://itunes.apple.com/app/webdav-navigator/id382551345

View File

@@ -23,6 +23,6 @@ manuals:
* `ownCloud Android App`_
* `ownCloud iOS App`_
.. _`ownCloud Desktop Client`: http://doc.owncloud.org/desktop/
.. _`ownCloud Android App`: http://doc.owncloud.org/android/
.. _`ownCloud iOS App`: http://doc.owncloud.org/ios/
.. _`ownCloud Desktop Client`: https://doc.owncloud.org/desktop/2.1/
.. _`ownCloud Android App`: https://doc.owncloud.org/android/
.. _`ownCloud iOS App`: https://doc.owncloud.org/ios/

View File

@@ -24,7 +24,7 @@ Desktop Sync Client Shares From File Manager, Selective Sync
The Desktop Sync Client now allows you to share files directly from your file
manager, and has a new graphical selective sync file chooser. See the `ownCloud
Desktop Client Manual <http://doc.owncloud.org/desktop/2.0/>`_ for more
Desktop Client Manual <https://doc.owncloud.org/desktop/2.1/>`_ for more
information.
.. _favorites-label: