Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
f1bfd08a
Commit
f1bfd08a
authored
Jan 04, 2014
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removing config.hs, its old
parent
7b1a25ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
27 deletions
+0
-27
IHaskell.cabal
IHaskell.cabal
+0
-1
Config.hs
src/IHaskell/Config.hs
+0
-26
No files found.
IHaskell.cabal
View file @
f1bfd08a
...
@@ -101,7 +101,6 @@ executable IHaskell
...
@@ -101,7 +101,6 @@ executable IHaskell
IHaskell.Types
IHaskell.Types
IHaskell.ZeroMQ
IHaskell.ZeroMQ
IHaskell.Display
IHaskell.Display
IHaskell.Config
extensions: DoAndIfThenElse
extensions: DoAndIfThenElse
...
...
src/IHaskell/Config.hs
deleted
100644 → 0
View file @
7b1a25ed
{-# LANGUAGE NoImplicitPrelude, OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
-- | Description : IPython configuration files are compiled-into IHaskell
module
IHaskell.Config
(
ipython
,
notebook
,
console
,
qtconsole
,
customjs
,
notebookJavascript
)
where
import
Data.String.Here
import
ClassyPrelude
ipython
::
String
->
String
ipython
executable
=
[
template
|
config/ipython_config.py
|]
notebook
::
String
notebook
=
[
template
|
config/ipython_notebook_config.py
|]
console
::
String
console
=
[
template
|
config/ipython_console_config.py
|]
qtconsole
::
String
qtconsole
=
[
template
|
config/ipython_qtconsole_config.py
|]
customjs
::
String
customjs
=
[
template
|
config/custom.js
|]
notebookJavascript
::
[(
FilePath
,
String
)]
notebookJavascript
=
[(
"tooltip.js"
,
[
template
|
deps/tooltip.js
|]
),
(
"codecell.js"
,
[
template
|
deps/codecell.js
|]
)]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment