Commit 2ef91b6eb5768b81f0fd8859d60cfbe27112f580

Authored by 徐烜
1 parent b6e4b1d6

update

Showing 26 changed files with 888 additions and 309 deletions

Too many changes to show.

To preserve performance only 26 of 65 files are displayed.

src/main/java/com/bsth/controller/schedule/BusinessInfoController.java 0 → 100644
  1 +package com.bsth.controller.schedule;
  2 +
  3 +import com.bsth.controller.BaseController;
  4 +import com.bsth.entity.schedule.BusinessInfo;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RestController;
  7 +
  8 +/**
  9 + * Created by xu on 16/5/11.
  10 + */
  11 +@RestController
  12 +@RequestMapping("bic")
  13 +public class BusinessInfoController extends BaseController<BusinessInfo, Long> {
  14 +}
... ...
src/main/java/com/bsth/controller/schedule/CarConfigInfoController.java 0 → 100644
  1 +package com.bsth.controller.schedule;
  2 +
  3 +import com.bsth.controller.BaseController;
  4 +import com.bsth.entity.schedule.CarConfigInfo;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RestController;
  7 +
  8 +/**
  9 + * Created by xu on 16/5/9.
  10 + */
  11 +@RestController
  12 +@RequestMapping("cci")
  13 +public class CarConfigInfoController extends BaseController<CarConfigInfo, Long> {
  14 +}
... ...
src/main/java/com/bsth/controller/schedule/EmployeeConfigInfoController.java 0 → 100644
  1 +package com.bsth.controller.schedule;
  2 +
  3 +import com.bsth.controller.BaseController;
  4 +import com.bsth.entity.schedule.EmployeeConfigInfo;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RestController;
  7 +
  8 +/**
  9 + * Created by xu on 16/5/10.
  10 + */
  11 +@RestController
  12 +@RequestMapping("eci")
  13 +public class EmployeeConfigInfoController extends BaseController<EmployeeConfigInfo, Long> {
  14 +}
... ...
src/main/java/com/bsth/controller/schedule/GuideboardInfoController.java 0 → 100644
  1 +package com.bsth.controller.schedule;
  2 +
  3 +import com.bsth.controller.BaseController;
  4 +import com.bsth.entity.schedule.GuideboardInfo;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RestController;
  7 +
  8 +/**
  9 + * Created by xu on 16/5/11.
  10 + */
  11 +@RestController
  12 +@RequestMapping("gic")
  13 +public class GuideboardInfoController extends BaseController<GuideboardInfo, Long> {
  14 +}
... ...
src/main/java/com/bsth/entity/schedule/BusinessInfo.java 0 → 100644
  1 +package com.bsth.entity.schedule;
  2 +
  3 +import javax.persistence.*;
  4 +import java.util.Date;
  5 +
  6 +/**
  7 + * 线路运营信息汇总。
  8 + * TODO:暂时这样写,演示后重新修正
  9 + */
  10 +@Entity
  11 +@Table(name = "bsth_c_s_bi")
  12 +public class BusinessInfo {
  13 +
  14 + /** 主键Id */
  15 + @Id
  16 + @GeneratedValue
  17 + private Long id;
  18 +
  19 + /** TODO:之后修正 */
  20 + /** 线路名称 */
  21 + private String xlName;
  22 + /** 线路编码 */
  23 + private String xlBm;
  24 + /** 公司名称 */
  25 + private String gsName;
  26 + /** 分公司名称 */
  27 + private String fgsName;
  28 +
  29 + /** 配车数 */
  30 + private int pcCount;
  31 + /** 人员数 */
  32 + private int ryCount;
  33 + /** 路牌数 */
  34 + private int lpCount;
  35 + /** 套跑数 */
  36 + private int tpCount;
  37 + /** 时刻表数 */
  38 + private int ttCount;
  39 + /** 调度规则数 */
  40 + private int srCount;
  41 + /** 调度计划数 */
  42 + private int spCount;
  43 +
  44 + // 创建日期
  45 + @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP")
  46 + private Date createDate;
  47 + // 修改日期
  48 + @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
  49 + private Date updateDate;
  50 +
  51 + public Long getId() {
  52 + return id;
  53 + }
  54 +
  55 + public void setId(Long id) {
  56 + this.id = id;
  57 + }
  58 +
  59 + public String getXlName() {
  60 + return xlName;
  61 + }
  62 +
  63 + public void setXlName(String xlName) {
  64 + this.xlName = xlName;
  65 + }
  66 +
  67 + public String getXlBm() {
  68 + return xlBm;
  69 + }
  70 +
  71 + public void setXlBm(String xlBm) {
  72 + this.xlBm = xlBm;
  73 + }
  74 +
  75 + public String getGsName() {
  76 + return gsName;
  77 + }
  78 +
  79 + public void setGsName(String gsName) {
  80 + this.gsName = gsName;
  81 + }
  82 +
  83 + public String getFgsName() {
  84 + return fgsName;
  85 + }
  86 +
  87 + public void setFgsName(String fgsName) {
  88 + this.fgsName = fgsName;
  89 + }
  90 +
  91 + public int getPcCount() {
  92 + return pcCount;
  93 + }
  94 +
  95 + public void setPcCount(int pcCount) {
  96 + this.pcCount = pcCount;
  97 + }
  98 +
  99 + public int getRyCount() {
  100 + return ryCount;
  101 + }
  102 +
  103 + public void setRyCount(int ryCount) {
  104 + this.ryCount = ryCount;
  105 + }
  106 +
  107 + public int getLpCount() {
  108 + return lpCount;
  109 + }
  110 +
  111 + public void setLpCount(int lpCount) {
  112 + this.lpCount = lpCount;
  113 + }
  114 +
  115 + public int getTpCount() {
  116 + return tpCount;
  117 + }
  118 +
  119 + public void setTpCount(int tpCount) {
  120 + this.tpCount = tpCount;
  121 + }
  122 +
  123 + public int getTtCount() {
  124 + return ttCount;
  125 + }
  126 +
  127 + public void setTtCount(int ttCount) {
  128 + this.ttCount = ttCount;
  129 + }
  130 +
  131 + public int getSrCount() {
  132 + return srCount;
  133 + }
  134 +
  135 + public void setSrCount(int srCount) {
  136 + this.srCount = srCount;
  137 + }
  138 +
  139 + public int getSpCount() {
  140 + return spCount;
  141 + }
  142 +
  143 + public void setSpCount(int spCount) {
  144 + this.spCount = spCount;
  145 + }
  146 +
  147 + public Date getCreateDate() {
  148 + return createDate;
  149 + }
  150 +
  151 + public void setCreateDate(Date createDate) {
  152 + this.createDate = createDate;
  153 + }
  154 +
  155 + public Date getUpdateDate() {
  156 + return updateDate;
  157 + }
  158 +
  159 + public void setUpdateDate(Date updateDate) {
  160 + this.updateDate = updateDate;
  161 + }
  162 +}
