##TO DO##
- v fix vimeo display
- v add captions/credits/titles/descriptions to media items
-
- disable comments
- v better ckeditor button selection
- v add editor role
-
- add administrator shortcuts
- v add editor shortcuts
- x look at media gallery modules
-
- add user 1 to editors
- v Less CSS
- v Panels
- v Responsive base themes
##Things we have to do post install##
- Disable comments ( as we can't run standard_install without it )
- Enable monograph_permissions ( as running that during install causes a critical error )
##To fork this repo (outside of Github)##
-
Clone the Monograph repo
$ git clone [email protected]:queenvictoria/monograph.git demo-site $ cd demo-site
-
Check the remotes
$ git remote -v
origin git://github.com/queenvictoria/monograph.git (fetch)
origin git://github.com/queenvictoria/monograph.git (push)
-
Rename the origin
$ git remote rename origin upstream
-
Create a new repo at Github
-
Add origins for the new repo
$ git remote add origin [email protected]:Laudanum/sturt.git
-
Check the new origins
$ git remote -v
origin [email protected]:Laudanum/sturt.git (fetch)
origin [email protected]:Laudanum/sturt.git (push)
upstream git://github.com/queenvictoria/monograph.git (fetch)
upstream git://github.com/queenvictoria/monograph.git (push)
-
Push up the new fork
$ git push origin master
I had to make a couple of manual changes to .git/config
-
Update [branch master]
[branch "master"] remote = origin merge = refs/heads/master
-
Correct the syntax for the monograph remove
upstream [email protected]:queenvictoria/monograph.git (fetch)
upstream [email protected]:queenvictoria/monograph.git (push)
##Recreate monograph locally with upstream fork##
`git clone ...` [ remote not monograph ] ./
`git add remote upstream git://github.com/queenvictoria/monograph.git`
##Update upstream from a fork##
$ git fetch origin -v && git fetch upstream -v && git merge upstream/master
##Push updates to upstream##
$ git push upstream