├── .gitignore
├── .gitmodules
├── .travis.yml
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── glide.yaml
├── main
├── index.html
├── main.go
└── main_test.go
└── tasks
└── local
└── ci
└── build.sh
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
3 | *.sublime-project
4 | *.sublime-workspace
5 |
6 | vendor/
7 | main/main
8 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "packages"]
2 | path = packages
3 | url = https://github.com/limetext/lime-packages.git
4 | [submodule "tasks/general"]
5 | path = tasks/general
6 | url = https://github.com/limetext/lime-tasks.git
7 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | os:
2 | - osx
3 | - linux
4 |
5 | sudo: false
6 |
7 | language: go
8 |
9 | go: 1.5.1
10 |
11 | addons:
12 | apt:
13 | sources:
14 | - deadsnakes
15 | packages:
16 | - libonig-dev
17 | - python3.5
18 | - python3.5-dev
19 |
20 | install:
21 | - ./tasks/general/ci/install.sh
22 |
23 | script:
24 | - ./tasks/general/ci/run_tests.sh main
25 | - ./tasks/local/ci/build.sh
26 | - ./tasks/general/ci/check_fmt.sh
27 |
28 | notifications:
29 | webhooks:
30 | urls:
31 | - https://webhooks.gitter.im/e/3e692a5224c8490f19bd
32 | on_success: change
33 | on_failure: always
34 | on_start: false
35 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | ### 1. The issues list is for development purposes only.
2 |
3 | All issues reported here should result in **code being changed, added and/or removed**.
4 |
5 | For support requests, please use [limetext/support](https://github.com/limetext/support) instead.
6 |
7 |
8 | ### 2. Issues should be opened up in the correct repository.
9 |
10 | All issues reported here should result in code being changed, added and/or removed **in *this* repository**. If the issue relates to a different package, please file it there. There are a number of supporting packages maintained by us, which can be found [here](https://github.com/limetext).
11 |
12 |
13 | ### 3. Feature requests belong here, unless they can be implemented via a plugin.
14 |
15 | If the feature can be implemented via a plugin it fails by proxy to satisfy [#2](CONTRIBUTING.md#2-issues-should-be-openened-up-in-the-correct-repository).
16 |
17 |
18 | ### 4. Bug reports belong here.
19 |
20 | Bug reports should include a description of current behaviour and the expected behaviour in cases where this isn't obvious.
21 |
22 | User errors where the error does not result in a code change count as support and fail to satisfy [#1](CONTRIBUTING.md#1-the-issues-list-is-for-development-purposes-only).
23 |
24 | ### 5. If you'd like to help but don't know how.
25 |
26 | There's plenty of work that needs to be done, requiring a wide variety of skills and skill levels. The [Contributing wiki page](https://github.com/limetext/lime/wiki/Contributing) is a good place to start for some ideas.
27 |
28 | There isn't a roadmap with well staked out milestones along the way where we can just give you a specific task to work on if you are up for anything within your skill level, and the few [volunteers](https://github.com/limetext/lime/graphs/contributors) who are activily involved at the moment are already having a hard time managing everything.
29 |
30 | This is after all not a commercially backed project and any time spent here by our volunteers is their own spare time that they kindly donate to the project instead of spending time with friends, family and other interests.
31 |
32 | We do need your help. Even if its just 5 minutes every month, that's 1 hour a year. If we could get just 0.1% of the people who have starred this project to donate 5 minutes every month it'd be a total of ~100 man hours per year and a significant impact on the project.
33 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2013 The lime Authors
2 | All rights reserved.
3 |
4 | Redistribution and use in source and binary forms, with or without
5 | modification, are permitted provided that the following conditions are met:
6 |
7 | 1. Redistributions of source code must retain the above copyright notice, this
8 | list of conditions and the following disclaimer.
9 | 2. Redistributions in binary form must reproduce the above copyright notice,
10 | this list of conditions and the following disclaimer in the documentation
11 | and/or other materials provided with the distribution.
12 |
13 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://travis-ci.org/limetext/lime-html)
2 | [](https://coveralls.io/r/limetext/lime-html?branch=master)
3 | [](http://goreportcard.com/report/limetext/lime-html)
4 |
5 | [](https://godoc.org/github.com/limetext/lime-html)
6 |
7 | [](https://www.bountysource.com/teams/limetext/issues?utm_source=limetext&utm_medium=shield&utm_campaign=bounties_received)
8 | [](https://www.bountysource.com/teams/limetext?utm_source=limetext&utm_medium=shield&utm_campaign=raised)
9 |
10 | [](https://gitter.im/limetext/lime)
11 |
12 |
13 | # lime-html
14 |
15 | This is the HTML frontend for [Lime](http://limetext.org/). For more information about the project, please see [limetext/lime](https://github.com/limetext/lime).
16 |
--------------------------------------------------------------------------------
/glide.yaml:
--------------------------------------------------------------------------------
1 | package: github.com/limetext/lime-html
2 | import:
3 | - package: github.com/limetext/lime-backend
4 | ref: 2c5030159bc2d5743904274e45c3cd0563dcc184
5 | - flatten: true
6 | package: github.com/limetext/gopy
7 | ref: 953f768831d5f6389aacdc9c016ff2fb8c2ca579
8 | - package: github.com/limetext/log4go
9 | ref: 2aba105a605a9ebe476f35d7610704e4e723d4ab
10 | - package: github.com/limetext/rubex
11 | ref: 3fc130e580797e3d9c6fdab36e6a961141f9fd5f
12 | - flatten: true
13 | package: github.com/limetext/text
14 | ref: d6b8f8c60fe38232a5b59388bbba0f3802c182e9
15 | - package: golang.org/x/net/websockets
16 | ref: 03affa02f16950ea3188823456766ed60bfed9bb
17 |
--------------------------------------------------------------------------------
/main/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |