Thematic-Making It Public/publication workshop: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "'''Goal''': hands-on work session to help develop the publication. We'll work towards getting everyone to integrate their contribution in the publication and see the result fr...")
 
No edit summary
Line 5: Line 5:
=State of matter=
=State of matter=
Where are we with the publication:
Where are we with the publication:
* different functions
==roles & tasks==
* git repository
** Natalya: content transformations from videos onto still images ( pixel scan) + code snipets
** Pleun: design 
** Colm: gathering and preface
** Samira: write, editor
** Nadine: coordinator
** Max: translation onto code
** Stone: content translation
** Julia: reflective text (TBA)
** Sara:
 
==Resources==
===git repository===
https://github.com/pietzwart/making-it-public
<source lang="html4strict">
<span style="color:blue;font-weight:bold;">.</span>
├── <span style="color:blue;font-weight:bold;">making-it-public</span>
│  ├── <span style="color:blue;font-weight:bold;">book</span>
│  │  ├── ashes.epub
│  │  ├── <span style="color:blue;font-weight:bold;">assets</span>
│  │  │  ├── <span style="color:purple;font-weight:bold;">epubcover.jpg</span>
│  │  │  ├── jquery-1.11.3.min.js
│  │  │  ├── jquery-1.7.0.min.js
│  │  │  ├── jquery-1.7.0.min.txt
│  │  │  ├── jquery.js
│  │  │  ├── script.js
│  │  │  └── script.txt
│  │  ├── chapter1.html
│  │  ├── <span style="color:purple;font-weight:bold;">epubcover.jpg</span>
│  │  ├── generatebook.sh
│  │  ├── meta.xml
│  │  ├── mybook.epub
│  │  ├── <span style="color:blue;font-weight:bold;">_old</span>
│  │  │  └── report.html
│  │  ├── report1.html
│  │  ├── report.html
│  │  ├── styles.css
│  │  └── title.html
│  ├── Index_Sketch.ai
│  ├── intro.md
│  ├── Makingitpublic-report - Media Design- Networked &amp; Lens-Based wiki.pdf
│  ├── README.md
│  ├── report.html
│  ├── report.wiki
│  ├── <span style="color:blue;font-weight:bold;">scans</span>
│  │  ├── <span style="color:blue;font-weight:bold;">OCR</span>
│  │  │  ├── <span style="color:purple;font-weight:bold;">archivingbooklet.jpg</span>
│  │  │  ├── MER_3586.pdf
│  │  │  └── scanepud.rtf
│  │  └── <span style="color:blue;font-weight:bold;">wordexchange</span>
│  │      ├── index.html
│  │      └── script.js
│  ├── <span style="color:purple;font-weight:bold;">Screen Shot 2016-01-28 at 3.28.22 AM.png</span>
│  └── <span style="color:blue;font-weight:bold;">test-mip</span>
│      ├── <span style="color:green;font-weight:bold;">iTunesMetadata.plist</span>
│      ├── <span style="color:blue;font-weight:bold;">META-INF</span>
│      │  ├── <span style="color:green;font-weight:bold;">com.apple.ibooks.display-options.xml</span>
│      │  └── <span style="color:green;font-weight:bold;">container.xml</span>
│      ├── <span style="color:green;font-weight:bold;">mimetype</span>
│      └── <span style="color:blue;font-weight:bold;">OEBPS</span>
│          ├── <span style="color:green;font-weight:bold;">cover.xhtml</span>
│          ├── <span style="color:blue;font-weight:bold;">css</span>
│          │  └── <span style="color:green;font-weight:bold;">style.css</span>
│          ├── <span style="color:blue;font-weight:bold;">images</span>
│          │  ├── <span style="color:purple;font-weight:bold;">book_cover.jpg</span>
│          │  ├── <span style="color:purple;font-weight:bold;">img_p01.jpg</span>
│          │  ├── <span style="color:purple;font-weight:bold;">img_p02.jpg</span>
│          │  ├── <span style="color:purple;font-weight:bold;">img_p03.jpg</span>
│          │  ├── <span style="color:purple;font-weight:bold;">img_p04.jpg</span>
│          │  └── <span style="color:purple;font-weight:bold;">img_p05.jpg</span>
│          ├── <span style="color:green;font-weight:bold;">p01.html</span>
│          ├── <span style="color:green;font-weight:bold;">p02.html</span>
│          ├── <span style="color:green;font-weight:bold;">package.opf</span>
│          ├── report.html
│          └── toc.xhtml
└── tree.html
12 directories, 48 files
<source>
 
