Giter VIP home page Giter VIP logo

computer-japid's People

Contributors

branaway avatar siddur avatar stianl avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

computer-japid's Issues

怎样在页面输出中文?

我在实例代码的japidroot/japidviews/Application/eidt.html里添加了中文“是否删除”

然后我点击删除按钮,显示是乱码。

unresolved dependency: japid42

when running your example, using the instructions, I get the following output:

[warn]  ::::::::::::::::::::::::::::::::::::::::::::::                       
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: japid42#japid42_2.9.1;0.6: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[error] {file:/Users/sberan/Projects/computer-japid/}foo/*:update: sbt.ResolveException: unresolved dependency: japid42#japid42_2.9.1;0.6: not found
[warn] some of the dependencies were not recompiled properly, so classloader is not avaialable
[info] Updating {file:/Users/sberan/Projects/computer-japid/}foo...
[warn]  module not found: japid42#japid42_2.9.1;0.6                                    
[warn] ==== local: tried
[warn]   /usr/local/bin/../Cellar/play/2.0.4/bin/../libexec/framework/../repository/local/japid42/japid42_2.9.1/0.6/ivys/ivy.xml
[warn] ==== Typesafe Releases Repository: tried
[warn]   http://repo.typesafe.com/typesafe/releases/japid42/japid42_2.9.1/0.6/japid42_2.9.1-0.6.pom
[warn] ==== Typesafe Snapshots Repository: tried
[warn]   http://repo.typesafe.com/typesafe/snapshots/japid42/japid42_2.9.1/0.6/japid42_2.9.1-0.6.pom
[warn] ==== public: tried
[warn]   http://repo1.maven.org/maven2/japid42/japid42_2.9.1/0.6/japid42_2.9.1-0.6.pom
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::                       
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: japid42#japid42_2.9.1;0.6: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::

An bug in the source code

In Application.java
link method: compare strings is to use "equals",not "==".

public static String link(String currentSortBy, String currentOrder,
String currentFilter, Integer newPage, String newSortBy) {
//name,asc,"",0,=company.name
String sortBy = currentSortBy;
String order = currentOrder;

    if (newSortBy != null) {
        sortBy = newSortBy;
        if (currentSortBy.equals(newSortBy)) {
            if (currentOrder.equals("asc")) {
                order = "desc";
            } else {
                order = "asc";
            }
        } else {
            order = "asc";
        }
    }
    return routes.Application.list(newPage, sortBy, order, currentFilter)
            .url();
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.