This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Display page hooks (Legacy page) | |
================================ | |
moduleRoutes | |
actionDispatcherBefore | |
actionDispatcher | |
displayBackOfficeHeader | |
displayBackOfficeTop | |
actionAdminControllerSetMedia | |
actionAdminPerformanceControllerBefore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"login": "nidup", | |
"id": 2104359, | |
"avatar_url": "https:\/\/avatars2.githubusercontent.com\/u\/2104359?v=3", | |
"gravatar_id": "", | |
"url": "https:\/\/api.github.com\/users\/nidup", | |
"html_url": "https:\/\/github.com\/nidup", | |
"followers_url": "https:\/\/api.github.com\/users\/nidup\/followers", | |
"following_url": "https:\/\/api.github.com\/users\/nidup\/following{\/other_user}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GITHUB_OWNER=vuejs | |
GITHUB_REPOSITORY=vue | |
GITHUB_LOGIN=mickaelandrieu | |
GITHUB_PASSWORD=ThisIsASecr3t | |
CORE_MEMBERS="yyx990803 defcc kazupon posva Jinjiang" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GH_USER=mickaelandrieu | |
GH_REPO=tweethub | |
TW_CONSUMER_KEY=XXXXXXXXXXXXXX | |
TW_CONSUMER_SECRET=YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY | |
TW_ACCESS_TOKEN=ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ | |
TW_ACCESS_SECRET=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
TW_MSG="A new release of TwitterHub is up => checkout! @htmlUrl" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
platform integration:add --type=github \ | |
--project=<PROJECT_ID> --token=<GITHUB-USER-TOKEN> \ | |
--repository=<OWNER>/<REPOSITORY> --build-pull-requests=true \ | |
--fetch-branches=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"http://{default}/": | |
type: upstream | |
upstream: "akeneodocs:http" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install sphinx~=1.5.3 | |
pip install git+https://github.com/fabpot/sphinx-php.git | |
pip install git+https://github.com/mickaelandrieu/sphinxcontrib.youtube.git | |
sphinx-build -b html . ./build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file describes an application. You can have multiple applications | |
# in the same project. | |
# The name of this app. Must be unique within a project. | |
name: akeneodocs | |
# The toolstack used to build the application. | |
type: "python:2.7" | |
build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- default script for clink, called by init.bat when injecting clink | |
-- !!! THIS FILE IS OVERWRITTEN WHEN CMDER IS UPDATED | |
-- !!! Use "%CMDER_ROOT%\config\<whatever>.lua" to add your lua startup scripts | |
-- At first, load the original clink.lua file | |
-- this is needed as we set the script path to this dir and therefore the original | |
-- clink.lua is not loaded. | |
local clink_lua_file = clink.get_env('CMDER_ROOT')..'\\vendor\\clink\\clink.lua' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Activités : gestion des contacts | |
*/ | |
var Contact = { | |
//initialisation de contact | |
init: function (nom, prenom){ | |
this.nom = nom; | |
this.prenom = prenom; | |
}, |