* content   
* content   
* structure
* structure
===Sofware===
* '''ebook reader''':
** Calibre - http://calibre-ebook.com/ (Calibre is also useful as an
EPUB editor)
** Readium - (optional) - http://readium.org/ - plugin for the
Chrome/Chromium browser that aims to be "a reference system for
rendering EPUB 3 publications".
** ibooks (if you have Mac)
* '''Pandoc''' - Markup (file) converter http://johnmacfarlane.net/pandoc/installing.html
* '''Git'''
** (Mac) git is included in [Xcode https://developer.apple.com/xcode/download/], so install XCode.
** Linux- download the package using the package repository
* '''Github'''
** Create an account on Github https://github.com/  (we might move away
from github, but right now the repository is there)
* '''epub validator'''
** online http://validator.idpf.org/
** program [https://github.com/IDPF/epubcheck epubcheck]


=Git=
=Git=

Revision as of 15:06, 10 February 2016

Goal: hands-on work session to help develop the publication. We'll work towards getting everyone to integrate their contribution in the publication and see the result from his/her contribution right away.


State of matter

Where are we with the publication:

roles & tasks

    • Natalya: content transformations from videos onto still images ( pixel scan) + code snipets
    • Pleun: design
    • Colm: gathering and preface
    • Samira: write, editor
    • Nadine: coordinator
    • Max: translation onto code
    • Stone: content translation
    • Julia: reflective text (TBA)
    • Sara:

Resources

git repository

https://github.com/pietzwart/making-it-public <source lang="html4strict"> . ├── making-it-public │ ├── book │ │ ├── ashes.epub │ │ ├── assets │ │ │ ├── epubcover.jpg │ │ │ ├── jquery-1.11.3.min.js │ │ │ ├── jquery-1.7.0.min.js │ │ │ ├── jquery-1.7.0.min.txt │ │ │ ├── jquery.js │ │ │ ├── script.js │ │ │ └── script.txt │ │ ├── chapter1.html │ │ ├── epubcover.jpg │ │ ├── generatebook.sh │ │ ├── meta.xml │ │ ├── mybook.epub │ │ ├── _old │ │ │ └── report.html │ │ ├── report1.html │ │ ├── report.html │ │ ├── styles.css │ │ └── title.html │ ├── Index_Sketch.ai │ ├── intro.md │ ├── Makingitpublic-report - Media Design- Networked & Lens-Based wiki.pdf │ ├── README.md │ ├── report.html │ ├── report.wiki │ ├── scans │ │ ├── OCR │ │ │ ├── archivingbooklet.jpg │ │ │ ├── MER_3586.pdf │ │ │ └── scanepud.rtf │ │ └── wordexchange │ │ ├── index.html │ │ └── script.js │ ├── Screen Shot 2016-01-28 at 3.28.22 AM.png │ └── test-mip │ ├── iTunesMetadata.plist │ ├── META-INF │ │ ├── com.apple.ibooks.display-options.xml │ │ └── container.xml │ ├── mimetype │ └── OEBPS │ ├── cover.xhtml │ ├── css │ │ └── style.css │ ├── images │ │ ├── book_cover.jpg │ │ ├── img_p01.jpg │ │ ├── img_p02.jpg │ │ ├── img_p03.jpg │ │ ├── img_p04.jpg │ │ └── img_p05.jpg │ ├── p01.html │ ├── p02.html │ ├── package.opf │ ├── report.html │ └── toc.xhtml └── tree.html 12 directories, 48 files <source>

  • content
  • structure

Sofware

EPUB editor)

Chrome/Chromium browser that aims to be "a reference system for rendering EPUB 3 publications".

from github, but right now the repository is there)


Git

  • current repository
  • a new repository, based on Hybrid Publishing Resources structure

Hybrid Publishing Resources

  • contribute, integrate, make

Future dev

  • what will be done by Open day?
  • wish-list
  • plan