... ...
src/main/java/com/bsth/entity/schedule/CarConfigInfo.java 0 → 100644
  1 +package com.bsth.entity.schedule;
  2 +
  3 +import javax.persistence.*;
  4 +import java.util.Date;
  5 +
  6 +/**
  7 + * 车辆配置信息。
  8 + * TODO:暂时这样写,演示后重新修正
  9 + */
  10 +@Entity
  11 +@Table(name = "bsth_c_s_ccinfo")
  12 +public class CarConfigInfo {
  13 +
  14 + /** 主健Id */
  15 + @Id
  16 + @GeneratedValue
  17 + private Long id;
  18 +
  19 + /** TODO:等其他实体类完整后,做关联引用 */
  20 + /** 线路名称 */
  21 + private String xl;
  22 + /** 自编号 */
  23 + private String zbh;
  24 + /** 设备编号 */
  25 + private String sbbh;
  26 + /** 启用日期 */
  27 + private Date qyrq;
  28 + /** 终止日期 */
  29 + private Date zzrq;
  30 + /** 停车点 */
  31 + private String tcd;
  32 + /** 受否切换(TODO:不懂) */
  33 + private int isSwitch;
  34 +
  35 + // 创建日期
  36 + @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP")
  37 + private Date createDate;
  38 + // 修改日期
  39 + @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
  40 + private Date updateDate;
  41 +
  42 + public Long getId() {
  43 + return id;
  44 + }
  45 +
  46 + public void setId(Long id) {
  47 + this.id = id;
  48 + }
  49 +
  50 + public String getXl() {
  51 + return xl;
  52 + }
  53 +
  54 + public void setXl(String xl) {
  55 + this.xl = xl;
  56 + }
  57 +
  58 + public String getZbh() {
  59 + return zbh;
  60 + }
  61 +
  62 + public void setZbh(String zbh) {
  63 + this.zbh = zbh;
  64 + }
  65 +
  66 + public String getSbbh() {
  67 + return sbbh;
  68 + }
  69 +
  70 + public void setSbbh(String sbbh) {
  71 + this.sbbh = sbbh;
  72 + }
  73 +
  74 + public Date getQyrq() {
  75 + return qyrq;
  76 + }
  77 +
  78 + public void setQyrq(Date qyrq) {
  79 + this.qyrq = qyrq;
  80 + }
  81 +
  82 + public Date getZzrq() {
  83 + return zzrq;
  84 + }
  85 +
  86 + public void setZzrq(Date zzrq) {
  87 + this.zzrq = zzrq;
  88 + }
  89 +
  90 + public String getTcd() {
  91 + return tcd;
  92 + }
  93 +
  94 + public void setTcd(String tcd) {
  95 + this.tcd = tcd;
  96 + }
  97 +
  98 + public int getIsSwitch() {
  99 + return isSwitch;
  100 + }
  101 +
  102 + public void setIsSwitch(int isSwitch) {
  103 + this.isSwitch = isSwitch;
  104 + }
  105 +
  106 + public Date getCreateDate() {
  107 + return createDate;
  108 + }
  109 +
  110 + public void setCreateDate(Date createDate) {
  111 + this.createDate = createDate;
  112 + }
  113 +
  114 + public Date getUpdateDate() {
  115 + return updateDate;
  116 + }
  117 +
  118 + public void setUpdateDate(Date updateDate) {
  119 + this.updateDate = updateDate;
  120 + }
  121 +}
