Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | SSL URLs in the generated download page, added Magic Pipes as a project, and added the vital step of updating the .setup file for a chicken egg release. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
04bef5767cf4c844fb378ef3b71725b5 |
User & Date: | alaric 2014-01-03 00:20:49 |
Context
2014-01-03
| ||
00:21 | http -> https check-in: 48cb06be75 user: alaric tags: trunk | |
00:20 | SSL URLs in the generated download page, added Magic Pipes as a project, and added the vital step of updating the .setup file for a chicken egg release. check-in: 04bef5767c user: alaric tags: trunk | |
2013-07-17
| ||
00:07 | Fixed deploy.sh's generation of DOAP metadata, which was a bit fishy. check-in: d5661a074a user: alaric tags: trunk | |
Changes
Changes to METADATA.rdf.
︙ | ︙ | |||
54 55 56 57 58 59 60 61 62 | </foaf:made> <foaf:made> <doap:Project about="https://www.kitten-technologies.co.uk/project/quick-ref-cards"> <dc:title>quick-ref-cards</dc:title> <rdfs:seeAlso resource="https://www.kitten-technologies.co.uk/project/quick-ref-cards/doc/trunk/METADATA.rdf" /> </doap:Project> </foaf:made> </foaf:Organisation> </RDF> | > > > > > > | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | </foaf:made> <foaf:made> <doap:Project about="https://www.kitten-technologies.co.uk/project/quick-ref-cards"> <dc:title>quick-ref-cards</dc:title> <rdfs:seeAlso resource="https://www.kitten-technologies.co.uk/project/quick-ref-cards/doc/trunk/METADATA.rdf" /> </doap:Project> </foaf:made> <foaf:made> <doap:Project about="https://www.kitten-technologies.co.uk/project/magic-pipes"> <dc:title>magic-pipes</dc:title> <rdfs:seeAlso resource="https://www.kitten-technologies.co.uk/project/magic-pipes/doc/trunk/METADATA.rdf" /> </doap:Project> </foaf:made> </foaf:Organisation> </RDF> |
Changes to README.wiki.
︙ | ︙ | |||
32 33 34 35 36 37 38 | * Add it to Alaric's FOAF file as a currentProject. * Tweet it from https://twitter.com/Kitten_Tech To do new a release of a project: * Tag it as the version number, eg "1.0" * If it's a chicken egg, update the release-info file to reflect | | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | * Add it to Alaric's FOAF file as a currentProject. * Tweet it from https://twitter.com/Kitten_Tech To do new a release of a project: * Tag it as the version number, eg "1.0" * If it's a chicken egg, update the release-info file to reflect the new release, and the .setup file to reflect the new version number. * Update DOWNLOAD.wiki by running: ~/personal/projects/kitten-technologies/bin/generate-download-page <NAME> * Commit and push. * Tweet it from https://twitter.com/Kitten_Tech <h1>How the RDF stuff works</h1> |
︙ | ︙ |
Changes to bin/generate-download-page.
︙ | ︙ | |||
8 9 10 11 12 13 14 | echo $VERSIONS ( echo "<h1>Releases</h1>" echo "" for VERSION in $VERSIONS do | | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | echo $VERSIONS ( echo "<h1>Releases</h1>" echo "" for VERSION in $VERSIONS do echo " * [https://www.kitten-technologies.co.uk/project/$PROJECT_NAME/tarball/$PROJECT_NAME-$VERSION.tar.gz?uuid=$VERSION|$VERSION]" done echo "" echo "<h1>Source Control</h1>" echo "" echo "You can obtain the latest sources, all history, and a local copy of" echo "the ticket database using [http://www.fossil-scm.org/|Fossil], like so:" echo "" echo "fossil clone https://www.kitten-technologies.co.uk/project/$PROJECT_NAME $PROJECT_NAME.fossil" ) > DOWNLOAD.wiki |
Changes to deploy.sh.
1 2 | #!/bin/sh | | | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh PROJECTS="ugarit banterpixra tangle argon simple-graphics quick-ref-cards magic-pipes" # Generate it hyde # Set up Fossil CGI stuff mv out/project/htaccess out/project/.htaccess chmod a+rx out/project/* |
︙ | ︙ |