Diferencia entre revisiones de «Corriendo Moodle Mobile en computadora de escritorio»

De MoodleDocs
(aded page)
 
m (tidy up)
 
Línea 1: Línea 1:
{{Pendiente de traducir}}
{{Pendiente de traducir}}
Moodle Mobile can run in Desktop using [https://github.com/rogerwang/node-webkit node-webkit]
''Moodle Mobile'' (Moodle para móviles) puede correr en computadoras de escritorio usando [https://github.com/rogerwang/node-webkit node-webkit]


All the functionalities are available in the Desktop version (download files, take a photo, upload a picture, record and audio....) and also the application can work online and offline as the mobile version does.
Todas las funcionalidades están disponibles en la versión de escritorio (descargar archivos, tomar una foto, subir una imagen, grabarción y audio....) y también la aplicación puede trabajar en línea y fuera de línea all igual que lo hace la versión móvil.


== Running ==
== Ejecución ==
Para correr ''Moodle Mobile'' en escritorio, Usted necesita seguir estas instrucciones:


For running Moodle Mobile in desktop you need to follow these instructions:
1 Descargar node-webkit https://github.com/rogerwang/node-webkit (Downloads section)


1 Download node-webkit https://github.com/rogerwang/node-webkit (Downloads section)
2 Descargar la última versión del código de ''Moodle Mobile'' desde https://github.com/moodlehq/moodlemobile/archive/master.zip


2 Download the last version of Moodle Mobile code from https://github.com/moodlehq/moodlemobile/archive/master.zip
3 Renombrar la extensión '''.zip''' a '''.nw'''


3 Rename the .zip extension to .nw


'''Todas las plataformas'''


'''All platforms'''
Usted puede poner los archivos de node-webkit en el mismo directorio con los archivos de sus app's incluyendo package.json, y entonces solamente correr  el ejecutable nw.
 
You can put files of node-webkit in the same directory with your app's files including package.json, and then just run the nw executable.


'''Windows'''
'''Windows'''


On Windows, the easiest way to run the app is to drag the folder onto nw.exe, or a shortcut to nw.exe. Remember to drag the folder containing package.json, and not package.json itself.
En Windows, la forma más sencilla para correr la app es arrastrar la carpeta sobre de nw.exe, o un atajo hacia nw.exe. Recuerde arrastrar la carpeta que contiene  package.json, y no solamente a package.json solito.


You can also call it from the command line:
Usted también puede invocarlo desde la linea de comando:


For instance:
Por ejemplo:


  nw C:\apps\myapp
  nw C:\apps\myapp
Línea 33: Línea 32:
'''Linux'''
'''Linux'''


On Linux, you can use one of these command lines:
En Linux, Usted puede usar una de estas líneas de comando:


  nw /home/path/to/appdir/  
  nw /home/path/to/appdir/  
Línea 39: Línea 38:




If you have installed the .deb, you can double click on .nw files in your file manager as well.
Si Usted ha instalado el .deb, puede hacer doble click sobre los archivos .nw en su manejador de archivos también.




Línea 61: Línea 60:
  nw "/home/path/to/game"  
  nw "/home/path/to/game"  


== Packaging ==
== Empaquetamiento ==


You may want package the application for distribution, please follow this guide: https://github.com/rogerwang/node-webkit/wiki/How-to-package-and-distribute-your-apps
You may want package the application for distribution, please follow this guide: https://github.com/rogerwang/node-webkit/wiki/How-to-package-and-distribute-your-apps
Línea 67: Línea 66:
https://github.com/rogerwang/node-webkit/wiki/How-to-package-and-distribute-your-apps
https://github.com/rogerwang/node-webkit/wiki/How-to-package-and-distribute-your-apps


== See also ==
== Vea también ==


https://github.com/rogerwang/node-webkit/wiki/How-to-run-apps
https://github.com/rogerwang/node-webkit/wiki/How-to-run-apps

Revisión actual - 16:51 21 ene 2014

Nota: Pendiente de Traducir. ¡Anímese a traducir esta página!.     ( y otras páginas pendientes)

Moodle Mobile (Moodle para móviles) puede correr en computadoras de escritorio usando node-webkit

Todas las funcionalidades están disponibles en la versión de escritorio (descargar archivos, tomar una foto, subir una imagen, grabarción y audio....) y también la aplicación puede trabajar en línea y fuera de línea all igual que lo hace la versión móvil.

Ejecución

Para correr Moodle Mobile en escritorio, Usted necesita seguir estas instrucciones:

1 Descargar node-webkit https://github.com/rogerwang/node-webkit (Downloads section)

2 Descargar la última versión del código de Moodle Mobile desde https://github.com/moodlehq/moodlemobile/archive/master.zip

3 Renombrar la extensión .zip a .nw


Todas las plataformas

Usted puede poner los archivos de node-webkit en el mismo directorio con los archivos de sus app's incluyendo package.json, y entonces solamente correr el ejecutable nw.

Windows

En Windows, la forma más sencilla para correr la app es arrastrar la carpeta sobre de nw.exe, o un atajo hacia nw.exe. Recuerde arrastrar la carpeta que contiene package.json, y no solamente a package.json solito.

Usted también puede invocarlo desde la linea de comando:

Por ejemplo:

nw C:\apps\myapp
nw C:\apps\packagedapp.nw


Linux

En Linux, Usted puede usar una de estas líneas de comando:

nw /home/path/to/appdir/ 
nw /home/path/to/packagedapp.nw


Si Usted ha instalado el .deb, puede hacer doble click sobre los archivos .nw en su manejador de archivos también.


Mac OS X

On Mac OSX, a folder or .nw file can be dropped onto the nw.app application bundle. On the Mac OSX Terminal (commandline), you can use nw like this (assuming it's installed to the Applications directory):

open -n -a node-webkit "/home/path/to/app" 

In some cases it may be faster to invoke the nw binary inside the application bundle directly via the following:

/Applications/node-webkit.app/Contents/MacOS/node-webkit myapp 

You can setup an alias in your Terminal session to call the binary when you use nw by adding an alias to your ~/.bash_profile (open -a TextEdit ~/.bash_profile):

# alias to nw
alias nw="/Applications/node-webkit.app/Contents/MacOS/node-webkit"

Now you can call nw from the commandline like Linux and Windows:

nw "/home/path/to/game" 

Empaquetamiento

You may want package the application for distribution, please follow this guide: https://github.com/rogerwang/node-webkit/wiki/How-to-package-and-distribute-your-apps

https://github.com/rogerwang/node-webkit/wiki/How-to-package-and-distribute-your-apps

Vea también

https://github.com/rogerwang/node-webkit/wiki/How-to-run-apps