... ...
src/main/java/com/bsth/entity/schedule/EmployeeConfigInfo.java 0 → 100644
  1 +package com.bsth.entity.schedule;
  2 +
  3 +import javax.persistence.*;
  4 +import java.util.Date;
  5 +
  6 +/**
  7 + * 人员配置信息。
  8 + * TODO:暂时这样写,演示后重新修正
  9 + */
  10 +@Entity
  11 +@Table(name = "bsth_c_s_ecinfo")
  12 +public class EmployeeConfigInfo {
  13 +
  14 + /** 主键Id */
  15 + @Id
  16 + @GeneratedValue
  17 + private Long id;
  18 +
  19 + /** TODO:等其他实体类完整后,做关联引用 */
  20 + /** 线路名称 */
  21 + private String xl;
  22 + /** 搭班编码(TODO:不懂) */
  23 + private String dbbm;
  24 + /** 驾驶员工号 */
  25 + private String jsygh;
  26 + /** 驾驶员 */
  27 + private String jsy;
  28 + /** 售票员工号 */
  29 + private String spygh;
  30 + /** 售票员 */
  31 + private String spy;
  32 + /** 车辆自编号 */
  33 + private String zbh;
  34 +
  35 + // 创建日期
  36 + @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP")
  37 + private Date createDate;
  38 + // 修改日期
  39 + @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
  40 + private Date updateDate;
  41 +
  42 + public Long getId() {
  43 + return id;
  44 + }
  45 +
  46 + public void setId(Long id) {
  47 + this.id = id;
  48 + }
  49 +
  50 + public String getXl() {
  51 + return xl;
  52 + }
  53 +
  54 + public void setXl(String xl) {
  55 + this.xl = xl;
  56 + }
  57 +
  58 + public String getDbbm() {
  59 + return dbbm;
  60 + }
  61 +
  62 + public void setDbbm(String dbbm) {
  63 + this.dbbm = dbbm;
  64 + }
  65 +
  66 + public String getJsy() {
  67 + return jsy;
  68 + }
  69 +
  70 + public void setJsy(String jsy) {
  71 + this.jsy = jsy;
  72 + }
  73 +
  74 + public String getSpy() {
  75 + return spy;
  76 + }
  77 +
  78 + public void setSpy(String spy) {
  79 + this.spy = spy;
  80 + }
  81 +
  82 + public String getZbh() {
  83 + return zbh;
  84 + }
  85 +
  86 + public void setZbh(String zbh) {
  87 + this.zbh = zbh;
  88 + }
  89 +
  90 + public Date getCreateDate() {
  91 + return createDate;
  92 + }
  93 +
  94 + public void setCreateDate(Date createDate) {
  95 + this.createDate = createDate;
  96 + }
  97 +
  98 + public Date getUpdateDate() {
  99 + return updateDate;
  100 + }
  101 +
  102 + public void setUpdateDate(Date updateDate) {
  103 + this.updateDate = updateDate;
  104 + }
  105 +
  106 + public String getJsygh() {
  107 + return jsygh;
  108 + }
  109 +
  110 + public void setJsygh(String jsygh) {
  111 + this.jsygh = jsygh;
  112 + }
  113 +
  114 + public String getSpygh() {
  115 + return spygh;
  116 + }
  117 +
  118 + public void setSpygh(String spygh) {
  119 + this.spygh = spygh;
  120 + }
  121 +}
... ...
src/main/java/com/bsth/entity/schedule/GuideboardInfo.java 0 → 100644
  1 +package com.bsth.entity.schedule;
  2 +
  3 +import javax.persistence.*;
  4 +import javax.persistence.Table;
  5 +import java.util.Date;
  6 +
  7 +/**
  8 + * 路牌信息。
  9 + * TODO:暂时这样写,演示后重新修正
  10 + */
  11 +@Entity
  12 +@Table(name = "bsth_c_s_gbi")
  13 +public class GuideboardInfo {
  14 +
  15 + /** 主键Id */
  16 + @Id
  17 + @GeneratedValue
  18 + private Long id;
  19 +
  20 + /** TODO:等其他实体类完整后,做关联引用 */
  21 + /** 线路 */
  22 + private String xl;
  23 + /** 路牌顺序号 */
  24 + private int lpNo;
  25 + /** 路牌名称 */
  26 + private String lpName;
  27 + /** 路牌类型(普通路牌/临加路牌) */
  28 + private String lpType;
  29 +
  30 + // 创建日期
  31 + @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP")
  32 + private Date createDate;
  33 + // 修改日期
  34 + @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
  35 + private Date updateDate;
  36 +
  37 + public Long getId() {
  38 + return id;
  39 + }
  40 +
  41 + public void setId(Long id) {
  42 + this.id = id;
  43 + }
  44 +
  45 + public String getXl() {
  46 + return xl;
  47 + }
  48 +
  49 + public void setXl(String xl) {
  50 + this.xl = xl;
  51 + }
  52 +
  53 + public int getLpNo() {
  54 + return lpNo;
  55 + }
  56 +
  57 + public void setLpNo(int lpNo) {
  58 + this.lpNo = lpNo;
  59 + }
  60 +
  61 + public String getLpName() {
  62 + return lpName;
  63 + }
  64 +
  65 + public void setLpName(String lpName) {
  66 + this.lpName = lpName;
  67 + }
  68 +
  69 + public String getLpType() {
  70 + return lpType;
  71 + }
  72 +
  73 + public void setLpType(String lpType) {
  74 + this.lpType = lpType;
  75 + }
  76 +
  77 + public Date getCreateDate() {
  78 + return createDate;
  79 + }
  80 +
  81 + public void setCreateDate(Date createDate) {
  82 + this.createDate = createDate;
  83 + }
  84 +
  85 + public Date getUpdateDate() {
  86 + return updateDate;
  87 + }
  88 +
  89 + public void setUpdateDate(Date updateDate) {
  90 + this.updateDate = updateDate;
  91 + }
  92 +}
... ...
src/main/java/com/bsth/repository/schedule/BusinessInfoRepository.java 0 → 100644
  1 +package com.bsth.repository.schedule;
  2 +
  3 +import com.bsth.entity.schedule.BusinessInfo;
  4 +import com.bsth.repository.BaseRepository;
  5 +import org.springframework.stereotype.Repository;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/11.
  9 + */
  10 +@Repository
  11 +public interface BusinessInfoRepository extends BaseRepository<BusinessInfo, Long> {
  12 +}
