fix
This commit is contained in:
@ -81,7 +81,7 @@ function log(o) {
|
|||||||
id="dropdownMenu2" data-toggle="dropdown">
|
id="dropdownMenu2" data-toggle="dropdown">
|
||||||
<i class="fa fa-angle-down"></i>
|
<i class="fa fa-angle-down"></i>
|
||||||
</a>
|
</a>
|
||||||
<div class="dropdown-menu dropdown-list" style="left: -200px;" >
|
<div class="dropdown-menu dropdown-list" id="searchNotebookForAddDropdownList">
|
||||||
<input type="text" placeholder="search notebook" class="form-control" id="searchNotebookForAdd"/>
|
<input type="text" placeholder="search notebook" class="form-control" id="searchNotebookForAdd"/>
|
||||||
<ul class="clearfix" role="menu" aria-labelledby="dropdownMenu2" id="notebookNavForNewNote">
|
<ul class="clearfix" role="menu" aria-labelledby="dropdownMenu2" id="notebookNavForNewNote">
|
||||||
</ul>
|
</ul>
|
||||||
|
Binary file not shown.
BIN
bin/leanote-mac2
BIN
bin/leanote-mac2
Binary file not shown.
@ -1,69 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# release leanote
|
|
||||||
|
|
||||||
SP=$(cd "$(dirname "$0")"; pwd)
|
|
||||||
|
|
||||||
cd $SP
|
|
||||||
cd ../
|
|
||||||
|
|
||||||
# tmp path to store leanote release files
|
|
||||||
tmp="/Users/life/Desktop/leanote_release"
|
|
||||||
|
|
||||||
rm -rf $tmp/leanote
|
|
||||||
mkdir -p $tmp/leanote/app
|
|
||||||
mkdir -p $tmp/leanote/conf
|
|
||||||
mkdir -p $tmp/leanote/bin
|
|
||||||
|
|
||||||
# bin
|
|
||||||
cp -r ./bin/src $tmp/leanote/bin/
|
|
||||||
cp ./bin/run.sh $tmp/leanote/bin/
|
|
||||||
|
|
||||||
# views
|
|
||||||
cp -r ./app/views $tmp/leanote/app
|
|
||||||
# 可不要
|
|
||||||
cp -r ./app/service $tmp/leanote/app/service
|
|
||||||
cp -r ./app/controllers $tmp/leanote/app/controllers
|
|
||||||
cp -r ./app/db $tmp/leanote/app/db
|
|
||||||
cp -r ./app/info $tmp/leanote/app/info
|
|
||||||
cp -r ./app/lea $tmp/leanote/app/lea
|
|
||||||
|
|
||||||
# conf
|
|
||||||
cp ./conf/app.conf-default $tmp/leanote/conf/app.conf
|
|
||||||
cp ./conf/routes-default $tmp/leanote/conf/routes
|
|
||||||
|
|
||||||
# others
|
|
||||||
cp -r ./messages ./public ./mongodb_backup $tmp/leanote/
|
|
||||||
|
|
||||||
# delete some files
|
|
||||||
rm -r $tmp/leanote/public/tinymce/classes
|
|
||||||
rm -r $tmp/leanote/public/upload
|
|
||||||
mkdir $tmp/leanote/public/upload
|
|
||||||
rm -r $tmp/leanote/public/.codekit-cache
|
|
||||||
rm $tmp/leanote/public/.DS_Store
|
|
||||||
rm $tmp/leanote/public/config.codekit
|
|
||||||
|
|
||||||
# make link
|
|
||||||
cd $tmp/leanote/bin
|
|
||||||
ln -s ../../../../ ./src/github.com/leanote/leanote
|
|
||||||
|
|
||||||
# archieve
|
|
||||||
# << 'BLOCK
|
|
||||||
# linux
|
|
||||||
cd $SP
|
|
||||||
cd ../
|
|
||||||
cp ./bin/leanote-linux $tmp/leanote/bin/
|
|
||||||
cd $tmp
|
|
||||||
tar -cvf $tmp/leanote-linux-v0.4.bin.tar leanote
|
|
||||||
gzip $tmp/leanote-linux-v0.4.bin.tar
|
|
||||||
|
|
||||||
# mac
|
|
||||||
rm $tmp/leanote/bin/leanote-linux
|
|
||||||
cd $SP
|
|
||||||
cd ../
|
|
||||||
cp ./bin/leanote-mac $tmp/leanote/bin/
|
|
||||||
cd $tmp
|
|
||||||
tar -cvf $tmp/leanote-mac-v0.4.bin.tar leanote
|
|
||||||
gzip $tmp/leanote-mac-v0.4.bin.tar
|
|
||||||
|
|
||||||
# BLOCK'
|
|
23
bin/run.sh
23
bin/run.sh
@ -1,23 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
SCRIPTPATH=$(cd "$(dirname "$0")"; pwd)
|
|
||||||
|
|
||||||
# set link
|
|
||||||
#
|
|
||||||
#path="$SCRIPTPATH/src/github.com/leanote"
|
|
||||||
#if [ ! -d "$path" ]; then
|
|
||||||
# mkdir -p "$path"
|
|
||||||
#fi
|
|
||||||
# ln -s ../../../../ $SCRIPTPATH/src/github.com/leanote/leanote
|
|
||||||
|
|
||||||
# set GOPATH
|
|
||||||
export GOPATH=$GOPATH:$SCRIPTPATH
|
|
||||||
|
|
||||||
# run
|
|
||||||
osName=`uname`
|
|
||||||
if [ $osName == "Darwin" ]; then
|
|
||||||
chmod 777 "$SCRIPTPATH/leanote-mac"
|
|
||||||
"$SCRIPTPATH/leanote-mac" -importPath github.com/leanote/leanote
|
|
||||||
else
|
|
||||||
chmod 777 "$SCRIPTPATH/leanote-linux"
|
|
||||||
"$SCRIPTPATH/leanote-linux" -importPath github.com/leanote/leanote
|
|
||||||
fi
|
|
@ -1,545 +0,0 @@
|
|||||||
3dm=x-world/x-3dmf
|
|
||||||
3dmf=x-world/x-3dmf
|
|
||||||
7z=application/x-7z-compressed
|
|
||||||
a=application/octet-stream
|
|
||||||
aab=application/x-authorware-bin
|
|
||||||
aam=application/x-authorware-map
|
|
||||||
aas=application/x-authorware-seg
|
|
||||||
abc=text/vndabc
|
|
||||||
ace=application/x-ace-compressed
|
|
||||||
acgi=text/html
|
|
||||||
afl=video/animaflex
|
|
||||||
ai=application/postscript
|
|
||||||
aif=audio/aiff
|
|
||||||
aifc=audio/aiff
|
|
||||||
aiff=audio/aiff
|
|
||||||
aim=application/x-aim
|
|
||||||
aip=text/x-audiosoft-intra
|
|
||||||
alz=application/x-alz-compressed
|
|
||||||
ani=application/x-navi-animation
|
|
||||||
aos=application/x-nokia-9000-communicator-add-on-software
|
|
||||||
aps=application/mime
|
|
||||||
arc=application/x-arc-compressed
|
|
||||||
arj=application/arj
|
|
||||||
art=image/x-jg
|
|
||||||
asf=video/x-ms-asf
|
|
||||||
asm=text/x-asm
|
|
||||||
asp=text/asp
|
|
||||||
asx=application/x-mplayer2
|
|
||||||
au=audio/basic
|
|
||||||
avi=video/x-msvideo
|
|
||||||
avs=video/avs-video
|
|
||||||
bcpio=application/x-bcpio
|
|
||||||
bin=application/mac-binary
|
|
||||||
bmp=image/bmp
|
|
||||||
boo=application/book
|
|
||||||
book=application/book
|
|
||||||
boz=application/x-bzip2
|
|
||||||
bsh=application/x-bsh
|
|
||||||
bz2=application/x-bzip2
|
|
||||||
bz=application/x-bzip
|
|
||||||
c++=text/plain
|
|
||||||
c=text/x-c
|
|
||||||
cab=application/vnd.ms-cab-compressed
|
|
||||||
cat=application/vndms-pkiseccat
|
|
||||||
cc=text/x-c
|
|
||||||
ccad=application/clariscad
|
|
||||||
cco=application/x-cocoa
|
|
||||||
cdf=application/cdf
|
|
||||||
cer=application/pkix-cert
|
|
||||||
cha=application/x-chat
|
|
||||||
chat=application/x-chat
|
|
||||||
chrt=application/vnd.kde.kchart
|
|
||||||
class=application/java
|
|
||||||
# ? class=application/java-vm
|
|
||||||
com=text/plain
|
|
||||||
conf=text/plain
|
|
||||||
cpio=application/x-cpio
|
|
||||||
cpp=text/x-c
|
|
||||||
cpt=application/mac-compactpro
|
|
||||||
crl=application/pkcs-crl
|
|
||||||
crt=application/pkix-cert
|
|
||||||
crx=application/x-chrome-extension
|
|
||||||
csh=text/x-scriptcsh
|
|
||||||
css=text/css
|
|
||||||
csv=text/csv
|
|
||||||
cxx=text/plain
|
|
||||||
dar=application/x-dar
|
|
||||||
dcr=application/x-director
|
|
||||||
deb=application/x-debian-package
|
|
||||||
deepv=application/x-deepv
|
|
||||||
def=text/plain
|
|
||||||
der=application/x-x509-ca-cert
|
|
||||||
dif=video/x-dv
|
|
||||||
dir=application/x-director
|
|
||||||
divx=video/divx
|
|
||||||
dl=video/dl
|
|
||||||
dmg=application/x-apple-diskimage
|
|
||||||
doc=application/msword
|
|
||||||
dot=application/msword
|
|
||||||
dp=application/commonground
|
|
||||||
drw=application/drafting
|
|
||||||
dump=application/octet-stream
|
|
||||||
dv=video/x-dv
|
|
||||||
dvi=application/x-dvi
|
|
||||||
dwf=drawing/x-dwf=(old)
|
|
||||||
dwg=application/acad
|
|
||||||
dxf=application/dxf
|
|
||||||
dxr=application/x-director
|
|
||||||
el=text/x-scriptelisp
|
|
||||||
elc=application/x-bytecodeelisp=(compiled=elisp)
|
|
||||||
eml=message/rfc822
|
|
||||||
env=application/x-envoy
|
|
||||||
eps=application/postscript
|
|
||||||
es=application/x-esrehber
|
|
||||||
etx=text/x-setext
|
|
||||||
evy=application/envoy
|
|
||||||
exe=application/octet-stream
|
|
||||||
f77=text/x-fortran
|
|
||||||
f90=text/x-fortran
|
|
||||||
f=text/x-fortran
|
|
||||||
fdf=application/vndfdf
|
|
||||||
fif=application/fractals
|
|
||||||
fli=video/fli
|
|
||||||
flo=image/florian
|
|
||||||
flv=video/x-flv
|
|
||||||
flx=text/vndfmiflexstor
|
|
||||||
fmf=video/x-atomic3d-feature
|
|
||||||
for=text/x-fortran
|
|
||||||
fpx=image/vndfpx
|
|
||||||
frl=application/freeloader
|
|
||||||
funk=audio/make
|
|
||||||
g3=image/g3fax
|
|
||||||
g=text/plain
|
|
||||||
gif=image/gif
|
|
||||||
gl=video/gl
|
|
||||||
gsd=audio/x-gsm
|
|
||||||
gsm=audio/x-gsm
|
|
||||||
gsp=application/x-gsp
|
|
||||||
gss=application/x-gss
|
|
||||||
gtar=application/x-gtar
|
|
||||||
gz=application/x-compressed
|
|
||||||
gzip=application/x-gzip
|
|
||||||
h=text/x-h
|
|
||||||
hdf=application/x-hdf
|
|
||||||
help=application/x-helpfile
|
|
||||||
hgl=application/vndhp-hpgl
|
|
||||||
hh=text/x-h
|
|
||||||
hlb=text/x-script
|
|
||||||
hlp=application/hlp
|
|
||||||
hpg=application/vndhp-hpgl
|
|
||||||
hpgl=application/vndhp-hpgl
|
|
||||||
hqx=application/binhex
|
|
||||||
hta=application/hta
|
|
||||||
htc=text/x-component
|
|
||||||
htm=text/html
|
|
||||||
html=text/html
|
|
||||||
htmls=text/html
|
|
||||||
htt=text/webviewhtml
|
|
||||||
htx=text/html
|
|
||||||
ice=x-conference/x-cooltalk
|
|
||||||
ico=image/x-icon
|
|
||||||
ics=text/calendar
|
|
||||||
icz=text/calendar
|
|
||||||
idc=text/plain
|
|
||||||
ief=image/ief
|
|
||||||
iefs=image/ief
|
|
||||||
iges=application/iges
|
|
||||||
igs=application/iges
|
|
||||||
ima=application/x-ima
|
|
||||||
imap=application/x-httpd-imap
|
|
||||||
inf=application/inf
|
|
||||||
ins=application/x-internett-signup
|
|
||||||
ip=application/x-ip2
|
|
||||||
isu=video/x-isvideo
|
|
||||||
it=audio/it
|
|
||||||
iv=application/x-inventor
|
|
||||||
ivr=i-world/i-vrml
|
|
||||||
ivy=application/x-livescreen
|
|
||||||
jam=audio/x-jam
|
|
||||||
jav=text/x-java-source
|
|
||||||
java=text/x-java-source
|
|
||||||
jcm=application/x-java-commerce
|
|
||||||
jfif-tbnl=image/jpeg
|
|
||||||
jfif=image/jpeg
|
|
||||||
jnlp=application/x-java-jnlp-file
|
|
||||||
jpe=image/jpeg
|
|
||||||
jpeg=image/jpeg
|
|
||||||
jpg=image/jpeg
|
|
||||||
jps=image/x-jps
|
|
||||||
js=application/javascript
|
|
||||||
json=application/json
|
|
||||||
jut=image/jutvision
|
|
||||||
kar=audio/midi
|
|
||||||
karbon=application/vnd.kde.karbon
|
|
||||||
kfo=application/vnd.kde.kformula
|
|
||||||
flw=application/vnd.kde.kivio
|
|
||||||
kml=application/vnd.google-earth.kml+xml
|
|
||||||
kmz=application/vnd.google-earth.kmz
|
|
||||||
kon=application/vnd.kde.kontour
|
|
||||||
kpr=application/vnd.kde.kpresenter
|
|
||||||
kpt=application/vnd.kde.kpresenter
|
|
||||||
ksp=application/vnd.kde.kspread
|
|
||||||
kwd=application/vnd.kde.kword
|
|
||||||
kwt=application/vnd.kde.kword
|
|
||||||
ksh=text/x-scriptksh
|
|
||||||
la=audio/nspaudio
|
|
||||||
lam=audio/x-liveaudio
|
|
||||||
latex=application/x-latex
|
|
||||||
lha=application/lha
|
|
||||||
lhx=application/octet-stream
|
|
||||||
list=text/plain
|
|
||||||
lma=audio/nspaudio
|
|
||||||
log=text/plain
|
|
||||||
lsp=text/x-scriptlisp
|
|
||||||
lst=text/plain
|
|
||||||
lsx=text/x-la-asf
|
|
||||||
ltx=application/x-latex
|
|
||||||
lzh=application/octet-stream
|
|
||||||
lzx=application/lzx
|
|
||||||
m1v=video/mpeg
|
|
||||||
m2a=audio/mpeg
|
|
||||||
m2v=video/mpeg
|
|
||||||
m3u=audio/x-mpegurl
|
|
||||||
m=text/x-m
|
|
||||||
man=application/x-troff-man
|
|
||||||
manifest=text/cache-manifest
|
|
||||||
map=application/x-navimap
|
|
||||||
mar=text/plain
|
|
||||||
mbd=application/mbedlet
|
|
||||||
mc$=application/x-magic-cap-package-10
|
|
||||||
mcd=application/mcad
|
|
||||||
mcf=text/mcf
|
|
||||||
mcp=application/netmc
|
|
||||||
me=application/x-troff-me
|
|
||||||
mht=message/rfc822
|
|
||||||
mhtml=message/rfc822
|
|
||||||
mid=application/x-midi
|
|
||||||
midi=application/x-midi
|
|
||||||
mif=application/x-frame
|
|
||||||
mime=message/rfc822
|
|
||||||
mjf=audio/x-vndaudioexplosionmjuicemediafile
|
|
||||||
mjpg=video/x-motion-jpeg
|
|
||||||
mm=application/base64
|
|
||||||
mme=application/base64
|
|
||||||
mod=audio/mod
|
|
||||||
moov=video/quicktime
|
|
||||||
mov=video/quicktime
|
|
||||||
movie=video/x-sgi-movie
|
|
||||||
mp2=audio/mpeg
|
|
||||||
mp3=audio/mpeg3
|
|
||||||
mp4=video/mp4
|
|
||||||
mpa=audio/mpeg
|
|
||||||
mpc=application/x-project
|
|
||||||
mpe=video/mpeg
|
|
||||||
mpeg=video/mpeg
|
|
||||||
mpg=video/mpeg
|
|
||||||
mpga=audio/mpeg
|
|
||||||
mpp=application/vndms-project
|
|
||||||
mpt=application/x-project
|
|
||||||
mpv=application/x-project
|
|
||||||
mpx=application/x-project
|
|
||||||
mrc=application/marc
|
|
||||||
ms=application/x-troff-ms
|
|
||||||
mv=video/x-sgi-movie
|
|
||||||
my=audio/make
|
|
||||||
mzz=application/x-vndaudioexplosionmzz
|
|
||||||
nap=image/naplps
|
|
||||||
naplps=image/naplps
|
|
||||||
nc=application/x-netcdf
|
|
||||||
ncm=application/vndnokiaconfiguration-message
|
|
||||||
nif=image/x-niff
|
|
||||||
niff=image/x-niff
|
|
||||||
nix=application/x-mix-transfer
|
|
||||||
nsc=application/x-conference
|
|
||||||
nvd=application/x-navidoc
|
|
||||||
o=application/octet-stream
|
|
||||||
oda=application/oda
|
|
||||||
odb=application/vnd.oasis.opendocument.database
|
|
||||||
odc=application/vnd.oasis.opendocument.chart
|
|
||||||
odf=application/vnd.oasis.opendocument.formula
|
|
||||||
odg=application/vnd.oasis.opendocument.graphics
|
|
||||||
odi=application/vnd.oasis.opendocument.image
|
|
||||||
odm=application/vnd.oasis.opendocument.text-master
|
|
||||||
odp=application/vnd.oasis.opendocument.presentation
|
|
||||||
ods=application/vnd.oasis.opendocument.spreadsheet
|
|
||||||
odt=application/vnd.oasis.opendocument.text
|
|
||||||
oga=audio/ogg
|
|
||||||
ogg=audio/ogg
|
|
||||||
ogv=video/ogg
|
|
||||||
omc=application/x-omc
|
|
||||||
omcd=application/x-omcdatamaker
|
|
||||||
omcr=application/x-omcregerator
|
|
||||||
otc=application/vnd.oasis.opendocument.chart-template
|
|
||||||
otf=application/vnd.oasis.opendocument.formula-template
|
|
||||||
otg=application/vnd.oasis.opendocument.graphics-template
|
|
||||||
oth=application/vnd.oasis.opendocument.text-web
|
|
||||||
oti=application/vnd.oasis.opendocument.image-template
|
|
||||||
otm=application/vnd.oasis.opendocument.text-master
|
|
||||||
otp=application/vnd.oasis.opendocument.presentation-template
|
|
||||||
ots=application/vnd.oasis.opendocument.spreadsheet-template
|
|
||||||
ott=application/vnd.oasis.opendocument.text-template
|
|
||||||
p10=application/pkcs10
|
|
||||||
p12=application/pkcs-12
|
|
||||||
p7a=application/x-pkcs7-signature
|
|
||||||
p7c=application/pkcs7-mime
|
|
||||||
p7m=application/pkcs7-mime
|
|
||||||
p7r=application/x-pkcs7-certreqresp
|
|
||||||
p7s=application/pkcs7-signature
|
|
||||||
p=text/x-pascal
|
|
||||||
part=application/pro_eng
|
|
||||||
pas=text/pascal
|
|
||||||
pbm=image/x-portable-bitmap
|
|
||||||
pcl=application/vndhp-pcl
|
|
||||||
pct=image/x-pict
|
|
||||||
pcx=image/x-pcx
|
|
||||||
pdb=chemical/x-pdb
|
|
||||||
pdf=application/pdf
|
|
||||||
pfunk=audio/make
|
|
||||||
pgm=image/x-portable-graymap
|
|
||||||
pic=image/pict
|
|
||||||
pict=image/pict
|
|
||||||
pkg=application/x-newton-compatible-pkg
|
|
||||||
pko=application/vndms-pkipko
|
|
||||||
pl=text/x-scriptperl
|
|
||||||
plx=application/x-pixclscript
|
|
||||||
pm4=application/x-pagemaker
|
|
||||||
pm5=application/x-pagemaker
|
|
||||||
pm=text/x-scriptperl-module
|
|
||||||
png=image/png
|
|
||||||
pnm=application/x-portable-anymap
|
|
||||||
pot=application/mspowerpoint
|
|
||||||
pov=model/x-pov
|
|
||||||
ppa=application/vndms-powerpoint
|
|
||||||
ppm=image/x-portable-pixmap
|
|
||||||
pps=application/mspowerpoint
|
|
||||||
ppt=application/mspowerpoint
|
|
||||||
ppz=application/mspowerpoint
|
|
||||||
pre=application/x-freelance
|
|
||||||
prt=application/pro_eng
|
|
||||||
ps=application/postscript
|
|
||||||
psd=application/octet-stream
|
|
||||||
pvu=paleovu/x-pv
|
|
||||||
pwz=application/vndms-powerpoint
|
|
||||||
py=text/x-scriptphyton
|
|
||||||
pyc=applicaiton/x-bytecodepython
|
|
||||||
qcp=audio/vndqcelp
|
|
||||||
qd3=x-world/x-3dmf
|
|
||||||
qd3d=x-world/x-3dmf
|
|
||||||
qif=image/x-quicktime
|
|
||||||
qt=video/quicktime
|
|
||||||
qtc=video/x-qtc
|
|
||||||
qti=image/x-quicktime
|
|
||||||
qtif=image/x-quicktime
|
|
||||||
ra=audio/x-pn-realaudio
|
|
||||||
ram=audio/x-pn-realaudio
|
|
||||||
rar=application/x-rar-compressed
|
|
||||||
ras=application/x-cmu-raster
|
|
||||||
rast=image/cmu-raster
|
|
||||||
rexx=text/x-scriptrexx
|
|
||||||
rf=image/vndrn-realflash
|
|
||||||
rgb=image/x-rgb
|
|
||||||
rm=application/vndrn-realmedia
|
|
||||||
rmi=audio/mid
|
|
||||||
rmm=audio/x-pn-realaudio
|
|
||||||
rmp=audio/x-pn-realaudio
|
|
||||||
rng=application/ringing-tones
|
|
||||||
rnx=application/vndrn-realplayer
|
|
||||||
roff=application/x-troff
|
|
||||||
rp=image/vndrn-realpix
|
|
||||||
rpm=audio/x-pn-realaudio-plugin
|
|
||||||
rt=text/vndrn-realtext
|
|
||||||
rtf=text/richtext
|
|
||||||
rtx=text/richtext
|
|
||||||
rv=video/vndrn-realvideo
|
|
||||||
s=text/x-asm
|
|
||||||
s3m=audio/s3m
|
|
||||||
s7z=application/x-7z-compressed
|
|
||||||
saveme=application/octet-stream
|
|
||||||
sbk=application/x-tbook
|
|
||||||
scm=text/x-scriptscheme
|
|
||||||
sdml=text/plain
|
|
||||||
sdp=application/sdp
|
|
||||||
sdr=application/sounder
|
|
||||||
sea=application/sea
|
|
||||||
set=application/set
|
|
||||||
sgm=text/x-sgml
|
|
||||||
sgml=text/x-sgml
|
|
||||||
sh=text/x-scriptsh
|
|
||||||
shar=application/x-bsh
|
|
||||||
shtml=text/x-server-parsed-html
|
|
||||||
sid=audio/x-psid
|
|
||||||
skd=application/x-koan
|
|
||||||
skm=application/x-koan
|
|
||||||
skp=application/x-koan
|
|
||||||
skt=application/x-koan
|
|
||||||
sit=application/x-stuffit
|
|
||||||
sitx=application/x-stuffitx
|
|
||||||
sl=application/x-seelogo
|
|
||||||
smi=application/smil
|
|
||||||
smil=application/smil
|
|
||||||
snd=audio/basic
|
|
||||||
sol=application/solids
|
|
||||||
spc=text/x-speech
|
|
||||||
spl=application/futuresplash
|
|
||||||
spr=application/x-sprite
|
|
||||||
sprite=application/x-sprite
|
|
||||||
spx=audio/ogg
|
|
||||||
src=application/x-wais-source
|
|
||||||
ssi=text/x-server-parsed-html
|
|
||||||
ssm=application/streamingmedia
|
|
||||||
sst=application/vndms-pkicertstore
|
|
||||||
step=application/step
|
|
||||||
stl=application/sla
|
|
||||||
stp=application/step
|
|
||||||
sv4cpio=application/x-sv4cpio
|
|
||||||
sv4crc=application/x-sv4crc
|
|
||||||
svf=image/vnddwg
|
|
||||||
svg=image/svg+xml
|
|
||||||
svr=application/x-world
|
|
||||||
swf=application/x-shockwave-flash
|
|
||||||
t=application/x-troff
|
|
||||||
talk=text/x-speech
|
|
||||||
tar=application/x-tar
|
|
||||||
tbk=application/toolbook
|
|
||||||
tcl=text/x-scripttcl
|
|
||||||
tcsh=text/x-scripttcsh
|
|
||||||
tex=application/x-tex
|
|
||||||
texi=application/x-texinfo
|
|
||||||
texinfo=application/x-texinfo
|
|
||||||
text=text/plain
|
|
||||||
tgz=application/gnutar
|
|
||||||
tif=image/tiff
|
|
||||||
tiff=image/tiff
|
|
||||||
tr=application/x-troff
|
|
||||||
tsi=audio/tsp-audio
|
|
||||||
tsp=application/dsptype
|
|
||||||
tsv=text/tab-separated-values
|
|
||||||
turbot=image/florian
|
|
||||||
txt=text/plain
|
|
||||||
uil=text/x-uil
|
|
||||||
uni=text/uri-list
|
|
||||||
unis=text/uri-list
|
|
||||||
unv=application/i-deas
|
|
||||||
uri=text/uri-list
|
|
||||||
uris=text/uri-list
|
|
||||||
ustar=application/x-ustar
|
|
||||||
uu=text/x-uuencode
|
|
||||||
uue=text/x-uuencode
|
|
||||||
vcd=application/x-cdlink
|
|
||||||
vcf=text/x-vcard
|
|
||||||
vcard=text/x-vcard
|
|
||||||
vcs=text/x-vcalendar
|
|
||||||
vda=application/vda
|
|
||||||
vdo=video/vdo
|
|
||||||
vew=application/groupwise
|
|
||||||
viv=video/vivo
|
|
||||||
vivo=video/vivo
|
|
||||||
vmd=application/vocaltec-media-desc
|
|
||||||
vmf=application/vocaltec-media-file
|
|
||||||
voc=audio/voc
|
|
||||||
vos=video/vosaic
|
|
||||||
vox=audio/voxware
|
|
||||||
vqe=audio/x-twinvq-plugin
|
|
||||||
vqf=audio/x-twinvq
|
|
||||||
vql=audio/x-twinvq-plugin
|
|
||||||
vrml=application/x-vrml
|
|
||||||
vrt=x-world/x-vrt
|
|
||||||
vsd=application/x-visio
|
|
||||||
vst=application/x-visio
|
|
||||||
vsw=application/x-visio
|
|
||||||
w60=application/wordperfect60
|
|
||||||
w61=application/wordperfect61
|
|
||||||
w6w=application/msword
|
|
||||||
wav=audio/wav
|
|
||||||
wb1=application/x-qpro
|
|
||||||
wbmp=image/vnd.wap.wbmp
|
|
||||||
web=application/vndxara
|
|
||||||
wiz=application/msword
|
|
||||||
wk1=application/x-123
|
|
||||||
wmf=windows/metafile
|
|
||||||
wml=text/vnd.wap.wml
|
|
||||||
wmlc=application/vnd.wap.wmlc
|
|
||||||
wmls=text/vnd.wap.wmlscript
|
|
||||||
wmlsc=application/vnd.wap.wmlscriptc
|
|
||||||
word=application/msword
|
|
||||||
wp5=application/wordperfect
|
|
||||||
wp6=application/wordperfect
|
|
||||||
wp=application/wordperfect
|
|
||||||
wpd=application/wordperfect
|
|
||||||
wq1=application/x-lotus
|
|
||||||
wri=application/mswrite
|
|
||||||
wrl=application/x-world
|
|
||||||
wrz=model/vrml
|
|
||||||
wsc=text/scriplet
|
|
||||||
wsrc=application/x-wais-source
|
|
||||||
wtk=application/x-wintalk
|
|
||||||
x-png=image/png
|
|
||||||
xbm=image/x-xbitmap
|
|
||||||
xdr=video/x-amt-demorun
|
|
||||||
xgz=xgl/drawing
|
|
||||||
xif=image/vndxiff
|
|
||||||
xl=application/excel
|
|
||||||
xla=application/excel
|
|
||||||
xlb=application/excel
|
|
||||||
xlc=application/excel
|
|
||||||
xld=application/excel
|
|
||||||
xlk=application/excel
|
|
||||||
xll=application/excel
|
|
||||||
xlm=application/excel
|
|
||||||
xls=application/excel
|
|
||||||
xlt=application/excel
|
|
||||||
xlv=application/excel
|
|
||||||
xlw=application/excel
|
|
||||||
xm=audio/xm
|
|
||||||
xml=text/xml
|
|
||||||
xmz=xgl/movie
|
|
||||||
xpix=application/x-vndls-xpix
|
|
||||||
xpm=image/x-xpixmap
|
|
||||||
xsr=video/x-amt-showrun
|
|
||||||
xwd=image/x-xwd
|
|
||||||
xyz=chemical/x-pdb
|
|
||||||
z=application/x-compress
|
|
||||||
zip=application/zip
|
|
||||||
zoo=application/octet-stream
|
|
||||||
zsh=text/x-scriptzsh
|
|
||||||
# Office 2007 mess - http://wdg.uncc.edu/Microsoft_Office_2007_MIME_Types_for_Apache_and_IIS
|
|
||||||
docx=application/vnd.openxmlformats-officedocument.wordprocessingml.document
|
|
||||||
docm=application/vnd.ms-word.document.macroEnabled.12
|
|
||||||
dotx=application/vnd.openxmlformats-officedocument.wordprocessingml.template
|
|
||||||
dotm=application/vnd.ms-word.template.macroEnabled.12
|
|
||||||
xlsx=application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
|
|
||||||
xlsm=application/vnd.ms-excel.sheet.macroEnabled.12
|
|
||||||
xltx=application/vnd.openxmlformats-officedocument.spreadsheetml.template
|
|
||||||
xltm=application/vnd.ms-excel.template.macroEnabled.12
|
|
||||||
xlsb=application/vnd.ms-excel.sheet.binary.macroEnabled.12
|
|
||||||
xlam=application/vnd.ms-excel.addin.macroEnabled.12
|
|
||||||
pptx=application/vnd.openxmlformats-officedocument.presentationml.presentation
|
|
||||||
pptm=application/vnd.ms-powerpoint.presentation.macroEnabled.12
|
|
||||||
ppsx=application/vnd.openxmlformats-officedocument.presentationml.slideshow
|
|
||||||
ppsm=application/vnd.ms-powerpoint.slideshow.macroEnabled.12
|
|
||||||
potx=application/vnd.openxmlformats-officedocument.presentationml.template
|
|
||||||
potm=application/vnd.ms-powerpoint.template.macroEnabled.12
|
|
||||||
ppam=application/vnd.ms-powerpoint.addin.macroEnabled.12
|
|
||||||
sldx=application/vnd.openxmlformats-officedocument.presentationml.slide
|
|
||||||
sldm=application/vnd.ms-powerpoint.slide.macroEnabled.12
|
|
||||||
thmx=application/vnd.ms-officetheme
|
|
||||||
onetoc=application/onenote
|
|
||||||
onetoc2=application/onenote
|
|
||||||
onetmp=application/onenote
|
|
||||||
onepkg=application/onenote
|
|
||||||
# koffice
|
|
||||||
|
|
||||||
# iWork
|
|
||||||
key=application/x-iwork-keynote-sffkey
|
|
||||||
kth=application/x-iwork-keynote-sffkth
|
|
||||||
nmbtemplate=application/x-iwork-numbers-sfftemplate
|
|
||||||
numbers=application/x-iwork-numbers-sffnumbers
|
|
||||||
pages=application/x-iwork-pages-sffpages
|
|
||||||
template=application/x-iwork-pages-sfftemplate
|
|
||||||
|
|
||||||
# Extensions for Mozilla apps (Firefox and friends)
|
|
||||||
xpi=application/x-xpinstall
|
|
||||||
|
|
||||||
# Opera extensions
|
|
||||||
oex=application/x-opera-extension
|
|
@ -1,100 +0,0 @@
|
|||||||
package controllers
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/revel/revel"
|
|
||||||
"os"
|
|
||||||
fpath "path/filepath"
|
|
||||||
"strings"
|
|
||||||
"syscall"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Static struct {
|
|
||||||
*revel.Controller
|
|
||||||
}
|
|
||||||
|
|
||||||
// This method handles requests for files. The supplied prefix may be absolute
|
|
||||||
// or relative. If the prefix is relative it is assumed to be relative to the
|
|
||||||
// application directory. The filepath may either be just a file or an
|
|
||||||
// additional filepath to search for the given file. This response may return
|
|
||||||
// the following responses in the event of an error or invalid request;
|
|
||||||
// 403(Forbidden): If the prefix filepath combination results in a directory.
|
|
||||||
// 404(Not found): If the prefix and filepath combination results in a non-existent file.
|
|
||||||
// 500(Internal Server Error): There are a few edge cases that would likely indicate some configuration error outside of revel.
|
|
||||||
//
|
|
||||||
// Note that when defining routes in routes/conf the parameters must not have
|
|
||||||
// spaces around the comma.
|
|
||||||
// Bad: Static.Serve("public/img", "favicon.png")
|
|
||||||
// Good: Static.Serve("public/img","favicon.png")
|
|
||||||
//
|
|
||||||
// Examples:
|
|
||||||
// Serving a directory
|
|
||||||
// Route (conf/routes):
|
|
||||||
// GET /public/{<.*>filepath} Static.Serve("public")
|
|
||||||
// Request:
|
|
||||||
// public/js/sessvars.js
|
|
||||||
// Calls
|
|
||||||
// Static.Serve("public","js/sessvars.js")
|
|
||||||
//
|
|
||||||
// Serving a file
|
|
||||||
// Route (conf/routes):
|
|
||||||
// GET /favicon.ico Static.Serve("public/img","favicon.png")
|
|
||||||
// Request:
|
|
||||||
// favicon.ico
|
|
||||||
// Calls:
|
|
||||||
// Static.Serve("public/img", "favicon.png")
|
|
||||||
func (c Static) Serve(prefix, filepath string) revel.Result {
|
|
||||||
var basePath string
|
|
||||||
|
|
||||||
if !fpath.IsAbs(prefix) {
|
|
||||||
basePath = revel.BasePath
|
|
||||||
}
|
|
||||||
|
|
||||||
basePathPrefix := fpath.Join(basePath, fpath.FromSlash(prefix))
|
|
||||||
fname := fpath.Join(basePathPrefix, fpath.FromSlash(filepath))
|
|
||||||
if !strings.HasPrefix(fname, basePathPrefix) {
|
|
||||||
revel.WARN.Printf("Attempted to read file outside of base path: %s", fname)
|
|
||||||
return c.NotFound("")
|
|
||||||
}
|
|
||||||
|
|
||||||
finfo, err := os.Stat(fname)
|
|
||||||
if err != nil {
|
|
||||||
if os.IsNotExist(err) || err.(*os.PathError).Err == syscall.ENOTDIR {
|
|
||||||
revel.WARN.Printf("File not found (%s): %s ", fname, err)
|
|
||||||
return c.NotFound("File not found")
|
|
||||||
}
|
|
||||||
revel.ERROR.Printf("Error trying to get fileinfo for '%s': %s", fname, err)
|
|
||||||
return c.RenderError(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if finfo.Mode().IsDir() {
|
|
||||||
revel.WARN.Printf("Attempted directory listing of %s", fname)
|
|
||||||
return c.Forbidden("Directory listing not allowed")
|
|
||||||
}
|
|
||||||
|
|
||||||
file, err := os.Open(fname)
|
|
||||||
if err != nil {
|
|
||||||
if os.IsNotExist(err) {
|
|
||||||
revel.WARN.Printf("File not found (%s): %s ", fname, err)
|
|
||||||
return c.NotFound("File not found")
|
|
||||||
}
|
|
||||||
revel.ERROR.Printf("Error opening '%s': %s", fname, err)
|
|
||||||
return c.RenderError(err)
|
|
||||||
}
|
|
||||||
return c.RenderFile(file, revel.Inline)
|
|
||||||
}
|
|
||||||
|
|
||||||
// This method allows modules to serve binary files. The parameters are the same
|
|
||||||
// as Static.Serve with the additional module name pre-pended to the list of
|
|
||||||
// arguments.
|
|
||||||
func (c Static) ServeModule(moduleName, prefix, filepath string) revel.Result {
|
|
||||||
var basePath string
|
|
||||||
for _, module := range revel.Modules {
|
|
||||||
if module.Name == moduleName {
|
|
||||||
basePath = module.Path
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
absPath := fpath.Join(basePath, fpath.FromSlash(prefix))
|
|
||||||
|
|
||||||
return c.Serve(absPath, filepath)
|
|
||||||
}
|
|
@ -1,152 +0,0 @@
|
|||||||
package controllers
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"fmt"
|
|
||||||
"github.com/revel/revel"
|
|
||||||
"html"
|
|
||||||
"html/template"
|
|
||||||
"reflect"
|
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
type TestRunner struct {
|
|
||||||
*revel.Controller
|
|
||||||
}
|
|
||||||
|
|
||||||
type TestSuiteDesc struct {
|
|
||||||
Name string
|
|
||||||
Tests []TestDesc
|
|
||||||
}
|
|
||||||
|
|
||||||
type TestDesc struct {
|
|
||||||
Name string
|
|
||||||
}
|
|
||||||
|
|
||||||
type TestSuiteResult struct {
|
|
||||||
Name string
|
|
||||||
Passed bool
|
|
||||||
Results []TestResult
|
|
||||||
}
|
|
||||||
|
|
||||||
type TestResult struct {
|
|
||||||
Name string
|
|
||||||
Passed bool
|
|
||||||
ErrorHtml template.HTML
|
|
||||||
ErrorSummary string
|
|
||||||
}
|
|
||||||
|
|
||||||
var NONE = []reflect.Value{}
|
|
||||||
|
|
||||||
func (c TestRunner) Index() revel.Result {
|
|
||||||
var testSuites []TestSuiteDesc
|
|
||||||
for _, testSuite := range revel.TestSuites {
|
|
||||||
testSuites = append(testSuites, DescribeSuite(testSuite))
|
|
||||||
}
|
|
||||||
return c.Render(testSuites)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Run runs a single test, given by the argument.
|
|
||||||
func (c TestRunner) Run(suite, test string) revel.Result {
|
|
||||||
result := TestResult{Name: test}
|
|
||||||
for _, testSuite := range revel.TestSuites {
|
|
||||||
t := reflect.TypeOf(testSuite).Elem()
|
|
||||||
if t.Name() != suite {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
// Found the suite, create a new instance and run the named method.
|
|
||||||
v := reflect.New(t)
|
|
||||||
func() {
|
|
||||||
defer func() {
|
|
||||||
if err := recover(); err != nil {
|
|
||||||
error := revel.NewErrorFromPanic(err)
|
|
||||||
if error == nil {
|
|
||||||
result.ErrorHtml = template.HTML(html.EscapeString(fmt.Sprint(err)))
|
|
||||||
} else {
|
|
||||||
var buffer bytes.Buffer
|
|
||||||
tmpl, _ := revel.MainTemplateLoader.Template("TestRunner/FailureDetail.html")
|
|
||||||
tmpl.Render(&buffer, error)
|
|
||||||
result.ErrorSummary = errorSummary(error)
|
|
||||||
result.ErrorHtml = template.HTML(buffer.String())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
// Initialize the test suite with a NewTestSuite()
|
|
||||||
testSuiteInstance := v.Elem().FieldByName("TestSuite")
|
|
||||||
testSuiteInstance.Set(reflect.ValueOf(revel.NewTestSuite()))
|
|
||||||
|
|
||||||
// Call Before(), call the test, and call After().
|
|
||||||
if m := v.MethodByName("Before"); m.IsValid() {
|
|
||||||
m.Call(NONE)
|
|
||||||
}
|
|
||||||
|
|
||||||
if m := v.MethodByName("After"); m.IsValid() {
|
|
||||||
defer m.Call(NONE)
|
|
||||||
}
|
|
||||||
|
|
||||||
v.MethodByName(test).Call(NONE)
|
|
||||||
|
|
||||||
// No panic means success.
|
|
||||||
result.Passed = true
|
|
||||||
}()
|
|
||||||
break
|
|
||||||
}
|
|
||||||
return c.RenderJson(result)
|
|
||||||
}
|
|
||||||
|
|
||||||
// List returns a JSON list of test suites and tests.
|
|
||||||
// Used by the "test" command line tool.
|
|
||||||
func (c TestRunner) List() revel.Result {
|
|
||||||
var testSuites []TestSuiteDesc
|
|
||||||
for _, testSuite := range revel.TestSuites {
|
|
||||||
testSuites = append(testSuites, DescribeSuite(testSuite))
|
|
||||||
}
|
|
||||||
return c.RenderJson(testSuites)
|
|
||||||
}
|
|
||||||
|
|
||||||
func DescribeSuite(testSuite interface{}) TestSuiteDesc {
|
|
||||||
t := reflect.TypeOf(testSuite)
|
|
||||||
|
|
||||||
// Get a list of methods of the embedded test type.
|
|
||||||
super := t.Elem().Field(0).Type
|
|
||||||
superMethodNameSet := map[string]struct{}{}
|
|
||||||
for i := 0; i < super.NumMethod(); i++ {
|
|
||||||
superMethodNameSet[super.Method(i).Name] = struct{}{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get a list of methods on the test suite that take no parameters, return
|
|
||||||
// no results, and were not part of the embedded type's method set.
|
|
||||||
var tests []TestDesc
|
|
||||||
for i := 0; i < t.NumMethod(); i++ {
|
|
||||||
m := t.Method(i)
|
|
||||||
mt := m.Type
|
|
||||||
_, isSuperMethod := superMethodNameSet[m.Name]
|
|
||||||
if mt.NumIn() == 1 &&
|
|
||||||
mt.NumOut() == 0 &&
|
|
||||||
mt.In(0) == t &&
|
|
||||||
!isSuperMethod &&
|
|
||||||
strings.HasPrefix(m.Name, "Test") {
|
|
||||||
tests = append(tests, TestDesc{m.Name})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return TestSuiteDesc{
|
|
||||||
Name: t.Elem().Name(),
|
|
||||||
Tests: tests,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func errorSummary(error *revel.Error) string {
|
|
||||||
var message = fmt.Sprintf("%4sStatus: %s\n%4sIn %s", "", error.Description, "", error.Path)
|
|
||||||
if error.Line != 0 {
|
|
||||||
message += fmt.Sprintf(" (around line %d): ", error.Line)
|
|
||||||
for _, line := range error.ContextSource() {
|
|
||||||
if line.IsError {
|
|
||||||
message += line.Source
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return message
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package app
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"github.com/revel/revel"
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
revel.OnAppStart(func() {
|
|
||||||
fmt.Println("Go to /@tests to run the tests.")
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
<b>{{.Description}}</b><br>
|
|
||||||
In {{.Path}}
|
|
||||||
{{if .Line}}
|
|
||||||
(around {{if .Line}}line {{.Line}}{{end}}{{if .Column}} column {{.Column}}{{end}})
|
|
||||||
{{end}}:
|
|
||||||
{{range .ContextSource}}{{if .IsError}}<code>{{.Source}}</code>{{end}}{{end}}<br>
|
|
||||||
<a style="cursor:pointer;"
|
|
||||||
onclick="x=this.nextSibling.style;if(!x.display)x.display='none';else x.display=''">
|
|
||||||
Show Stack</a><pre style="display:none;">{{.Stack}}</pre>
|
|
@ -1,84 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Revel Test Runner</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
||||||
<link href="/@tests/public/css/bootstrap.css" type="text/css" rel="stylesheet"></link>
|
|
||||||
<script src="/@tests/public/js/jquery-1.9.1.min.js" type="text/javascript"></script>
|
|
||||||
<style>
|
|
||||||
header { padding:20px 0; background-color:#ADD8E6 }
|
|
||||||
.passed td { background-color: #90EE90 !important; }
|
|
||||||
.failed td { background-color: #FFB6C1 !important; }
|
|
||||||
.tests td.name, .tests td.result { padding-top: 13px; }
|
|
||||||
pre { font-size:10px; white-space: pre; }
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<div class="container">
|
|
||||||
<table><tr><td>
|
|
||||||
<h1>Test Runner</h1>
|
|
||||||
<p class="lead">Run all of your application's tests from here.</p>
|
|
||||||
</td><td style="padding-left:150px;">
|
|
||||||
<button class="btn btn-large" all-tests="">Run All Tests</button>
|
|
||||||
</td></tr></table>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
{{range .testSuites}}
|
|
||||||
<p class="lead" style="margin-top:20px;">{{.Name}}</p>
|
|
||||||
<table class="table table-striped tests" suite="{{.Name}}">
|
|
||||||
{{range .Tests}}
|
|
||||||
<tr>
|
|
||||||
<td class="name">{{.Name}}</td>
|
|
||||||
<td class="result">
|
|
||||||
</td>
|
|
||||||
<td><button test="{{.Name}}" class="btn">Run</button></td>
|
|
||||||
</tr>
|
|
||||||
{{end}}
|
|
||||||
</table>
|
|
||||||
{{end}}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
var running = 0;
|
|
||||||
|
|
||||||
$("button[test]").click(function() {
|
|
||||||
var button = $(this).addClass("disabled").text("Running");
|
|
||||||
running += 1;
|
|
||||||
runTest(button);
|
|
||||||
});
|
|
||||||
|
|
||||||
$("button[all-tests]").click(function() {
|
|
||||||
var button = $(this).addClass("disabled").text("Running");
|
|
||||||
$("button[test]").click();
|
|
||||||
});
|
|
||||||
|
|
||||||
function runTest(button) {
|
|
||||||
var suite = button.parents("table").attr("suite");
|
|
||||||
var test = button.attr("test");
|
|
||||||
var row = button.parents("tr");
|
|
||||||
var resultCell = row.children(".result");
|
|
||||||
$.ajax({
|
|
||||||
dataType: "json",
|
|
||||||
url: "/@tests/"+suite+"/"+test,
|
|
||||||
async: false,
|
|
||||||
success: function(result) {
|
|
||||||
row.attr("class", result.Passed ? "passed" : "failed");
|
|
||||||
if (result.Passed) {
|
|
||||||
resultCell.html("");
|
|
||||||
} else {
|
|
||||||
resultCell.html(result.ErrorHtml);
|
|
||||||
}
|
|
||||||
button.removeClass("disabled").text("Run");
|
|
||||||
running -= 1;
|
|
||||||
if (running == 0) {
|
|
||||||
$("button[all-tests]").removeClass("disabled").text("Run All Tests");
|
|
||||||
}
|
|
||||||
}});
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,47 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Revel Test Runner</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
color: #333333;
|
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
|
||||||
header { padding:20px 0; }
|
|
||||||
header.passed { background-color: #90EE90 !important; }
|
|
||||||
header.failed { background-color: #FFB6C1 !important; }
|
|
||||||
table { margin-top: 20px; padding: 8px; line-height: 20px; }
|
|
||||||
td { vertical-align: top; padding-right:20px; }
|
|
||||||
a { color: #0088cc; }
|
|
||||||
.container { margin-left: auto; margin-right: auto; width: 940px; }
|
|
||||||
.result.failed b { font-weight:bold; color: #C00; font-size: 14px; }
|
|
||||||
.result.failed span { color: #C00; font-size: 14px; }
|
|
||||||
</style>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header class="{{if .Passed}}passed{{else}}failed{{end}}">
|
|
||||||
<div class="container">
|
|
||||||
<h1>{{.Name}}</h1>
|
|
||||||
<p>{{if .Passed}}PASSED{{else}}FAILED{{end}}</p>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<table>
|
|
||||||
{{range .Results}}
|
|
||||||
<tr class="result {{if .Passed}}passed{{else}}failed{{end}}">
|
|
||||||
<td><span>{{.Name}}</span></td>
|
|
||||||
<td>{{if .ErrorHtml}}{{.ErrorHtml}}{{else}}PASSED{{end}}</td>
|
|
||||||
</tr>
|
|
||||||
{{end}}
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,4 +0,0 @@
|
|||||||
GET /@tests TestRunner.Index
|
|
||||||
GET /@tests.list TestRunner.List
|
|
||||||
GET /@tests/public/*filepath Static.ServeModule(testrunner,public)
|
|
||||||
GET /@tests/:suite/:test TestRunner.Run
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 5.5 KiB |
File diff suppressed because one or more lines are too long
@ -1,16 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Forbidden</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
{{with .Error}}
|
|
||||||
<h1>
|
|
||||||
{{.Title}}
|
|
||||||
</h1>
|
|
||||||
<p>
|
|
||||||
{{.Description}}
|
|
||||||
</p>
|
|
||||||
{{end}}
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"title": "{{js .Error.Title}}",
|
|
||||||
"description": "{{js .Error.Description}}"
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
{{.Error.Title}}
|
|
||||||
|
|
||||||
{{.Error.Description}}
|
|
@ -1 +0,0 @@
|
|||||||
<forbidden>{{.Error.Description}}</forbidden>
|
|
@ -1,63 +0,0 @@
|
|||||||
<style type="text/css">
|
|
||||||
html, body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-family: Helvetica, Arial, Sans;
|
|
||||||
background: #EEEEEE;
|
|
||||||
}
|
|
||||||
.block {
|
|
||||||
padding: 20px;
|
|
||||||
border-bottom: 1px solid #aaa;
|
|
||||||
}
|
|
||||||
#header h1 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 28px;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
#more {
|
|
||||||
color: #666;
|
|
||||||
font-size: 80%;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
#header {
|
|
||||||
background: #FFFFCC;
|
|
||||||
}
|
|
||||||
#header p {
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
#routes {
|
|
||||||
background: #f6f6f6;
|
|
||||||
}
|
|
||||||
#routes h2 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 0 0 10px 0;
|
|
||||||
}
|
|
||||||
#routes ol {
|
|
||||||
|
|
||||||
}
|
|
||||||
#routes li {
|
|
||||||
font-size: 14px;
|
|
||||||
font-family: monospace;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<div id="header" class="block">
|
|
||||||
{{with .Error}}
|
|
||||||
<h1>
|
|
||||||
{{.Title}}
|
|
||||||
</h1>
|
|
||||||
<p>
|
|
||||||
{{.Description}}
|
|
||||||
</p>
|
|
||||||
{{end}}
|
|
||||||
</div>
|
|
||||||
<div id="routes" class="block">
|
|
||||||
<h2>These routes have been tried, in this order :</h2>
|
|
||||||
<ol>
|
|
||||||
{{range .Router.Routes}}
|
|
||||||
<li>{{pad .Method 10}}{{pad .Path 50}}{{.Action}}</li>
|
|
||||||
{{end}}
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
@ -1,26 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Not found</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
{{if .DevMode}}
|
|
||||||
|
|
||||||
{{template "errors/404-dev.html" .}}
|
|
||||||
|
|
||||||
{{else}}
|
|
||||||
|
|
||||||
{{with .Error}}
|
|
||||||
<h1>
|
|
||||||
{{.Title}}
|
|
||||||
</h1>
|
|
||||||
<p>
|
|
||||||
{{.Description}}
|
|
||||||
</p>
|
|
||||||
{{end}}
|
|
||||||
|
|
||||||
{{end}}
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"title": "{{js .Error.Title}}",
|
|
||||||
"description": "{{js .Error.Description}}"
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
{{.Error.Title}}
|
|
||||||
|
|
||||||
{{.Error.Description}}
|
|
@ -1 +0,0 @@
|
|||||||
<notfound>{{.Error.Description}}</notfound>
|
|
@ -1,118 +0,0 @@
|
|||||||
<style type="text/css">
|
|
||||||
html, body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-family: Helvetica, Arial, Sans;
|
|
||||||
background: #EEEEEE;
|
|
||||||
}
|
|
||||||
.block {
|
|
||||||
padding: 20px;
|
|
||||||
border-bottom: 1px solid #aaa;
|
|
||||||
}
|
|
||||||
#header h1 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 28px;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
#more {
|
|
||||||
color: #666;
|
|
||||||
font-size: 80%;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
#header {
|
|
||||||
background: #fcd2da;
|
|
||||||
}
|
|
||||||
#header p {
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
#source {
|
|
||||||
background: #f6f6f6;
|
|
||||||
}
|
|
||||||
#source h2 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 0 0 10px 0;
|
|
||||||
}
|
|
||||||
#source .lineNumber {
|
|
||||||
float: left;
|
|
||||||
display: block;
|
|
||||||
width: 40px;
|
|
||||||
text-align: right;
|
|
||||||
margin-right: 10px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-family: monospace;
|
|
||||||
background: #333;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
#source .line {
|
|
||||||
clear: both;
|
|
||||||
color: #333;
|
|
||||||
margin-bottom: 1px;
|
|
||||||
}
|
|
||||||
#source pre {
|
|
||||||
font-size: 14px;
|
|
||||||
margin: 0;
|
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
|
||||||
#source .error {
|
|
||||||
color: #c00 !important;
|
|
||||||
}
|
|
||||||
#source .error .lineNumber {
|
|
||||||
background: #c00;
|
|
||||||
}
|
|
||||||
#source a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
#source a:hover * {
|
|
||||||
cursor: pointer !important;
|
|
||||||
}
|
|
||||||
#source a:hover pre {
|
|
||||||
background: #FAFFCF !important;
|
|
||||||
}
|
|
||||||
#source em {
|
|
||||||
font-style: normal;
|
|
||||||
text-decoration: underline;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
#source strong {
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
{{with .Error}}
|
|
||||||
<div id="header" class="block">
|
|
||||||
<h1>
|
|
||||||
{{.Title}}
|
|
||||||
</h1>
|
|
||||||
<p>
|
|
||||||
{{if .SourceType}}
|
|
||||||
The {{.SourceType}} <strong>{{.Path}}</strong> does not compile: <strong>{{.Description}}</strong>
|
|
||||||
{{else}}
|
|
||||||
{{.Description}}
|
|
||||||
{{end}}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{{if .Path}}
|
|
||||||
<div id="source" class="block">
|
|
||||||
<h2>In {{.Path}}
|
|
||||||
{{if .Line}}
|
|
||||||
(around {{if .Line}}line {{.Line}}{{end}}{{if .Column}} column {{.Column}}{{end}})
|
|
||||||
{{end}}
|
|
||||||
</h2>
|
|
||||||
{{range .ContextSource}}
|
|
||||||
<div class="line {{if .IsError}}error{{end}}">
|
|
||||||
<span class="lineNumber">{{.Line}}:</span>
|
|
||||||
<pre>{{.Source}}</pre>
|
|
||||||
</div>
|
|
||||||
{{end}}
|
|
||||||
</div>
|
|
||||||
{{end}}
|
|
||||||
{{if .MetaError}}
|
|
||||||
<div id="source" class="block">
|
|
||||||
<h2>Additionally, an error occurred while handling this error.</h2>
|
|
||||||
<div class="line error">
|
|
||||||
{{.MetaError}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{end}}
|
|
||||||
{{end}}
|
|
@ -1,16 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Application error</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
{{if .DevMode}}
|
|
||||||
{{template "errors/500-dev.html" .}}
|
|
||||||
{{else}}
|
|
||||||
<h1>Oops, an error occured</h1>
|
|
||||||
<p>
|
|
||||||
This exception has been logged.
|
|
||||||
</p>
|
|
||||||
{{end}}
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"title": "{{js .Error.Title}}",
|
|
||||||
"description": "{{js .Error.Description}}"
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
{{.Error.Title}}
|
|
||||||
{{.Error.Description}}
|
|
||||||
|
|
||||||
{{if eq .RunMode "dev"}}
|
|
||||||
{{with .Error}}
|
|
||||||
{{if .Path}}
|
|
||||||
----------
|
|
||||||
In {{.Path}} {{if .Line}}(around line {{.Line}}){{end}}
|
|
||||||
|
|
||||||
{{range .ContextSource}}
|
|
||||||
{{if .IsError}}>{{else}} {{end}} {{.Line}}: {{.Source}}{{end}}
|
|
||||||
|
|
||||||
{{end}}
|
|
||||||
{{end}}
|
|
||||||
{{end}}
|
|
@ -1,4 +0,0 @@
|
|||||||
<error>
|
|
||||||
<title>{{.Error.Title}}</title>
|
|
||||||
<description>{{.Error.Description}}</description>
|
|
||||||
</error>
|
|
@ -84,6 +84,9 @@
|
|||||||
.dropdown-menu > li > a {
|
.dropdown-menu > li > a {
|
||||||
padding: 3px 20px 3px 0;
|
padding: 3px 20px 3px 0;
|
||||||
}
|
}
|
||||||
|
#notebookNavForNewNote li:hover {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
#noteList {
|
#noteList {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -185,6 +188,10 @@
|
|||||||
line-height: 40px; margin-top: 10px;
|
line-height: 40px; margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#searchNotebookForAddDropdownList {
|
||||||
|
left: -200px;
|
||||||
|
}
|
||||||
|
|
||||||
#searchNotebookForAdd {
|
#searchNotebookForAdd {
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,3 +1,4 @@
|
|||||||
|
@import "basic.less";
|
||||||
|
|
||||||
@bgColor: #fff;
|
@bgColor: #fff;
|
||||||
@headerBgColor: #25313e;
|
@headerBgColor: #25313e;
|
||||||
@ -151,8 +152,7 @@ a.raw:hover {
|
|||||||
-webkit-box-shadow: none;
|
-webkit-box-shadow: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border: 1px solid @hColor;
|
border: 1px solid @hColor;
|
||||||
overflow-x: hidden;
|
overflow: visible;
|
||||||
overflow-y: auto;
|
|
||||||
}
|
}
|
||||||
.dropdown-menu li {
|
.dropdown-menu li {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
@ -866,7 +866,7 @@ html,body {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
left:0;
|
left:0;
|
||||||
right:0;
|
right:0;
|
||||||
z-index:1;
|
z-index:333;
|
||||||
#leanoteMsg {
|
#leanoteMsg {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: @editorWidth;
|
width: @editorWidth;
|
||||||
@ -897,7 +897,6 @@ html,body {
|
|||||||
#newMyNote, #newSharedNote {
|
#newMyNote, #newSharedNote {
|
||||||
position: relative;
|
position: relative;
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
left: 0px !important;
|
|
||||||
}
|
}
|
||||||
.dropdown {
|
.dropdown {
|
||||||
position: static;
|
position: static;
|
||||||
@ -966,7 +965,7 @@ html,body {
|
|||||||
}
|
}
|
||||||
#noteTop{
|
#noteTop{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index:2;
|
z-index:9999;
|
||||||
left:0;
|
left:0;
|
||||||
right: 150px;
|
right: 150px;
|
||||||
padding: 15px 0;
|
padding: 15px 0;
|
||||||
@ -1091,3 +1090,10 @@ body {
|
|||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#searchNotebookForAddDropdownList {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
#searchNotebookForAdd {
|
||||||
|
background: none;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
@ -1,3 +1,4 @@
|
|||||||
|
@import "basic.less";
|
||||||
|
|
||||||
@bgColor: #fff;
|
@bgColor: #fff;
|
||||||
@headerBgColor: #25313e;
|
@headerBgColor: #25313e;
|
||||||
|
@ -792,6 +792,9 @@ editorMode.prototype.normalMode = function() {
|
|||||||
// $("#lock").animate({right:w},1000);
|
// $("#lock").animate({right:w},1000);
|
||||||
|
|
||||||
this.resizeEditor();
|
this.resizeEditor();
|
||||||
|
|
||||||
|
$("#noteList").width(UserInfo.NoteListWidth);
|
||||||
|
$("#note").css("left", UserInfo.NoteListWidth);
|
||||||
}
|
}
|
||||||
editorMode.prototype.writtingMode = function() {
|
editorMode.prototype.writtingMode = function() {
|
||||||
/*
|
/*
|
||||||
@ -823,6 +826,9 @@ editorMode.prototype.writtingMode = function() {
|
|||||||
// $("body").fadeIn();
|
// $("body").fadeIn();
|
||||||
|
|
||||||
this.resizeEditor();
|
this.resizeEditor();
|
||||||
|
|
||||||
|
$("#noteList").width(250);
|
||||||
|
$("#note").css("left", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
editorMode.prototype.getWritingCss = function() {
|
editorMode.prototype.getWritingCss = function() {
|
||||||
|
Reference in New Issue
Block a user