Rails Active Admin css与Twitter Bootstrap css冲突

我对Rails资产pipe道有点新鲜,所以我可能做错了什么。 我正在尝试为我的后端应用Active Admin和我的前端应用程序的twitter引导CSS。 我将bootstrap.css添加到/ app / assets / stylesheets,然后添加: //= require bootstrap 到application.css – 然后我做了本地资产的预编译 它似乎工作正常,但一些样式并不完全通过,我认为这是因为积极的pipe理的CSS是压倒一切的。 我的理解是应用程序将css资源编译到应用程序的css公共资产中,并且应用程序在运行时使用该文件。 我需要以某种方式将两者分开,并使用twitter引导CSS作为前端的主要CSS,也许告诉它不要在前端使用活动pipe理的CSS文件。 什么是最好的方法来做到这一点?

你如何为jQuery UI进度条设置animation值?

我已经设置了一个jQuery UI进度条,但不能使用jQueryanimation来为其设置animation值。 任何想法如何使这项工作? percentDonevariables包含一个从0到100的数字,表示滚动条应该有多远(这个工作正常)。 我尝试了几个不同的东西,无济于事。 以下是我到目前为止: var progressbar = $("#progressbar1").widget(); progressbar.animate({ value: percentDone }, 5000, function() { console.debug('done animating'); }); 请注意,如果我使用“值”方法更新滚动条,它可以正常工作,但是会跳转到该值,而不是平滑地进行animation: $("#progressbar1").progressbar('value', percentDone);

Perlstring模式匹配的负面正则expression式

我有这个正则expression式: if($string =~ m/^(Clinton|[^Bush]|Reagan)/i) {print "$string\n"}; 我想和克林顿和里根相匹配,但不是布什。 这不起作用。

Android图标和文本的button

我在我的应用程序中有这样的button: <Button android:id="@+id/bSearch" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="16dp" android:text="Search" android:textSize="24sp" /> 我正在尝试创build一个与文本和图标相同的button。 android:drawableLeft不适用于我(也许会,但我不知道如何设置一个最大高度的图标)。 所以我创build了一个带有ImageView和TextView的LinearLayout,并使它像一个button: <LinearLayout android:id="@+id/bSearch2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@android:drawable/btn_default" android:clickable="true" android:padding="16dp" android:orientation="horizontal" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginLeft="5dp" android:adjustViewBounds="true" android:maxHeight="30dp" android:maxWidth="30dp" android:scaleType="fitCenter" android:src="@drawable/search_icon" /> <TextView android:id="@+id/tvSearchCaption" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:textSize="24sp" android:paddingRight="30dp" android:gravity="center" android:text="Search" /> </LinearLayout> 我的新button正是我想要的(字体大小,图标和文本放置)。 但它看起来不像我的默认button: 所以我试着改变我的新Button的背景和文字颜色: Button Search = (Button) findViewById(R.id.bSearch); LinearLayout bSearch2 = (LinearLayout) […]

保存不会为其关系公开外键属性的实体时发生错误

我首先在Entity Framework 4.1代码中有一个简单的代码: PasmISOContext db = new PasmISOContext(); var user = new User(); user.CreationDate = DateTime.Now; user.LastActivityDate = DateTime.Now; user.LastLoginDate = DateTime.Now; db.Users.Add(user); db.SaveChanges(); user.Avatar = new Avatar() { Link = new Uri("http://myUrl/%2E%2E/%2E%2E") }; db.SaveChanges(); db.Users.Add(new User() { Avatar = new Avatar() { Link = new Uri("http://myUrl/%2E%2E/%2E%2E") } }); db.SaveChanges(); 问题是我得到一个错误 保存不会为其关系公开外键属性的实体时发生错误。 EntityEntries属性将返回null,因为单个实体不能被识别为exception的来源。 通过在实体types中公开外键属性,可以更轻松地处理exception。 有关详细信息,请参阅InnerException。 […]

在vim中打开与当前文件相同的文件夹中的文件

在vim中,当我打开一个缓冲区的时候,我经常需要在文件所在的同一个目录中加载另一个文件,但是因为我通常不会进入它,所以pwd是一个父文件夹,所以我必须重新input每一次的path。 有没有这个捷径? 或者将pwd更改为文件所在目录的方法? 例: cd /src vi lib/foo/file.js lib / foo有两个文件: file2.js和file2.js 在vi中: :e file2.js # doesn't work

使用MinGW的Eclipse CDT不会在控制台中输出

我有一台Windows 7 64位电脑,我试图安装一个免费的C ++ IDE,所以我select用CDT安装Eclipse Helios。 对于g ++,make和gdb,我按照这个教程安装了msys和mingw: http ://wiki.wxwidgets.org/HowTo:_Install_MSYS_and_MinGW_for_use_with_Eclipse_CDT 版本是: make:GNU make 3.81 g ++:4.5.0 gdb:7.1 所以它应该与我的64位CPU兼容。 然而,当我尝试用eclipse运行一个非常简单的程序时,在控制台上什么也看不到。 源代码是: #include <iostream> using namespace std; int main() { int i; cout << "Enter an integer: " << endl; cin >> i; cout << endl << "i is " << i << endl; return 0; } […]

如何在ExpressJS中删除X-Powered-By

我想删除X-Powered-By for Security,在ExpressJS(node.js)中保存带宽。 怎么做? 它可能是filter(app.use)? app.use(function(req,res,next_cb){ /* remove X-Powered-By header */ next_cb(); }

在Ubuntu virtualenv上的pip install Pillow错误

我有一个ec2实例,并在我的virtualenv最初安装枕头2.0。 不知何故,当我试图升级到枕头2.5,它失败了以下消息。 即使在重新安装之前,我完全卸下枕头,错误也是一样的。 (所以现在我没有在我的virtualenv枕头) $ pip install Pillow …. …. gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -Qunused-arguments -Qunused-arguments -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/home/andycheng/realprice/env/build/pillow/libImaging -I/home/andycheng/realprice/env/include -I/usr/include/tcl8.5 -I/usr/local/include -I/usr/include -I/usr/include/python2.7 -I/usr/include/x86_64-linux-gnu -c libImaging/RawDecode.c -o build/temp.linux-x86_64-2.7/libImaging/RawDecode.o gcc: error: unrecognized option '-Qunused-arguments' gcc: error: unrecognized option '-Qunused-arguments' …. …. gcc: error: build/temp.linux-x86_64-2.7/libImaging/XbmEncode.o: No such file […]

不能被embedded。 使用适用的接口,而不是

我想添加一张照片到Excel Spread工作表,但不断收到以下错误? 错误1 Interoptypes“Microsoft.Office.Interop.Excel.ApplicationClass”不能被embedded。 改用适用的界面。 ApplicationClass(); 在下面的代码行中用红色标出下划线: xlApp = new Excel.ApplicationClass(); 可能有人请给我打电话,我该如何解决这个问题? using Excel = Microsoft.Office.Interop.Excel; using Microsoft.Office.Core; private void btnWriteSpreedSheet_Click(object sender, EventArgs e) { Excel.Application xlApp; Excel.Workbook xlWorkBook; Excel.Worksheet xlWorkSheet; object misValue = System.Reflection.Missing.Value; xlApp = new Excel.ApplicationClass(); //This is where the problem is?????? xlWorkBook = xlApp.Workbooks.Add(misValue); xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1); //add some text xlWorkSheet.Cells[1, […]