... ...
src/main/java/com/bsth/repository/schedule/CarConfigInfoRepository.java 0 → 100644
  1 +package com.bsth.repository.schedule;
  2 +
  3 +import com.bsth.entity.schedule.CarConfigInfo;
  4 +import com.bsth.repository.BaseRepository;
  5 +import org.springframework.stereotype.Repository;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/9.
  9 + */
  10 +@Repository
  11 +public interface CarConfigInfoRepository extends BaseRepository<CarConfigInfo, Long> {
  12 +}
... ...
src/main/java/com/bsth/repository/schedule/EmployeeConfigInfoRepository.java 0 → 100644
  1 +package com.bsth.repository.schedule;
  2 +
  3 +import com.bsth.entity.schedule.EmployeeConfigInfo;
  4 +import com.bsth.repository.BaseRepository;
  5 +import org.springframework.stereotype.Repository;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/10.
  9 + */
  10 +@Repository
  11 +public interface EmployeeConfigInfoRepository extends BaseRepository<EmployeeConfigInfo, Long> {
  12 +}
... ...
src/main/java/com/bsth/repository/schedule/GuideboardInfoRepository.java 0 → 100644
  1 +package com.bsth.repository.schedule;
  2 +
  3 +import com.bsth.entity.schedule.GuideboardInfo;
  4 +import com.bsth.repository.BaseRepository;
  5 +import org.springframework.stereotype.Repository;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/11.
  9 + */
  10 +@Repository
  11 +public interface GuideboardInfoRepository extends BaseRepository<GuideboardInfo, Long> {
  12 +}
... ...
src/main/java/com/bsth/service/schedule/BusinessInfoService.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.BusinessInfo;
  4 +import com.bsth.service.BaseService;
  5 +
  6 +/**
  7 + * Created by xu on 16/5/11.
  8 + */
  9 +public interface BusinessInfoService extends BaseService<BusinessInfo, Long> {
  10 +}
... ...
src/main/java/com/bsth/service/schedule/BusinessInfoServiceImpl.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.BusinessInfo;
  4 +import com.bsth.service.impl.BaseServiceImpl;
  5 +import org.springframework.stereotype.Service;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/11.
  9 + */
  10 +@Service
  11 +public class BusinessInfoServiceImpl extends BaseServiceImpl<BusinessInfo, Long> implements BusinessInfoService {
  12 +}
... ...
src/main/java/com/bsth/service/schedule/CarConfigInfoService.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.CarConfigInfo;
  4 +import com.bsth.service.BaseService;
  5 +
  6 +/**
  7 + * Created by xu on 16/5/9.
  8 + */
  9 +public interface CarConfigInfoService extends BaseService<CarConfigInfo, Long> {
  10 +}
... ...
src/main/java/com/bsth/service/schedule/CarConfigInfoServiceImpl.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.CarConfigInfo;
  4 +import com.bsth.service.impl.BaseServiceImpl;
  5 +import org.springframework.stereotype.Service;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/9.
  9 + */
  10 +@Service
  11 +public class CarConfigInfoServiceImpl extends BaseServiceImpl<CarConfigInfo, Long> implements CarConfigInfoService {
  12 +}
... ...
src/main/java/com/bsth/service/schedule/EmployeeConfigInfoService.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.EmployeeConfigInfo;
  4 +import com.bsth.service.BaseService;
  5 +
  6 +/**
  7 + * Created by xu on 16/5/10.
  8 + */
  9 +public interface EmployeeConfigInfoService extends BaseService<EmployeeConfigInfo, Long> {
  10 +}
... ...
src/main/java/com/bsth/service/schedule/EmployeeConfigInfoServiceImpl.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.EmployeeConfigInfo;
  4 +import com.bsth.service.impl.BaseServiceImpl;
  5 +import org.springframework.stereotype.Service;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/10.
  9 + */
  10 +@Service
  11 +public class EmployeeConfigInfoServiceImpl extends BaseServiceImpl<EmployeeConfigInfo, Long> implements EmployeeConfigInfoService {
  12 +}
... ...
src/main/java/com/bsth/service/schedule/GuideboardInfoService.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.GuideboardInfo;
  4 +import com.bsth.service.BaseService;
  5 +
  6 +/**
  7 + * Created by xu on 16/5/11.
  8 + */
  9 +public interface GuideboardInfoService extends BaseService<GuideboardInfo, Long> {
  10 +}
... ...
src/main/java/com/bsth/service/schedule/GuideboardInfoServiceImpl.java 0 → 100644
  1 +package com.bsth.service.schedule;
  2 +
  3 +import com.bsth.entity.schedule.GuideboardInfo;
  4 +import com.bsth.service.impl.BaseServiceImpl;
  5 +import org.springframework.stereotype.Service;
  6 +
  7 +/**
  8 + * Created by xu on 16/5/11.
  9 + */
  10 +@Service
  11 +public class GuideboardInfoServiceImpl extends BaseServiceImpl<GuideboardInfo, Long> implements GuideboardInfoService {
  12 +}
