Skip to content

Commit ec99486

Browse files
committed
Initial data imported from Code4Lib Drupal database using Jekyll Drupal 7 importer.
0 parents  commit ec99486

File tree

993 files changed

+18928
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

993 files changed

+18928
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata

404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

Gemfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 3.8.3"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "minima", "~> 2.0"
15+
16+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
17+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18+
# gem "github-pages", group: :jekyll_plugins
19+
20+
# If you have any plugins, put them here!
21+
group :jekyll_plugins do
22+
gem "jekyll-feed", "~> 0.6"
23+
end
24+
25+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
30+

Gemfile.lock

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.0.5)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
ffi (1.9.25)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (0.9.5)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (3.8.3)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 0.7)
22+
jekyll-sass-converter (~> 1.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 1.14)
25+
liquid (~> 4.0)
26+
mercenary (~> 0.3.3)
27+
pathutil (~> 0.9)
28+
rouge (>= 1.7, < 4)
29+
safe_yaml (~> 1.0)
30+
jekyll-feed (0.10.0)
31+
jekyll (~> 3.3)
32+
jekyll-sass-converter (1.5.2)
33+
sass (~> 3.4)
34+
jekyll-seo-tag (2.5.0)
35+
jekyll (~> 3.3)
36+
jekyll-watch (2.0.0)
37+
listen (~> 3.0)
38+
kramdown (1.17.0)
39+
liquid (4.0.0)
40+
listen (3.1.5)
41+
rb-fsevent (~> 0.9, >= 0.9.4)
42+
rb-inotify (~> 0.9, >= 0.9.7)
43+
ruby_dep (~> 1.2)
44+
mercenary (0.3.6)
45+
minima (2.5.0)
46+
jekyll (~> 3.5)
47+
jekyll-feed (~> 0.9)
48+
jekyll-seo-tag (~> 2.1)
49+
pathutil (0.16.1)
50+
forwardable-extended (~> 2.6)
51+
public_suffix (3.0.2)
52+
rb-fsevent (0.10.3)
53+
rb-inotify (0.9.10)
54+
ffi (>= 0.5.0, < 2)
55+
rouge (3.1.1)
56+
ruby_dep (1.5.0)
57+
safe_yaml (1.0.4)
58+
sass (3.5.6)
59+
sass-listen (~> 4.0.0)
60+
sass-listen (4.0.0)
61+
rb-fsevent (~> 0.9, >= 0.9.4)
62+
rb-inotify (~> 0.9, >= 0.9.7)
63+
64+
PLATFORMS
65+
ruby
66+
67+
DEPENDENCIES
68+
jekyll (~> 3.8.3)
69+
jekyll-feed (~> 0.6)
70+
minima (~> 2.0)
71+
tzinfo-data
72+
73+
BUNDLED WITH
74+
1.16.2

