Skip to content

Commit 10233b1

Browse files
committed
Initial site content.
1 parent 01a3941 commit 10233b1

7 files changed

Lines changed: 152 additions & 0 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata
4+
/.idea/
5+
*.iml
6+
*.lock

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.5"
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+

_config.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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: IJ-Plugins Project
17+
email: jpsacha@gmail.com
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
The ImageJ Plugins project is a source of custom plugins for the ImageJ software package.
20+
baseurl: "" # the subpath of your site, e.g. /blog
21+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
22+
github_username: ij-plugins
23+
24+
# Build settings
25+
markdown: kramdown
26+
theme: minima
27+
plugins:
28+
- jekyll-feed
29+
30+
# Exclude from processing.
31+
# The following items will not be processed, by default. Create a custom list
32+
# to override the default setting.
33+
# exclude:
34+
# - Gemfile
35+
# - Gemfile.lock
36+
# - node_modules
37+
# - vendor/bundle/
38+
# - vendor/cache/
39+
# - vendor/gems/
40+
# - vendor/ruby/
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: post
3+
title: "Welcome to new IJ-Plugins Site!"
4+
date: 2019-03-01 17:00:00 -0500
5+
categories: update
6+
---
7+
8+
The new IJ-Plugins site is staring its operation.
9+
10+
The IJ-Plugins project started in January of 2002 with mission of hosting plugins for [ImageJ][imagej]. It was originally hosted at [Source Forge](https://ij-plugins.sourceforge.net/).
11+
12+
Source code for several projects ([ijp-toolkit](https://github.com/ij-plugins), [ijp-imageio](https://github.com/ij-plugins/ijp-imageio), [ijp-scala-console](https://github.com/ij-plugins/ijp-scala-console)) moved to GitHub some time ago. Some new projects ([ijp-color](https://github.com/ij-plugins/ijp-color), [ijp-DeBayer2SX](https://github.com/ij-plugins/ijp-DeBayer2SX)) were added on GitHub.
13+
14+
After a long wait [the original website](https://ij-plugins.sourceforge.net/) is moving piece-by-piece to [this new location](http://ij-plugins.github.io/). It should be getting more regular updates here. Stay posted.
15+
16+
[imagej]: https://imagej.nih.gov/ij/

about.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
The ImageJ Plugins project is a source of custom plugins for the [ImageJ][imagej] software package. [ImageJ][imagej] is a public domain image processing and analysis program developed in Java.
8+
9+
[imagej]: https://imagej.nih.gov/ij/

index.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
# Feel free to add content and custom Front Matter to this file.
3+
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
4+
5+
layout: home
6+
---
7+
8+
## News
9+
* Mar 1, 2019 - the IJ-Plugins website started its transition from the [old location](https://ij-plugins.sourceforge.net/) to here
10+
11+
## ImageJ Plugin Bundles and Libraries
12+
* **[ij-Plugins Toolkit](https://github.com/ij-plugins)** - Set of ImageJ plugins and library for: reading and writing of 3D images, morphological operations on 3D images, color space conversion, color edge detection, various anisotropic diffusion filters, fast median filters, image quilting, image segmentation through clustering and region growing, and more.
13+
* **[ijp-color](https://github.com/ij-plugins/ijp-color)** - Operations on color spaces and color images, color conversion, and color calibration.
14+
* **[ijp-DeBayer2SX](https://github.com/ij-plugins/ijp-DeBayer2SX)** - Bayer-pattern image to color image converters.
15+
* **[ijp-scala-console](https://github.com/ij-plugins/ijp-scala-console)** - edit and run Scala scripts from ImageJ, have full access to ImageJ API and API's of all installed plugins.
16+
* **[ijp-imageio](https://github.com/ij-plugins/ijp-imageio)** - adds support for additional image file formats and sub-formats: BMP, FlashPIX, GIF, JPEG, PNG, PNM, and TIFF. Improves mapping of sample sizes, e.g., a 16 bit PNG or compressed TIFF images are read into ImageJ's ShortProcessor (16 bits per pixel). Enables reading and writing of 1 bit, 8 bit, 16 bit, 32 bit, tiled, compressed, and multi-page TIFF images. The I/O operations are performed using JAI codec.
17+
18+
## Past Projects
19+
For details see [the old website](https://ij-plugins.sourceforge.net/).
20+
21+
### ImageJ Plugin Bundles and Libraries
22+
* **ij-DCRaw** - open in ImageJ raw images from digital cameras with a help of DCRaw tool. Control how raw or how processed the opened image is.
23+
* **ij-VTK** - The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization written in C++ with bindings for Tcl/Tk, Java, Python, and .NET. ij-VTK provides plugins for running VTK image processing filters from ImageJ and helper classes for using VTK in Java applications.
24+
* **MRIAnalysisPak** - is a plugin collection for ImageJ for the analysis of MRI and fMRI data. This package is maintained by members of the Center for Comparative Neuroimaging (CCNI) at the University of Massachusetts Medical School and The Small Animal MRI Laboratory at Harvard Medical School/Brigham & Women's Hospital. The MRIAnalysisPak can be downloaded here.
25+
26+
### VTK Examples for Java
27+
* **VTK-Examples** - Port of Tcl and Python VTK examples to Java.

0 commit comments

Comments
 (0)