From 980fe00a74a9ad013b945755415ace2e5429c3c2 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 27 Oct 2021 02:31:24 +0300 Subject: [RU] Remove notranslate (#2874) --- .../how_do_you_host_your_website_on_google_app_engine/index.html | 4 ++-- .../learn/common_questions/set_up_a_local_testing_server/index.html | 6 +++--- .../learn/common_questions/upload_files_to_a_web_server/index.html | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'files/ru/learn/common_questions') diff --git a/files/ru/learn/common_questions/how_do_you_host_your_website_on_google_app_engine/index.html b/files/ru/learn/common_questions/how_do_you_host_your_website_on_google_app_engine/index.html index 449e24f887..273618ce86 100644 --- a/files/ru/learn/common_questions/how_do_you_host_your_website_on_google_app_engine/index.html +++ b/files/ru/learn/common_questions/how_do_you_host_your_website_on_google_app_engine/index.html @@ -45,10 +45,10 @@ translation_of: Learn/Common_questions/How_do_you_host_your_website_on_Google_Ap Code Editor from Cloud Shell toolbar
  • С помощью drag and drop разместите папку sample-app в левой панели редактора кода.
  • Вернитесь обратно в Cloud Shell и введите следующую команду для перехода в директорию вашего приложения: -
    cd sample-app
    +
    cd sample-app
  • Теперь вы готовы развернуть ваше приложение, т.е. загрузить его в App Engine: -
    gcloud app deploy
    +
    gcloud app deploy
  • Введите число от одного до семи, чтобы выбрать регион, в котором вы хотите разместить своё приложение.
  • Нажмите Y для подтверждения.
  • diff --git a/files/ru/learn/common_questions/set_up_a_local_testing_server/index.html b/files/ru/learn/common_questions/set_up_a_local_testing_server/index.html index d5d0f440ba..67059b421c 100644 --- a/files/ru/learn/common_questions/set_up_a_local_testing_server/index.html +++ b/files/ru/learn/common_questions/set_up_a_local_testing_server/index.html @@ -59,12 +59,12 @@ translation_of: Learn/Common_questions/set_up_a_local_testing_server
  • Откройте командную строку (Windows)/ (OS X/Linux). Для проверки установки Python введите следующую команду:

    -
    python -V
    +
    python -V
  • Система вернёт вам номер версии установленной программы. В случае успешного выполнения команды python -V  нужно перейти в директорию с вашим проектом, используя команду cd:

    -
    # include the directory name to enter it, for example
    +  
    # include the directory name to enter it, for example
     cd Desktop
     # use two dots to jump up one directory level if you need to
     cd ..
    @@ -72,7 +72,7 @@ cd ..
  • Введите команду для запуска сервера в том каталоге:

    -
    # If Python version returned above is 3.X
    +  
    # If Python version returned above is 3.X
     python -m http.server
     # If Python version returned above is 2.X
     python -m SimpleHTTPServer
    diff --git a/files/ru/learn/common_questions/upload_files_to_a_web_server/index.html b/files/ru/learn/common_questions/upload_files_to_a_web_server/index.html index cd1ce35f94..a4b5bc0706 100644 --- a/files/ru/learn/common_questions/upload_files_to_a_web_server/index.html +++ b/files/ru/learn/common_questions/upload_files_to_a_web_server/index.html @@ -124,7 +124,7 @@ translation_of: Learn/Common_questions/Upload_files_to_a_web_server

    It is seen as a more advanced tool than SFTP, beause by default it is used on the command line. A basic command looks like so:

    -
    rsync [-options] SOURCE user@x.x.x.x:DESTINATION
    +
    rsync [-options] SOURCE user@x.x.x.x:DESTINATION
    • -options is a dash followed by a one or more letters, for example -v for verbose error messages, and -b to make backups. You can see the full list at the rsync man page (search for "Options summary").
    • @@ -140,7 +140,7 @@ translation_of: Learn/Common_questions/Upload_files_to_a_web_server

      Of course, it is a good idea to use a secure connection, like with FTP. In the case of Rsync, you specify SSH details to make the connection over SSH, using the -e option. For example:

      -
      rsync [-options] -e "ssh [SSH DETAILS GO HERE]" SOURCE user@x.x.x.x:DESTINATION
      +
      rsync [-options] -e "ssh [SSH DETAILS GO HERE]" SOURCE user@x.x.x.x:DESTINATION

      You can find more details of what is needed at How To Copy Files With Rsync Over SSH.

      -- cgit v1.2.3-54-g00ecf