_config.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Your awesome title
17+
email: your-email@example.com
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
Write an awesome description for your new site here. You can edit this
20+
line in _config.yml. It will appear in your document head meta (for
21+
Google search results) and in your feed.xml site description.
22+
baseurl: "" # the subpath of your site, e.g. /blog
23+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
24+
twitter_username: jekyllrb
25+
github_username: jekyll
26+
27+
# Build settings
28+
markdown: kramdown
29+
theme: minima
30+
plugins:
31+
- jekyll-feed
32+
33+
# Exclude from processing.
34+
# The following items will not be processed, by default. Create a custom list
35+
# to override the default setting.
36+
# exclude:
37+
# - Gemfile
38+
# - Gemfile.lock
39+
# - node_modules
40+
# - vendor/bundle/
41+
# - vendor/cache/
42+
# - vendor/gems/
43+
# - vendor/ruby/
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
categories: []
3+
layout: page
4+
title: code4lib journal name ideas
5+
created: 1141315830
6+
---
7+
Here are the names that have been suggested so far for the code4lib journal. Feel free to add your own suggestions (click on the title of this post, then click the "edit" tab). There will eventually be a vote to pick which one gets used.
8+
9+
<em>UPDATE: The vote will be taking place online on Friday, March 17, 2006, before 4:00pm Pacific time. The deadline for adding names to the ballot is 4:00pm Pacific time on Thursday, March 16.</em>
10+
11+
<ul>
12+
<li>Code4Lib Journal</li>
13+
<li>Code For Libraries</li>
14+
<li>Computer Programming Journal for Libraries</li>
15+
<li>/dev/lib/journal</li>
16+
<li>/lib/coders/journal</li>
17+
<li>Z666</li>
18+
<li>Infinite Monkey Journal</li>
19+
<li>Journal of Technical Bibliotechetry</li>
20+
<li>Bibliotechetry</li>
21+
<li>bibliotech <a href="http://www.biblio-tech.com/">already a journal with this name</a></li>
22+
<li>BiblioTechTonics</li>
23+
<li>sine nomine</li>
24+
<li>Temporarily Modern</li>
25+
<li>Rag Paper</li>
26+
<li>ZJournal</li>
27+
<li>Mk XXI</li>
28+
<li>Mixed Responsibility</li>
29+
<li>Fast, cheap, and out of control: the Code4Lib journal</li>
30+
<li>http://www.code4lib.org/</li>
31+
<li>code5lib</li>
32+
<li>PostMARC</li>
33+
<li>Unleash it</li>
34+
<li>True Journal True</li>
35+
<li>All your code are belong to libraries</li>
36+
<li>Hands-On Journal of Library Tech</li>
37+
<li>XSLT Sucks No It Doesn't Journal</li>
38+
<li>One Big Library</li>
39+
<li>make install;</li>
40+
<li>Robot Monkey</li>
41+
<li>Out the door, and to the left</li>
42+
<li>Library Hacks</li>
43+
<li>Dog Ears</li>
44+
<li>Acid Paper</li>
45+
<li>Access Points</li>
46+
<li>Illuminated Libraries</li>
47+
<li>Sssssh</li>
48+
<li>See Also</li>
49+
<li>Seriality</li>
50+
<li>Marginalia [note: <a href="http://marginalia.mary.9esolution.net/journal/">there is already a journal by this name</a>]</li>
51+
<li>Turtles All the Way Down Journal</li>
52+
<li>Libraries Unleashed</li>
53+
<li>faqsimile</li>
54+
<li>README</li>
55+
<li>Indexed: The Library Coder's ____ly</li>
56+
<li>Libraries++</li>
57+
<li>while(code4lib==true)</li>
58+
<li>while(library.usesCode()==true)</li>
59+
<li>while(1)</li>
60+
<li>if(0)</li>
61+
<li>/lib/dev: A Journal for Library Programmers</li>
62+
<li>Unleashed Library</li>
63+
<li>Panizzi's Children</li>
64+
<li>Dewey's Laboratory</li>
65+
<li>Library Laboratory</li>
66+
<li>The Code4Libber (like <em>The Idler</em>)</li>
67+
<li>Well-Formed and Valid</li>
68+
<li>Code4Codices</li>
69+
<li>Codex Librarius</li>
70+
<li>C4L</li>
71+
<li>Indexed, Unleashed, Well-formed and Valid</li>
72+
<li>LibInfoTech</li>
73+
</ul>
74+
75+
<!--break-->
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
categories: []
3+
layout: page
4+
title: Code4Lib Journal Name Ballot
5+
created: 1142525891
6+
---
7+
The following names are on the ballot for the code4lib journal name. Some suggested names have not been added; if you feel this list omits a name that ought to be suggested, please notify me before voting begins.
8+
9+
Voting will begin late tonight; instructions will be posted here when voting begins. The deadline for voting is 4:00pm Pacific time tomorrow, Friday 17 March 2006.
10+
11+
<ul>
12+
<li>Code4Lib Journal</li>
13+
<li>Code For Libraries</li>
14+
<li>Computer Programming Journal for Libraries</li>
15+
<li>/dev/lib/journal</li>
16+
<li>/lib/coders/journal</li>
17+
<li>Z666</li>
18+
<li>Journal of Technical Bibliotechetry</li>
19+
<li>Bibliotechetry</li>
20+
<li>BiblioTechTonics</li>
21+
<li>Temporarily Modern</li>
22+
<li>ZJournal</li>
23+
<li>Hands-On Journal of Library Tech</li>
24+
<li>One Big Library</li>
25+
<li>make install;</li>
26+
<li>Access Points</li>
27+
<li>Robot Monkey</li>
28+
<li>Library Hacks</li>
29+
<li>Libraries Unleashed</li>
30+
<li>README</li>
31+
<li>Indexed: The Library Coder's Quarterly</li>
32+
<li>Libraries++</li>
33+
<li>while(code4lib==true)</li>
34+
<li>while(library.usesCode()==true)</li>
35+
<li>/lib/dev: A Journal for Library Programmers</li>
36+
<li>Unleashed Library</li>
37+
<li>Panizzi's Children</li>
38+
<li>Dewey's Laboratory</li>
39+
<li>Library Laboratory</li>
40+
<li>The Code4Libber (like The Idler)</li>
41+
<li>Code4Codices</li>
42+
<li>Codex Librarius</li>
43+
<li>C4L</li>
44+
<li>LibInfoTech</li>
45+
</ul>
46+
47+
<!--break-->
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
excerpt: "If you wish to host a Code4Lib Conference in your community, please review
3+
this information before <a href=\"mailto:code4libcon@lists.gatech.edu\">applying</a>.\r\n\r\n<strong>Desirable
4+
Qualities of a Hosting Site</strong>\r\n\r\n<ul>\r\n<li>Small college or university
5+
town (why? \"amenities\", my friend, amenities)</li>\r\n<li>Reasonably near a major
6+
airport (we are prepared to interpret this liberally if the other qualifications
7+
are strong</li>\r\n<li>Good evening venues (e.g., interesting and/or good restaurants
8+
and bars)</li>\r\n<li>A host or hosts willing to manage local arrangements (many
9+
colleges and universities are skilled at facilitating conferences)</li>\r"
10+
categories: []
11+
layout: page
12+
title: Code4Lib Conference Hosting
13+
created: 1151542352
14+
---
15+
If you wish to host a Code4Lib Conference in your community, please review this information before <a href="mailto:code4libcon@lists.gatech.edu">applying</a>.
16+
17+
<strong>Desirable Qualities of a Hosting Site</strong>
18+
19+
<ul>
20+
<li>Small college or university town (why? "amenities", my friend, amenities)</li>
21+
<li>Reasonably near a major airport (we are prepared to interpret this liberally if the other qualifications are strong</li>
22+
<li>Good evening venues (e.g., interesting and/or good restaurants and bars)</li>
23+
<li>A host or hosts willing to manage local arrangements (many colleges and universities are skilled at facilitating conferences)</li>
24+
<li>An auditorium or similar space suitable for 150-200 persons, plus three or more "breakout" rooms for 30-50.</li>
25+
<li>Wireless network available to attendees free or sponsored by the conference</li>
26+
<li>Some distance away from the last conference site, all things being equal (to spread the travel pain)</li>
27+
</ul>
28+
29+
<strong>Applying to Host</strong>
30+
31+
Send your proposal to the <a href="mailto:code4libcon@lists.gatech.edu">Code4Lib Conference Planning List</a>. Please try to be as complete as possible regarding the situation you offer the conference (keeping criteria such as those above in mind). Proposals received by August 15, approximately 18 months prior to the proposed conference, will have the first chance at consideration.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
categories: []
3+
layout: blog
4+
title: Solr Powered Libraries
5+
created: 1187370648
6+
---
7+
draft
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
categories: []
3+
layout: blog
4+
title: Super Conference Serendipity
5+
created: 1202219590
6+
---
7+
coming soon... http://www.eifl.net/cps/sections/services/eifl-foss/foss-blog/ola-superconference

0 commit comments

Comments
 (0)