Skip to content

Commit

Permalink
Replaced dls-controls with DiamondLightSource
Browse files Browse the repository at this point in the history
  • Loading branch information
garryod committed Jul 15, 2024
1 parent e5b5dea commit 308a5b1
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[![Build Status](https://travis-ci.com/dls-controls/cs-web-proto.svg?branch=master)](https://travis-ci.com/dls-controls/cs-web-proto)
[![Coverage Status](https://coveralls.io/repos/github/dls-controls/cs-web-proto/badge.svg?branch=master)](https://coveralls.io/github/dls-controls/cs-web-proto?branch=master)
[![Build Status](https://travis-ci.com/DiamondLightSource/cs-web-proto.svg?branch=master)](https://travis-ci.com/DiamondLightSource/cs-web-proto)
[![Coverage Status](https://coveralls.io/repos/github/DiamondLightSource/cs-web-proto/badge.svg?branch=master)](https://coveralls.io/github/DiamondLightSource/cs-web-proto?branch=master)

# CS Web Proto

This project aims to be able to display control system data on web pages.

It is hosted on [Github](https://github.com/dls-controls/cs-web-proto). It is
It is hosted on [Github](https://github.com/DiamondLightSource/cs-web-proto). It is
licensed with the Apache License: see `LICENSE`.

## Setup

See [the development environment wiki page](https://github.com/dls-controls/cs-web-proto/wiki/Development-Environment)
See [the development environment wiki page](https://github.com/DiamondLightSource/cs-web-proto/wiki/Development-Environment)
for how to get started and notes on development.

## Libraries
Expand Down Expand Up @@ -44,13 +44,13 @@ You needn't set connection information if you don't need any external sources of

### Coniql

The primary server that you will use is called [Coniql](https://github.com/dls-controls/coniql). It connects to the EPICS control system and provides data over GraphQL.
The primary server that you will use is called [Coniql](https://github.com/DiamondLightSource/coniql). It connects to the EPICS control system and provides data over GraphQL.

For more on how to set up Coniql see [this wiki page](https://github.com/dls-controls/cs-web-proto/wiki/Running-cs-web-proto-against-Coniql).
For more on how to set up Coniql see [this wiki page](https://github.com/DiamondLightSource/cs-web-proto/wiki/Running-cs-web-proto-against-Coniql).

### Simulator

There is a built-in simulator that can provide demo data. See [this wiki page](https://github.com/dls-controls/cs-web-proto/wiki/Simulating-a-control-system).
There is a built-in simulator that can provide demo data. See [this wiki page](https://github.com/DiamondLightSource/cs-web-proto/wiki/Simulating-a-control-system).

## Debugging

Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@dls-controls/cs-web-lib": "^0.1.22",
"@DiamondLightSource/cs-web-lib": "^0.1.22",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
onRenderCallback,
RelativePosition,
store
} from "@dls-controls/cs-web-lib";
} from "@DiamondLightSource/cs-web-lib";
import { Redirect, Route, Switch, useRouteMatch } from "react-router-dom";
import { PerformancePage } from "./components/PerformancePage/performancePage";
import { Footer } from "./components/Footer/footer";
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/header.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "@testing-library/jest-dom";
import { contextRender } from "@dls-controls/cs-web-lib";
import { contextRender } from "@DiamondLightSource/cs-web-lib";
import { Header } from "./header";

describe("<Header />", (): void => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
FontStyle,
OutlineContext,
RelativePosition
} from "@dls-controls/cs-web-lib";
} from "@DiamondLightSource/cs-web-lib";
import React from "react";
import classes from "./header.module.css";

Expand Down
2 changes: 1 addition & 1 deletion src/components/PerformancePage/performancePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
PV,
Readback,
InputComponent
} from "@dls-controls/cs-web-lib";
} from "@DiamondLightSource/cs-web-lib";

const SIMPLE_COMPONENTS = "simple-components";
const READBACKS = "readbacks";
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ReactDOM from "react-dom";
import { BrowserRouter as Router } from "react-router-dom";
import "./index.css";
import App from "./app";
import { OutlineProvider, FileProvider } from "@dls-controls/cs-web-lib";
import { OutlineProvider, FileProvider } from "@DiamondLightSource/cs-web-lib";

ReactDOM.render(
// App wrapped in various providers that allows use of their
Expand Down

0 comments on commit 308a5b1

Please sign in to comment.