... ...
src/main/resources/static/assets/bower_components/angular-bootstrap/.bower.json
1   -{
2   - "author": {
3   - "name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
4   - },
5   - "name": "angular-bootstrap",
6   - "keywords": [
7   - "angular",
8   - "angular-ui",
9   - "bootstrap"
10   - ],
11   - "license": "MIT",
12   - "ignore": [],
13   - "description": "Native AngularJS (Angular) directives for Bootstrap.",
14   - "version": "1.3.2",
15   - "main": [
16   - "./ui-bootstrap-tpls.js"
17   - ],
18   - "dependencies": {
19   - "angular": ">=1.4.0"
20   - },
21   - "homepage": "https://github.com/angular-ui/bootstrap-bower",
22   - "_release": "1.3.2",
23   - "_resolution": {
24   - "type": "version",
25   - "tag": "1.3.2",
26   - "commit": "77da362b0b86c0a86762b56d64aaec107889f31a"
27   - },
28   - "_source": "https://github.com/angular-ui/bootstrap-bower.git",
29   - "_target": "1.3.2",
30   - "_originalSource": "angular-bootstrap"
  1 +{
  2 + "author": {
  3 + "name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
  4 + },
  5 + "name": "angular-bootstrap",
  6 + "keywords": [
  7 + "angular",
  8 + "angular-ui",
  9 + "bootstrap"
  10 + ],
  11 + "license": "MIT",
  12 + "ignore": [],
  13 + "description": "Native AngularJS (Angular) directives for Bootstrap.",
  14 + "version": "0.14.0",
  15 + "main": [
  16 + "./ui-bootstrap-tpls.js"
  17 + ],
  18 + "dependencies": {
  19 + "angular": ">=1.3.0"
  20 + },
  21 + "homepage": "https://github.com/angular-ui/bootstrap-bower",
  22 + "_release": "0.14.0",
  23 + "_resolution": {
  24 + "type": "version",
  25 + "tag": "0.14.0",
  26 + "commit": "036996f39647a665d63fa84f89c7bfd8ed278d9e"
  27 + },
  28 + "_source": "https://github.com/angular-ui/bootstrap-bower.git",
  29 + "_target": "0.14.0",
  30 + "_originalSource": "angular-bootstrap"
31 31 }
32 32 \ No newline at end of file
... ...
src/main/resources/static/assets/bower_components/angular-bootstrap/README.md
1   -### UI Bootstrap - [AngularJS](http://angularjs.org/) directives specific to [Bootstrap](http://getbootstrap.com)
2   -
3   -[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/angular-ui/bootstrap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4   -[![Build Status](https://secure.travis-ci.org/angular-ui/bootstrap.svg)](http://travis-ci.org/angular-ui/bootstrap)
5   -[![devDependency Status](https://david-dm.org/angular-ui/bootstrap/dev-status.svg?branch=master)](https://david-dm.org/angular-ui/bootstrap#info=devDependencies)
6   -
7   -### Quick links
8   -- [Demo](#demo)
9   -- [Installation](#installation)
10   - - [NPM](#install-with-npm)
11   - - [Bower](#install-with-bower)
12   - - [NuGet](#install-with-nuget)
13   - - [Custom](#custom-build)
14   - - [Manual](#manual-download)
15   -- [Support](#support)
16   - - [FAQ](#faq)
17   - - [Supported browsers](#supported-browsers)
18   - - [Need help?](#need-help)
19   - - [Found a bug?](#found-a-bug)
20   -- [Contributing to the project](#contributing-to-the-project)
21   -- [Development, meeting minutes, roadmap and more.](#development-meeting-minutes-roadmap-and-more)
22   -
23   -
24   -# Demo
25   -
26   -Do you want to see directives in action? Visit http://angular-ui.github.io/bootstrap/!
27   -
28   -# Installation
29   -
30   -Installation is easy as UI Bootstrap has minimal dependencies - only the AngularJS and Twitter Bootstrap's CSS are required.
31   -Note: Since version 0.13.0, UI Bootstrap depends on [ngAnimate](https://docs.angularjs.org/api/ngAnimate) for transitions and animations, such as the accordion, carousel, etc. Include `ngAnimate` in the module dependencies for your app in order to enable animation.
32   -
33   -#### Install with NPM
34   -
35   -```sh
36   -$ npm install angular-ui-bootstrap
37   -```
38   -
39   -This will install AngularJS and Bootstrap NPM packages.
40   -
41   -#### Install with Bower
42   -```sh
43   -$ bower install angular-bootstrap
44   -```
45   -
46   -Note: do not install 'angular-ui-bootstrap'. A separate repository - [bootstrap-bower](https://github.com/angular-ui/bootstrap-bower) - hosts the compiled javascript file and bower.json.
47   -
48   -#### Install with NuGet
49   -To install AngularJS UI Bootstrap, run the following command in the Package Manager Console
50   -
51   -```sh
52   -PM> Install-Package Angular.UI.Bootstrap
53   -```
54   -
55   -#### Custom build
56   -
57   -Head over to http://angular-ui.github.io/bootstrap/ and hit the *Custom build* button to create your own custom UI Bootstrap build, just the way you like it.
58   -
59   -#### Manual download
60   -
61   -After downloading dependencies (or better yet, referencing them from your favorite CDN) you need to download build version of this project. All the files and their purposes are described here:
62   -https://github.com/angular-ui/bootstrap/tree/gh-pages#build-files
63   -Don't worry, if you are not sure which file to take, opt for `ui-bootstrap-tpls-[version].min.js`.
64   -
65   -### Adding dependency to your project
66   -
67   -When you are done downloading all the dependencies and project files the only remaining part is to add dependencies on the `ui.bootstrap` AngularJS module:
68   -
69   -```js
70   -angular.module('myModule', ['ui.bootstrap']);
71   -```
72   -
73   -If you're a Browserify or Webpack user, you can do:
74   -
75   -```js
76   -var uibs = require('angular-ui-bootstrap');
77   -
78   -angular.module('myModule', [uibs]);
79   -```
80   -
81   -# Support
82   -
83   -## FAQ
84   -
85   -https://github.com/angular-ui/bootstrap/wiki/FAQ
86   -
87   -## Supported browsers
88   -
89   -Directives from this repository are automatically tested with the following browsers:
90   -* Chrome (stable and canary channel)
91   -* Firefox
92   -* IE 9 and 10
93   -* Opera
94   -* Safari
95   -
96   -Modern mobile browsers should work without problems.
97   -
98   -
99   -## Need help?
100   -Need help using UI Bootstrap?
101   -
102   -* Live help in the IRC (`#angularjs` channel at the `freenode` network). Use this [webchat](https://webchat.freenode.net/) or your own IRC client.
103   -* Ask a question in [StackOverflow](http://stackoverflow.com/) under the [angular-ui-bootstrap](http://stackoverflow.com/questions/tagged/angular-ui-bootstrap) tag.
104   -
105   -**Please do not create new issues in this repository to ask questions about using UI Bootstrap**
106   -
107   -## Found a bug?
108   -Please take a look at [CONTRIBUTING.md](CONTRIBUTING.md#you-think-youve-found-a-bug) and submit your issue [here](https://github.com/angular-ui/bootstrap/issues/new).
109   -
110   -
111   -----
112   -
113   -
114   -# Contributing to the project
115   -
116   -We are always looking for the quality contributions! Please check the [CONTRIBUTING.md](CONTRIBUTING.md) for the contribution guidelines.
117   -
118   -# Development, meeting minutes, roadmap and more.
119   -
120   -Head over to the [Wiki](https://github.com/angular-ui/bootstrap/wiki) for notes on development for UI Bootstrap, meeting minutes from the UI Bootstrap team, roadmap plans, project philosophy and more.
  1 +### UI Bootstrap - [AngularJS](http://angularjs.org/) directives specific to [Bootstrap](http://getbootstrap.com)
  2 +
  3 +[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/angular-ui/bootstrap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
  4 +[![Build Status](https://secure.travis-ci.org/angular-ui/bootstrap.svg)](http://travis-ci.org/angular-ui/bootstrap)
  5 +[![devDependency Status](https://david-dm.org/angular-ui/bootstrap/dev-status.svg?branch=master)](https://david-dm.org/angular-ui/bootstrap#info=devDependencies)
  6 +
  7 +### Quick links
  8 +- [Demo](#demo)
  9 +- [Installation](#installation)
  10 + - [NPM](#install-with-npm)
  11 + - [Bower](#install-with-bower)
  12 + - [NuGet](#install-with-nuget)
  13 + - [Custom](#custom-build)
  14 + - [Manual](#manual-download)
  15 +- [Support](#support)
  16 + - [FAQ](#faq)
  17 + - [Supported browsers](#supported-browsers)
  18 + - [Need help?](#need-help)
  19 + - [Found a bug?](#found-a-bug)
  20 +- [Contributing to the project](#contributing-to-the-project)
  21 +- [Development, meeting minutes, roadmap and more.](#development-meeting-minutes-roadmap-and-more)
  22 +
  23 +
  24 +# Demo
  25 +
  26 +Do you want to see directives in action? Visit http://angular-ui.github.io/bootstrap/!
  27 +
  28 +# Installation
  29 +
  30 +Installation is easy as UI Bootstrap has minimal dependencies - only the AngularJS and Twitter Bootstrap's CSS are required.
  31 +Note: Since version 0.13.0, UI Bootstrap depends on [ngAnimate](https://docs.angularjs.org/api/ngAnimate) for transitions and animations, such as the accordion, carousel, etc. Include `ngAnimate` in the module dependencies for your app in order to enable animation.
  32 +
  33 +#### Install with NPM
  34 +
  35 +```sh
  36 +$ npm install angular-ui-bootstrap
  37 +```
  38 +
  39 +This will install AngularJS and Bootstrap NPM packages.
  40 +
  41 +#### Install with Bower
  42 +```sh
  43 +$ bower install angular-bootstrap
  44 +```
  45 +
  46 +Note: do not install 'angular-ui-bootstrap'. A separate repository - [bootstrap-bower](https://github.com/angular-ui/bootstrap-bower) - hosts the compiled javascript file and bower.json.
  47 +
  48 +#### Install with NuGet
  49 +To install AngularJS UI Bootstrap, run the following command in the Package Manager Console
  50 +
  51 +```sh
  52 +PM> Install-Package Angular.UI.Bootstrap
  53 +```
  54 +
  55 +#### Custom build
  56 +
  57 +Head over to http://angular-ui.github.io/bootstrap/ and hit the *Custom build* button to create your own custom UI Bootstrap build, just the way you like it.
  58 +
  59 +#### Manual download
  60 +
  61 +After downloading dependencies (or better yet, referencing them from your favorite CDN) you need to download build version of this project. All the files and their purposes are described here:
  62 +https://github.com/angular-ui/bootstrap/tree/gh-pages#build-files
  63 +Don't worry, if you are not sure which file to take, opt for `ui-bootstrap-tpls-[version].min.js`.
  64 +
  65 +### Adding dependency to your project
  66 +
  67 +When you are done downloading all the dependencies and project files the only remaining part is to add dependencies on the `ui.bootstrap` AngularJS module:
  68 +
  69 +```js
  70 +angular.module('myModule', ['ui.bootstrap']);
  71 +```
  72 +
  73 +If you're a Browserify or Webpack user, you can do:
  74 +
  75 +```js
  76 +var uibs = require('angular-ui-bootstrap');
  77 +
  78 +angular.module('myModule', [uibs]);
  79 +```
  80 +
  81 +# Support
  82 +
  83 +## FAQ
  84 +
  85 +https://github.com/angular-ui/bootstrap/wiki/FAQ
  86 +
  87 +## Supported browsers
  88 +
  89 +Directives from this repository are automatically tested with the following browsers:
  90 +* Chrome (stable and canary channel)
  91 +* Firefox
  92 +* IE 9 and 10
  93 +* Opera
  94 +* Safari
  95 +
  96 +Modern mobile browsers should work without problems.
  97 +
  98 +
  99 +## Need help?
  100 +Need help using UI Bootstrap?
  101 +
  102 +* Live help in the IRC (`#angularjs` channel at the `freenode` network). Use this [webchat](https://webchat.freenode.net/) or your own IRC client.
  103 +* Ask a question in [StackOverflow](http://stackoverflow.com/) under the [angular-ui-bootstrap](http://stackoverflow.com/questions/tagged/angular-ui-bootstrap) tag.
  104 +
  105 +**Please do not create new issues in this repository to ask questions about using UI Bootstrap**
  106 +
  107 +## Found a bug?
  108 +Please take a look at [CONTRIBUTING.md](CONTRIBUTING.md#you-think-youve-found-a-bug) and submit your issue [here](https://github.com/angular-ui/bootstrap/issues/new).
  109 +
  110 +
  111 +----
  112 +
  113 +
  114 +# Contributing to the project
  115 +
  116 +We are always looking for the quality contributions! Please check the [CONTRIBUTING.md](CONTRIBUTING.md) for the contribution guidelines.
  117 +
  118 +# Development, meeting minutes, roadmap and more.
  119 +
  120 +Head over to the [Wiki](https://github.com/angular-ui/bootstrap/wiki) for notes on development for UI Bootstrap, meeting minutes from the UI Bootstrap team, roadmap plans, project philosophy and more.
... ...
src/main/resources/static/assets/bower_components/angular-bootstrap/bower.json
1   -{
2   - "author": {
3   - "name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
4   - },
5   - "name": "angular-bootstrap",
6   - "keywords": [
7   - "angular",
8   - "angular-ui",
9   - "bootstrap"
10   - ],
11   - "license": "MIT",
12   - "ignore": [],
13   - "description": "Native AngularJS (Angular) directives for Bootstrap.",
14   - "version": "1.3.2",
15   - "main": ["./ui-bootstrap-tpls.js"],
16   - "dependencies": {
17   - "angular": ">=1.4.0"
18   - }
19   -}
  1 +{
  2 + "author": {
  3 + "name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
  4 + },
  5 + "name": "angular-bootstrap",
  6 + "keywords": [
  7 + "angular",
  8 + "angular-ui",
  9 + "bootstrap"
  10 + ],
  11 + "license": "MIT",
  12 + "ignore": [],
  13 + "description": "Native AngularJS (Angular) directives for Bootstrap.",
  14 + "version": "0.14.0",
  15 + "main": ["./ui-bootstrap-tpls.js"],
  16 + "dependencies": {
  17 + "angular": ">=1.3.0"
  18 + }
  19 +}
... ...
src/main/resources/static/assets/bower_components/angular-bootstrap/index.js
1   -require('./ui-bootstrap-tpls');
2   -module.exports = 'ui.bootstrap';
  1 +require('./ui-bootstrap-tpls');
  2 +module.exports = 'ui.bootstrap';
... ...
src/main/resources/static/assets/bower_components/angular-bootstrap/package.json
1   -{
2   - "name": "angular-ui-bootstrap",
3   - "version": "1.3.2",
4   - "description": "Bootstrap widgets for Angular",
5   - "main": "index.js",
6   - "homepage": "http://angular-ui.github.io/bootstrap/",
7   - "repository": {
8   - "type": "git",
9   - "url": "https://github.com/angular-ui/bootstrap.git"
10   - },
11   - "keywords": [
12   - "angular",
13   - "bootstrap",
14   - "angular-ui",
15   - "components",
16   - "client-side"
17   - ],
18   - "author": "https://github.com/angular-ui/bootstrap/graphs/contributors",
19   - "peerDependencies": {
20   - "angular": ">= 1.4.0-beta.0 || >= 1.5.0-beta.0"
21   - },
22   - "license": "MIT"
23   -}
  1 +{
  2 + "name": "angular-ui-bootstrap",
  3 + "version": "0.14.0",
  4 + "description": "Bootstrap widgets for Angular",
  5 + "main": "index.js",
  6 + "homepage": "http://angular-ui.github.io/bootstrap/",
  7 + "repository": {
  8 + "type": "git",
  9 + "url": "https://github.com/angular-ui/bootstrap.git"
  10 + },
  11 + "keywords": [
  12 + "angular",
  13 + "bootstrap",
  14 + "angular-ui",
  15 + "components",
  16 + "client-side"
  17 + ],
  18 + "author": "https://github.com/angular-ui/bootstrap/graphs/contributors",
  19 + "peerDependencies": {
  20 + "angular": "^1.3.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0"
  21 + },
  22 + "license": "MIT"
  23 +}
... ...
src/main/resources/static/assets/bower_components/angular-bootstrap/ui-bootstrap-csp.css
1   -/* Include this file in your html if you are using the CSP mode. */
2   -
3   -.ng-animate.item:not(.left):not(.right) {
4   - -webkit-transition: 0s ease-in-out left;
5   - transition: 0s ease-in-out left
6   -}
7   -.uib-datepicker .uib-title {
8   - width: 100%;
9   -}
10   -
11   -.uib-day button, .uib-month button, .uib-year button {
12   - min-width: 100%;
13   -}
14   -
15   -.uib-left, .uib-right {
16   - width: 100%
17   -}
18   -
19   -.uib-position-measure {
20   - display: block !important;
21   - visibility: hidden !important;
22   - position: absolute !important;
23   - top: -9999px !important;
24   - left: -9999px !important;
25   -}
26   -
27   -.uib-position-scrollbar-measure {
28   - position: absolute !important;
29   - top: -9999px !important;
30   - width: 50px !important;
31   - height: 50px !important;
32   - overflow: scroll !important;
33   -}
34   -
35   -.uib-position-body-scrollbar-measure {
36   - overflow: scroll !important;
37   -}
38   -.uib-datepicker-popup.dropdown-menu {
39   - display: block;
40   - float: none;
41   - margin: 0;
42   -}
43   -
44   -.uib-button-bar {
45   - padding: 10px 9px 2px;
46   -}
47   -
48   -[uib-tooltip-popup].tooltip.top-left > .tooltip-arrow,
49   -[uib-tooltip-popup].tooltip.top-right > .tooltip-arrow,
50   -[uib-tooltip-popup].tooltip.bottom-left > .tooltip-arrow,
51   -[uib-tooltip-popup].tooltip.bottom-right > .tooltip-arrow,
52   -[uib-tooltip-popup].tooltip.left-top > .tooltip-arrow,
53   -[uib-tooltip-popup].tooltip.left-bottom > .tooltip-arrow,
54   -[uib-tooltip-popup].tooltip.right-top > .tooltip-arrow,
55   -[uib-tooltip-popup].tooltip.right-bottom > .tooltip-arrow,
56   -[uib-tooltip-html-popup].tooltip.top-left > .tooltip-arrow,
57   -[uib-tooltip-html-popup].tooltip.top-right > .tooltip-arrow,
58   -[uib-tooltip-html-popup].tooltip.bottom-left > .tooltip-arrow,
59   -[uib-tooltip-html-popup].tooltip.bottom-right > .tooltip-arrow,
60   -[uib-tooltip-html-popup].tooltip.left-top > .tooltip-arrow,
61   -[uib-tooltip-html-popup].tooltip.left-bottom > .tooltip-arrow,
62   -[uib-tooltip-html-popup].tooltip.right-top > .tooltip-arrow,
63   -[uib-tooltip-html-popup].tooltip.right-bottom > .tooltip-arrow,
64   -[uib-tooltip-template-popup].tooltip.top-left > .tooltip-arrow,
65   -[uib-tooltip-template-popup].tooltip.top-right > .tooltip-arrow,
66   -[uib-tooltip-template-popup].tooltip.bottom-left > .tooltip-arrow,
67   -[uib-tooltip-template-popup].tooltip.bottom-right > .tooltip-arrow,
68   -[uib-tooltip-template-popup].tooltip.left-top > .tooltip-arrow,
69   -[uib-tooltip-template-popup].tooltip.left-bottom > .tooltip-arrow,
70   -[uib-tooltip-template-popup].tooltip.right-top > .tooltip-arrow,
71   -[uib-tooltip-template-popup].tooltip.right-bottom > .tooltip-arrow,
72   -[uib-popover-popup].popover.top-left > .arrow,
73   -[uib-popover-popup].popover.top-right > .arrow,
74   -[uib-popover-popup].popover.bottom-left > .arrow,
75   -[uib-popover-popup].popover.bottom-right > .arrow,
76   -[uib-popover-popup].popover.left-top > .arrow,
77   -[uib-popover-popup].popover.left-bottom > .arrow,
78   -[uib-popover-popup].popover.right-top > .arrow,
79   -[uib-popover-popup].popover.right-bottom > .arrow,
80   -[uib-popover-html-popup].popover.top-left > .arrow,
81   -[uib-popover-html-popup].popover.top-right > .arrow,
82   -[uib-popover-html-popup].popover.bottom-left > .arrow,
83   -[uib-popover-html-popup].popover.bottom-right > .arrow,
84   -[uib-popover-html-popup].popover.left-top > .arrow,
85   -[uib-popover-html-popup].popover.left-bottom > .arrow,
86   -[uib-popover-html-popup].popover.right-top > .arrow,
87   -[uib-popover-html-popup].popover.right-bottom > .arrow,
88   -[uib-popover-template-popup].popover.top-left > .arrow,
89   -[uib-popover-template-popup].popover.top-right > .arrow,
90   -[uib-popover-template-popup].popover.bottom-left > .arrow,
91   -[uib-popover-template-popup].popover.bottom-right > .arrow,
92   -[uib-popover-template-popup].popover.left-top > .arrow,
93   -[uib-popover-template-popup].popover.left-bottom > .arrow,
94   -[uib-popover-template-popup].popover.right-top > .arrow,
95   -[uib-popover-template-popup].popover.right-bottom > .arrow {
96   - top: auto;
97   - bottom: auto;
98   - left: auto;
99   - right: auto;
100   - margin: 0;
101   -}
102   -
103   -[uib-popover-popup].popover,
104   -[uib-popover-html-popup].popover,
105   -[uib-popover-template-popup].popover {
106   - display: block !important;
107   -}
108   -
109   -.uib-time input {
110   - width: 50px;
111   -}
112   -
113   -[uib-typeahead-popup].dropdown-menu {
114   - display: block;
115   -}
  1 +/* Include this file in your html if you are using the CSP mode. */
  2 +
  3 +.ng-animate.item:not(.left):not(.right) {
  4 + -webkit-transition: 0s ease-in-out left;
  5 + transition: 0s ease-in-out left
  6 +}
116 7 \ No newline at end of file
... ...