Skip to content

Commit

Permalink
Repo URI changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
xuri committed Jul 11, 2017
1 parent 23a6820 commit ba6eea4
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 24 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

# aurora

[![Build Status](https://travis-ci.org/Luxurioust/aurora.svg?branch=master)](https://travis-ci.org/Luxurioust/aurora)
[![Code Coverage](https://codecov.io/gh/Luxurioust/aurora/branch/master/graph/badge.svg)](https://codecov.io/gh/Luxurioust/aurora)
[![Downloads](https://img.shields.io/github/downloads/Luxurioust/aurora/total.svg)](https://github.com/Luxurioust/aurora/releases)
[![Go Report Card](https://goreportcard.com/badge/github.com/Luxurioust/aurora)](https://goreportcard.com/report/github.com/Luxurioust/aurora)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](https://github.com/Luxurioust/aurora/blob/master/LICENSE)
[![Release](https://img.shields.io/github/release/Luxurioust/aurora.svg?label=Release)](https://github.com/Luxurioust/aurora/releases)
[![Build Status](https://travis-ci.org/xuri/aurora.svg?branch=master)](https://travis-ci.org/xuri/aurora)
[![Code Coverage](https://codecov.io/gh/xuri/aurora/branch/master/graph/badge.svg)](https://codecov.io/gh/xuri/aurora)
[![Downloads](https://img.shields.io/github/downloads/xuri/aurora/total.svg)](https://github.com/xuri/aurora/releases)
[![Go Report Card](https://goreportcard.com/badge/github.com/xuri/aurora)](https://goreportcard.com/report/github.com/xuri/aurora)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](https://github.com/xuri/aurora/blob/master/LICENSE)
[![Release](https://img.shields.io/github/release/xuri/aurora.svg?label=Release)](https://github.com/xuri/aurora/releases)

## Overview

aurora is a web-based Beanstalk queue server console written in Go and works on macOS, Linux and Windows machines. Main idea behind using Go for backend development is to utilize ability of the compiler to produce zero-dependency binaries for multiple platforms. aurora was created as an attempt to build very simple and portable application to work with local or remote Beanstalk server.

[See application screenshots](https://github.com/Luxurioust/aurora/wiki)
[See application screenshots](https://github.com/xuri/aurora/wiki)

## Features

Expand All @@ -35,7 +35,7 @@ aurora is a web-based Beanstalk queue server console written in Go and works on

## Installation

[Precompiled binaries](https://github.com/Luxurioust/aurora/releases) for supported operating systems are available.
[Precompiled binaries](https://github.com/xuri/aurora/releases) for supported operating systems are available.

## Contributing

Expand All @@ -58,4 +58,4 @@ Contributions are welcome! Open a pull request to fix a bug, or open an issue to

## Licenses

This program is under the terms of the MIT License. See [LICENSE](https://github.com/Luxurioust/aurora/blob/master/LICENSE) for the full license text.
This program is under the terms of the MIT License. See [LICENSE](https://github.com/xuri/aurora/blob/master/LICENSE) for the full license text.
2 changes: 1 addition & 1 deletion currentTubeJobsActionsRow.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/url"
"strconv"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// currentTubeJobsActionsRow render a section include kick, pause and unpause
Expand Down
2 changes: 1 addition & 1 deletion currentTubeJobsShowcase.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/url"
"strconv"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// currentTubeJobsShowcase return a section include three stats of job, call
Expand Down
2 changes: 1 addition & 1 deletion currentTubeJobsSummaryTable.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"net/url"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// currentTubeJobsSummaryTable constructs a tube job table based on the given
Expand Down
2 changes: 1 addition & 1 deletion lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// addJob puts a job into tube by given config.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"runtime"
"strings"

_ "github.com/Luxurioust/aurora/statik"
"github.com/rakyll/statik/fs"
_ "github.com/xuri/aurora/statik"
)

// main function defines the entry point for the program if read config file or
Expand Down
2 changes: 1 addition & 1 deletion modalAddSample.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"html"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// modalAddSample render add sample popup window.
Expand Down
2 changes: 1 addition & 1 deletion modalClearTubes.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"html"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// modalClearTubes render modal popup for delete job in tubes.
Expand Down
2 changes: 1 addition & 1 deletion sampleJobUtils.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"time"

"github.com/BurntSushi/toml"
"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// addSample provide a function to add sample job by parse form with POST
Expand Down
2 changes: 1 addition & 1 deletion statisticsUtils.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// statisticPreferenceSave provide method to save statistics preference
Expand Down
4 changes: 2 additions & 2 deletions structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ const (
DefaultTTR = 60 // 1 minute
DefaultTubePauseSeconds = 3600
TplHead = `<head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"><!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]--><meta name="description" content="Beanstalk Console"><meta name="keywords" content="Beanstalk Console, beanstalk, console"><meta content="always" name="referrer"><meta name="language" content="en-US"><meta name="category" content="Tools"><meta name="summary" content="Beanstalk Console"><meta name="apple-mobile-web-app-capable" content="yes"/><link rel="copyright" href="http://www.opensource.org/licenses/mit-license.php"/><link rel="icon" sizes="32x32" href="./images/aurora-32x32.ico"><link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon-180x180-precomposed.png"><link rel="apple-touch-icon" sizes="152x152" href="./images/apple-touch-icon-152x152-precomposed.png"><link rel="apple-touch-icon" sizes="144x144" href="./images/apple-touch-icon-144x144-precomposed.png"><link rel="apple-touch-icon" sizes="120x120" href="./images/apple-touch-icon-120x120-precomposed.png"><link rel="apple-touch-icon" sizes="114x114" href="./images/apple-touch-icon-114x114-precomposed.png"><link rel="apple-touch-icon" sizes="76x76" href="./images/apple-touch-icon-76x76-precomposed.png"><link rel="apple-touch-icon" sizes="72x72" href="./images/apple-touch-icon-72x72-precomposed.png"><link rel="apple-touch-icon" href="./images/apple-touch-icon-precomposed-57x57.png"><title>Beanstalk Console</title><!-- Bootstrap core CSS --><link href="./assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"><link href="./css/customer.css" rel="stylesheet"><link href="./highlight/styles/magula.css" rel="stylesheet"><!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --><!--[if lt IE 9]><script src="./js/libs/html5shiv/3.7.0/html5shiv.js"></script><script src="./js/libs/respond.js/1.4.2/respond.min.js"></script><![endif]--></head>`
TplLinks = `<li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown"> Links <span class="caret"></span></a><ul class="dropdown-menu"><li><a href="https://github.com/kr/beanstalkd">Beanstalk (GitHub)</a></li><li><a href="https://github.com/Luxurioust/aurora">Aurora (GitHub)</a></li></ul></li>`
TplLinks = `<li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown"> Links <span class="caret"></span></a><ul class="dropdown-menu"><li><a href="https://github.com/kr/beanstalkd">Beanstalk (GitHub)</a></li><li><a href="https://github.com/xuri/aurora">Aurora (GitHub)</a></li></ul></li>`
TplNoScript = `<noscript><div class="container"><div class="alert alert-danger" role="alert">Aurora beanstalk console requires JavaScript supports, please refresh after enable browser JavaScript support.</div></div></noscript>`
UpdateURL = `https://api.github.com/repos/Luxurioust/aurora/tags`
UpdateURL = `https://api.github.com/repos/xuri/aurora/tags`
Version = 2.1
)

Expand Down
2 changes: 1 addition & 1 deletion tplNav.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sort"
"strconv"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// getServerStatus render a server stats table.
Expand Down
2 changes: 1 addition & 1 deletion tplSampleJobEdit.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sort"
"strconv"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// tplSampleJobEdit render a sample job edit form.
Expand Down
2 changes: 1 addition & 1 deletion tplStatisticEdit.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sort"
"strconv"

"github.com/Luxurioust/aurora/beanstalk"
"github.com/xuri/aurora/beanstalk"
)

// tplStatisticEdit provide method to render the statistics preference page.
Expand Down
2 changes: 1 addition & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func checkUpdate() string {
return updateInfo
}
if Version < v {
updateInfo = fmt.Sprintf(`<br/><div class="alert alert-info" style="position: relative;top:50px;"><span>You are currently running version %.1f of aurora. A new version is available: <b>%.1f</b> Get it from <b><a href="https://github.com/Luxurioust/aurora" target="_blank">GitHub</a></b></span></div>`, Version, v)
updateInfo = fmt.Sprintf(`<br/><div class="alert alert-info" style="position: relative;top:50px;"><span>You are currently running version %.1f of aurora. A new version is available: <b>%.1f</b> Get it from <b><a href="https://github.com/xuri/aurora" target="_blank">GitHub</a></b></span></div>`, Version, v)
}
return updateInfo
}

0 comments on commit ba6eea4

Please sign in to comment.